From 73af237c8b40dd6f57b54273f731576713a877ba Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 6 Jan 2011 13:14:00 +0200 Subject: [PATCH 01/20] pyPdf: upgrade from upstream git: 4abdca42a7d8a4 bzr revid: p_christ@hol.gr-20110106111400-hqw1nu5wx1mict4t --- bin/report/pyPdf/__init__.py | 1 - bin/report/pyPdf/filters.py | 505 +++++++++++++------------ bin/report/pyPdf/generic.py | 35 +- bin/report/pyPdf/pdf.py | 418 ++++++++++++++++++-- bin/report/pyPdf/utils.py | 233 ++++++------ bin/report/pyPdf/xmp.py | 711 +++++++++++++++++------------------ 6 files changed, 1136 insertions(+), 767 deletions(-) diff --git a/bin/report/pyPdf/__init__.py b/bin/report/pyPdf/__init__.py index 28360a93847..af02553da69 100644 --- a/bin/report/pyPdf/__init__.py +++ b/bin/report/pyPdf/__init__.py @@ -1,3 +1,2 @@ -# -*- coding: utf-8 -*- from pdf import PdfFileReader, PdfFileWriter __all__ = ["pdf"] diff --git a/bin/report/pyPdf/filters.py b/bin/report/pyPdf/filters.py index 04bb7d9df55..7fe10fb4819 100644 --- a/bin/report/pyPdf/filters.py +++ b/bin/report/pyPdf/filters.py @@ -1,253 +1,252 @@ -# -*- coding: utf-8 -*- -# vim: sw=4:expandtab:foldmethod=marker -# -# Copyright (c) 2006, Mathieu Fenniak -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# * The name of the author may not be used to endorse or promote products -# derived from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - - -""" -Implementation of stream filters for PDF. -""" -__author__ = "Mathieu Fenniak" -__author_email__ = "biziqe@mathieu.fenniak.net" - -from utils import PdfReadError -try: - from cStringIO import StringIO -except ImportError: - from StringIO import StringIO - -try: - import zlib - def decompress(data): - return zlib.decompress(data) - def compress(data): - return zlib.compress(data) -except ImportError: - # Unable to import zlib. Attempt to use the System.IO.Compression - # library from the .NET framework. (IronPython only) - import System - from System import IO, Collections, Array - def _string_to_bytearr(buf): - retval = Array.CreateInstance(System.Byte, len(buf)) - for i in range(len(buf)): - retval[i] = ord(buf[i]) - return retval - def _bytearr_to_string(bytes): - retval = "" - for i in range(bytes.Length): - retval += chr(bytes[i]) - return retval - def _read_bytes(stream): - ms = IO.MemoryStream() - buf = Array.CreateInstance(System.Byte, 2048) - while True: - bytes = stream.Read(buf, 0, buf.Length) - if bytes == 0: - break - else: - ms.Write(buf, 0, bytes) - retval = ms.ToArray() - ms.Close() - return retval - def decompress(data): - bytes = _string_to_bytearr(data) - ms = IO.MemoryStream() - ms.Write(bytes, 0, bytes.Length) - ms.Position = 0 # fseek 0 - gz = IO.Compression.DeflateStream(ms, IO.Compression.CompressionMode.Decompress) - bytes = _read_bytes(gz) - retval = _bytearr_to_string(bytes) - gz.Close() - return retval - def compress(data): - bytes = _string_to_bytearr(data) - ms = IO.MemoryStream() - gz = IO.Compression.DeflateStream(ms, IO.Compression.CompressionMode.Compress, True) - gz.Write(bytes, 0, bytes.Length) - gz.Close() - ms.Position = 0 # fseek 0 - bytes = ms.ToArray() - retval = _bytearr_to_string(bytes) - ms.Close() - return retval - - -class FlateDecode(object): - def decode(data, decodeParms): - data = decompress(data) - predictor = 1 - if decodeParms: - predictor = decodeParms.get("/Predictor", 1) - # predictor 1 == no predictor - if predictor != 1: - columns = decodeParms["/Columns"] - # PNG prediction: - if predictor >= 10 and predictor <= 15: - output = StringIO() - # PNG prediction can vary from row to row - rowlength = columns + 1 - assert len(data) % rowlength == 0 - prev_rowdata = (0,) * rowlength - for row in xrange(len(data) / rowlength): - rowdata = [ord(x) for x in data[(row*rowlength):((row+1)*rowlength)]] - filterByte = rowdata[0] - if filterByte == 0: - pass - elif filterByte == 1: - for i in range(2, rowlength): - rowdata[i] = (rowdata[i] + rowdata[i-1]) % 256 - elif filterByte == 2: - for i in range(1, rowlength): - rowdata[i] = (rowdata[i] + prev_rowdata[i]) % 256 - else: - # unsupported PNG filter - raise PdfReadError("Unsupported PNG filter %r" % filterByte) - prev_rowdata = rowdata - output.write(''.join([chr(x) for x in rowdata[1:]])) - data = output.getvalue() - else: - # unsupported predictor - raise PdfReadError("Unsupported flatedecode predictor %r" % predictor) - return data - decode = staticmethod(decode) - - def encode(data): - return compress(data) - encode = staticmethod(encode) - -class ASCIIHexDecode(object): - def decode(data, decodeParms=None): - retval = "" - char = "" - x = 0 - while True: - c = data[x] - if c == ">": - break - elif c.isspace(): - x += 1 - continue - char += c - if len(char) == 2: - retval += chr(int(char, base=16)) - char = "" - x += 1 - assert char == "" - return retval - decode = staticmethod(decode) - -class ASCII85Decode(object): - def decode(data, decodeParms=None): - retval = "" - group = [] - x = 0 - hitEod = False - # remove all whitespace from data - data = [y for y in data if not (y in ' \n\r\t')] - while not hitEod: - c = data[x] - if len(retval) == 0 and c == "<" and data[x+1] == "~": - x += 2 - continue - #elif c.isspace(): - # x += 1 - # continue - elif c == 'z': - assert len(group) == 0 - retval += '\x00\x00\x00\x00' - continue - elif c == "~" and data[x+1] == ">": - if len(group) != 0: - # cannot have a final group of just 1 char - assert len(group) > 1 - cnt = len(group) - 1 - group += [ 85, 85, 85 ] - hitEod = cnt - else: - break - else: - c = ord(c) - 33 - assert c >= 0 and c < 85 - group += [ c ] - if len(group) >= 5: - b = group[0] * (85**4) + \ - group[1] * (85**3) + \ - group[2] * (85**2) + \ - group[3] * 85 + \ - group[4] - assert b < (2**32 - 1) - c4 = chr((b >> 0) % 256) - c3 = chr((b >> 8) % 256) - c2 = chr((b >> 16) % 256) - c1 = chr(b >> 24) - retval += (c1 + c2 + c3 + c4) - if hitEod: - retval = retval[:-4+hitEod] - group = [] - x += 1 - return retval - decode = staticmethod(decode) - -def decodeStreamData(stream): - from generic import NameObject - filters = stream.get("/Filter", ()) - if len(filters) and not isinstance(filters[0], NameObject): - # we have a single filter instance - filters = (filters,) - data = stream._data - for filterType in filters: - if filterType == "/FlateDecode": - data = FlateDecode.decode(data, stream.get("/DecodeParms")) - elif filterType == "/ASCIIHexDecode": - data = ASCIIHexDecode.decode(data) - elif filterType == "/ASCII85Decode": - data = ASCII85Decode.decode(data) - elif filterType == "/Crypt": - decodeParams = stream.get("/DecodeParams", {}) - if "/Name" not in decodeParams and "/Type" not in decodeParams: - pass - else: - raise NotImplementedError("/Crypt filter with /Name or /Type not supported yet") - else: - # unsupported filter - raise NotImplementedError("unsupported filter %s" % filterType) - return data - -if __name__ == "__main__": - assert "abc" == ASCIIHexDecode.decode('61\n626\n3>') - - ascii85Test = """ - <~9jqo^BlbD-BleB1DJ+*+F(f,q/0JhKFCj@.4Gp$d7F!,L7@<6@)/0JDEF@3BB/F*&OCAfu2/AKY - i(DIb:@FD,*)+C]U=@3BN#EcYf8ATD3s@q?d$AftVqCh[NqF-FD5W8ARlolDIa - l(DIduD.RTpAKYo'+CT/5+Cei#DII?(E,9)oF*2M7/c~> - """ - ascii85_originalText="Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure." - assert ASCII85Decode.decode(ascii85Test) == ascii85_originalText - +# vim: sw=4:expandtab:foldmethod=marker +# +# Copyright (c) 2006, Mathieu Fenniak +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# * The name of the author may not be used to endorse or promote products +# derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + + +""" +Implementation of stream filters for PDF. +""" +__author__ = "Mathieu Fenniak" +__author_email__ = "biziqe@mathieu.fenniak.net" + +from utils import PdfReadError +try: + from cStringIO import StringIO +except ImportError: + from StringIO import StringIO + +try: + import zlib + def decompress(data): + return zlib.decompress(data) + def compress(data): + return zlib.compress(data) +except ImportError: + # Unable to import zlib. Attempt to use the System.IO.Compression + # library from the .NET framework. (IronPython only) + import System + from System import IO, Collections, Array + def _string_to_bytearr(buf): + retval = Array.CreateInstance(System.Byte, len(buf)) + for i in range(len(buf)): + retval[i] = ord(buf[i]) + return retval + def _bytearr_to_string(bytes): + retval = "" + for i in range(bytes.Length): + retval += chr(bytes[i]) + return retval + def _read_bytes(stream): + ms = IO.MemoryStream() + buf = Array.CreateInstance(System.Byte, 2048) + while True: + bytes = stream.Read(buf, 0, buf.Length) + if bytes == 0: + break + else: + ms.Write(buf, 0, bytes) + retval = ms.ToArray() + ms.Close() + return retval + def decompress(data): + bytes = _string_to_bytearr(data) + ms = IO.MemoryStream() + ms.Write(bytes, 0, bytes.Length) + ms.Position = 0 # fseek 0 + gz = IO.Compression.DeflateStream(ms, IO.Compression.CompressionMode.Decompress) + bytes = _read_bytes(gz) + retval = _bytearr_to_string(bytes) + gz.Close() + return retval + def compress(data): + bytes = _string_to_bytearr(data) + ms = IO.MemoryStream() + gz = IO.Compression.DeflateStream(ms, IO.Compression.CompressionMode.Compress, True) + gz.Write(bytes, 0, bytes.Length) + gz.Close() + ms.Position = 0 # fseek 0 + bytes = ms.ToArray() + retval = _bytearr_to_string(bytes) + ms.Close() + return retval + + +class FlateDecode(object): + def decode(data, decodeParms): + data = decompress(data) + predictor = 1 + if decodeParms: + predictor = decodeParms.get("/Predictor", 1) + # predictor 1 == no predictor + if predictor != 1: + columns = decodeParms["/Columns"] + # PNG prediction: + if predictor >= 10 and predictor <= 15: + output = StringIO() + # PNG prediction can vary from row to row + rowlength = columns + 1 + assert len(data) % rowlength == 0 + prev_rowdata = (0,) * rowlength + for row in xrange(len(data) / rowlength): + rowdata = [ord(x) for x in data[(row*rowlength):((row+1)*rowlength)]] + filterByte = rowdata[0] + if filterByte == 0: + pass + elif filterByte == 1: + for i in range(2, rowlength): + rowdata[i] = (rowdata[i] + rowdata[i-1]) % 256 + elif filterByte == 2: + for i in range(1, rowlength): + rowdata[i] = (rowdata[i] + prev_rowdata[i]) % 256 + else: + # unsupported PNG filter + raise PdfReadError("Unsupported PNG filter %r" % filterByte) + prev_rowdata = rowdata + output.write(''.join([chr(x) for x in rowdata[1:]])) + data = output.getvalue() + else: + # unsupported predictor + raise PdfReadError("Unsupported flatedecode predictor %r" % predictor) + return data + decode = staticmethod(decode) + + def encode(data): + return compress(data) + encode = staticmethod(encode) + +class ASCIIHexDecode(object): + def decode(data, decodeParms=None): + retval = "" + char = "" + x = 0 + while True: + c = data[x] + if c == ">": + break + elif c.isspace(): + x += 1 + continue + char += c + if len(char) == 2: + retval += chr(int(char, base=16)) + char = "" + x += 1 + assert char == "" + return retval + decode = staticmethod(decode) + +class ASCII85Decode(object): + def decode(data, decodeParms=None): + retval = "" + group = [] + x = 0 + hitEod = False + # remove all whitespace from data + data = [y for y in data if not (y in ' \n\r\t')] + while not hitEod: + c = data[x] + if len(retval) == 0 and c == "<" and data[x+1] == "~": + x += 2 + continue + #elif c.isspace(): + # x += 1 + # continue + elif c == 'z': + assert len(group) == 0 + retval += '\x00\x00\x00\x00' + continue + elif c == "~" and data[x+1] == ">": + if len(group) != 0: + # cannot have a final group of just 1 char + assert len(group) > 1 + cnt = len(group) - 1 + group += [ 85, 85, 85 ] + hitEod = cnt + else: + break + else: + c = ord(c) - 33 + assert c >= 0 and c < 85 + group += [ c ] + if len(group) >= 5: + b = group[0] * (85**4) + \ + group[1] * (85**3) + \ + group[2] * (85**2) + \ + group[3] * 85 + \ + group[4] + assert b < (2**32 - 1) + c4 = chr((b >> 0) % 256) + c3 = chr((b >> 8) % 256) + c2 = chr((b >> 16) % 256) + c1 = chr(b >> 24) + retval += (c1 + c2 + c3 + c4) + if hitEod: + retval = retval[:-4+hitEod] + group = [] + x += 1 + return retval + decode = staticmethod(decode) + +def decodeStreamData(stream): + from generic import NameObject + filters = stream.get("/Filter", ()) + if len(filters) and not isinstance(filters[0], NameObject): + # we have a single filter instance + filters = (filters,) + data = stream._data + for filterType in filters: + if filterType == "/FlateDecode": + data = FlateDecode.decode(data, stream.get("/DecodeParms")) + elif filterType == "/ASCIIHexDecode": + data = ASCIIHexDecode.decode(data) + elif filterType == "/ASCII85Decode": + data = ASCII85Decode.decode(data) + elif filterType == "/Crypt": + decodeParams = stream.get("/DecodeParams", {}) + if "/Name" not in decodeParams and "/Type" not in decodeParams: + pass + else: + raise NotImplementedError("/Crypt filter with /Name or /Type not supported yet") + else: + # unsupported filter + raise NotImplementedError("unsupported filter %s" % filterType) + return data + +if __name__ == "__main__": + assert "abc" == ASCIIHexDecode.decode('61\n626\n3>') + + ascii85Test = """ + <~9jqo^BlbD-BleB1DJ+*+F(f,q/0JhKFCj@.4Gp$d7F!,L7@<6@)/0JDEF@3BB/F*&OCAfu2/AKY + i(DIb:@FD,*)+C]U=@3BN#EcYf8ATD3s@q?d$AftVqCh[NqF-FD5W8ARlolDIa + l(DIduD.RTpAKYo'+CT/5+Cei#DII?(E,9)oF*2M7/c~> + """ + ascii85_originalText="Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure." + assert ASCII85Decode.decode(ascii85Test) == ascii85_originalText + diff --git a/bin/report/pyPdf/generic.py b/bin/report/pyPdf/generic.py index f216732a85d..aaf503180f8 100644 --- a/bin/report/pyPdf/generic.py +++ b/bin/report/pyPdf/generic.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # vim: sw=4:expandtab:foldmethod=marker # # Copyright (c) 2006, Mathieu Fenniak @@ -207,15 +206,18 @@ class FloatObject(decimal.Decimal, PdfObject): def __new__(cls, value="0", context=None): return decimal.Decimal.__new__(cls, str(value), context) def __repr__(self): - return str(self) + if self == self.to_integral(): + return str(self.quantize(decimal.Decimal(1))) + else: + # XXX: this adds useless extraneous zeros. + return "%.5f" % self def writeToStream(self, stream, encryption_key): - stream.write(str(self)) + stream.write(repr(self)) class NumberObject(int, PdfObject): def __init__(self, value): - int.__init__(self) - self = value + int.__init__(value) def writeToStream(self, stream, encryption_key): stream.write(repr(self)) @@ -301,7 +303,7 @@ def readStringFromStream(stream): elif tok == "t": tok = "\t" elif tok == "b": - tok == "\b" + tok = "\b" elif tok == "f": tok = "\f" elif tok == "(": @@ -311,7 +313,17 @@ def readStringFromStream(stream): elif tok == "\\": tok = "\\" elif tok.isdigit(): - tok += stream.read(2) + # "The number ddd may consist of one, two, or three + # octal digits; high-order overflow shall be ignored. + # Three octal digits shall be used, with leading zeros + # as needed, if the next character of the string is also + # a digit." (PDF reference 7.3.4.2, p 16) + for i in range(2): + ntok = stream.read(1) + if ntok.isdigit(): + tok += ntok + else: + break tok = chr(int(tok, base=8)) elif tok in "\n\r": # This case is hit when a backslash followed by a line @@ -405,8 +417,7 @@ class NameObject(str, PdfObject): delimiterCharacters = "(", ")", "<", ">", "[", "]", "{", "}", "/", "%" def __init__(self, data): - str.__init__(self) - self = data + str.__init__(data) def writeToStream(self, stream, encryption_key): stream.write(self) @@ -710,6 +721,12 @@ class RectangleObject(ArrayObject): def setUpperRight(self, value): self[2], self[3] = [self.ensureIsNumber(x) for x in value] + def getWidth(self): + return self.getUpperRight_x() - self.getLowerLeft_x() + + def getHeight(self): + return self.getUpperRight_y() - self.getLowerLeft_x() + lowerLeft = property(getLowerLeft, setLowerLeft, None, None) lowerRight = property(getLowerRight, setLowerRight, None, None) upperLeft = property(getUpperLeft, setUpperLeft, None, None) diff --git a/bin/report/pyPdf/pdf.py b/bin/report/pyPdf/pdf.py index 9bc56cf8b05..bf60d0157dc 100644 --- a/bin/report/pyPdf/pdf.py +++ b/bin/report/pyPdf/pdf.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# # vim: sw=4:expandtab:foldmethod=marker # # Copyright (c) 2006, Mathieu Fenniak @@ -39,7 +40,9 @@ It may be a solid base for future PDF file work in Python. __author__ = "Mathieu Fenniak" __author_email__ = "biziqe@mathieu.fenniak.net" +import math import struct +from sys import version_info try: from cStringIO import StringIO except ImportError: @@ -51,6 +54,14 @@ import warnings from generic import * from utils import readNonWhitespace, readUntilWhitespace, ConvertFunctionsToVirtualList +if version_info < ( 2, 4 ): + from sets import ImmutableSet as frozenset + +if version_info < ( 2, 5 ): + from md5 import md5 +else: + from hashlib import md5 + ## # This class supports writing PDF files out, given pages produced by another # class (typically {@link #PdfFileReader PdfFileReader}). @@ -92,6 +103,21 @@ class PdfFileWriter(object): raise ValueError("pdf must be self") return self._objects[ido.idnum - 1] + ## + # Common method for inserting or adding a page to this PDF file. + # + # @param page The page to add to the document. This argument should be + # an instance of {@link #PageObject PageObject}. + # @param action The function which will insert the page in the dictionnary. + # Takes: page list, page to add. + def _addPage(self, page, action): + assert page["/Type"] == "/Page" + page[NameObject("/Parent")] = self._pages + page = self._addObject(page) + pages = self.getObject(self._pages) + action(pages["/Kids"], page) + pages[NameObject("/Count")] = NumberObject(pages["/Count"] + 1) + ## # Adds a page to this PDF file. The page is usually acquired from a # {@link #PdfFileReader PdfFileReader} instance. @@ -101,12 +127,64 @@ class PdfFileWriter(object): # @param page The page to add to the document. This argument should be # an instance of {@link #PageObject PageObject}. def addPage(self, page): - assert page["/Type"] == "/Page" - page[NameObject("/Parent")] = self._pages - page = self._addObject(page) + self._addPage(page, list.append) + + ## + # Insert a page in this PDF file. The page is usually acquired from a + # {@link #PdfFileReader PdfFileReader} instance. + # + # @param page The page to add to the document. This argument should be + # an instance of {@link #PageObject PageObject}. + # @param index Position at which the page will be inserted. + def insertPage(self, page, index=0): + self._addPage(page, lambda l, p: l.insert(index, p)) + + ## + # Retrieves a page by number from this PDF file. + # @return Returns a {@link #PageObject PageObject} instance. + def getPage(self, pageNumber): pages = self.getObject(self._pages) - pages["/Kids"].append(page) - pages[NameObject("/Count")] = NumberObject(pages["/Count"] + 1) + # XXX: crude hack + return pages["/Kids"][pageNumber].getObject() + + ## + # Return the number of pages. + # @return The number of pages. + def getNumPages(self): + pages = self.getObject(self._pages) + return int(pages[NameObject("/Count")]) + + ## + # Append a blank page to this PDF file and returns it. If no page size + # is specified, use the size of the last page; throw + # PageSizeNotDefinedError if it doesn't exist. + # @param width The width of the new page expressed in default user + # space units. + # @param height The height of the new page expressed in default user + # space units. + def addBlankPage(self, width=None, height=None): + page = PageObject.createBlankPage(self, width, height) + self.addPage(page) + return page + + ## + # Insert a blank page to this PDF file and returns it. If no page size + # is specified, use the size of the page in the given index; throw + # PageSizeNotDefinedError if it doesn't exist. + # @param width The width of the new page expressed in default user + # space units. + # @param height The height of the new page expressed in default user + # space units. + # @param index Position to add the page. + def insertBlankPage(self, width=None, height=None, index=0): + if width is None or height is None and \ + (self.getNumPages() - 1) >= index: + oldpage = self.getPage(index) + width = oldpage.mediaBox.getWidth() + height = oldpage.mediaBox.getHeight() + page = PageObject.createBlankPage(self, width, height) + self.insertPage(page, index) + return page ## # Encrypt this PDF file with the PDF Standard encryption handler. @@ -119,7 +197,7 @@ class PdfFileWriter(object): # encryption. When false, 40bit encryption will be used. By default, this # flag is on. def encrypt(self, user_pwd, owner_pwd = None, use_128bit = True): - import md5, time, random + import time, random if owner_pwd == None: owner_pwd = user_pwd if use_128bit: @@ -133,8 +211,8 @@ class PdfFileWriter(object): # permit everything: P = -1 O = ByteStringObject(_alg33(owner_pwd, user_pwd, rev, keylen)) - ID_1 = md5.new(repr(time.time())).digest() - ID_2 = md5.new(repr(random.random())).digest() + ID_1 = md5(repr(time.time())).digest() + ID_2 = md5(repr(random.random())).digest() self._ID = ArrayObject((ByteStringObject(ID_1), ByteStringObject(ID_2))) if rev == 2: U, key = _alg34(user_pwd, O, P, ID_1) @@ -160,9 +238,28 @@ class PdfFileWriter(object): # @param stream An object to write the file to. The object must support # the write method, and the tell method, similar to a file object. def write(self, stream): - import struct, md5 + import struct externalReferenceMap = {} + + # PDF objects sometimes have circular references to their /Page objects + # inside their object tree (for example, annotations). Those will be + # indirect references to objects that we've recreated in this PDF. To + # address this problem, PageObject's store their original object + # reference number, and we add it to the external reference map before + # we sweep for indirect references. This forces self-page-referencing + # trees to reference the correct new object location, rather than + # copying in a new copy of the page object. + for objIndex in xrange(len(self._objects)): + obj = self._objects[objIndex] + if isinstance(obj, PageObject) and obj.indirectRef != None: + data = obj.indirectRef + if not externalReferenceMap.has_key(data.pdf): + externalReferenceMap[data.pdf] = {} + if not externalReferenceMap[data.pdf].has_key(data.generation): + externalReferenceMap[data.pdf][data.generation] = {} + externalReferenceMap[data.pdf][data.generation][data.idnum] = IndirectObject(objIndex + 1, 0, self) + self.stack = [] self._sweepIndirectReferences(externalReferenceMap, self._root) del self.stack @@ -181,7 +278,7 @@ class PdfFileWriter(object): pack2 = struct.pack(" 0: + lastpage = pdf.getPage(pdf.getNumPages() - 1) + width = lastpage.mediaBox.getWidth() + height = lastpage.mediaBox.getHeight() + else: + raise utils.PageSizeNotDefinedError() + page.__setitem__(NameObject('/MediaBox'), + RectangleObject([0, 0, width, height])) + + return page + createBlankPage = staticmethod(createBlankPage) ## # Rotates a page clockwise by increments of 90 degrees. @@ -931,7 +1066,7 @@ class PageObject(DictionaryObject): renameRes[key] = newname newRes[newname] = page2Res[key] elif not newRes.has_key(key): - newRes[key] = page2Res[key] + newRes[key] = page2Res.raw_get(key) return newRes, renameRes _mergeResources = staticmethod(_mergeResources) @@ -957,6 +1092,26 @@ class PageObject(DictionaryObject): return stream _pushPopGS = staticmethod(_pushPopGS) + def _addTransformationMatrix(contents, pdf, ctm): + # adds transformation matrix at the beginning of the given + # contents stream. + a, b, c, d, e, f = ctm + contents = ContentStream(contents, pdf) + contents.operations.insert(0, [[FloatObject(a), FloatObject(b), + FloatObject(c), FloatObject(d), FloatObject(e), + FloatObject(f)], " cm"]) + return contents + _addTransformationMatrix = staticmethod(_addTransformationMatrix) + + ## + # Returns the /Contents object, or None if it doesn't exist. + # /Contents is optionnal, as described in PDF Reference 7.7.3.3 + def getContents(self): + if self.has_key("/Contents"): + return self["/Contents"].getObject() + else: + return None + ## # Merges the content streams of two pages into one. Resource references # (i.e. fonts) are maintained from both pages. The mediabox/cropbox/etc @@ -968,7 +1123,23 @@ class PageObject(DictionaryObject): # @param page2 An instance of {@link #PageObject PageObject} to be merged # into this one. def mergePage(self, page2): + self._mergePage(page2) + ## + # Actually merges the content streams of two pages into one. Resource + # references (i.e. fonts) are maintained from both pages. The + # mediabox/cropbox/etc of this page are not altered. The parameter page's + # content stream will be added to the end of this page's content stream, + # meaning that it will be drawn after, or "on top" of this page. + # + # @param page2 An instance of {@link #PageObject PageObject} to be merged + # into this one. + # @param page2transformation A fuction which applies a transformation to + # the content stream of page2. Takes: page2 + # contents stream. Must return: new contents + # stream. If omitted, the content stream will + # not be modified. + def _mergePage(self, page2, page2transformation=None): # First we work on merging the resource dictionaries. This allows us # to find out what symbols in the content streams we might need to # rename. @@ -978,7 +1149,7 @@ class PageObject(DictionaryObject): originalResources = self["/Resources"].getObject() page2Resources = page2["/Resources"].getObject() - for res in "/ExtGState", "/Font", "/XObject", "/ColorSpace", "/Pattern", "/Shading": + for res in "/ExtGState", "/Font", "/XObject", "/ColorSpace", "/Pattern", "/Shading", "/Properties": new, newrename = PageObject._mergeResources(originalResources, page2Resources, res) if new: newResources[NameObject(res)] = new @@ -993,17 +1164,191 @@ class PageObject(DictionaryObject): newContentArray = ArrayObject() - originalContent = self["/Contents"].getObject() - newContentArray.append(PageObject._pushPopGS(originalContent, self.pdf)) + originalContent = self.getContents() + if originalContent is not None: + newContentArray.append(PageObject._pushPopGS( + originalContent, self.pdf)) - page2Content = page2['/Contents'].getObject() - page2Content = PageObject._contentStreamRename(page2Content, rename, self.pdf) - page2Content = PageObject._pushPopGS(page2Content, self.pdf) - newContentArray.append(page2Content) + page2Content = page2.getContents() + if page2Content is not None: + if page2transformation is not None: + page2Content = page2transformation(page2Content) + page2Content = PageObject._contentStreamRename( + page2Content, rename, self.pdf) + page2Content = PageObject._pushPopGS(page2Content, self.pdf) + newContentArray.append(page2Content) self[NameObject('/Contents')] = ContentStream(newContentArray, self.pdf) self[NameObject('/Resources')] = newResources + ## + # This is similar to mergePage, but a transformation matrix is + # applied to the merged stream. + # + # @param page2 An instance of {@link #PageObject PageObject} to be merged. + # @param ctm A 6 elements tuple containing the operands of the + # transformation matrix + def mergeTransformedPage(self, page2, ctm): + self._mergePage(page2, lambda page2Content: + PageObject._addTransformationMatrix(page2Content, page2.pdf, ctm)) + + ## + # This is similar to mergePage, but the stream to be merged is scaled + # by appling a transformation matrix. + # + # @param page2 An instance of {@link #PageObject PageObject} to be merged. + # @param factor The scaling factor + def mergeScaledPage(self, page2, factor): + # CTM to scale : [ sx 0 0 sy 0 0 ] + return self.mergeTransformedPage(page2, [factor, 0, + 0, factor, + 0, 0]) + + ## + # This is similar to mergePage, but the stream to be merged is rotated + # by appling a transformation matrix. + # + # @param page2 An instance of {@link #PageObject PageObject} to be merged. + # @param rotation The angle of the rotation, in degrees + def mergeRotatedPage(self, page2, rotation): + rotation = math.radians(rotation) + return self.mergeTransformedPage(page2, + [math.cos(rotation), math.sin(rotation), + -math.sin(rotation), math.cos(rotation), + 0, 0]) + + ## + # This is similar to mergePage, but the stream to be merged is translated + # by appling a transformation matrix. + # + # @param page2 An instance of {@link #PageObject PageObject} to be merged. + # @param tx The translation on X axis + # @param tx The translation on Y axis + def mergeTranslatedPage(self, page2, tx, ty): + return self.mergeTransformedPage(page2, [1, 0, + 0, 1, + tx, ty]) + + ## + # This is similar to mergePage, but the stream to be merged is rotated + # and scaled by appling a transformation matrix. + # + # @param page2 An instance of {@link #PageObject PageObject} to be merged. + # @param rotation The angle of the rotation, in degrees + # @param factor The scaling factor + def mergeRotatedScaledPage(self, page2, rotation, scale): + rotation = math.radians(rotation) + rotating = [[math.cos(rotation), math.sin(rotation),0], + [-math.sin(rotation),math.cos(rotation), 0], + [0, 0, 1]] + scaling = [[scale,0, 0], + [0, scale,0], + [0, 0, 1]] + ctm = utils.matrixMultiply(rotating, scaling) + + return self.mergeTransformedPage(page2, + [ctm[0][0], ctm[0][1], + ctm[1][0], ctm[1][1], + ctm[2][0], ctm[2][1]]) + + ## + # This is similar to mergePage, but the stream to be merged is translated + # and scaled by appling a transformation matrix. + # + # @param page2 An instance of {@link #PageObject PageObject} to be merged. + # @param scale The scaling factor + # @param tx The translation on X axis + # @param tx The translation on Y axis + def mergeScaledTranslatedPage(self, page2, scale, tx, ty): + translation = [[1, 0, 0], + [0, 1, 0], + [tx,ty,1]] + scaling = [[scale,0, 0], + [0, scale,0], + [0, 0, 1]] + ctm = utils.matrixMultiply(scaling, translation) + + return self.mergeTransformedPage(page2, [ctm[0][0], ctm[0][1], + ctm[1][0], ctm[1][1], + ctm[2][0], ctm[2][1]]) + + ## + # This is similar to mergePage, but the stream to be merged is translated, + # rotated and scaled by appling a transformation matrix. + # + # @param page2 An instance of {@link #PageObject PageObject} to be merged. + # @param tx The translation on X axis + # @param ty The translation on Y axis + # @param rotation The angle of the rotation, in degrees + # @param scale The scaling factor + def mergeRotatedScaledTranslatedPage(self, page2, rotation, scale, tx, ty): + translation = [[1, 0, 0], + [0, 1, 0], + [tx,ty,1]] + rotation = math.radians(rotation) + rotating = [[math.cos(rotation), math.sin(rotation),0], + [-math.sin(rotation),math.cos(rotation), 0], + [0, 0, 1]] + scaling = [[scale,0, 0], + [0, scale,0], + [0, 0, 1]] + ctm = utils.matrixMultiply(rotating, scaling) + ctm = utils.matrixMultiply(ctm, translation) + + return self.mergeTransformedPage(page2, [ctm[0][0], ctm[0][1], + ctm[1][0], ctm[1][1], + ctm[2][0], ctm[2][1]]) + + ## + # Applys a transformation matrix the page. + # + # @param ctm A 6 elements tuple containing the operands of the + # transformation matrix + def addTransformation(self, ctm): + originalContent = self.getContents() + if originalContent is not None: + newContent = PageObject._addTransformationMatrix( + originalContent, self.pdf, ctm) + newContent = PageObject._pushPopGS(newContent, self.pdf) + self[NameObject('/Contents')] = newContent + + ## + # Scales a page by the given factors by appling a transformation + # matrix to its content and updating the page size. + # + # @param sx The scaling factor on horizontal axis + # @param sy The scaling factor on vertical axis + def scale(self, sx, sy): + self.addTransformation([sx, 0, + 0, sy, + 0, 0]) + self.mediaBox = RectangleObject([ + float(self.mediaBox.getLowerLeft_x()) * sx, + float(self.mediaBox.getLowerLeft_y()) * sy, + float(self.mediaBox.getUpperRight_x()) * sx, + float(self.mediaBox.getUpperRight_y()) * sy]) + + ## + # Scales a page by the given factor by appling a transformation + # matrix to its content and updating the page size. + # + # @param factor The scaling factor + def scaleBy(self, factor): + self.scale(factor, factor) + + ## + # Scales a page to the specified dimentions by appling a + # transformation matrix to its content and updating the page size. + # + # @param width The new width + # @param height The new heigth + def scaleTo(self, width, height): + sx = width / (self.mediaBox.getUpperRight_x() - + self.mediaBox.getLowerLeft_x ()) + sy = height / (self.mediaBox.getUpperRight_y() - + self.mediaBox.getLowerLeft_x ()) + self.scale(sx, sy) + ## # Compresses the size of this page by joining all content streams and # applying a FlateDecode filter. @@ -1012,10 +1357,11 @@ class PageObject(DictionaryObject): # However, it is possible that this function will perform no action if # content stream compression becomes "automatic" for some reason. def compressContentStreams(self): - content = self["/Contents"].getObject() - if not isinstance(content, ContentStream): - content = ContentStream(content, self.pdf) - self[NameObject("/Contents")] = content.flateEncode() + content = self.getContents() + if content is not None: + if not isinstance(content, ContentStream): + content = ContentStream(content, self.pdf) + self[NameObject("/Contents")] = content.flateEncode() ## # Locate all text drawing commands, in the order they are provided in the @@ -1369,8 +1715,8 @@ def _alg32(password, rev, keylen, owner_entry, p_entry, id1_entry, metadata_encr password = (password + _encryption_padding)[:32] # 2. Initialize the MD5 hash function and pass the result of step 1 as # input to this function. - import md5, struct - m = md5.new(password) + import struct + m = md5(password) # 3. Pass the value of the encryption dictionary's /O entry to the MD5 hash # function. m.update(owner_entry) @@ -1394,7 +1740,7 @@ def _alg32(password, rev, keylen, owner_entry, p_entry, id1_entry, metadata_encr # /Length entry. if rev >= 3: for i in range(50): - md5_hash = md5.new(md5_hash[:keylen]).digest() + md5_hash = md5(md5_hash[:keylen]).digest() # 9. Set the encryption key to the first n bytes of the output from the # final MD5 hash, where n is always 5 for revision 2 but, for revision 3 or # greater, depends on the value of the encryption dictionary's /Length @@ -1436,14 +1782,13 @@ def _alg33_1(password, rev, keylen): password = (password + _encryption_padding)[:32] # 2. Initialize the MD5 hash function and pass the result of step 1 as # input to this function. - import md5 - m = md5.new(password) + m = md5(password) # 3. (Revision 3 or greater) Do the following 50 times: Take the output # from the previous MD5 hash and pass it as input into a new MD5 hash. md5_hash = m.digest() if rev >= 3: for i in range(50): - md5_hash = md5.new(md5_hash).digest() + md5_hash = md5(md5_hash).digest() # 4. Create an RC4 encryption key using the first n bytes of the output # from the final MD5 hash, where n is always 5 for revision 2 but, for # revision 3 or greater, depends on the value of the encryption @@ -1473,8 +1818,7 @@ def _alg35(password, rev, keylen, owner_entry, p_entry, id1_entry, metadata_encr key = _alg32(password, rev, keylen, owner_entry, p_entry, id1_entry) # 2. Initialize the MD5 hash function and pass the 32-byte padding string # shown in step 1 of Algorithm 3.2 as input to this function. - import md5 - m = md5.new() + m = md5() m.update(_encryption_padding) # 3. Pass the first element of the file's file identifier array (the value # of the ID entry in the document's trailer dictionary; see Table 3.13 on diff --git a/bin/report/pyPdf/utils.py b/bin/report/pyPdf/utils.py index 2a778dd0c05..7c1d472d0b7 100644 --- a/bin/report/pyPdf/utils.py +++ b/bin/report/pyPdf/utils.py @@ -1,111 +1,122 @@ -# -*- coding: utf-8 -*- -# vim: sw=4:expandtab:foldmethod=marker -# -# Copyright (c) 2006, Mathieu Fenniak -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# * The name of the author may not be used to endorse or promote products -# derived from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - - -""" -Utility functions for PDF library. -""" -__author__ = "Mathieu Fenniak" -__author_email__ = "biziqe@mathieu.fenniak.net" - -#ENABLE_PSYCO = False -#if ENABLE_PSYCO: -# try: -# import psyco -# except ImportError: -# ENABLE_PSYCO = False -# -#if not ENABLE_PSYCO: -# class psyco: -# def proxy(func): -# return func -# proxy = staticmethod(proxy) - -def readUntilWhitespace(stream, maxchars=None): - txt = "" - while True: - tok = stream.read(1) - if tok.isspace() or not tok: - break - txt += tok - if len(txt) == maxchars: - break - return txt - -def readNonWhitespace(stream): - tok = ' ' - while tok == '\n' or tok == '\r' or tok == ' ' or tok == '\t': - tok = stream.read(1) - return tok - -class ConvertFunctionsToVirtualList(object): - def __init__(self, lengthFunction, getFunction): - self.lengthFunction = lengthFunction - self.getFunction = getFunction - - def __len__(self): - return self.lengthFunction() - - def __getitem__(self, index): - if not isinstance(index, int): - raise TypeError, "sequence indices must be integers" - len_self = len(self) - if index < 0: - # support negative indexes - index = len_self + index - if index < 0 or index >= len_self: - raise IndexError, "sequence index out of range" - return self.getFunction(index) - -def RC4_encrypt(key, plaintext): - S = [i for i in range(256)] - j = 0 - for i in range(256): - j = (j + S[i] + ord(key[i % len(key)])) % 256 - S[i], S[j] = S[j], S[i] - i, j = 0, 0 - retval = "" - for x in range(len(plaintext)): - i = (i + 1) % 256 - j = (j + S[i]) % 256 - S[i], S[j] = S[j], S[i] - t = S[(S[i] + S[j]) % 256] - retval += chr(ord(plaintext[x]) ^ t) - return retval - -class PdfReadError(Exception): - pass - -if __name__ == "__main__": - # test RC4 - out = RC4_encrypt("Key", "Plaintext") - print repr(out) - pt = RC4_encrypt("Key", out) - print repr(pt) +# vim: sw=4:expandtab:foldmethod=marker +# +# Copyright (c) 2006, Mathieu Fenniak +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# * The name of the author may not be used to endorse or promote products +# derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + + +""" +Utility functions for PDF library. +""" +__author__ = "Mathieu Fenniak" +__author_email__ = "biziqe@mathieu.fenniak.net" + +#ENABLE_PSYCO = False +#if ENABLE_PSYCO: +# try: +# import psyco +# except ImportError: +# ENABLE_PSYCO = False +# +#if not ENABLE_PSYCO: +# class psyco: +# def proxy(func): +# return func +# proxy = staticmethod(proxy) + +def readUntilWhitespace(stream, maxchars=None): + txt = "" + while True: + tok = stream.read(1) + if tok.isspace() or not tok: + break + txt += tok + if len(txt) == maxchars: + break + return txt + +def readNonWhitespace(stream): + tok = ' ' + while tok == '\n' or tok == '\r' or tok == ' ' or tok == '\t': + tok = stream.read(1) + return tok + +class ConvertFunctionsToVirtualList(object): + def __init__(self, lengthFunction, getFunction): + self.lengthFunction = lengthFunction + self.getFunction = getFunction + + def __len__(self): + return self.lengthFunction() + + def __getitem__(self, index): + if not isinstance(index, int): + raise TypeError, "sequence indices must be integers" + len_self = len(self) + if index < 0: + # support negative indexes + index = len_self + index + if index < 0 or index >= len_self: + raise IndexError, "sequence index out of range" + return self.getFunction(index) + +def RC4_encrypt(key, plaintext): + S = [i for i in range(256)] + j = 0 + for i in range(256): + j = (j + S[i] + ord(key[i % len(key)])) % 256 + S[i], S[j] = S[j], S[i] + i, j = 0, 0 + retval = "" + for x in range(len(plaintext)): + i = (i + 1) % 256 + j = (j + S[i]) % 256 + S[i], S[j] = S[j], S[i] + t = S[(S[i] + S[j]) % 256] + retval += chr(ord(plaintext[x]) ^ t) + return retval + +def matrixMultiply(a, b): + return [[sum([float(i)*float(j) + for i, j in zip(row, col)] + ) for col in zip(*b)] + for row in a] + +class PyPdfError(Exception): + pass + +class PdfReadError(PyPdfError): + pass + +class PageSizeNotDefinedError(PyPdfError): + pass + +if __name__ == "__main__": + # test RC4 + out = RC4_encrypt("Key", "Plaintext") + print repr(out) + pt = RC4_encrypt("Key", out) + print repr(pt) diff --git a/bin/report/pyPdf/xmp.py b/bin/report/pyPdf/xmp.py index 5018b7825ed..b070df9093e 100644 --- a/bin/report/pyPdf/xmp.py +++ b/bin/report/pyPdf/xmp.py @@ -1,356 +1,355 @@ -# -*- coding: utf-8 -*- -import re -import datetime -import decimal -from generic import PdfObject -from xml.dom import getDOMImplementation -from xml.dom.minidom import parseString - -RDF_NAMESPACE = "http://www.w3.org/1999/02/22-rdf-syntax-ns#" -DC_NAMESPACE = "http://purl.org/dc/elements/1.1/" -XMP_NAMESPACE = "http://ns.adobe.com/xap/1.0/" -PDF_NAMESPACE = "http://ns.adobe.com/pdf/1.3/" -XMPMM_NAMESPACE = "http://ns.adobe.com/xap/1.0/mm/" - -# What is the PDFX namespace, you might ask? I might ask that too. It's -# a completely undocumented namespace used to place "custom metadata" -# properties, which are arbitrary metadata properties with no semantic or -# documented meaning. Elements in the namespace are key/value-style storage, -# where the element name is the key and the content is the value. The keys -# are transformed into valid XML identifiers by substituting an invalid -# identifier character with \u2182 followed by the unicode hex ID of the -# original character. A key like "my car" is therefore "my\u21820020car". -# -# \u2182, in case you're wondering, is the unicode character -# \u{ROMAN NUMERAL TEN THOUSAND}, a straightforward and obvious choice for -# escaping characters. -# -# Intentional users of the pdfx namespace should be shot on sight. A -# custom data schema and sensical XML elements could be used instead, as is -# suggested by Adobe's own documentation on XMP (under "Extensibility of -# Schemas"). -# -# Information presented here on the /pdfx/ schema is a result of limited -# reverse engineering, and does not constitute a full specification. -PDFX_NAMESPACE = "http://ns.adobe.com/pdfx/1.3/" - -iso8601 = re.compile(""" - (?P[0-9]{4}) - (- - (?P[0-9]{2}) - (- - (?P[0-9]+) - (T - (?P[0-9]{2}): - (?P[0-9]{2}) - (:(?P[0-9]{2}(.[0-9]+)?))? - (?PZ|[-+][0-9]{2}:[0-9]{2}) - )? - )? - )? - """, re.VERBOSE) - -## -# An object that represents Adobe XMP metadata. -class XmpInformation(PdfObject): - - def __init__(self, stream): - self.stream = stream - docRoot = parseString(self.stream.getData()) - self.rdfRoot = docRoot.getElementsByTagNameNS(RDF_NAMESPACE, "RDF")[0] - self.cache = {} - - def writeToStream(self, stream, encryption_key): - self.stream.writeToStream(stream, encryption_key) - - def getElement(self, aboutUri, namespace, name): - for desc in self.rdfRoot.getElementsByTagNameNS(RDF_NAMESPACE, "Description"): - if desc.getAttributeNS(RDF_NAMESPACE, "about") == aboutUri: - attr = desc.getAttributeNodeNS(namespace, name) - if attr != None: - yield attr - for element in desc.getElementsByTagNameNS(namespace, name): - yield element - - def getNodesInNamespace(self, aboutUri, namespace): - for desc in self.rdfRoot.getElementsByTagNameNS(RDF_NAMESPACE, "Description"): - if desc.getAttributeNS(RDF_NAMESPACE, "about") == aboutUri: - for i in range(desc.attributes.length): - attr = desc.attributes.item(i) - if attr.namespaceURI == namespace: - yield attr - for child in desc.childNodes: - if child.namespaceURI == namespace: - yield child - - def _getText(self, element): - text = "" - for child in element.childNodes: - if child.nodeType == child.TEXT_NODE: - text += child.data - return text - - def _converter_string(value): - return value - - def _converter_date(value): - m = iso8601.match(value) - year = int(m.group("year")) - month = int(m.group("month") or "1") - day = int(m.group("day") or "1") - hour = int(m.group("hour") or "0") - minute = int(m.group("minute") or "0") - second = decimal.Decimal(m.group("second") or "0") - seconds = second.to_integral(decimal.ROUND_FLOOR) - milliseconds = (second - seconds) * 1000000 - tzd = m.group("tzd") or "Z" - dt = datetime.datetime(year, month, day, hour, minute, seconds, milliseconds) - if tzd != "Z": - tzd_hours, tzd_minutes = [int(x) for x in tzd.split(":")] - tzd_hours *= -1 - if tzd_hours < 0: - tzd_minutes *= -1 - dt = dt + datetime.timedelta(hours=tzd_hours, minutes=tzd_minutes) - return dt - _test_converter_date = staticmethod(_converter_date) - - def _getter_bag(namespace, name, converter): - def get(self): - cached = self.cache.get(namespace, {}).get(name) - if cached: - return cached - retval = [] - for element in self.getElement("", namespace, name): - bags = element.getElementsByTagNameNS(RDF_NAMESPACE, "Bag") - if len(bags): - for bag in bags: - for item in bag.getElementsByTagNameNS(RDF_NAMESPACE, "li"): - value = self._getText(item) - value = converter(value) - retval.append(value) - ns_cache = self.cache.setdefault(namespace, {}) - ns_cache[name] = retval - return retval - return get - - def _getter_seq(namespace, name, converter): - def get(self): - cached = self.cache.get(namespace, {}).get(name) - if cached: - return cached - retval = [] - for element in self.getElement("", namespace, name): - seqs = element.getElementsByTagNameNS(RDF_NAMESPACE, "Seq") - if len(seqs): - for seq in seqs: - for item in seq.getElementsByTagNameNS(RDF_NAMESPACE, "li"): - value = self._getText(item) - value = converter(value) - retval.append(value) - else: - value = converter(self._getText(element)) - retval.append(value) - ns_cache = self.cache.setdefault(namespace, {}) - ns_cache[name] = retval - return retval - return get - - def _getter_langalt(namespace, name, converter): - def get(self): - cached = self.cache.get(namespace, {}).get(name) - if cached: - return cached - retval = {} - for element in self.getElement("", namespace, name): - alts = element.getElementsByTagNameNS(RDF_NAMESPACE, "Alt") - if len(alts): - for alt in alts: - for item in alt.getElementsByTagNameNS(RDF_NAMESPACE, "li"): - value = self._getText(item) - value = converter(value) - retval[item.getAttribute("xml:lang")] = value - else: - retval["x-default"] = converter(self._getText(element)) - ns_cache = self.cache.setdefault(namespace, {}) - ns_cache[name] = retval - return retval - return get - - def _getter_single(namespace, name, converter): - def get(self): - cached = self.cache.get(namespace, {}).get(name) - if cached: - return cached - value = None - for element in self.getElement("", namespace, name): - if element.nodeType == element.ATTRIBUTE_NODE: - value = element.nodeValue - else: - value = self._getText(element) - break - if value != None: - value = converter(value) - ns_cache = self.cache.setdefault(namespace, {}) - ns_cache[name] = value - return value - return get - - ## - # Contributors to the resource (other than the authors). An unsorted - # array of names. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_contributor = property(_getter_bag(DC_NAMESPACE, "contributor", _converter_string)) - - ## - # Text describing the extent or scope of the resource. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_coverage = property(_getter_single(DC_NAMESPACE, "coverage", _converter_string)) - - ## - # A sorted array of names of the authors of the resource, listed in order - # of precedence. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_creator = property(_getter_seq(DC_NAMESPACE, "creator", _converter_string)) - - ## - # A sorted array of dates (datetime.datetime instances) of signifigance to - # the resource. The dates and times are in UTC. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_date = property(_getter_seq(DC_NAMESPACE, "date", _converter_date)) - - ## - # A language-keyed dictionary of textual descriptions of the content of the - # resource. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_description = property(_getter_langalt(DC_NAMESPACE, "description", _converter_string)) - - ## - # The mime-type of the resource. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_format = property(_getter_single(DC_NAMESPACE, "format", _converter_string)) - - ## - # Unique identifier of the resource. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_identifier = property(_getter_single(DC_NAMESPACE, "identifier", _converter_string)) - - ## - # An unordered array specifying the languages used in the resource. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_language = property(_getter_bag(DC_NAMESPACE, "language", _converter_string)) - - ## - # An unordered array of publisher names. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_publisher = property(_getter_bag(DC_NAMESPACE, "publisher", _converter_string)) - - ## - # An unordered array of text descriptions of relationships to other - # documents. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_relation = property(_getter_bag(DC_NAMESPACE, "relation", _converter_string)) - - ## - # A language-keyed dictionary of textual descriptions of the rights the - # user has to this resource. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_rights = property(_getter_langalt(DC_NAMESPACE, "rights", _converter_string)) - - ## - # Unique identifier of the work from which this resource was derived. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_source = property(_getter_single(DC_NAMESPACE, "source", _converter_string)) - - ## - # An unordered array of descriptive phrases or keywrods that specify the - # topic of the content of the resource. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_subject = property(_getter_bag(DC_NAMESPACE, "subject", _converter_string)) - - ## - # A language-keyed dictionary of the title of the resource. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_title = property(_getter_langalt(DC_NAMESPACE, "title", _converter_string)) - - ## - # An unordered array of textual descriptions of the document type. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - dc_type = property(_getter_bag(DC_NAMESPACE, "type", _converter_string)) - - ## - # An unformatted text string representing document keywords. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - pdf_keywords = property(_getter_single(PDF_NAMESPACE, "Keywords", _converter_string)) - - ## - # The PDF file version, for example 1.0, 1.3. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - pdf_pdfversion = property(_getter_single(PDF_NAMESPACE, "PDFVersion", _converter_string)) - - ## - # The name of the tool that created the PDF document. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - pdf_producer = property(_getter_single(PDF_NAMESPACE, "Producer", _converter_string)) - - ## - # The date and time the resource was originally created. The date and - # time are returned as a UTC datetime.datetime object. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - xmp_createDate = property(_getter_single(XMP_NAMESPACE, "CreateDate", _converter_date)) - - ## - # The date and time the resource was last modified. The date and time - # are returned as a UTC datetime.datetime object. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - xmp_modifyDate = property(_getter_single(XMP_NAMESPACE, "ModifyDate", _converter_date)) - - ## - # The date and time that any metadata for this resource was last - # changed. The date and time are returned as a UTC datetime.datetime - # object. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - xmp_metadataDate = property(_getter_single(XMP_NAMESPACE, "MetadataDate", _converter_date)) - - ## - # The name of the first known tool used to create the resource. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - xmp_creatorTool = property(_getter_single(XMP_NAMESPACE, "CreatorTool", _converter_string)) - - ## - # The common identifier for all versions and renditions of this resource. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - xmpmm_documentId = property(_getter_single(XMPMM_NAMESPACE, "DocumentID", _converter_string)) - - ## - # An identifier for a specific incarnation of a document, updated each - # time a file is saved. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - xmpmm_instanceId = property(_getter_single(XMPMM_NAMESPACE, "InstanceID", _converter_string)) - - def custom_properties(self): - if not hasattr(self, "_custom_properties"): - self._custom_properties = {} - for node in self.getNodesInNamespace("", PDFX_NAMESPACE): - key = node.localName - while True: - # see documentation about PDFX_NAMESPACE earlier in file - idx = key.find(u"\u2182") - if idx == -1: - break - key = key[:idx] + chr(int(key[idx+1:idx+5], base=16)) + key[idx+5:] - if node.nodeType == node.ATTRIBUTE_NODE: - value = node.nodeValue - else: - value = self._getText(node) - self._custom_properties[key] = value - return self._custom_properties - - ## - # Retrieves custom metadata properties defined in the undocumented pdfx - # metadata schema. - #

Stability: Added in v1.12, will exist for all future v1.x releases. - # @return Returns a dictionary of key/value items for custom metadata - # properties. - custom_properties = property(custom_properties) - - +import re +import datetime +import decimal +from generic import PdfObject +from xml.dom import getDOMImplementation +from xml.dom.minidom import parseString + +RDF_NAMESPACE = "http://www.w3.org/1999/02/22-rdf-syntax-ns#" +DC_NAMESPACE = "http://purl.org/dc/elements/1.1/" +XMP_NAMESPACE = "http://ns.adobe.com/xap/1.0/" +PDF_NAMESPACE = "http://ns.adobe.com/pdf/1.3/" +XMPMM_NAMESPACE = "http://ns.adobe.com/xap/1.0/mm/" + +# What is the PDFX namespace, you might ask? I might ask that too. It's +# a completely undocumented namespace used to place "custom metadata" +# properties, which are arbitrary metadata properties with no semantic or +# documented meaning. Elements in the namespace are key/value-style storage, +# where the element name is the key and the content is the value. The keys +# are transformed into valid XML identifiers by substituting an invalid +# identifier character with \u2182 followed by the unicode hex ID of the +# original character. A key like "my car" is therefore "my\u21820020car". +# +# \u2182, in case you're wondering, is the unicode character +# \u{ROMAN NUMERAL TEN THOUSAND}, a straightforward and obvious choice for +# escaping characters. +# +# Intentional users of the pdfx namespace should be shot on sight. A +# custom data schema and sensical XML elements could be used instead, as is +# suggested by Adobe's own documentation on XMP (under "Extensibility of +# Schemas"). +# +# Information presented here on the /pdfx/ schema is a result of limited +# reverse engineering, and does not constitute a full specification. +PDFX_NAMESPACE = "http://ns.adobe.com/pdfx/1.3/" + +iso8601 = re.compile(""" + (?P[0-9]{4}) + (- + (?P[0-9]{2}) + (- + (?P[0-9]+) + (T + (?P[0-9]{2}): + (?P[0-9]{2}) + (:(?P[0-9]{2}(.[0-9]+)?))? + (?PZ|[-+][0-9]{2}:[0-9]{2}) + )? + )? + )? + """, re.VERBOSE) + +## +# An object that represents Adobe XMP metadata. +class XmpInformation(PdfObject): + + def __init__(self, stream): + self.stream = stream + docRoot = parseString(self.stream.getData()) + self.rdfRoot = docRoot.getElementsByTagNameNS(RDF_NAMESPACE, "RDF")[0] + self.cache = {} + + def writeToStream(self, stream, encryption_key): + self.stream.writeToStream(stream, encryption_key) + + def getElement(self, aboutUri, namespace, name): + for desc in self.rdfRoot.getElementsByTagNameNS(RDF_NAMESPACE, "Description"): + if desc.getAttributeNS(RDF_NAMESPACE, "about") == aboutUri: + attr = desc.getAttributeNodeNS(namespace, name) + if attr != None: + yield attr + for element in desc.getElementsByTagNameNS(namespace, name): + yield element + + def getNodesInNamespace(self, aboutUri, namespace): + for desc in self.rdfRoot.getElementsByTagNameNS(RDF_NAMESPACE, "Description"): + if desc.getAttributeNS(RDF_NAMESPACE, "about") == aboutUri: + for i in range(desc.attributes.length): + attr = desc.attributes.item(i) + if attr.namespaceURI == namespace: + yield attr + for child in desc.childNodes: + if child.namespaceURI == namespace: + yield child + + def _getText(self, element): + text = "" + for child in element.childNodes: + if child.nodeType == child.TEXT_NODE: + text += child.data + return text + + def _converter_string(value): + return value + + def _converter_date(value): + m = iso8601.match(value) + year = int(m.group("year")) + month = int(m.group("month") or "1") + day = int(m.group("day") or "1") + hour = int(m.group("hour") or "0") + minute = int(m.group("minute") or "0") + second = decimal.Decimal(m.group("second") or "0") + seconds = second.to_integral(decimal.ROUND_FLOOR) + milliseconds = (second - seconds) * 1000000 + tzd = m.group("tzd") or "Z" + dt = datetime.datetime(year, month, day, hour, minute, seconds, milliseconds) + if tzd != "Z": + tzd_hours, tzd_minutes = [int(x) for x in tzd.split(":")] + tzd_hours *= -1 + if tzd_hours < 0: + tzd_minutes *= -1 + dt = dt + datetime.timedelta(hours=tzd_hours, minutes=tzd_minutes) + return dt + _test_converter_date = staticmethod(_converter_date) + + def _getter_bag(namespace, name, converter): + def get(self): + cached = self.cache.get(namespace, {}).get(name) + if cached: + return cached + retval = [] + for element in self.getElement("", namespace, name): + bags = element.getElementsByTagNameNS(RDF_NAMESPACE, "Bag") + if len(bags): + for bag in bags: + for item in bag.getElementsByTagNameNS(RDF_NAMESPACE, "li"): + value = self._getText(item) + value = converter(value) + retval.append(value) + ns_cache = self.cache.setdefault(namespace, {}) + ns_cache[name] = retval + return retval + return get + + def _getter_seq(namespace, name, converter): + def get(self): + cached = self.cache.get(namespace, {}).get(name) + if cached: + return cached + retval = [] + for element in self.getElement("", namespace, name): + seqs = element.getElementsByTagNameNS(RDF_NAMESPACE, "Seq") + if len(seqs): + for seq in seqs: + for item in seq.getElementsByTagNameNS(RDF_NAMESPACE, "li"): + value = self._getText(item) + value = converter(value) + retval.append(value) + else: + value = converter(self._getText(element)) + retval.append(value) + ns_cache = self.cache.setdefault(namespace, {}) + ns_cache[name] = retval + return retval + return get + + def _getter_langalt(namespace, name, converter): + def get(self): + cached = self.cache.get(namespace, {}).get(name) + if cached: + return cached + retval = {} + for element in self.getElement("", namespace, name): + alts = element.getElementsByTagNameNS(RDF_NAMESPACE, "Alt") + if len(alts): + for alt in alts: + for item in alt.getElementsByTagNameNS(RDF_NAMESPACE, "li"): + value = self._getText(item) + value = converter(value) + retval[item.getAttribute("xml:lang")] = value + else: + retval["x-default"] = converter(self._getText(element)) + ns_cache = self.cache.setdefault(namespace, {}) + ns_cache[name] = retval + return retval + return get + + def _getter_single(namespace, name, converter): + def get(self): + cached = self.cache.get(namespace, {}).get(name) + if cached: + return cached + value = None + for element in self.getElement("", namespace, name): + if element.nodeType == element.ATTRIBUTE_NODE: + value = element.nodeValue + else: + value = self._getText(element) + break + if value != None: + value = converter(value) + ns_cache = self.cache.setdefault(namespace, {}) + ns_cache[name] = value + return value + return get + + ## + # Contributors to the resource (other than the authors). An unsorted + # array of names. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_contributor = property(_getter_bag(DC_NAMESPACE, "contributor", _converter_string)) + + ## + # Text describing the extent or scope of the resource. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_coverage = property(_getter_single(DC_NAMESPACE, "coverage", _converter_string)) + + ## + # A sorted array of names of the authors of the resource, listed in order + # of precedence. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_creator = property(_getter_seq(DC_NAMESPACE, "creator", _converter_string)) + + ## + # A sorted array of dates (datetime.datetime instances) of signifigance to + # the resource. The dates and times are in UTC. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_date = property(_getter_seq(DC_NAMESPACE, "date", _converter_date)) + + ## + # A language-keyed dictionary of textual descriptions of the content of the + # resource. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_description = property(_getter_langalt(DC_NAMESPACE, "description", _converter_string)) + + ## + # The mime-type of the resource. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_format = property(_getter_single(DC_NAMESPACE, "format", _converter_string)) + + ## + # Unique identifier of the resource. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_identifier = property(_getter_single(DC_NAMESPACE, "identifier", _converter_string)) + + ## + # An unordered array specifying the languages used in the resource. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_language = property(_getter_bag(DC_NAMESPACE, "language", _converter_string)) + + ## + # An unordered array of publisher names. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_publisher = property(_getter_bag(DC_NAMESPACE, "publisher", _converter_string)) + + ## + # An unordered array of text descriptions of relationships to other + # documents. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_relation = property(_getter_bag(DC_NAMESPACE, "relation", _converter_string)) + + ## + # A language-keyed dictionary of textual descriptions of the rights the + # user has to this resource. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_rights = property(_getter_langalt(DC_NAMESPACE, "rights", _converter_string)) + + ## + # Unique identifier of the work from which this resource was derived. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_source = property(_getter_single(DC_NAMESPACE, "source", _converter_string)) + + ## + # An unordered array of descriptive phrases or keywrods that specify the + # topic of the content of the resource. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_subject = property(_getter_bag(DC_NAMESPACE, "subject", _converter_string)) + + ## + # A language-keyed dictionary of the title of the resource. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_title = property(_getter_langalt(DC_NAMESPACE, "title", _converter_string)) + + ## + # An unordered array of textual descriptions of the document type. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + dc_type = property(_getter_bag(DC_NAMESPACE, "type", _converter_string)) + + ## + # An unformatted text string representing document keywords. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + pdf_keywords = property(_getter_single(PDF_NAMESPACE, "Keywords", _converter_string)) + + ## + # The PDF file version, for example 1.0, 1.3. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + pdf_pdfversion = property(_getter_single(PDF_NAMESPACE, "PDFVersion", _converter_string)) + + ## + # The name of the tool that created the PDF document. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + pdf_producer = property(_getter_single(PDF_NAMESPACE, "Producer", _converter_string)) + + ## + # The date and time the resource was originally created. The date and + # time are returned as a UTC datetime.datetime object. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + xmp_createDate = property(_getter_single(XMP_NAMESPACE, "CreateDate", _converter_date)) + + ## + # The date and time the resource was last modified. The date and time + # are returned as a UTC datetime.datetime object. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + xmp_modifyDate = property(_getter_single(XMP_NAMESPACE, "ModifyDate", _converter_date)) + + ## + # The date and time that any metadata for this resource was last + # changed. The date and time are returned as a UTC datetime.datetime + # object. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + xmp_metadataDate = property(_getter_single(XMP_NAMESPACE, "MetadataDate", _converter_date)) + + ## + # The name of the first known tool used to create the resource. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + xmp_creatorTool = property(_getter_single(XMP_NAMESPACE, "CreatorTool", _converter_string)) + + ## + # The common identifier for all versions and renditions of this resource. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + xmpmm_documentId = property(_getter_single(XMPMM_NAMESPACE, "DocumentID", _converter_string)) + + ## + # An identifier for a specific incarnation of a document, updated each + # time a file is saved. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + xmpmm_instanceId = property(_getter_single(XMPMM_NAMESPACE, "InstanceID", _converter_string)) + + def custom_properties(self): + if not hasattr(self, "_custom_properties"): + self._custom_properties = {} + for node in self.getNodesInNamespace("", PDFX_NAMESPACE): + key = node.localName + while True: + # see documentation about PDFX_NAMESPACE earlier in file + idx = key.find(u"\u2182") + if idx == -1: + break + key = key[:idx] + chr(int(key[idx+1:idx+5], base=16)) + key[idx+5:] + if node.nodeType == node.ATTRIBUTE_NODE: + value = node.nodeValue + else: + value = self._getText(node) + self._custom_properties[key] = value + return self._custom_properties + + ## + # Retrieves custom metadata properties defined in the undocumented pdfx + # metadata schema. + #

Stability: Added in v1.12, will exist for all future v1.x releases. + # @return Returns a dictionary of key/value items for custom metadata + # properties. + custom_properties = property(custom_properties) + + From 8ce6a08a7bf02dda963041cd68660a97baa4766c Mon Sep 17 00:00:00 2001 From: Yogesh Sakhreliya Date: Mon, 10 Jan 2011 15:14:13 +0530 Subject: [PATCH 02/20] [FIX] Fields.function : Correct accessors passed to fields of type integer and integer_big bzr revid: ysa@tinyerp.com-20110110094413-3640rl39pj1r9v1t --- bin/osv/fields.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/osv/fields.py b/bin/osv/fields.py index 6f720ea4669..a6ab3a97072 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -762,6 +762,11 @@ class function(_column): self._symbol_f = boolean._symbol_f self._symbol_set = boolean._symbol_set + if type in ['integer','integer_big']: + self._symbol_c = integer._symbol_c + self._symbol_f = integer._symbol_f + self._symbol_set = integer._symbol_set + def digits_change(self, cr): if self.digits_compute: t = self.digits_compute(cr) From 480026aa89572869911bd6ebae6d24eb52a3d5df Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Tue, 11 Jan 2011 12:23:16 +0100 Subject: [PATCH 03/20] [I18N] base: updated translation templates after latest changes bzr revid: odo@openerp.com-20110111112316-p10xvk290eknyyz6 --- bin/addons/base/i18n/base.pot | 444 +++++++++++++++++++++------------- 1 file changed, 270 insertions(+), 174 deletions(-) diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index a5507d852a8..9484a376151 100644 --- a/bin/addons/base/i18n/base.pot +++ b/bin/addons/base/i18n/base.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57:13+0000\n" -"PO-Revision-Date: 2011-01-03 16:57:13+0000\n" +"POT-Creation-Date: 2011-01-11 11:14:51+0000\n" +"PO-Revision-Date: 2011-01-11 11:14:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -108,11 +108,16 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "You can not write in this document (%s) ! Be sure your user belongs to one of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "The optional domain to restrict possible values for relationship fields, specified as a Python expression defining a list of triplets. For example: [('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,8 +129,15 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "Properties of base fields cannot be altered in this manner! Please modify them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -331,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" msgstr "" @@ -367,6 +379,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -433,7 +450,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -758,6 +775,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -774,6 +797,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -874,6 +902,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -898,6 +932,12 @@ msgstr "" msgid "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1023,13 +1063,19 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "If set to true, the action will not be displayed on the right toolbar of a form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "'%s' contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" msgstr "" @@ -1067,8 +1113,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1122,11 +1170,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "List all certified modules available to configure your OpenERP. Modules that are installed are flagged as such. You can search for a specific module using the name or the description of the module. You do not need to install modules one by one, you can install many at the same time by clicking on the schedule button in this list. Then, apply the schedule upgrade from Action menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1230,7 +1273,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1242,7 +1285,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1400,11 +1443,6 @@ msgstr "" msgid "Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "Views allows you to personalize each view of OpenERP. You can add new fields, move fields, rename them or delete the ones that you do not need." @@ -1500,6 +1538,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1533,7 +1576,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "The Object name must start with x_ and not contain any special character !" msgstr "" @@ -1716,6 +1759,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1772,6 +1821,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1809,6 +1863,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2007,6 +2066,11 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "Reference of the target resource, whose model/table depends on the 'Resource Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2091,6 +2155,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2159,7 +2224,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2307,11 +2372,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2625,11 +2685,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2668,8 +2723,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2694,6 +2749,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2798,8 +2854,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2820,6 +2876,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2858,7 +2919,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2956,7 +3017,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "You can not create this document (%s) ! Be sure your user belongs to one of these groups: %s." msgstr "" @@ -3080,11 +3141,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3122,9 +3178,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "If set to true, the action will not be displayed on the right toolbar of a form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3300,6 +3356,12 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "The Selection Options expression is not a valid Pythonic expression.Please provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3337,8 +3399,8 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "For one2many fields, the field on the target model that implement the opposite many2one relationship" msgstr "" #. module: base @@ -3507,7 +3569,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3539,9 +3601,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3603,6 +3665,11 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "Whether values for this field can be translated (enables the translation mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3764,11 +3831,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -3955,6 +4017,11 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4006,6 +4073,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4036,11 +4108,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4233,6 +4300,12 @@ msgstr "" msgid "The configuration wizards are used to help you configure a new instance of OpenERP. They are launched during the installation of new modules, but you can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Please use the change password wizard (in User Preferences or User menu) to change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4489,7 +4562,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4678,8 +4751,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4705,7 +4778,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4736,8 +4809,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4760,12 +4834,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -4878,6 +4946,13 @@ msgstr "" msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, OpenERP will compute visibility based on the related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -4900,7 +4975,7 @@ msgid "Unable to upgrade module \"%s\" because an external dependency is not met msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "Please keep in mind that documents currently displayed may not be relevant after switching to another company. If you have unsaved changes, please make sure to save and close all forms before switching to a different company. (You can click on Cancel in the User Preferences now)" msgstr "" @@ -5073,6 +5148,12 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5080,11 +5161,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5096,7 +5172,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5112,7 +5188,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5166,8 +5242,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5317,13 +5393,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5358,7 +5434,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5377,6 +5452,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5387,11 +5467,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5502,7 +5577,7 @@ msgid "Select the object on which the action will work (read, write, create)." msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5658,11 +5733,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5698,6 +5768,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5716,8 +5792,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -5826,12 +5900,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "We suggest to reload the menu tab to see the new menus (Ctrl+T then Ctrl+R)." @@ -5912,11 +5980,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6003,7 +6066,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "You can not read this document (%s) ! Be sure your user belongs to one of these groups: %s." msgstr "" @@ -6102,6 +6165,11 @@ msgid "No rate found \n" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "Customized views are used when users reorganize the content of their dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6132,6 +6200,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6177,7 +6250,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "You cannot delete the language which is Active !\n" "Please de-activate the language first." @@ -6195,8 +6268,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6498,8 +6571,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6536,7 +6609,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6684,10 +6757,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6702,6 +6773,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6718,7 +6794,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" msgstr "" @@ -6804,13 +6880,19 @@ msgid "Number of time the function is called,\n" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "Changing the type of a column is not yet supported. Please drop it and create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -6956,7 +7038,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6991,13 +7073,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7133,6 +7208,12 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "Only specify a value if you want to change the user password. This user will have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7153,6 +7234,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7178,6 +7265,11 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "You can install new modules in order to activate new features, menu, reports or data in your OpenERP instance. To install some modules, click on the button \"Schedule for Installation\" from the form view, then click on \"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7242,11 +7334,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7263,8 +7350,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7306,8 +7393,8 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "List of options for a selection field, specified as a Python expression defining a list of (key, label) pairs. For example: [('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7429,6 +7516,12 @@ msgstr "" msgid "Name of the method to be called on the object when this scheduler is executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "The Selection Options expression is must be in the [('key','Label'), ...] format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7440,7 +7533,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "--\n" "%(name)s %(email)s\n" @@ -7524,7 +7617,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7632,7 +7724,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7731,7 +7823,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7741,11 +7833,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7803,14 +7890,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -7819,7 +7909,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -7867,6 +7957,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -7877,11 +7972,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8066,12 +8156,12 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8233,7 +8323,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8272,7 +8362,7 @@ msgid "Supported file formats: *.csv (Comma-separated values) or *.po (GetText P msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "You can not delete this document (%s) ! Be sure your user belongs to one of these groups: %s." msgstr "" @@ -8424,8 +8514,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8541,6 +8631,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -8708,7 +8804,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" From 343f7752af0677f945884bf3c2c17196ab9984bc Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Wed, 12 Jan 2011 04:53:44 +0000 Subject: [PATCH 04/20] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20110112045344-jemp7jrhmcwjpewk --- bin/addons/base/i18n/af.po | 488 +++++++++++++++---------- bin/addons/base/i18n/am.po | 488 +++++++++++++++---------- bin/addons/base/i18n/ar.po | 488 +++++++++++++++---------- bin/addons/base/i18n/bg.po | 522 +++++++++++++++++---------- bin/addons/base/i18n/bs.po | 492 +++++++++++++++---------- bin/addons/base/i18n/ca.po | 522 +++++++++++++++++---------- bin/addons/base/i18n/cs.po | 498 +++++++++++++++---------- bin/addons/base/i18n/da.po | 494 +++++++++++++++---------- bin/addons/base/i18n/de.po | 597 +++++++++++++++++++----------- bin/addons/base/i18n/el.po | 562 ++++++++++++++++++----------- bin/addons/base/i18n/en_GB.po | 543 +++++++++++++++++----------- bin/addons/base/i18n/es.po | 557 +++++++++++++++++----------- bin/addons/base/i18n/es_EC.po | 530 +++++++++++++++++---------- bin/addons/base/i18n/et.po | 522 +++++++++++++++++---------- bin/addons/base/i18n/eu.po | 490 +++++++++++++++---------- bin/addons/base/i18n/fa.po | 522 +++++++++++++++++---------- bin/addons/base/i18n/fi.po | 526 +++++++++++++++++---------- bin/addons/base/i18n/fr.po | 601 ++++++++++++++++++++----------- bin/addons/base/i18n/gl.po | 528 +++++++++++++++++---------- bin/addons/base/i18n/he.po | 520 ++++++++++++++++---------- bin/addons/base/i18n/hr.po | 501 ++++++++++++++++---------- bin/addons/base/i18n/hu.po | 586 +++++++++++++++++++----------- bin/addons/base/i18n/id.po | 490 +++++++++++++++---------- bin/addons/base/i18n/is.po | 488 +++++++++++++++---------- bin/addons/base/i18n/it.po | 567 ++++++++++++++++++----------- bin/addons/base/i18n/ja.po | 490 +++++++++++++++---------- bin/addons/base/i18n/ko.po | 508 ++++++++++++++++---------- bin/addons/base/i18n/lt.po | 584 ++++++++++++++++++------------ bin/addons/base/i18n/lv.po | 524 +++++++++++++++++---------- bin/addons/base/i18n/mn.po | 546 +++++++++++++++++----------- bin/addons/base/i18n/nb.po | 490 +++++++++++++++---------- bin/addons/base/i18n/nl.po | 593 +++++++++++++++++++----------- bin/addons/base/i18n/pl.po | 543 +++++++++++++++++----------- bin/addons/base/i18n/pt.po | 552 +++++++++++++++++----------- bin/addons/base/i18n/pt_BR.po | 567 ++++++++++++++++++----------- bin/addons/base/i18n/ro.po | 527 +++++++++++++++++---------- bin/addons/base/i18n/ru.po | 544 +++++++++++++++++----------- bin/addons/base/i18n/sk.po | 549 +++++++++++++++++----------- bin/addons/base/i18n/sl.po | 516 ++++++++++++++++---------- bin/addons/base/i18n/sq.po | 488 +++++++++++++++---------- bin/addons/base/i18n/sr.po | 530 +++++++++++++++++---------- bin/addons/base/i18n/sr@latin.po | 488 +++++++++++++++---------- bin/addons/base/i18n/sv.po | 529 +++++++++++++++++---------- bin/addons/base/i18n/th.po | 488 +++++++++++++++---------- bin/addons/base/i18n/tlh.po | 488 +++++++++++++++---------- bin/addons/base/i18n/tr.po | 522 +++++++++++++++++---------- bin/addons/base/i18n/uk.po | 522 +++++++++++++++++---------- bin/addons/base/i18n/vi.po | 518 ++++++++++++++++---------- bin/addons/base/i18n/zh_CN.po | 583 +++++++++++++++++++----------- bin/addons/base/i18n/zh_TW.po | 497 +++++++++++++++---------- debian/po/hu.po | 42 +++ 51 files changed, 16506 insertions(+), 9844 deletions(-) create mode 100644 debian/po/hu.po diff --git a/bin/addons/base/i18n/af.po b/bin/addons/base/i18n/af.po index 967b6dbc7b2..2fcff0cb1f5 100644 --- a/bin/addons/base/i18n/af.po +++ b/bin/addons/base/i18n/af.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-11-21 07:32+0000\n" "Last-Translator: Jacobus Erasmus \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:45+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,8 +138,17 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -340,7 +357,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -380,6 +397,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -448,7 +470,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -783,6 +805,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -799,6 +827,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -905,6 +938,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -932,6 +971,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1065,13 +1110,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,8 +1166,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1172,17 +1227,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1290,7 +1334,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1302,7 +1346,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1471,11 +1515,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1581,6 +1620,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1614,7 +1658,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1802,6 +1846,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1863,6 +1913,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1900,6 +1955,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2108,6 +2168,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2192,6 +2259,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2260,7 +2328,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2413,11 +2481,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2747,11 +2810,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2790,8 +2848,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2816,6 +2874,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2923,9 +2982,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2946,6 +3004,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2985,7 +3048,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3083,7 +3146,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3212,11 +3275,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3254,11 +3312,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3456,6 +3512,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3497,8 +3561,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3667,7 +3733,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3699,9 +3765,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3766,6 +3832,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3927,11 +4000,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4122,6 +4190,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4173,6 +4246,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4203,11 +4281,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4404,6 +4477,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4669,7 +4750,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4862,8 +4943,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4889,7 +4970,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4923,8 +5004,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4947,12 +5029,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5078,6 +5154,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5101,7 +5184,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5278,6 +5361,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5285,11 +5375,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5301,7 +5386,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5317,7 +5402,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5371,8 +5456,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5524,13 +5609,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5565,7 +5650,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5584,6 +5668,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5594,11 +5683,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5713,7 +5797,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5872,11 +5956,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5914,6 +5993,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5932,8 +6017,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6045,13 +6128,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6135,11 +6211,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6228,7 +6299,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6330,6 +6401,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6362,6 +6440,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6407,7 +6490,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6428,8 +6511,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6741,8 +6824,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6779,7 +6862,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6927,10 +7010,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6945,6 +7026,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6961,7 +7047,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7050,13 +7136,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7202,7 +7296,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7239,13 +7333,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7382,6 +7469,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7402,6 +7497,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7427,6 +7528,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7493,11 +7603,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7514,8 +7619,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7557,8 +7662,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7687,6 +7795,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7698,7 +7814,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7788,7 +7904,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7896,7 +8011,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7997,7 +8112,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8007,11 +8122,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8069,14 +8179,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8085,7 +8198,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8133,6 +8246,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8143,11 +8261,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8337,12 +8450,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8511,7 +8625,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8552,7 +8666,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8710,8 +8824,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8840,6 +8954,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9009,7 +9129,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/am.po b/bin/addons/base/i18n/am.po index ee656d03ab3..66afb113a48 100644 --- a/bin/addons/base/i18n/am.po +++ b/bin/addons/base/i18n/am.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-03-06 13:40+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Amharic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,8 +138,17 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -340,7 +357,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -380,6 +397,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -448,7 +470,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -783,6 +805,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -799,6 +827,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -905,6 +938,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -932,6 +971,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1065,13 +1110,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,8 +1166,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1172,17 +1227,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1290,7 +1334,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1302,7 +1346,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1471,11 +1515,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1581,6 +1620,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1614,7 +1658,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1802,6 +1846,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1863,6 +1913,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1900,6 +1955,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2108,6 +2168,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2192,6 +2259,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2260,7 +2328,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2413,11 +2481,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2747,11 +2810,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2790,8 +2848,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2816,6 +2874,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2923,9 +2982,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2946,6 +3004,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2985,7 +3048,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3083,7 +3146,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3212,11 +3275,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3254,11 +3312,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3456,6 +3512,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3497,8 +3561,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3667,7 +3733,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3699,9 +3765,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3766,6 +3832,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3927,11 +4000,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4122,6 +4190,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4173,6 +4246,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4203,11 +4281,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4404,6 +4477,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4669,7 +4750,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4862,8 +4943,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4889,7 +4970,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4923,8 +5004,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4947,12 +5029,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5078,6 +5154,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5101,7 +5184,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5278,6 +5361,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5285,11 +5375,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5301,7 +5386,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5317,7 +5402,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5371,8 +5456,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5524,13 +5609,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5565,7 +5650,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5584,6 +5668,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5594,11 +5683,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5713,7 +5797,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5872,11 +5956,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5914,6 +5993,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5932,8 +6017,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6045,13 +6128,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6135,11 +6211,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6228,7 +6299,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6330,6 +6401,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6362,6 +6440,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6407,7 +6490,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6428,8 +6511,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6741,8 +6824,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6779,7 +6862,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6927,10 +7010,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6945,6 +7026,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6961,7 +7047,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7050,13 +7136,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7202,7 +7296,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7239,13 +7333,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7382,6 +7469,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7402,6 +7497,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7427,6 +7528,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7493,11 +7603,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7514,8 +7619,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7557,8 +7662,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7687,6 +7795,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7698,7 +7814,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7788,7 +7904,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7896,7 +8011,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7997,7 +8112,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8007,11 +8122,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8069,14 +8179,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8085,7 +8198,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8133,6 +8246,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8143,11 +8261,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8337,12 +8450,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8511,7 +8625,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8552,7 +8666,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8710,8 +8824,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8840,6 +8954,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9009,7 +9129,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/ar.po b/bin/addons/base/i18n/ar.po index 553788fb54a..f76b707c686 100644 --- a/bin/addons/base/i18n/ar.po +++ b/bin/addons/base/i18n/ar.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2009-11-30 07:54+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,8 +137,17 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -339,7 +356,7 @@ msgid "Netherlands Antilles" msgstr "جزر الأنتيل الهولندية" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -379,6 +396,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -447,7 +469,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -782,6 +804,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -798,6 +826,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -904,6 +937,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -931,6 +970,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1064,13 +1109,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1112,8 +1165,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1171,17 +1226,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1289,7 +1333,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1301,7 +1345,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1470,11 +1514,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1580,6 +1619,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1613,7 +1657,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1801,6 +1845,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1862,6 +1912,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1899,6 +1954,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2107,6 +2167,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2191,6 +2258,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2259,7 +2327,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2412,11 +2480,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2746,11 +2809,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2789,8 +2847,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2815,6 +2873,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2922,9 +2981,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2945,6 +3003,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2984,7 +3047,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3082,7 +3145,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3211,11 +3274,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3253,11 +3311,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3455,6 +3511,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3496,8 +3560,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3666,7 +3732,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3698,9 +3764,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3765,6 +3831,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3926,11 +3999,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4121,6 +4189,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4172,6 +4245,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4202,11 +4280,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4403,6 +4476,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4668,7 +4749,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4861,8 +4942,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4888,7 +4969,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4922,8 +5003,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4946,12 +5028,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5077,6 +5153,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5100,7 +5183,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5277,6 +5360,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5284,11 +5374,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5300,7 +5385,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5316,7 +5401,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5370,8 +5455,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5523,13 +5608,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5564,7 +5649,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5583,6 +5667,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5593,11 +5682,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5712,7 +5796,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5871,11 +5955,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5913,6 +5992,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5931,8 +6016,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6044,13 +6127,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6134,11 +6210,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6227,7 +6298,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6329,6 +6400,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6361,6 +6439,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6406,7 +6489,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6427,8 +6510,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6740,8 +6823,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6778,7 +6861,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6926,10 +7009,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6944,6 +7025,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6960,7 +7046,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7049,13 +7135,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7201,7 +7295,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7238,13 +7332,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7381,6 +7468,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7401,6 +7496,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7426,6 +7527,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7492,11 +7602,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7513,8 +7618,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7556,8 +7661,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7686,6 +7794,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7697,7 +7813,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7787,7 +7903,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7895,7 +8010,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7996,7 +8111,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8006,11 +8121,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8068,14 +8178,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8084,7 +8197,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8132,6 +8245,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8142,11 +8260,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8336,12 +8449,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8510,7 +8624,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8551,7 +8665,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8709,8 +8823,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8839,6 +8953,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9008,7 +9128,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/bg.po b/bin/addons/base/i18n/bg.po index 6dec2507102..5d8a90eaf43 100644 --- a/bin/addons/base/i18n/bg.po +++ b/bin/addons/base/i18n/bg.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-16 08:59+0000\n" "Last-Translator: Boris \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Създадени изгледи" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Прозорец цел" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Южна Корея" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -344,7 +361,7 @@ msgid "Netherlands Antilles" msgstr "Холандски Антили" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -389,6 +406,11 @@ msgid "This ISO code is the name of po files to use for translations" msgstr "" "Този ISO код е името на \"po\" файловете които да използвате за преводи" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -459,7 +481,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Персонализираните полета трябва да имат име което започва с 'x_' !" @@ -794,6 +816,12 @@ msgstr "Гуам (САЩ)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -810,6 +838,11 @@ msgstr "Невалиден XML за преглед на архитектурат msgid "Cayman Islands" msgstr "Кайманови острови" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Южна Корея" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -919,6 +952,12 @@ msgstr "" msgid "Marshall Islands" msgstr "Маршалови острови" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -946,6 +985,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1082,13 +1127,23 @@ msgstr "" msgid "Reports" msgstr "Доклади" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Ако е отметнато, това действие няма да се покаже в дясната лента с " +"инструменти в изгледа на формата." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "При създаване" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1133,9 +1188,11 @@ msgid "Wizard Info" msgstr "Информация за помощник" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Коморски острови" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1192,17 +1249,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Дни: %(day)" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1314,7 +1360,7 @@ msgid "Formula" msgstr "Формула" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Не може да се премахне потребителят root!" @@ -1326,7 +1372,7 @@ msgstr "Малави" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1502,11 +1548,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1615,6 +1656,11 @@ msgstr "Поле" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Фарьорски острови" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1648,7 +1694,7 @@ msgid "Madagascar" msgstr "Мадагаскар" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1842,6 +1888,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1903,6 +1955,11 @@ msgstr "Остров Норфолк" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1940,6 +1997,11 @@ msgstr "Модул '%s' не може да бъде обновен. Той не msgid "Cuba" msgstr "Куба" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2149,6 +2211,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2233,6 +2302,7 @@ msgstr "Свързвания на полето" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Модул" @@ -2301,7 +2371,7 @@ msgid "Mayotte" msgstr "Майот" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Моля укажете действие за изпълнение !" @@ -2456,11 +2526,6 @@ msgstr "Грешка! Не можете да създавате рекурсив msgid "%x - Appropriate date representation." msgstr "%x - Подходящо представяне на датата." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2799,11 +2864,6 @@ msgstr "" msgid "Trigger Object" msgstr "Задействащ обект" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2842,8 +2902,8 @@ msgid "Sequence Type" msgstr "Вид последователност" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2868,6 +2928,7 @@ msgstr "SQL ограничение" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Модел" @@ -2976,11 +3037,9 @@ msgstr "" "Опитвате се да премахнете модул, който е инсталиран, или ще бъде инсталиран" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" -"Типа действие или бутон в клиентската част, който активира действието." #. module: base #: selection:base.language.install,lang:0 @@ -3000,6 +3059,11 @@ msgstr "Гватемала" msgid "Workflows" msgstr "Последователности от действия" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3041,7 +3105,7 @@ msgid "Lesotho" msgstr "Лесото" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Не може да премахнете модел '%s' !" @@ -3139,7 +3203,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3271,11 +3335,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Избор на поле" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3313,14 +3372,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Ако е отметнато, това действие няма да се покаже в дясната лента с " -"инструменти в изгледа на формата." #. module: base #: view:ir.attachment:0 @@ -3519,6 +3574,14 @@ msgstr "" msgid "Montserrat" msgstr "Монсерат" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3560,8 +3623,10 @@ msgid "Starter Partner" msgstr "Начинаещ партньор" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3730,7 +3795,7 @@ msgid "Flow Start" msgstr "Начало на процес" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3762,9 +3827,9 @@ msgid "Guadeloupe (French)" msgstr "Гваделупа (Франция)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3829,6 +3894,13 @@ msgstr "Конфигуриране на клиентстки действия" msgid "Partner Addresses" msgstr "Адрес на партньора" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3990,11 +4062,6 @@ msgstr "Изтория на заявката" msgid "Menus" msgstr "Менюта" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4189,6 +4256,11 @@ msgstr "" "след операциите за създаване. Ако името на полето е празно, вие няма да " "можете да проследявате новия запис." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4240,6 +4312,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Нисък" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4272,11 +4349,6 @@ msgstr "" msgid "Create Access" msgstr "Задай достъп" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4473,6 +4545,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4738,7 +4818,7 @@ msgid "Change My Preferences" msgstr "Промени настройките ми" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Невалидно име на модел при задаването на действие." @@ -4933,9 +5013,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Съединени щати" #. module: base #: view:ir.module.module:0 @@ -4960,7 +5040,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Модул %s: Невалиден сертификат за качество" @@ -4998,9 +5078,10 @@ msgid "Nigeria" msgstr "Нигерия" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5022,12 +5103,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Стойности за типа на събитието" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5155,6 +5230,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5178,7 +5260,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5355,6 +5437,13 @@ msgstr "" msgid "Reunion (French)" msgstr "Реюнион (Франция)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5362,11 +5451,6 @@ msgstr "Реюнион (Франция)" msgid "Global" msgstr "Общи" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5378,7 +5462,7 @@ msgid "Solomon Islands" msgstr "Соломонови острови" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5394,7 +5478,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5448,9 +5532,9 @@ msgid "Module Category" msgstr "Категория на модула" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Съединени щати" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "" #. module: base #: report:ir.module.reference.graph:0 @@ -5601,13 +5685,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5642,7 +5726,6 @@ msgstr "Ядрото на OpenERP, необходимо при всяка инс #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5661,6 +5744,11 @@ msgstr "Файл с превод" msgid "Neutral Zone" msgstr "Неутрална зона" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5671,11 +5759,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5792,7 +5875,7 @@ msgstr "" "създаване)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5951,11 +6034,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5993,6 +6071,12 @@ msgstr "Франция" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6011,8 +6095,6 @@ msgstr "Афганистан" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Грешка!" @@ -6126,13 +6208,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "Питкерн" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6216,11 +6291,6 @@ msgstr "Други действия" msgid "Done" msgstr "Готово" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6309,7 +6379,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6411,6 +6481,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6445,6 +6522,11 @@ msgstr "Изходящи преходи" msgid "Icon" msgstr "Икона" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6490,7 +6572,7 @@ msgid "Samoa" msgstr "Самоа" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6511,8 +6593,8 @@ msgid "Child IDs" msgstr "Подчинени идентификатори" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Проблем в конфигурацията 'Record Id' в Действия на Сървъра!" @@ -6824,9 +6906,9 @@ msgid "Grenada" msgstr "Гренада" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Конфигурация на тригера" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "О-ви Уолис и Футуна" #. module: base #: selection:server.action.create,init,type:0 @@ -6862,7 +6944,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -7010,11 +7092,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Коморски острови" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7028,6 +7108,11 @@ msgstr "Дейности на сървъра" msgid "Cancel Install" msgstr "Прекъсни инсталацията" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7044,7 +7129,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7133,13 +7218,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Потребителска справка" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7285,7 +7378,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7324,13 +7417,6 @@ msgstr "Отпратка към изглед" msgid "Selection" msgstr "Избрано" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7467,6 +7553,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7487,6 +7581,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7512,6 +7612,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7580,11 +7689,6 @@ msgstr "Дата на изпълнение" msgid "Croatian / hrvatski jezik" msgstr "хърватски / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7601,9 +7705,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Неинсталируем" #. module: base #: view:res.partner.category:0 @@ -7644,9 +7748,12 @@ msgid "Menu Action" msgstr "Действие на меню" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Фарьорски острови" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7774,6 +7881,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7785,7 +7900,7 @@ msgid "China" msgstr "Китай" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7875,7 +7990,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7983,7 +8097,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8084,7 +8198,7 @@ msgid "Auto-Refresh" msgstr "Автообновяване" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8094,11 +8208,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "О-ви Уолис и Футуна" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8156,14 +8265,17 @@ msgid "Turkmenistan" msgstr "Туркменистан" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8172,7 +8284,7 @@ msgstr "Туркменистан" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8220,6 +8332,11 @@ msgstr "Танзания" msgid "Danish / Dansk" msgstr "датски / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8230,11 +8347,6 @@ msgstr "о. Рождество" msgid "Other Actions Configuration" msgstr "Конфигурация на други действия" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Неинсталируем" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8428,12 +8540,14 @@ msgid "Luxembourg" msgstr "Люксембург" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Нисък" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"Типа действие или бутон в клиентската част, който активира действието." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8602,7 +8716,7 @@ msgid "View Auto-Load" msgstr "Изглед автоматично зареждане" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8643,7 +8757,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8801,9 +8915,9 @@ msgid "Czech / Čeština" msgstr "чешки / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Разширено търсене" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Конфигурация на тригера" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8936,6 +9050,12 @@ msgstr "" msgid "Portrait" msgstr "Вертикално" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9105,7 +9225,7 @@ msgid "Account Owner" msgstr "Собственик на сметка" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9537,6 +9657,9 @@ msgstr "руски / русский язык" #~ msgid "wizard.module.lang.export" #~ msgstr "wizard.module.lang.export" +#~ msgid "Field Selection" +#~ msgstr "Избор на поле" + #~ msgid "Sale Opportunity" #~ msgstr "Възможност за продажба" @@ -9962,6 +10085,9 @@ msgstr "руски / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Разширено търсене" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" diff --git a/bin/addons/base/i18n/bs.po b/bin/addons/base/i18n/bs.po index 3998cad4346..de1dbad1e51 100644 --- a/bin/addons/base/i18n/bs.po +++ b/bin/addons/base/i18n/bs.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-09-29 08:03+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Kreirani prikazi" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Ciljni prozor" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Južna Koreja" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -341,7 +358,7 @@ msgid "Netherlands Antilles" msgstr "Nizozemski Antili" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -385,6 +402,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "ISO oznaka je naziv PO datoteke za potrebe prijevoda" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -455,7 +477,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Prilagođena polja moraju imati ime koje počinje sa 'x_' !" @@ -791,6 +813,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -807,6 +835,11 @@ msgstr "Neodgovarajući XML za arhitekturu prikaza!" msgid "Cayman Islands" msgstr "Kajmanska ostrva" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Južna Koreja" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -913,6 +946,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -940,6 +979,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1073,13 +1118,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1121,8 +1174,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1180,17 +1235,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1298,7 +1342,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1310,7 +1354,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1479,11 +1523,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1589,6 +1628,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1622,7 +1666,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1810,6 +1854,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1871,6 +1921,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1908,6 +1963,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2116,6 +2176,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2200,6 +2267,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2268,7 +2336,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2421,11 +2489,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2755,11 +2818,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2798,8 +2856,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2824,6 +2882,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -2931,9 +2990,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2954,6 +3012,11 @@ msgstr "" msgid "Workflows" msgstr "Radni tokovi" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2993,7 +3056,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Nije moguće obrisati model '%s' !" @@ -3091,7 +3154,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3220,11 +3283,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3262,11 +3320,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3464,6 +3520,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3505,8 +3569,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3675,7 +3741,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3707,9 +3773,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3774,6 +3840,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3935,11 +4008,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4130,6 +4198,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4181,6 +4254,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4211,11 +4289,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4412,6 +4485,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4677,7 +4758,7 @@ msgid "Change My Preferences" msgstr "Promjeni Moje postavke" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4870,8 +4951,8 @@ msgid "ir.ui.menu" msgstr "ir.ui.meni" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4897,7 +4978,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.objekt.linije" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4931,9 +5012,10 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -4955,12 +5037,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5086,6 +5162,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5109,7 +5192,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5286,6 +5369,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5293,11 +5383,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5309,7 +5394,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5325,7 +5410,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5379,8 +5464,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5532,13 +5617,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5573,7 +5658,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5592,6 +5676,11 @@ msgstr "PO datoteka" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5602,11 +5691,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5721,7 +5805,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5880,11 +5964,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5922,6 +6001,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5940,8 +6025,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6053,13 +6136,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6143,11 +6219,6 @@ msgstr "Druge akcije" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6236,7 +6307,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6338,6 +6409,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6370,6 +6448,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6415,7 +6498,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6436,8 +6519,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6749,8 +6832,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6787,7 +6870,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6935,10 +7018,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6953,6 +7034,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6969,7 +7055,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7058,13 +7144,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Korisnik ref." #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7210,7 +7304,7 @@ msgid "workflow.triggers" msgstr "radnitok.okidači" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7247,13 +7341,6 @@ msgstr "Prikaz ref." msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7390,6 +7477,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7410,6 +7505,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7435,6 +7536,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7501,11 +7611,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7522,8 +7627,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7565,8 +7670,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7695,6 +7803,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7706,7 +7822,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7796,7 +7912,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7904,7 +8019,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8005,7 +8120,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8015,11 +8130,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8077,14 +8187,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8093,7 +8206,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8141,6 +8254,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8151,11 +8269,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8345,12 +8458,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8519,7 +8633,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8560,7 +8674,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8718,8 +8832,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8848,6 +8962,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9017,7 +9137,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/ca.po b/bin/addons/base/i18n/ca.po index 08346d0e067..6c460885cfb 100644 --- a/bin/addons/base/i18n/ca.po +++ b/bin/addons/base/i18n/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-16 08:43+0000\n" "Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\n" @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "Vistes creades" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "Destí finestra" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Corea del Sud" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -344,7 +361,7 @@ msgid "Netherlands Antilles" msgstr "Antilles holandeses" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -389,6 +406,11 @@ msgid "This ISO code is the name of po files to use for translations" msgstr "" "Aquest codi ISO es el nom dels fitxers po utilitzats en les traduccions." +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -459,7 +481,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Els camps personalitzats han de tenir un nom que comenci amb 'x_'!" @@ -794,6 +816,12 @@ msgstr "Guam (EE.UU.)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -810,6 +838,11 @@ msgstr "XML invàlid per a la definició de la vista!" msgid "Cayman Islands" msgstr "Illes Caiman" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Corea del Sud" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -919,6 +952,12 @@ msgstr "" msgid "Marshall Islands" msgstr "Illes Marshall" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -946,6 +985,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1082,13 +1127,23 @@ msgstr "" msgid "Reports" msgstr "Informes" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Si se marqueu a veritat, l'acció no es mostrarà en la barra de eines de la " +"dreta en una vista formulari." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "En creació" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1133,9 +1188,11 @@ msgid "Wizard Info" msgstr "Informació assistent" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comores" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1192,17 +1249,6 @@ msgstr "ID fitxer adjunt" msgid "Day: %(day)s" msgstr "Dia: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1314,7 +1360,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "No es pot eliminar l'usuari principal!" @@ -1326,7 +1372,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1501,11 +1547,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1614,6 +1655,11 @@ msgstr "Camp" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Illes Fèroe" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1647,7 +1693,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1841,6 +1887,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1902,6 +1954,11 @@ msgstr "Illa Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1939,6 +1996,11 @@ msgstr "No es pot actualitzar mòdul '%s'. No està instal·lat." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.empresa.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2149,6 +2211,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activitat" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2233,6 +2302,7 @@ msgstr "Mapa de camps." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Mòdul" @@ -2301,7 +2371,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Indiqueu una acció per ser executada!" @@ -2456,11 +2526,6 @@ msgstr "Error! No podeu crear categories recursives." msgid "%x - Appropriate date representation." msgstr "%x - Representació apropiada de data." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2800,11 +2865,6 @@ msgstr "" msgid "Trigger Object" msgstr "Objecte de l'activació" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2843,8 +2903,8 @@ msgid "Sequence Type" msgstr "Tipus de seqüència" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2869,6 +2929,7 @@ msgstr "Restricció SQL" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -2977,10 +3038,9 @@ msgstr "" "Esteu intentant d'eliminar un mòdul que està instal·lat o serà instal·lat" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Tipus d'acció o botó del costat del client que activarà l'acció." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "" #. module: base #: selection:base.language.install,lang:0 @@ -3000,6 +3060,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Fluxos" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3041,7 +3106,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "No podeu eliminar aquest model '%s'!" @@ -3139,7 +3204,7 @@ msgid "API ID" msgstr "ID API" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3271,11 +3336,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Selecció de camp" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3313,14 +3373,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Si se marqueu a veritat, l'acció no es mostrarà en la barra de eines de la " -"dreta en una vista formulari." #. module: base #: view:ir.attachment:0 @@ -3519,6 +3575,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3560,8 +3624,10 @@ msgid "Starter Partner" msgstr "Empresa jove" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3730,7 +3796,7 @@ msgid "Flow Start" msgstr "Inici del flux" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3762,9 +3828,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe (Francesa)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3829,6 +3895,13 @@ msgstr "Configuració acció client" msgid "Partner Addresses" msgstr "Adreces d'empresa" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3990,11 +4063,6 @@ msgstr "Historial de sol·licituds" msgid "Menus" msgstr "Menús" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4189,6 +4257,11 @@ msgstr "" "operacions de creació. Si està buit, no podrà realitzar un seguiment del " "registre nou." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4240,6 +4313,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Baixa" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4270,11 +4348,6 @@ msgstr "" msgid "Create Access" msgstr "Permís per crear" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4471,6 +4544,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4736,7 +4817,7 @@ msgid "Change My Preferences" msgstr "Canvia les preferències" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Nom de model no vàlid en la definició de l'acció." @@ -4931,9 +5012,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menú" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Estats Units" #. module: base #: view:ir.module.module:0 @@ -4958,7 +5039,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.objecte.línias" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Mòdul %s: Certificat de qualitat no vàlid" @@ -4995,9 +5076,10 @@ msgid "Nigeria" msgstr "Nigèria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.empresa.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5019,12 +5101,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Valors per tipus esdeveniment" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5152,6 +5228,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5175,7 +5258,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5352,6 +5435,13 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunió (Francesa)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5359,11 +5449,6 @@ msgstr "Reunió (Francesa)" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5375,7 +5460,7 @@ msgid "Solomon Islands" msgstr "Illes Salomó" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5391,7 +5476,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5445,9 +5530,9 @@ msgid "Module Category" msgstr "Categoria del mòdul" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Estats Units" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "" #. module: base #: report:ir.module.reference.graph:0 @@ -5598,13 +5683,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5639,7 +5724,6 @@ msgstr "El nucli d'OpenERP, necessari per tota instal·lació." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5658,6 +5742,11 @@ msgstr "Fitxer PO" msgid "Neutral Zone" msgstr "Zona neutral" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5668,11 +5757,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5789,7 +5873,7 @@ msgstr "" "crear)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5948,11 +6032,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5990,6 +6069,12 @@ msgstr "França" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6008,8 +6093,6 @@ msgstr "Estat Islàmic d'Afganistan" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Error!" @@ -6123,13 +6206,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "Illa Pitcairn" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6213,11 +6289,6 @@ msgstr "Altres accions" msgid "Done" msgstr "Realitzat" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6306,7 +6377,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6408,6 +6479,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6442,6 +6520,11 @@ msgstr "Transicions sortints" msgid "Icon" msgstr "Icona" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6487,7 +6570,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6508,8 +6591,8 @@ msgid "Child IDs" msgstr "IDs fills" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problema en configuració `Id registre` en l'acció del servidor!" @@ -6821,9 +6904,9 @@ msgid "Grenada" msgstr "Granada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Configuració d'activació" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Illes Wallis i Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -6859,7 +6942,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -7007,11 +7090,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comores" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7025,6 +7106,11 @@ msgstr "Accions servidor" msgid "Cancel Install" msgstr "Cancel·la instal·lació" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7041,7 +7127,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7130,13 +7216,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Ref. usuari" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7282,7 +7376,7 @@ msgid "workflow.triggers" msgstr "workflow.activacions" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7321,13 +7415,6 @@ msgstr "Ref. vista" msgid "Selection" msgstr "Selecció" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7464,6 +7551,14 @@ msgstr "Mètode get (obtenir) no definit!" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7484,6 +7579,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7509,6 +7610,15 @@ msgstr "ir.valors" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7577,11 +7687,6 @@ msgstr "Data d'activació" msgid "Croatian / hrvatski jezik" msgstr "Croat / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7598,9 +7703,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "No instal·lable" #. module: base #: view:res.partner.category:0 @@ -7641,9 +7746,12 @@ msgid "Menu Action" msgstr "Acció de menú" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Illes Fèroe" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7771,6 +7879,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7782,7 +7898,7 @@ msgid "China" msgstr "Xina" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7872,7 +7988,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7980,7 +8095,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8081,7 +8196,7 @@ msgid "Auto-Refresh" msgstr "Auto-refrescar" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8091,11 +8206,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Illes Wallis i Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8153,14 +8263,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8169,7 +8282,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8217,6 +8330,11 @@ msgstr "Tanzània" msgid "Danish / Dansk" msgstr "Danès / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8227,11 +8345,6 @@ msgstr "Illa Christmas" msgid "Other Actions Configuration" msgstr "Configuració d'altres accions" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "No instal·lable" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8426,12 +8539,13 @@ msgid "Luxembourg" msgstr "Luxemburg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Baixa" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Tipus d'acció o botó del costat del client que activarà l'acció." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8600,7 +8714,7 @@ msgid "View Auto-Load" msgstr "Vista auto-carregar" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8641,7 +8755,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8799,9 +8913,9 @@ msgid "Czech / Čeština" msgstr "Xec / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Cerca avançada" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Configuració d'activació" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8933,6 +9047,12 @@ msgstr "" msgid "Portrait" msgstr "Vertical" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9103,7 +9223,7 @@ msgid "Account Owner" msgstr "Propietari compte" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9655,6 +9775,9 @@ msgstr "Rus / русский язык" #~ msgid "Field child1" #~ msgstr "Camp fill1" +#~ msgid "Field Selection" +#~ msgstr "Selecció de camp" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "Els grups s'utilitzen per definir permisos d'accés a cada pantalla i menú." @@ -10308,6 +10431,9 @@ msgstr "Rus / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Cerca avançada" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" diff --git a/bin/addons/base/i18n/cs.po b/bin/addons/base/i18n/cs.po index 96d8613ca16..fd4baec26d4 100644 --- a/bin/addons/base/i18n/cs.po +++ b/bin/addons/base/i18n/cs.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-06-06 04:19+0000\n" "Last-Translator: Vladimír Burian \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,8 +137,17 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -339,7 +356,7 @@ msgid "Netherlands Antilles" msgstr "Nizozemské Antily" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -379,6 +396,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -447,7 +469,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -782,6 +804,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -798,6 +826,11 @@ msgstr "Invalidní XML pro zobrazení architektury!" msgid "Cayman Islands" msgstr "Kajmanské ostrovy" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -904,6 +937,12 @@ msgstr "" msgid "Marshall Islands" msgstr "Marshallovy ostrovy" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -931,6 +970,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1064,13 +1109,21 @@ msgstr "" msgid "Reports" msgstr "Výkazy" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "On Create(On Create)" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1112,9 +1165,11 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komory" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1171,17 +1226,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Den: %(den/dny)" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1289,7 +1333,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1301,7 +1345,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1470,11 +1514,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1580,6 +1619,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faerské ostrovy" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1613,7 +1657,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1802,6 +1846,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1863,6 +1913,11 @@ msgstr "Ostrov Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1900,6 +1955,11 @@ msgstr "" msgid "Cuba" msgstr "Kuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2108,6 +2168,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2192,6 +2259,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Modul" @@ -2260,7 +2328,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2413,11 +2481,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2747,11 +2810,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2790,8 +2848,8 @@ msgid "Sequence Type" msgstr "Typ sekvence(Sequence type)" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2816,6 +2874,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -2923,9 +2982,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2946,6 +3004,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2987,7 +3050,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3085,7 +3148,7 @@ msgid "API ID" msgstr "API ID(API ID)" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3214,11 +3277,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3256,11 +3314,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3458,6 +3514,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3499,8 +3563,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3669,7 +3735,7 @@ msgid "Flow Start" msgstr "začátek toku(Flow start)" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3701,9 +3767,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3768,6 +3834,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3929,11 +4002,6 @@ msgstr "Historie požadavku(Request History)" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4124,6 +4192,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4175,6 +4248,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Nízká" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4205,11 +4283,6 @@ msgstr "" msgid "Create Access" msgstr "Vytvořit přístup" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4406,6 +4479,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4671,7 +4752,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4864,8 +4945,8 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4891,7 +4972,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4925,9 +5006,10 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -4949,12 +5031,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5080,6 +5156,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5103,7 +5186,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5280,6 +5363,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5287,11 +5377,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5303,7 +5388,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5319,7 +5404,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5373,8 +5458,8 @@ msgid "Module Category" msgstr "Kategorie modulu" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5526,13 +5611,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5567,7 +5652,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5586,6 +5670,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5596,11 +5685,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5715,7 +5799,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5874,11 +5958,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5916,6 +5995,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5934,8 +6019,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6047,13 +6130,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6137,11 +6213,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6230,7 +6301,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6332,6 +6403,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6364,6 +6442,11 @@ msgstr "" msgid "Icon" msgstr "Ikona" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6409,7 +6492,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6430,8 +6513,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6743,8 +6826,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6781,7 +6864,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6929,11 +7012,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komory" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -6947,6 +7028,11 @@ msgstr "" msgid "Cancel Install" msgstr "Stornovat instalaci" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6963,7 +7049,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7052,13 +7138,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Ref. uživatele(User Ref.)" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7204,7 +7298,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7241,13 +7335,6 @@ msgstr "Ref. náhledu(View Ref.)" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7384,6 +7471,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7404,6 +7499,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7429,6 +7530,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7495,11 +7605,6 @@ msgstr "Datum spuštění(Trigger date)" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7516,8 +7621,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7559,9 +7664,12 @@ msgid "Menu Action" msgstr "Akce nabídky" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faerské ostrovy" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7689,6 +7797,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7700,7 +7816,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7790,7 +7906,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7898,7 +8013,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7999,7 +8114,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8009,11 +8124,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8071,14 +8181,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8087,7 +8200,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8135,6 +8248,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8145,11 +8263,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8339,12 +8452,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Nízká" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8513,7 +8627,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8554,7 +8668,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8712,8 +8826,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8842,6 +8956,12 @@ msgstr "" msgid "Portrait" msgstr "Orientace stránky nastojato(Portrait)" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9011,7 +9131,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/da.po b/bin/addons/base/i18n/da.po index 00baf1678b4..747dea85559 100644 --- a/bin/addons/base/i18n/da.po +++ b/bin/addons/base/i18n/da.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-02-07 05:09+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:47+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Sydkorea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -340,7 +357,7 @@ msgid "Netherlands Antilles" msgstr "Nederlandske Antiller" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -380,6 +397,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -448,7 +470,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -783,6 +805,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -799,6 +827,11 @@ msgstr "" msgid "Cayman Islands" msgstr "Caymanøerne" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Sydkorea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -905,6 +938,12 @@ msgstr "" msgid "Marshall Islands" msgstr "Marshalløerne" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -932,6 +971,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1065,13 +1110,21 @@ msgstr "" msgid "Reports" msgstr "Rapporter" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Ved oprettelse" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,9 +1166,11 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komorene" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1172,17 +1227,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1290,7 +1334,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1302,7 +1346,7 @@ msgstr "Malavi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1471,11 +1515,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1581,6 +1620,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1614,7 +1658,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1802,6 +1846,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1863,6 +1913,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1900,6 +1955,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2108,6 +2168,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2192,6 +2259,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2260,7 +2328,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2413,11 +2481,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2747,11 +2810,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2790,8 +2848,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2816,6 +2874,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2923,9 +2982,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2946,6 +3004,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2985,7 +3048,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3083,7 +3146,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3212,11 +3275,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3254,11 +3312,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3456,6 +3512,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3497,8 +3561,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3667,7 +3733,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3699,9 +3765,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3766,6 +3832,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3927,11 +4000,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4122,6 +4190,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4173,6 +4246,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4203,11 +4281,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4404,6 +4477,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4669,7 +4750,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4862,8 +4943,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4889,7 +4970,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4923,8 +5004,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4947,12 +5029,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5078,6 +5154,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5101,7 +5184,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5278,6 +5361,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5285,11 +5375,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5301,7 +5386,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5317,7 +5402,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5371,8 +5456,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5524,13 +5609,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5565,7 +5650,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5584,6 +5668,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5594,11 +5683,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5713,7 +5797,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5872,11 +5956,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5914,6 +5993,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5932,8 +6017,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6045,13 +6128,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6135,11 +6211,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6228,7 +6299,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6330,6 +6401,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6362,6 +6440,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6407,7 +6490,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6428,8 +6511,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6741,8 +6824,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6779,7 +6862,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6927,11 +7010,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komorene" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -6945,6 +7026,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6961,7 +7047,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7050,13 +7136,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7202,7 +7296,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7239,13 +7333,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7382,6 +7469,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7402,6 +7497,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7427,6 +7528,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7493,11 +7603,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7514,8 +7619,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7557,8 +7662,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7687,6 +7795,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7698,7 +7814,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7788,7 +7904,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7896,7 +8011,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7997,7 +8112,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8007,11 +8122,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8069,14 +8179,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8085,7 +8198,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8133,6 +8246,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8143,11 +8261,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8337,12 +8450,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8511,7 +8625,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8552,7 +8666,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8710,8 +8824,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8840,6 +8954,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9009,7 +9129,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/de.po b/bin/addons/base/i18n/de.po index a2e528ddd07..4af1265657a 100644 --- a/bin/addons/base/i18n/de.po +++ b/bin/addons/base/i18n/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2011-01-10 12:14+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:47+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -115,7 +115,7 @@ msgid "Created Views" msgstr "Erstellte Ansichten" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " @@ -124,6 +124,14 @@ msgstr "" "Sie haben keine Schreibrechte für den Beleg (%s) ! Stellen Sie sicher, dass " "Sie der folgenden Gruppe zugeordnet sind: %s." +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -135,9 +143,18 @@ msgid "Target Window" msgstr "Target Window" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Südkorea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -350,7 +367,7 @@ msgid "Netherlands Antilles" msgstr "Niederländische Antillen" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -395,6 +412,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "Der ISO Code ist der Name der po Datei für Übersetzungen" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Ihr System wird aktualisert" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -465,7 +487,7 @@ msgid "Miscellaneous Suppliers" msgstr "Sonstige Lieferanten" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -811,6 +833,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "Pinnwand Personalwesen" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -827,6 +855,11 @@ msgstr "Fehlerhafter xml Code für diese Ansicht!" msgid "Cayman Islands" msgstr "Cayman Inseln" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Südkorea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -940,6 +973,12 @@ msgstr "Modul Bezeichnung" msgid "Marshall Islands" msgstr "Marschall-Inseln" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -973,6 +1012,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "2. Gruppenspezifische Regeln werden mit einem UND Operator verbunden" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1115,13 +1160,23 @@ msgstr "Report Pfad" msgid "Reports" msgstr "Berichte" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Wenn aktiviert, dann wird die Aktion nicht in der rechten Werkzeugleiste " +"eines Formulares angezeigt." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Bei Erzeugung" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1168,9 +1223,11 @@ msgid "Wizard Info" msgstr "Assistent Info" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komoren" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Exportiere Übersetzung" #. module: base #: help:res.log,secondary:0 @@ -1242,26 +1299,6 @@ msgstr "Sie können dieses Dokument nicht lesen ! (%s)" msgid "Day: %(day)s" msgstr "Tag: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Liste aller zertifizierten Modul zu Ihrer Verfügung, um OpenERP individuell " -"zu konfigurieren. Module, die installiert wurden sind als solche " -"gekennzeichnet. Sie können ein bestimmtes Modul über die Bezeichnung des " -"Moduls oder über die Beschreibung des Moduls finden. Sie brauchen dabei " -"nicht jedes einzelne Module nacheinander zu installieren. Sie können einige " -"Module gleichzeitig in einem Zug installieren, indem Sie auf die " -"Schaltfläche 'Beauftrage Installation' in der Listensicht klicken. Klicken " -"Sie anschließend 'Starte Installation' um alle zur Installation geplanten " -"Module zu installieren." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1373,7 +1410,7 @@ msgid "Formula" msgstr "Formel" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Kann den root Benutzer nicht entfernen!" @@ -1385,7 +1422,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (copy)" @@ -1567,11 +1604,6 @@ msgstr "" "Beispiel: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "Neues Passwort" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1689,6 +1721,11 @@ msgstr "Feld" msgid "Groups (no group = global)" msgstr "Gruppen (keine Gruppe = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Färöer Inseln" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1722,7 +1759,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1916,6 +1953,12 @@ msgid "Messages" msgstr "EMail Nachrichten" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1983,6 +2026,11 @@ msgstr "Norfolk Insel" msgid "Korean (KR) / 한국어 (KR)" msgstr "Korean (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -2020,6 +2068,11 @@ msgstr "Kann Modul '%s' nicht upgraden. Es ist gar nicht installiert." msgid "Cuba" msgstr "Kuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2237,6 +2290,13 @@ msgstr "Spanish (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2321,6 +2381,7 @@ msgstr "Feld Zuordnung" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Module" @@ -2389,7 +2450,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Bitte spezifiziere Startaktion !" @@ -2546,11 +2607,6 @@ msgstr "Fehler! Sie können keine rekursive Kategorien definieren." msgid "%x - Appropriate date representation." msgstr "%x - Anvisierte Datenpräsentation." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "change.user.password" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2901,11 +2957,6 @@ msgstr "Telekom Sektor" msgid "Trigger Object" msgstr "Trigger Objekt" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "Zur Überprüfung das neue Passwort nochmals eingeben." - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2944,9 +2995,9 @@ msgid "Sequence Type" msgstr "Sequenz Typ" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2970,6 +3021,7 @@ msgstr "SQL Beschränkung" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Standard" @@ -3084,10 +3136,9 @@ msgstr "" "soeben in Installation begriffen ist" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Diejenige Aktion oder Button welche die Aktion triggert (auslöst)." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Die gewählten Module wurden aktualisiert / installiert" #. module: base #: selection:base.language.install,lang:0 @@ -3107,6 +3158,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Workflowdesign" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3148,7 +3204,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Sie können die Vorlage '%s' nicht entfernen !" @@ -3246,7 +3302,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3380,11 +3436,6 @@ msgstr "" msgid "System update completed" msgstr "System Update erledigt" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Auswahl Felder" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3422,14 +3473,10 @@ msgid "Apply For Delete" msgstr "Setze Löschberechtigung" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Wenn aktiviert, dann wird die Aktion nicht in der rechten Werkzeugleiste " -"eines Formulares angezeigt." #. module: base #: view:ir.attachment:0 @@ -3646,6 +3693,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3691,9 +3746,11 @@ msgid "Starter Partner" msgstr "Neuer Partner" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Ihr System wird aktualisert" +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3863,7 +3920,7 @@ msgid "Flow Start" msgstr "Workflow Anfang" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3896,9 +3953,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Frankreich)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Benutzerfehler" @@ -3966,6 +4023,13 @@ msgstr "Clientaktion Konfiguration" msgid "Partner Addresses" msgstr "Partner Adressen" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4130,11 +4194,6 @@ msgstr "Anfrage Historie" msgid "Menus" msgstr "Menü" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Die gewählten Module wurden aktualisiert / installiert" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4333,6 +4392,11 @@ msgstr "" "Angabe des Feldnamens, in dem die Datensatz ID nach Erstellung gespeichert " "wird. Wenn dieses leer bleibt, kann der neue Datensatz nicht verfolgt werden." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4384,6 +4448,11 @@ msgstr "Wollen Sie die ID's löschen? " msgid "Serial Key" msgstr "Seriennummer" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Ausreichend" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4414,11 +4483,6 @@ msgstr "Mitarbeiter" msgid "Create Access" msgstr "Erzeuge Zugriff" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "Aktuelles Passwort" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4620,6 +4684,14 @@ msgstr "" "Instanz. Sie werden nach der Installation von neuen Modulen aufgerufen und " "können auch manuell im Administrator Menu aufgerufen werden." +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4895,7 +4967,7 @@ msgid "Change My Preferences" msgstr "Einstellungen jetzt vornehmen" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Ungültiger Modulname in der Aktionsdefinition." @@ -5095,9 +5167,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorieren" +#: model:res.country,name:base.us +msgid "United States" +msgstr "USA - Vereinigte Staaten von Amerika" #. module: base #: view:ir.module.module:0 @@ -5122,7 +5194,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modul %s: ungültiges Zertifikat" @@ -5159,9 +5231,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5183,12 +5256,6 @@ msgstr "Web Icon Grafik" msgid "Values for Event Type" msgstr "Werte für Ereignisart" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "Die Passworte stimmen nicht überein, bitte nochmals erfassen" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5328,6 +5395,13 @@ msgstr "" "Gruppenzugehörigkeit angezeigt, ansonst aufgrund der Leseerlaubnis des " "Objektes." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5353,7 +5427,7 @@ msgstr "" "Moduleabhängigkeit nicht erfüllt werden konnte: \"%s\"" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5534,6 +5608,13 @@ msgstr "Personalbeschaffung" msgid "Reunion (French)" msgstr "Reunion (franz.)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5541,11 +5622,6 @@ msgstr "Reunion (franz.)" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "Nach dem Ändern das Passwortes müssen Sie Aus- und wieder Einloggen." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5557,7 +5633,7 @@ msgid "Solomon Islands" msgstr "Solomoninseln" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5573,7 +5649,7 @@ msgid "Waiting" msgstr "Warteliste" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Konnte Modul base nicht laden" @@ -5627,9 +5703,9 @@ msgid "Module Category" msgstr "Module Kategorie" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "USA - Vereinigte Staaten von Amerika" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorieren" #. module: base #: report:ir.module.reference.graph:0 @@ -5785,13 +5861,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Modul %s existiert nicht!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5828,7 +5904,6 @@ msgstr "Der Kern von OpenERP, wird für alle Installationen gebraucht" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5847,6 +5922,11 @@ msgstr "PO Datei" msgid "Neutral Zone" msgstr "Neutrale Zone" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Hindi / हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5857,11 +5937,6 @@ msgstr "Benutzerdefiniert" msgid "Current" msgstr "Aktuell" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "Bitte das neue Passwort eingeben" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5978,7 +6053,7 @@ msgid "" msgstr "Auswahl des Objektes, für das die Aktion gelten soll" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "BItte definieren Sie die Server Option --email-from" @@ -6138,11 +6213,6 @@ msgstr "Fund Raising" msgid "Sequence Codes" msgstr "Sequenzcode" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "Passwort bestätigen" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6182,6 +6252,12 @@ msgstr "Frankreich" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6200,8 +6276,6 @@ msgstr "Afghanistan" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Fehler !" @@ -6319,14 +6393,6 @@ msgstr "Dienst Name" msgid "Pitcairn Island" msgstr "Pitcairninseln" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" -"Das neue und das Bestägungspasswort stimmen nicht überein, bitte prüfen" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6414,11 +6480,6 @@ msgstr "Andere Aktionen" msgid "Done" msgstr "Erledigt" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "Ändern" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6511,7 +6572,7 @@ msgstr "" "Um die offiziellen Übersetzungen zu sehen, verwenden Sie bitte diese Links" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6618,6 +6679,13 @@ msgstr "" "für die Währung %s \n" "am Stichtag: %s" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6652,6 +6720,11 @@ msgstr "Ausgehende Verbindung" msgid "Icon" msgstr "Icon" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6697,7 +6770,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6722,8 +6795,8 @@ msgid "Child IDs" msgstr "untergeordnete ID's" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem in Konfiguration 'Datensatznummer' in der Server Aktion!" @@ -7046,9 +7119,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Bericht konfigurieren" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis- und Futuna-Inseln" #. module: base #: selection:server.action.create,init,type:0 @@ -7084,7 +7157,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Die Feldlänge kann niemals kleiner als 1 sein!" @@ -7232,11 +7305,9 @@ msgid "Manufacturing" msgstr "Fertigung" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Exportiere Übersetzung" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komoren" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7250,6 +7321,11 @@ msgstr "Server Aktion" msgid "Cancel Install" msgstr "Installation Abbrechen" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7266,7 +7342,7 @@ msgid "Copy Object" msgstr "Kopiere Objekt" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7362,13 +7438,21 @@ msgstr "" "Anzahl der Wiederholungen.\n" " Eine negative Zahl bedeutet \"unlimitiert\"" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Benutzer Referenz" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Warnung !" @@ -7514,7 +7598,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Fehlerhafte Sucheinstellungen" @@ -7553,13 +7637,6 @@ msgstr "Ansicht Referenz" msgid "Selection" msgstr "Auswahl" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "Passwort ändern" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7699,6 +7776,14 @@ msgstr "nicht definierte 'get' Funktion" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "Norwegian Bokmål / Norsk bokmål" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7719,6 +7804,12 @@ msgstr "Pinnwände" msgid "Binary File or external URL" msgstr "Binäres Feld oder externe URL" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7744,6 +7835,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "Occitan (FR, post 1500) / Okzitan" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7812,11 +7912,6 @@ msgstr "Trigger Datum" msgid "Croatian / hrvatski jezik" msgstr "Croatian / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "Geben Sie Ihr aktuelles Passwort ein." - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7833,9 +7928,9 @@ msgid "The code of the country must be unique !" msgstr "Der Code des Landes muss eindeutig sein!" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Zeitaufzeichnung" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Uninstallierbar" #. module: base #: view:res.partner.category:0 @@ -7876,9 +7971,12 @@ msgid "Menu Action" msgstr "Menü Aktion" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Färöer Inseln" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -8011,6 +8109,14 @@ msgstr "" "Name der ausgeführten Methode des Objektes bei Durchführung der nächsten " "Beschaffungsdisposition." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -8022,7 +8128,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -8122,7 +8228,6 @@ msgid "ltd" msgstr "Ltd" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8230,7 +8335,7 @@ msgid "Account No." msgstr "Konto Nummer" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Basis Sprache 'en_US' kann nicht gelöscht werden !" @@ -8333,7 +8438,7 @@ msgid "Auto-Refresh" msgstr "Autospeicherung..." #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8344,11 +8449,6 @@ msgstr "" msgid "Diagram" msgstr "Diagramm" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis- und Futuna-Inseln" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8406,14 +8506,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8422,7 +8525,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8470,6 +8573,11 @@ msgstr "Tansania" msgid "Danish / Dansk" msgstr "Dänisch / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8480,11 +8588,6 @@ msgstr "Weihnachtsinseln" msgid "Other Actions Configuration" msgstr "Andere Aktionen" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Uninstallierbar" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8680,12 +8783,13 @@ msgid "Luxembourg" msgstr "Luxemburg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Ausreichend" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Diejenige Aktion oder Button welche die Aktion triggert (auslöst)." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Fehler! Sie können keine rekursiven Menüeinträge erstellen." @@ -8861,7 +8965,7 @@ msgid "View Auto-Load" msgstr "Ansicht Autorefresh" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Sie können das Feld '%s' nicht entfernen!" @@ -8904,7 +9008,7 @@ msgstr "" "Portable Objects)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -9069,9 +9173,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Erweiterte Suche" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Bericht konfigurieren" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9213,6 +9317,12 @@ msgstr "" msgid "Portrait" msgstr "Porträt" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9385,7 +9495,7 @@ msgid "Account Owner" msgstr "Konto Inhaber" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "Unternehmenswechsel Warnhinweis" @@ -9956,6 +10066,9 @@ msgstr "Russian / русский язык" #~ msgid "Field child1" #~ msgstr "Feld Kind 1" +#~ msgid "Field Selection" +#~ msgstr "Auswahl Felder" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "Gruppen werden genutzt um Zugriffsrechte zu definieren." @@ -10617,6 +10730,9 @@ msgstr "Russian / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Erweiterte Suche" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -11131,6 +11247,9 @@ msgstr "Russian / русский язык" #~ msgid "Occitan (post 1500) / France" #~ msgstr "Okzitanisch (post 1500) / Frankreich" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "Nach dem Ändern das Passwortes müssen Sie Aus- und wieder Einloggen." + #~ msgid "Japanese / Japan" #~ msgstr "Japanisch / Japan" @@ -11146,6 +11265,9 @@ msgstr "Russian / русский язык" #~ msgid "Abkhazian (RU)" #~ msgstr "Abchasisch (RU)" +#~ msgid "Time Tracking" +#~ msgstr "Zeitaufzeichnung" + #~ msgid "" #~ "Would your payment have been carried out after this mail was sent, please " #~ "consider the present one as void. Do not hesitate to contact our accounting " @@ -11310,6 +11432,24 @@ msgstr "Russian / русский язык" #~ msgid "Corporation" #~ msgstr "Gesellschaft" +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Liste aller zertifizierten Modul zu Ihrer Verfügung, um OpenERP individuell " +#~ "zu konfigurieren. Module, die installiert wurden sind als solche " +#~ "gekennzeichnet. Sie können ein bestimmtes Modul über die Bezeichnung des " +#~ "Moduls oder über die Beschreibung des Moduls finden. Sie brauchen dabei " +#~ "nicht jedes einzelne Module nacheinander zu installieren. Sie können einige " +#~ "Module gleichzeitig in einem Zug installieren, indem Sie auf die " +#~ "Schaltfläche 'Beauftrage Installation' in der Listensicht klicken. Klicken " +#~ "Sie anschließend 'Starte Installation' um alle zur Installation geplanten " +#~ "Module zu installieren." + #~ msgid "Serbian / српски језик" #~ msgstr "Serbian / српски језик" @@ -11364,3 +11504,40 @@ msgstr "Russian / русский язык" #, python-format #~ msgid "Invalid type" #~ msgstr "Fehlerhafter Typ" + +#~ msgid "change.user.password" +#~ msgstr "change.user.password" + +#~ msgid "New Password" +#~ msgstr "Neues Passwort" + +#~ msgid "Enter the new password again for confirmation." +#~ msgstr "Zur Überprüfung das neue Passwort nochmals eingeben." + +#~ msgid "Current Password" +#~ msgstr "Aktuelles Passwort" + +#, python-format +#~ msgid "The current password does not match, please double-check it." +#~ msgstr "Die Passworte stimmen nicht überein, bitte nochmals erfassen" + +#~ msgid "Enter the new password." +#~ msgstr "Bitte das neue Passwort eingeben" + +#~ msgid "Confirm Password" +#~ msgstr "Passwort bestätigen" + +#, python-format +#~ msgid "" +#~ "The new and confirmation passwords do not match, please double-check them." +#~ msgstr "" +#~ "Das neue und das Bestägungspasswort stimmen nicht überein, bitte prüfen" + +#~ msgid "Change" +#~ msgstr "Ändern" + +#~ msgid "Enter your current password." +#~ msgstr "Geben Sie Ihr aktuelles Passwort ein." + +#~ msgid "Change Password" +#~ msgstr "Passwort ändern" diff --git a/bin/addons/base/i18n/el.po b/bin/addons/base/i18n/el.po index 28d220f8cfa..79b9e67e867 100644 --- a/bin/addons/base/i18n/el.po +++ b/bin/addons/base/i18n/el.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-18 08:23+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: nls@hellug.gr \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:04+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:48+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" @@ -113,13 +113,21 @@ msgid "Created Views" msgstr "Δημιουργημένες Προβολές" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -131,9 +139,18 @@ msgid "Target Window" msgstr "Επιλεγμένο Παράθυρο" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Νότια Κορέα" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -347,7 +364,7 @@ msgid "Netherlands Antilles" msgstr "Netherlands Antilles (Ολλανδικές Αντίλλες)" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -391,6 +408,11 @@ msgstr "" "Αυτός ο κωδικός ISO είναι το όνομα των αρχείων po που χρησιμοποιούνται στις " "μεταφράσεις" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Το σύστημά σας θα ενημερωθεί." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -463,7 +485,7 @@ msgid "Miscellaneous Suppliers" msgstr "Λοιποί προμηθευτές" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Τα ειδικά πεδία πρέπει να έχουν όνομα που ξεκινάει από 'x_' !" @@ -810,6 +832,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "Ταμπλό Διαχείρισης Ανθρώπινων Πόρων" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -826,6 +854,11 @@ msgstr "Άκυρο XML για Αρχιτεκτονική Όψης!" msgid "Cayman Islands" msgstr "Cayman Islands" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Νότια Κορέα" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -939,6 +972,12 @@ msgstr "Όνομα Αρθρώματος" msgid "Marshall Islands" msgstr "Marshall Islands" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -967,6 +1006,12 @@ msgid "" msgstr "" "Κανόνες εξειδικευμένοι κατά ομάδα συνδυάζονται με έναν λογικό τελεστή AND" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1105,13 +1150,23 @@ msgstr "Κύρια διαδρομή του φακέλου αναφορών" msgid "Reports" msgstr "Αναφορές" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Αν ρυθμιστεί 'true', η ενέργεια δε θα εμφανίζεται στη δεξιά γραμμή εργαλείων " +"της φόρμας." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Κατά τη Δημιουργία" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1158,9 +1213,11 @@ msgid "Wizard Info" msgstr "Πληροφορίες Αυτόματου Οδηγού" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Εξαγωγή Μετάφρασης" #. module: base #: help:res.log,secondary:0 @@ -1232,25 +1289,6 @@ msgstr "Συνημμένη ID" msgid "Day: %(day)s" msgstr "Ημέρα: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Απαρίθμηση όλων των πιστοποιημένων αρθρωμάτων που είναι διαθέσιμα για να " -"διαμορφώσετε το OpenERP σας. Τα αρθρώματα που έχουν εγκατασταθεί " -"σημειώνονται σχετικά. Μπορείτε να αναζητήσετε ένα συγκεκριμένο άρθρωμα " -"χρησιμοποιώντας το όνομα ή την περιγραφή του αρθρώματος. Δεν χρειάζεται να " -"εγκαταστήσετε αρθρώματα ένα προς ένα, μπορείτε να εγκαταστήσετε πολλά κάθε " -"φορά κάνοντας κλικ στο κουμπί προγράμματος σε αυτή τη λίστα. Κατόπιν, " -"εφαρμόστε το πρόγραμμα αναβάθμισης από το μενού Ενεργειών μία φορά για όλα " -"όσα έχετε προγραμματίσει για εγκατάσταση." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1362,7 +1400,7 @@ msgid "Formula" msgstr "Τύπος" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Can not remove root user!" @@ -1374,7 +1412,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (αντίγραφο)" @@ -1555,11 +1593,6 @@ msgstr "" "Παράδειγμα:GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1673,6 +1706,11 @@ msgstr "Πεδίο" msgid "Groups (no group = global)" msgstr "Ομάδες (καμμία ομάδα = καθολική)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1706,7 +1744,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1903,6 +1941,12 @@ msgid "Messages" msgstr "Μηνύματα" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1968,6 +2012,11 @@ msgstr "Norfolk Island" msgid "Korean (KR) / 한국어 (KR)" msgstr "Κορεάτικη (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -2007,6 +2056,11 @@ msgstr "" msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2222,6 +2276,13 @@ msgstr "Ισπανικά (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2306,6 +2367,7 @@ msgstr "Field Mappings." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Άρθρωμα" @@ -2374,7 +2436,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Παρακαλώ επιλέξτε ενέργειας προς εκτέλεση!" @@ -2532,11 +2594,6 @@ msgstr "Σφάλμα! Υπάρχει κατηγορία με την ίδια π msgid "%x - Appropriate date representation." msgstr "%x - Ορθή αναπαράσταση ημερ/νίας" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2885,11 +2942,6 @@ msgstr "Τηλεπικοινωνίες" msgid "Trigger Object" msgstr "Αντικείμενο Εναύσματος" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2928,9 +2980,9 @@ msgid "Sequence Type" msgstr "Τύπος Ιεράρχησης" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Ινδικά / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2954,6 +3006,7 @@ msgstr "Περιορισμός της SQL" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Μοντέλο" @@ -3068,12 +3121,9 @@ msgstr "" "να εγκατασταθεί" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "" -"Το είδος ενέργειας ή κουμπιού στον client το οποίο θα σημάνει την έναρξη της " -"ενέργειας." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Τα επιλεγμένα αρθρώματα έχουν ενημερωθεί / εγκατασταθεί !" #. module: base #: selection:base.language.install,lang:0 @@ -3093,6 +3143,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Ροές Εργασίας" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3134,7 +3189,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Δεν μπορείτε να διαγράψετε το μοντέλο '%s' !" @@ -3232,7 +3287,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3366,11 +3421,6 @@ msgstr "" msgid "System update completed" msgstr "Ενημέρωση συστήματος ολοκληρώθηκε" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Field Selection" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3408,14 +3458,10 @@ msgid "Apply For Delete" msgstr "Αίτημα διαγραφής" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Αν ρυθμιστεί 'true', η ενέργεια δε θα εμφανίζεται στη δεξιά γραμμή εργαλείων " -"της φόρμας." #. module: base #: view:ir.attachment:0 @@ -3622,6 +3668,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3665,9 +3719,11 @@ msgid "Starter Partner" msgstr "Νέος Συνεργάτης" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Το σύστημά σας θα ενημερωθεί." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3837,7 +3893,7 @@ msgid "Flow Start" msgstr "Εκκίνηση Ροής" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3871,9 +3927,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (French)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Σφάλμα Χρήστη" @@ -3938,6 +3994,13 @@ msgstr "Client Action Configuration" msgid "Partner Addresses" msgstr "Διευθύνσεις Συνεργάτη" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4100,11 +4163,6 @@ msgstr "Αίτηση Ιστορικού" msgid "Menus" msgstr "Μενού" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Τα επιλεγμένα αρθρώματα έχουν ενημερωθεί / εγκατασταθεί !" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4299,6 +4357,11 @@ msgstr "" "Provide the field name where the record id is stored after the create " "operations. If it is empty, you can not track the new record." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4350,6 +4413,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Χαμηλή" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4382,11 +4450,6 @@ msgstr "Υπάλληλος" msgid "Create Access" msgstr "Δημιουργία Πρόσβασης" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4583,6 +4646,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4853,7 +4924,7 @@ msgid "Change My Preferences" msgstr "Αλλαγή Προτιμήσεων" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Λανθασμένο όνομα μοντέλου στην δήλωση ενέργειας" @@ -5052,9 +5123,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Παράβλεψη" +#: model:res.country,name:base.us +msgid "United States" +msgstr "USA" #. module: base #: view:ir.module.module:0 @@ -5079,7 +5150,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Άρθρωμα %s: Άκυρο Πιστοποιητικό Ποιότητας" @@ -5116,9 +5187,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5140,12 +5212,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Τιμές για τον Τύπο Συμβάντος" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5271,6 +5337,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5294,7 +5367,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5471,6 +5544,13 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunion (French)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5478,13 +5558,6 @@ msgstr "Reunion (French)" msgid "Global" msgstr "Παγκόσμια" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" -"Θα πρέπει να αποσυνδεθείτε και να συνδεθείτε ξανά μετά την αλλαγή κωδικού " -"πρόσβασης." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5496,7 +5569,7 @@ msgid "Solomon Islands" msgstr "Solomon Islands" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5512,7 +5585,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Δεν μπορεί να φορτωθεί το βασικό άρθρωμα" @@ -5566,9 +5639,9 @@ msgid "Module Category" msgstr "Κατηγορίες Αρθρωμάτων" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "USA" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Παράβλεψη" #. module: base #: report:ir.module.reference.graph:0 @@ -5719,13 +5792,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5761,7 +5834,6 @@ msgstr "Ο πυρήνας του OpenERP, αναγκαίος για κάθε ε #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5780,6 +5852,11 @@ msgstr "Αρχείο PO" msgid "Neutral Zone" msgstr "Ουδέτερη Ζώνη" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Ινδικά / हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5790,11 +5867,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5912,7 +5984,7 @@ msgstr "" "Select the object on which the action will work (read, write, create)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -6071,11 +6143,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6113,6 +6180,12 @@ msgstr "France" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6131,8 +6204,6 @@ msgstr "Afghanistan, Islamic State of" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Σφάλμα!" @@ -6246,13 +6317,6 @@ msgstr "Όνομα Υπηρεσίας" msgid "Pitcairn Island" msgstr "Pitcairn Island" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6336,11 +6400,6 @@ msgstr "Άλλες Ενέργειες" msgid "Done" msgstr "Ολοκληρωμένο" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6429,7 +6488,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6531,6 +6590,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6565,6 +6631,11 @@ msgstr "Εκροές" msgid "Icon" msgstr "Εικονίδιο" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6610,7 +6681,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6635,8 +6706,8 @@ msgid "Child IDs" msgstr "Child IDs" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem in configuration `Record Id` in Server Action!" @@ -6954,9 +7025,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Ρυθμίσεις Εναύσματος (Trigger)." +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" #. module: base #: selection:server.action.create,init,type:0 @@ -6992,7 +7063,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "ο μέγεθος του πεδίου δεν μπορεί ποτέ να είναι μικρότερο του 1!" @@ -7140,11 +7211,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Εξαγωγή Μετάφρασης" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comoros" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7158,6 +7227,11 @@ msgstr "Server Actions" msgid "Cancel Install" msgstr "Ακύρωση Εγκατάστασης" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7174,7 +7248,7 @@ msgid "Copy Object" msgstr "Αντιγραφή Αντικειμένου" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7263,13 +7337,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "User Ref." #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Προσοχή!" @@ -7415,7 +7497,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Λάθος κριτήρια αναζήτησης" @@ -7454,13 +7536,6 @@ msgstr "View Ref." msgid "Selection" msgstr "Επιλογή" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7597,6 +7672,14 @@ msgstr "undefined get method !" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7617,6 +7700,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7642,6 +7731,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7710,11 +7808,6 @@ msgstr "Ημερ/νία Εναύσματος" msgid "Croatian / hrvatski jezik" msgstr "Croatian / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7731,9 +7824,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Uninstallable" #. module: base #: view:res.partner.category:0 @@ -7774,9 +7867,12 @@ msgid "Menu Action" msgstr "Λειτουργία Μενού" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7907,6 +8003,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7918,7 +8022,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -8014,7 +8118,6 @@ msgid "ltd" msgstr "Ε.Π.Ε." #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8122,7 +8225,7 @@ msgid "Account No." msgstr "Αρ. Λογαριασμού" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Η βασική γλώσσα 'en_US' δεν μπορεί να διαγραφεί!" @@ -8223,7 +8326,7 @@ msgid "Auto-Refresh" msgstr "Auto-Refresh" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8233,11 +8336,6 @@ msgstr "" msgid "Diagram" msgstr "Διάγραμμα" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8295,14 +8393,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8311,7 +8412,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8359,6 +8460,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "Δανέζικα / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8369,11 +8475,6 @@ msgstr "Christmas Island" msgid "Other Actions Configuration" msgstr "Ρυθμίσεις Άλλων Ενεργειών" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Uninstallable" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8568,12 +8669,15 @@ msgid "Luxembourg" msgstr "Luxembourg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Χαμηλή" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"Το είδος ενέργειας ή κουμπιού στον client το οποίο θα σημάνει την έναρξη της " +"ενέργειας." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8742,7 +8846,7 @@ msgid "View Auto-Load" msgstr "Αυτόματη Φόρτωση Προβολής" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Δεν μπορείτε να καταργήσετε το πεδίο '%s' !" @@ -8785,7 +8889,7 @@ msgstr "" "(GetText Portable Objects)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8943,9 +9047,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Προχωρημένη Αναζήτηση" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Ρυθμίσεις Εναύσματος (Trigger)." #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9077,6 +9181,12 @@ msgstr "" msgid "Portrait" msgstr "Πορτραίτο" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9247,7 +9357,7 @@ msgid "Account Owner" msgstr "Ιδιοκτήτης Λογαρισμού" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "Προειδοποίηση αλλαγής εταιρίας" @@ -10269,6 +10379,9 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Field child1" #~ msgstr "Field child1" +#~ msgid "Field Selection" +#~ msgstr "Field Selection" + #, python-format #~ msgid "Delivered Qty" #~ msgstr "Παραληφθήσα Ποσ." @@ -11676,6 +11789,9 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Προχωρημένη Αναζήτηση" + #, python-format #~ msgid "" #~ "You have to select a pricelist in the purchase form !\n" @@ -12087,6 +12203,23 @@ msgstr "Ρώσσικα / русский язык" #~ "Δεν μπορείτε να φορτώσετε μετάφραση για τη γλώσσα εξαιτίας μη έγκυρου " #~ "κωδικού γλώσσας/χώρας." +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Απαρίθμηση όλων των πιστοποιημένων αρθρωμάτων που είναι διαθέσιμα για να " +#~ "διαμορφώσετε το OpenERP σας. Τα αρθρώματα που έχουν εγκατασταθεί " +#~ "σημειώνονται σχετικά. Μπορείτε να αναζητήσετε ένα συγκεκριμένο άρθρωμα " +#~ "χρησιμοποιώντας το όνομα ή την περιγραφή του αρθρώματος. Δεν χρειάζεται να " +#~ "εγκαταστήσετε αρθρώματα ένα προς ένα, μπορείτε να εγκαταστήσετε πολλά κάθε " +#~ "φορά κάνοντας κλικ στο κουμπί προγράμματος σε αυτή τη λίστα. Κατόπιν, " +#~ "εφαρμόστε το πρόγραμμα αναβάθμισης από το μενού Ενεργειών μία φορά για όλα " +#~ "όσα έχετε προγραμματίσει για εγκατάσταση." + #~ msgid "terp-stock_align_left_24" #~ msgstr "terp-stock_align_left_24" @@ -12128,3 +12261,8 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Limited Company" #~ msgstr "Εταιρία Περιορισμένης Ευθύνης" + +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "" +#~ "Θα πρέπει να αποσυνδεθείτε και να συνδεθείτε ξανά μετά την αλλαγή κωδικού " +#~ "πρόσβασης." diff --git a/bin/addons/base/i18n/en_GB.po b/bin/addons/base/i18n/en_GB.po index 7a182bbbccb..95b3dc5265d 100644 --- a/bin/addons/base/i18n/en_GB.po +++ b/bin/addons/base/i18n/en_GB.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-21 15:20+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:09+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:53+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "Created Views" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "Target Window" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -344,7 +361,7 @@ msgid "Netherlands Antilles" msgstr "Netherlands Antilles" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -386,6 +403,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "PO files must use this ISO code for transalations" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -457,7 +479,7 @@ msgid "Miscellaneous Suppliers" msgstr "Miscellaneous suppliers" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "The name of custom fields must begin with 'x_' !" @@ -802,6 +824,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "Human Resources Dashboard" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -818,6 +846,11 @@ msgstr "Invalid XML code in Arch fields of View!" msgid "Cayman Islands" msgstr "Cayman Islands" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "South Korea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -930,6 +963,12 @@ msgstr "Module Name" msgid "Marshall Islands" msgstr "Marshall Islands" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -958,6 +997,12 @@ msgid "" msgstr "" "2. Group-specific rules are combined together with a logical AND operator" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1099,13 +1144,23 @@ msgstr "Main report file path" msgid "Reports" msgstr "Reports" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "On Create" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1151,9 +1206,11 @@ msgid "Wizard Info" msgstr "Wizard Info" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1226,23 +1283,6 @@ msgstr "Attached ID" msgid "Day: %(day)s" msgstr "Day: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1354,7 +1394,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Can not remove root user!" @@ -1366,7 +1406,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (copy)" @@ -1546,11 +1586,6 @@ msgstr "" "Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1666,6 +1701,11 @@ msgstr "Field" msgid "Groups (no group = global)" msgstr "Groups (no group = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1699,7 +1739,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1893,6 +1933,12 @@ msgid "Messages" msgstr "Messages" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1957,6 +2003,11 @@ msgstr "Norfolk Island" msgid "Korean (KR) / 한국어 (KR)" msgstr "Korean (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1994,6 +2045,11 @@ msgstr "Can not upgrade module '%s'. It is not installed." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2209,6 +2265,13 @@ msgstr "Spanish (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2293,6 +2356,7 @@ msgstr "Field Mappings." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Module" @@ -2361,7 +2425,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Please specify an action to launch !" @@ -2516,11 +2580,6 @@ msgstr "Error ! You can not create recursive categories." msgid "%x - Appropriate date representation." msgstr "%x - Appropriate date representation." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2859,11 +2918,6 @@ msgstr "" msgid "Trigger Object" msgstr "Trigger Object" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2902,8 +2956,8 @@ msgid "Sequence Type" msgstr "Sequence Type" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2928,6 +2982,7 @@ msgstr "SQL Constraint" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -3035,11 +3090,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "You try to remove a module that is installed or will be installed" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" -"The kind of action or button in the client side that will trigger the action." #. module: base #: selection:base.language.install,lang:0 @@ -3059,6 +3112,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Workflows" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3100,7 +3158,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "You cannot remove the model '%s' !" @@ -3198,7 +3256,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3330,11 +3388,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Field Selection" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3372,14 +3425,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." #. module: base #: view:ir.attachment:0 @@ -3578,6 +3627,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3619,8 +3676,10 @@ msgid "Starter Partner" msgstr "Starter Partner" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3789,7 +3848,7 @@ msgid "Flow Start" msgstr "Flow Start" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3821,9 +3880,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (French)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3888,6 +3947,13 @@ msgstr "Client Action Configuration" msgid "Partner Addresses" msgstr "Partner Addresses" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4049,11 +4115,6 @@ msgstr "Request History" msgid "Menus" msgstr "Menus" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4247,6 +4308,11 @@ msgstr "" "Provide the field name where the record id is stored after the create " "operations. If it is empty, you can not track the new record." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4298,6 +4364,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Low" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4329,11 +4400,6 @@ msgstr "" msgid "Create Access" msgstr "Create Access" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4530,6 +4596,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4795,7 +4869,7 @@ msgid "Change My Preferences" msgstr "Change My Preferences" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Invalid model name in the action definition." @@ -4990,9 +5064,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "" +#: model:res.country,name:base.us +msgid "United States" +msgstr "United States" #. module: base #: view:ir.module.module:0 @@ -5017,7 +5091,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Module %s: Invalid Quality Certificate" @@ -5054,9 +5128,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5078,12 +5153,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Values for Event Type" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5209,6 +5278,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5232,7 +5308,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5409,6 +5485,13 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunion (French)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5416,11 +5499,6 @@ msgstr "Reunion (French)" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5432,7 +5510,7 @@ msgid "Solomon Islands" msgstr "Solomon Islands" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5448,7 +5526,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5502,9 +5580,9 @@ msgid "Module Category" msgstr "Module Category" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "" #. module: base #: report:ir.module.reference.graph:0 @@ -5655,13 +5733,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5696,7 +5774,6 @@ msgstr "The kernel of OpenERP, needed for all installation." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5715,6 +5792,11 @@ msgstr "PO File" msgid "Neutral Zone" msgstr "Neutral Zone" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5725,11 +5807,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5845,7 +5922,7 @@ msgstr "" "Select the object on which the action will work (read, write, create)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -6004,11 +6081,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6046,6 +6118,12 @@ msgstr "France" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6064,8 +6142,6 @@ msgstr "Afghanistan, Islamic State of" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Error !" @@ -6179,13 +6255,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "Pitcairn Island" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6269,11 +6338,6 @@ msgstr "Other Actions" msgid "Done" msgstr "Done" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6362,7 +6426,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6464,6 +6528,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6498,6 +6569,11 @@ msgstr "Outgoing Transitions" msgid "Icon" msgstr "Icon" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6543,7 +6619,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6564,8 +6640,8 @@ msgid "Child IDs" msgstr "Child IDs" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem in configuration `Record Id` in Server Action!" @@ -6877,9 +6953,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" #. module: base #: selection:server.action.create,init,type:0 @@ -6915,7 +6991,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -7063,11 +7139,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comoros" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7081,6 +7155,11 @@ msgstr "Server Actions" msgid "Cancel Install" msgstr "Cancel Install" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7097,7 +7176,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7186,13 +7265,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "User Ref." #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7338,7 +7425,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7377,13 +7464,6 @@ msgstr "View Ref." msgid "Selection" msgstr "Selection" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7520,6 +7600,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7540,6 +7628,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7565,6 +7659,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7633,11 +7736,6 @@ msgstr "Trigger Date" msgid "Croatian / hrvatski jezik" msgstr "Croatian / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7654,9 +7752,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Uninstallable" #. module: base #: view:res.partner.category:0 @@ -7697,9 +7795,12 @@ msgid "Menu Action" msgstr "Menu Action" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7827,6 +7928,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7838,7 +7947,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7928,7 +8037,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8036,7 +8144,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8137,7 +8245,7 @@ msgid "Auto-Refresh" msgstr "Auto-Refresh" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8147,11 +8255,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8209,14 +8312,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8225,7 +8331,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8273,6 +8379,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "Danish / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8283,11 +8394,6 @@ msgstr "Christmas Island" msgid "Other Actions Configuration" msgstr "Other Actions Configuration" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Uninstallable" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8481,12 +8587,14 @@ msgid "Luxembourg" msgstr "Luxembourg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"The kind of action or button in the client side that will trigger the action." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8655,7 +8763,7 @@ msgid "View Auto-Load" msgstr "View Auto-Load" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8696,7 +8804,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8854,9 +8962,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Trigger Configuration" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8988,6 +9096,12 @@ msgstr "" msgid "Portrait" msgstr "Portrait" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9157,7 +9271,7 @@ msgid "Account Owner" msgstr "Account Owner" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9836,6 +9950,9 @@ msgstr "Russian / русский язык" #~ msgid "Field child1" #~ msgstr "Field child1" +#~ msgid "Field Selection" +#~ msgstr "Field Selection" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "Groups are used to defined access rights on each screen and menu." @@ -10563,6 +10680,9 @@ msgstr "Russian / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Advanced Search" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -10691,3 +10811,18 @@ msgstr "Russian / русский язык" #~ msgid "Corporation" #~ msgstr "Corporation" + +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." diff --git a/bin/addons/base/i18n/es.po b/bin/addons/base/i18n/es.po index ffb7213fb3c..7a0c9dd7295 100644 --- a/bin/addons/base/i18n/es.po +++ b/bin/addons/base/i18n/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-28 07:22+0000\n" "Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\n" @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:08+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:51+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "Vistas creadas" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "Ventana destino" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Corea del Sur" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -347,7 +364,7 @@ msgid "Netherlands Antilles" msgstr "Antillas holandesas" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -393,6 +410,11 @@ msgstr "" "Este código ISO es el nombre de los ficheros po utilizados en las " "traducciones." +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Su sistema será actualizado" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -465,7 +487,7 @@ msgid "Miscellaneous Suppliers" msgstr "Proveedores varios" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -815,6 +837,12 @@ msgstr "Guam (EE.UU.)" msgid "Human Resources Dashboard" msgstr "Tablero de recursos humanos" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -831,6 +859,11 @@ msgstr "¡XML inválido para la definición de la vista!" msgid "Cayman Islands" msgstr "Islas Caimán" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Corea del Sur" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -944,6 +977,12 @@ msgstr "Nombre de módulo" msgid "Marshall Islands" msgstr "Islas Marshall" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -973,6 +1012,12 @@ msgstr "" "2. Reglas específicas de grupo se combinan juntas mediante un operador " "lógico AND" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1117,13 +1162,23 @@ msgstr "Ruta del informe principal" msgid "Reports" msgstr "Informes" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Si se marca a cierto, la acción no se mostrará en la barra de herramientas " +"de la derecha en una vista formulario." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Al crear" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1170,9 +1225,11 @@ msgid "Wizard Info" msgstr "Información asistente" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comores" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Exportar traducción" #. module: base #: help:res.log,secondary:0 @@ -1243,24 +1300,6 @@ msgstr "ID archivo adjunto" msgid "Day: %(day)s" msgstr "Día: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Lista todos los módulos certificados disponibles para configurar su OpenERP. " -"Los módulos que están instalados, aparecen ya marcados. Puede buscar un " -"módulo específico utilizando el nombre o la descripción del módulo. No " -"necesita instalar módulos uno a uno, se puede instalar varios a la vez " -"haciendo click en el botón \"Programar para instalación\" en esta lista. Una " -"vez realizado esto, pulse el boton \"Aplicar actualizaciones programadas\" " -"desde la acción del menu, y se instalarán todos aquellos programados." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1372,7 +1411,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "¡No se puede eliminar el usuario principal!" @@ -1384,7 +1423,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (copiar)" @@ -1565,11 +1604,6 @@ msgstr "" "Ejemplo: REGLA_GLOBAL_1 AND REGLA_GLOBAL_2 AND ( (GRUPO_A_REGLA_1 AND " "GRUPO_A_REGLA_2) OR (GRUPO_B_REGLA_1 AND GRUPO_B_REGLA_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1688,6 +1722,11 @@ msgstr "Campo" msgid "Groups (no group = global)" msgstr "Grupos (sin grupos = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Islas Feroe" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1721,7 +1760,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1918,6 +1957,12 @@ msgid "Messages" msgstr "Mensajes" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1982,6 +2027,11 @@ msgstr "Isla Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "Koreano" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -2019,6 +2069,11 @@ msgstr "No puede actualizar el módulo '% s'. No está instalado" msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.empresa.evento" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2234,6 +2289,13 @@ msgstr "Español" msgid "workflow.activity" msgstr "workflow.actividad" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2318,6 +2380,7 @@ msgstr "Mapeo de campos." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Módulo" @@ -2386,7 +2449,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "¡ Por favor, indique una acción a ejecutar !" @@ -2545,11 +2608,6 @@ msgstr "¡Error! No puede crear categorías recursivas." msgid "%x - Appropriate date representation." msgstr "%x - Representación apropiada de fecha." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2897,11 +2955,6 @@ msgstr "Sector de telecomunicaciones" msgid "Trigger Object" msgstr "Objeto del disparo" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2940,9 +2993,9 @@ msgid "Sequence Type" msgstr "Tipo de secuencia" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2966,6 +3019,7 @@ msgstr "Restricción SQL" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Modelo" @@ -3079,10 +3133,9 @@ msgstr "" "Está tratando de eliminar un módulo que está instalado o será instalado" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Tipo de acción o botón del lado del cliente que activará la acción." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Los módulos seleccionados han sido actualizados / instalados !" #. module: base #: selection:base.language.install,lang:0 @@ -3102,6 +3155,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Flujos" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3143,7 +3201,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "¡No puede eliminar este modelo «%s»!" @@ -3241,7 +3299,7 @@ msgid "API ID" msgstr "ID API" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3376,11 +3434,6 @@ msgstr "" msgid "System update completed" msgstr "Actualización del sistema terminada" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Selección de campo" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3418,14 +3471,10 @@ msgid "Apply For Delete" msgstr "Aplicar para Eliminar" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Si se marca a cierto, la acción no se mostrará en la barra de herramientas " -"de la derecha en una vista formulario." #. module: base #: view:ir.attachment:0 @@ -3637,6 +3686,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3682,9 +3739,11 @@ msgid "Starter Partner" msgstr "Empresa joven" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Su sistema será actualizado" +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3855,7 +3914,7 @@ msgid "Flow Start" msgstr "Inicio del flujo" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3889,9 +3948,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe (Francesa)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Error de usuario" @@ -3959,6 +4018,13 @@ msgstr "Configuración acción cliente" msgid "Partner Addresses" msgstr "Direcciones de empresa" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4122,11 +4188,6 @@ msgstr "Historial de solicitudes" msgid "Menus" msgstr "Menús" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Los módulos seleccionados han sido actualizados / instalados !" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4321,6 +4382,11 @@ msgstr "" "las operaciones de creación. Si está vacío, no podrá realizar un seguimiento " "del registro nuevo." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4372,6 +4438,11 @@ msgstr "¿Desea limpiar Ids? " msgid "Serial Key" msgstr "Número de serie" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Baja" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4402,11 +4473,6 @@ msgstr "Empleado" msgid "Create Access" msgstr "Permiso para crear" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4603,6 +4669,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4877,7 +4951,7 @@ msgid "Change My Preferences" msgstr "Cambiar mis preferencias" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Nombre de modelo no válido en la definición de acción." @@ -5077,9 +5151,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorar" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Estados Unidos" #. module: base #: view:ir.module.module:0 @@ -5104,7 +5178,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.objeto.lineas" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Módulo %s: Certificado de calidad no válido" @@ -5141,9 +5215,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.empresa.evento" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5165,12 +5240,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Valores para tipo evento" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5311,6 +5380,13 @@ msgstr "" "campo está vacío, OpenERP otorgará la visibilidad basándose en los permisos " "de lectura de los objetos asociados." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5336,7 +5412,7 @@ msgstr "" "resuelta: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5517,6 +5593,13 @@ msgstr "Proceso de selección" msgid "Reunion (French)" msgstr "Reunión (Francesa)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5524,12 +5607,6 @@ msgstr "Reunión (Francesa)" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" -"Debe desconectarse y volver a conectarse después de cambiar su contraseña." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5541,7 +5618,7 @@ msgid "Solomon Islands" msgstr "Islas Salomón" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5557,7 +5634,7 @@ msgid "Waiting" msgstr "En espera" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Podría no cargar el módulo base" @@ -5611,9 +5688,9 @@ msgid "Module Category" msgstr "Categoría del módulo" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Estados Unidos" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorar" #. module: base #: report:ir.module.reference.graph:0 @@ -5769,13 +5846,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "¡No existe el módulo %s!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5811,7 +5888,6 @@ msgstr "El núcleo de OpenERP, necesario para toda instalación." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5830,6 +5906,11 @@ msgstr "Archivo PO" msgid "Neutral Zone" msgstr "Zona neutral" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Hindi / हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5840,11 +5921,6 @@ msgstr "Personalizado" msgid "Current" msgstr "Actual" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5963,7 +6039,7 @@ msgstr "" "Seleccione el objeto sobre el cual la acción actuará (leer, escribir, crear)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "¡Verifique la opción del servidor --email-from !" @@ -6125,11 +6201,6 @@ msgstr "Recaudación de fondos" msgid "Sequence Codes" msgstr "Códigos de secuencias" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6170,6 +6241,12 @@ msgstr "Francia" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6188,8 +6265,6 @@ msgstr "Estado Islámico de Afganistán" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "¡Error!" @@ -6307,13 +6382,6 @@ msgstr "Nombre del servicio" msgid "Pitcairn Island" msgstr "Isla Pitcairn" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6401,11 +6469,6 @@ msgstr "Otras acciones" msgid "Done" msgstr "Realizado" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6497,7 +6560,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "Para buscar traducciones oficiales, puede empezar con estos enlaces:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6602,6 +6665,13 @@ msgstr "" "para la moneda: %s \n" "en la fecha: %s" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6636,6 +6706,11 @@ msgstr "Transiciones salientes" msgid "Icon" msgstr "Icono" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6681,7 +6756,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6704,8 +6779,8 @@ msgid "Child IDs" msgstr "IDs hijos" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "¡Problema en configuración `Id registro` en la acción del servidor!" @@ -7030,9 +7105,9 @@ msgid "Grenada" msgstr "Granada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Configuración del disparo" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Islas Wallis y Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -7070,7 +7145,7 @@ msgid "ir.wizard.screen" msgstr "ir.asistente.pantalla" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "¡El tamaño del campo nunca puede ser menor que 1!" @@ -7218,11 +7293,9 @@ msgid "Manufacturing" msgstr "Producción" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Exportar traducción" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comores" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7236,6 +7309,11 @@ msgstr "Acciones de servidor" msgid "Cancel Install" msgstr "Cancelar instalación" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7252,7 +7330,7 @@ msgid "Copy Object" msgstr "Copiar objeto" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7344,13 +7422,21 @@ msgstr "" "Número de veces que se llama la función,\n" "un número negativo indica que es indefinido (sin límite)." +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Ref. usuario" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "¡Aviso!" @@ -7496,7 +7582,7 @@ msgid "workflow.triggers" msgstr "workflow.disparadores" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Criterios de búsqueda inválidos" @@ -7535,13 +7621,6 @@ msgstr "Ref. vista" msgid "Selection" msgstr "Selección" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7680,6 +7759,14 @@ msgstr "¡Método get (obtener) no definido!" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "Noruego Bokmål / Norsk bokmål" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7700,6 +7787,12 @@ msgstr "Tableros" msgid "Binary File or external URL" msgstr "Fichero binario de URL externa" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7725,6 +7818,15 @@ msgstr "ir.valores" msgid "Occitan (FR, post 1500) / Occitan" msgstr "Occitano (FR, post 1500) / Occitan" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7793,11 +7895,6 @@ msgstr "Fecha de activación" msgid "Croatian / hrvatski jezik" msgstr "Croata / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7814,9 +7911,9 @@ msgid "The code of the country must be unique !" msgstr "¡El código de país debe ser único!" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Seguimiento de tiempo" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "No instalable" #. module: base #: view:res.partner.category:0 @@ -7857,9 +7954,12 @@ msgid "Menu Action" msgstr "Acción de menú" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Islas Feroe" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7993,6 +8093,14 @@ msgid "" msgstr "" "Nombre del método del objeto a llamar cuando esta planificación se ejecute." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -8004,7 +8112,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -8103,7 +8211,6 @@ msgid "ltd" msgstr "S.L." #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8211,7 +8318,7 @@ msgid "Account No." msgstr "Nº de cuenta" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "¡El idioma de base 'en_US' no puede ser suprimido!" @@ -8312,7 +8419,7 @@ msgid "Auto-Refresh" msgstr "Auto-refrescar" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8323,11 +8430,6 @@ msgstr "" msgid "Diagram" msgstr "Diagrama" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Islas Wallis y Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8385,14 +8487,17 @@ msgid "Turkmenistan" msgstr "Turkmenistán" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8401,7 +8506,7 @@ msgstr "Turkmenistán" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8449,6 +8554,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "Danés / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8459,11 +8569,6 @@ msgstr "Isla Natividad" msgid "Other Actions Configuration" msgstr "Configuración de otras acciones" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "No instalable" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8658,12 +8763,13 @@ msgid "Luxembourg" msgstr "Luxemburgo" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Baja" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Tipo de acción o botón del lado del cliente que activará la acción." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Error ! No puede crear menús recursivos" @@ -8839,7 +8945,7 @@ msgid "View Auto-Load" msgstr "Vista auto-carga" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "No puede suprimir el campo '%s' !" @@ -8882,7 +8988,7 @@ msgstr "" "(objetos portables GetText)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -9044,9 +9150,9 @@ msgid "Czech / Čeština" msgstr "Checo / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Búsqueda avanzada" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Configuración del disparo" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9184,6 +9290,12 @@ msgstr "" msgid "Portrait" msgstr "Vertical" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9356,7 +9468,7 @@ msgid "Account Owner" msgstr "Propietario cuenta" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "Advertencia de cambio de compañia." @@ -9925,6 +10037,9 @@ msgstr "Ruso / русский язык" #~ msgid "Field child1" #~ msgstr "Campo hijo1" +#~ msgid "Field Selection" +#~ msgstr "Selección de campo" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "Los grupos se utilizan para definir permisos de acceso en cada pantalla y " @@ -10582,6 +10697,9 @@ msgstr "Ruso / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Búsqueda avanzada" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -11332,6 +11450,10 @@ msgstr "Ruso / русский язык" #~ msgid "Maintenance Contracts" #~ msgstr "Contratos de mantenimiento" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "" +#~ "Debe desconectarse y volver a conectarse después de cambiar su contraseña." + #~ msgid "Japanese / Japan" #~ msgstr "Japonés / Japón" @@ -11350,6 +11472,9 @@ msgstr "Ruso / русский язык" #~ msgid "Add a widget" #~ msgstr "Añadir un widget" +#~ msgid "Time Tracking" +#~ msgstr "Seguimiento de tiempo" + #~ msgid "terp-gtk-jump-to-ltr" #~ msgstr "terp-gtk-jump-to-ltr" @@ -11536,6 +11661,22 @@ msgstr "Ruso / русский язык" #~ msgid "Corporation" #~ msgstr "Corporación" +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Lista todos los módulos certificados disponibles para configurar su OpenERP. " +#~ "Los módulos que están instalados, aparecen ya marcados. Puede buscar un " +#~ "módulo específico utilizando el nombre o la descripción del módulo. No " +#~ "necesita instalar módulos uno a uno, se puede instalar varios a la vez " +#~ "haciendo click en el botón \"Programar para instalación\" en esta lista. Una " +#~ "vez realizado esto, pulse el boton \"Aplicar actualizaciones programadas\" " +#~ "desde la acción del menu, y se instalarán todos aquellos programados." + #~ msgid "Limited Company" #~ msgstr "Sociedad Limitada" diff --git a/bin/addons/base/i18n/es_EC.po b/bin/addons/base/i18n/es_EC.po index 1e7762ef4ba..77033b859fb 100644 --- a/bin/addons/base/i18n/es_EC.po +++ b/bin/addons/base/i18n/es_EC.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-11-07 02:51+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:10+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:53+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Vistas creadas" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Ventana destino" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Corea del Sur" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -344,7 +361,7 @@ msgid "Netherlands Antilles" msgstr "Antillas holandesas" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -390,6 +407,11 @@ msgstr "" "Este código ISO es el nombre de los ficheros po utilizados en las " "traducciones." +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "El Sistema se actualizará." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -461,7 +483,7 @@ msgid "Miscellaneous Suppliers" msgstr "Varios proveedores" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -809,6 +831,12 @@ msgstr "Guam (EE.UU.)" msgid "Human Resources Dashboard" msgstr "Tablero de recursos humanos" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -825,6 +853,11 @@ msgstr "¡XML inválido para la definición de la vista!" msgid "Cayman Islands" msgstr "Islas Caimán" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Corea del Sur" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -938,6 +971,12 @@ msgstr "Nombre del módulo" msgid "Marshall Islands" msgstr "Islas Marshall" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -969,6 +1008,12 @@ msgid "" msgstr "" "2. Grupo de normas específicas se combinan con un operador lógico AND" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1108,13 +1153,23 @@ msgstr "Ruta de archivo del informe principal" msgid "Reports" msgstr "Reportes" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Si se marca a cierto, la acción no se mostrará en la barra de herramientas " +"de la derecha en una vista formulario." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Al crear" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1161,9 +1216,11 @@ msgid "Wizard Info" msgstr "Información asistente" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comores" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Traducción de exportación" #. module: base #: help:res.log,secondary:0 @@ -1234,17 +1291,6 @@ msgstr "ID archivo adjunto" msgid "Day: %(day)s" msgstr "Día: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1356,7 +1402,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "¡No se puede eliminar el usuario principal!" @@ -1368,7 +1414,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (copia)" @@ -1549,11 +1595,6 @@ msgstr "" "Ejemplo: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1664,6 +1705,11 @@ msgstr "Campo" msgid "Groups (no group = global)" msgstr "Grupos (no grupo = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Islas Feroe" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1697,7 +1743,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1894,6 +1940,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1955,6 +2007,11 @@ msgstr "Isla Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1992,6 +2049,11 @@ msgstr "No puede actualizar el módulo '% s'. No está instalado" msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.empresa.evento" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2204,6 +2266,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.actividad" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2288,6 +2357,7 @@ msgstr "Mapeo de campos." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Módulo" @@ -2356,7 +2426,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "¡Por favor, indique una acción a ejecutar!" @@ -2516,11 +2586,6 @@ msgstr "¡Error! No puede crear categorías recursivas." msgid "%x - Appropriate date representation." msgstr "%x - Representación apropiada de fecha." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2863,11 +2928,6 @@ msgstr "Sector de telecomunicaciones" msgid "Trigger Object" msgstr "Objeto del disparo" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2906,8 +2966,8 @@ msgid "Sequence Type" msgstr "Tipo de secuencia" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2932,6 +2992,7 @@ msgstr "Restricción SQL" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Modelo" @@ -3042,10 +3103,9 @@ msgstr "" "Está tratando de eliminar un módulo que está instalado o será instalado" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Tipo de acción o botón del lado del cliente que activará la acción." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Los módulos seleccionados han sido actualizados / instalados" #. module: base #: selection:base.language.install,lang:0 @@ -3065,6 +3125,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Flujos" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3106,7 +3171,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "¡No puede eliminar este modelo «%s»!" @@ -3204,7 +3269,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3337,11 +3402,6 @@ msgstr "" msgid "System update completed" msgstr "Sistema de actualización por completo" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Selección de campo" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3379,14 +3439,10 @@ msgid "Apply For Delete" msgstr "Solicitar para eliminar" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Si se marca a cierto, la acción no se mostrará en la barra de herramientas " -"de la derecha en una vista formulario." #. module: base #: view:ir.attachment:0 @@ -3587,6 +3643,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3632,9 +3696,11 @@ msgid "Starter Partner" msgstr "Empresa joven" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "El Sistema se actualizará." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3802,7 +3868,7 @@ msgid "Flow Start" msgstr "Flujo de Inicio" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3834,9 +3900,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe (Francesa)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Error del usuario" @@ -3904,6 +3970,13 @@ msgstr "Configuración acción cliente" msgid "Partner Addresses" msgstr "Direcciones de empresa" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4067,11 +4140,6 @@ msgstr "Historial de solicitudes" msgid "Menus" msgstr "Menús" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Los módulos seleccionados han sido actualizados / instalados" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4266,6 +4334,11 @@ msgstr "" "las operaciones de creación. Si está vacío, no podrá realizar un seguimiento " "del registro nuevo." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4317,6 +4390,11 @@ msgstr "¿Quieres Ids claros? " msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Baja" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4347,11 +4425,6 @@ msgstr "Empleado" msgid "Create Access" msgstr "Permiso para crear" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4548,6 +4621,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4816,7 +4897,7 @@ msgid "Change My Preferences" msgstr "Cambiar mis preferencias" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Nombre de modelo no válido en la definición de acción." @@ -5016,9 +5097,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorar" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Estados Unidos" #. module: base #: view:ir.module.module:0 @@ -5043,7 +5124,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.objeto.lineas" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Módulo %s: Certificado de calidad no válido" @@ -5080,9 +5161,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.empresa.evento" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5104,12 +5186,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Valores para tipo evento" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5241,6 +5317,13 @@ msgstr "" "este campo está vacío, OpenERP calculará sobre la base de la visibilidad de " "acceso de lectura del objeto relacionado." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5264,7 +5347,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5441,6 +5524,13 @@ msgstr "Proceso de selección" msgid "Reunion (French)" msgstr "Reunión (Francesa)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5448,11 +5538,6 @@ msgstr "Reunión (Francesa)" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "Debe iniciar sesión otra vez después de cambiar su contraseña." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5464,7 +5549,7 @@ msgid "Solomon Islands" msgstr "Islas Salomón" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5480,7 +5565,7 @@ msgid "Waiting" msgstr "Esperando" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5534,9 +5619,9 @@ msgid "Module Category" msgstr "Categoría del módulo" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Estados Unidos" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorar" #. module: base #: report:ir.module.reference.graph:0 @@ -5692,13 +5777,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5735,7 +5820,6 @@ msgstr "El núcleo de OpenERP, necesario para toda instalación." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5754,6 +5838,11 @@ msgstr "Archivo PO" msgid "Neutral Zone" msgstr "Zona neutral" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5764,11 +5853,6 @@ msgstr "Personalizado" msgid "Current" msgstr "Actual" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5888,7 +5972,7 @@ msgstr "" "Seleccione el objeto sobre el cual la acción actuará (leer, escribir, crear)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Por favor, especifique la opción de servidor --email-from!" @@ -6051,11 +6135,6 @@ msgstr "Recaudación de fondos" msgid "Sequence Codes" msgstr "Secuencia de Códigos" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6096,6 +6175,12 @@ msgstr "Francia" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6114,8 +6199,6 @@ msgstr "Estado Islámico de Afganistán" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Error!" @@ -6232,13 +6315,6 @@ msgstr "Nombre del servicio" msgid "Pitcairn Island" msgstr "Isla Pitcairn" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6326,11 +6402,6 @@ msgstr "Otras acciones" msgid "Done" msgstr "Realizado" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6420,7 +6491,7 @@ msgstr "" "Para ver las traducciones oficiales, puede empezar con estos enlaces:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6522,6 +6593,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6556,6 +6634,11 @@ msgstr "Las transiciones de salida" msgid "Icon" msgstr "Icono" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6601,7 +6684,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6626,8 +6709,8 @@ msgid "Child IDs" msgstr "IDs hijos" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "¡Problema en configuración `Id registro` en la acción del servidor!" @@ -6946,9 +7029,9 @@ msgid "Grenada" msgstr "Granada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Configuración del disparo" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Islas Wallis y Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -6986,7 +7069,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Tamaño del campo nunca puede ser menor que 1 !" @@ -7134,11 +7217,9 @@ msgid "Manufacturing" msgstr "Producción" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Traducción de exportación" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comores" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7152,6 +7233,11 @@ msgstr "Acciones del servidor" msgid "Cancel Install" msgstr "Cancelar instalación" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7168,7 +7254,7 @@ msgid "Copy Object" msgstr "Copia de objetos" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7262,13 +7348,21 @@ msgstr "" "Número de veces que la función llama,\n" "a un número negativo indicando que no hay límite" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Ref. usuario" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "¡Atención!" @@ -7414,7 +7508,7 @@ msgid "workflow.triggers" msgstr "workflow.disparadores" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7453,13 +7547,6 @@ msgstr "Ref. vista" msgid "Selection" msgstr "Selección" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7596,6 +7683,14 @@ msgstr "¡Método get (obtener) no definido!" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7616,6 +7711,12 @@ msgstr "Tableros" msgid "Binary File or external URL" msgstr "Archivo binario o una URL externa" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7641,6 +7742,15 @@ msgstr "ir.valores" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7709,11 +7819,6 @@ msgstr "Fecha de activación" msgid "Croatian / hrvatski jezik" msgstr "Croatian / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7730,9 +7835,9 @@ msgid "The code of the country must be unique !" msgstr "El codigo del pais debe ser unico" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Seguimiento de tiempo" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "No instalable" #. module: base #: view:res.partner.category:0 @@ -7773,9 +7878,12 @@ msgid "Menu Action" msgstr "Menu Action" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Islas Feroe" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7910,6 +8018,14 @@ msgstr "" "Nombre del método que se llama en el objeto cuando este programador se " "ejecuta." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7921,7 +8037,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -8018,7 +8134,6 @@ msgid "ltd" msgstr "ltd" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8126,7 +8241,7 @@ msgid "Account No." msgstr "Número de cuenta" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Idiomas base 'en_US' ¡No se puede eliminar!" @@ -8227,7 +8342,7 @@ msgid "Auto-Refresh" msgstr "Auto-refrescar" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8237,11 +8352,6 @@ msgstr "" msgid "Diagram" msgstr "Diagrama" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Islas Wallis y Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8299,14 +8409,17 @@ msgid "Turkmenistan" msgstr "Turkmenistán" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8315,7 +8428,7 @@ msgstr "Turkmenistán" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8363,6 +8476,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "Danish / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8373,11 +8491,6 @@ msgstr "Isla Natividad" msgid "Other Actions Configuration" msgstr "Configuración de otras acciones" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "No instalable" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8572,12 +8685,13 @@ msgid "Luxembourg" msgstr "Luxemburgo" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Baja" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Tipo de acción o botón del lado del cliente que activará la acción." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "¡Error! Usted no puede crear menús recursivos." @@ -8748,7 +8862,7 @@ msgid "View Auto-Load" msgstr "Vista auto-carga" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "No se puede quitar el campo '%s' !" @@ -8791,7 +8905,7 @@ msgstr "" "(objetos portátiles GetText)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8949,9 +9063,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Búsqueda avanzada" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Configuración del disparo" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9086,6 +9200,12 @@ msgstr "" msgid "Portrait" msgstr "Portrait" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9258,7 +9378,7 @@ msgid "Account Owner" msgstr "Propietario cuenta" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9891,6 +10011,9 @@ msgstr "Russian / русский язык" #~ msgid "Field child1" #~ msgstr "Campo hijo1" +#~ msgid "Field Selection" +#~ msgstr "Selección de campo" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "Los grupos se utilizan para definir permisos de acceso en cada pantalla y " @@ -10597,6 +10720,9 @@ msgstr "Russian / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Búsqueda avanzada" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -11423,6 +11549,9 @@ msgstr "Russian / русский язык" #~ msgid "Occitan (post 1500) / France" #~ msgstr "Occitan (post 1500) / France" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "Debe iniciar sesión otra vez después de cambiar su contraseña." + #~ msgid "terp-face-plain" #~ msgstr "terp-face-plain" @@ -11573,3 +11702,6 @@ msgstr "Russian / русский язык" #~ " " #~ "ctx.update({'field_name':vals['name'],'field_state':'manual','select':vals.ge" #~ "t('select_level','0" + +#~ msgid "Time Tracking" +#~ msgstr "Seguimiento de tiempo" diff --git a/bin/addons/base/i18n/et.po b/bin/addons/base/i18n/et.po index 0f73adfc04d..496ddedde73 100644 --- a/bin/addons/base/i18n/et.po +++ b/bin/addons/base/i18n/et.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-11-30 09:51+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:47+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Loodud vaated" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Sihtaken" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Lõuna-Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -344,7 +361,7 @@ msgid "Netherlands Antilles" msgstr "Hollandi Antillid" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -388,6 +405,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -458,7 +480,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Kohandatud väljadel peab olema nimi mis algab 'x_'-ga !" @@ -793,6 +815,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -809,6 +837,11 @@ msgstr "Vigane XML vaate arhitektuurile!" msgid "Cayman Islands" msgstr "Kaimani saared" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Lõuna-Korea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -917,6 +950,12 @@ msgstr "" msgid "Marshall Islands" msgstr "Marshalli Saared" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -944,6 +983,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1080,13 +1125,23 @@ msgstr "" msgid "Reports" msgstr "Aruanded" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Kui määratud tõeseks siis toimingut ei kuvata vormivaate parempoolsel " +"tööriistaribal." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Loomisel" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1128,9 +1183,11 @@ msgid "Wizard Info" msgstr "Nõustaja info" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komoori saared" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1187,17 +1244,6 @@ msgstr "Manustatud ID" msgid "Day: %(day)s" msgstr "Päev: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1309,7 +1355,7 @@ msgid "Formula" msgstr "Valem" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Ei saa eemaldada root kasutajat!" @@ -1321,7 +1367,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1493,11 +1539,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1606,6 +1647,11 @@ msgstr "Väli" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Fääri saared" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1639,7 +1685,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1830,6 +1876,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1891,6 +1943,11 @@ msgstr "Norfolki saar" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1928,6 +1985,11 @@ msgstr "Ei saa uuendata moodulit '%s'. See pole paigaldatud" msgid "Cuba" msgstr "Kuuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2138,6 +2200,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2222,6 +2291,7 @@ msgstr "Välja seostamised" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Moodul" @@ -2290,7 +2360,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Palun määra toiming, mida alustada!" @@ -2445,11 +2515,6 @@ msgstr "Viga! Sa ei saa luua rekursiivseid kategooriaid." msgid "%x - Appropriate date representation." msgstr "%x - Sobiv kuupäeva esitus." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2787,11 +2852,6 @@ msgstr "" msgid "Trigger Object" msgstr "Päästik objekt" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2830,8 +2890,8 @@ msgid "Sequence Type" msgstr "Jada tüüp" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2856,6 +2916,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Mudel" @@ -2964,10 +3025,9 @@ msgstr "" "Proovid eemaldada moodulit, mis on juba paigaldatud või alles paigaldamisel" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Kliendipoolse toimingu või nupu tüüp, mis käivitab toimingu." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "" #. module: base #: selection:base.language.install,lang:0 @@ -2987,6 +3047,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Töövood" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3028,7 +3093,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Sa ei saa eemaldada mudelit '%s'!" @@ -3126,7 +3191,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3258,11 +3323,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Välja valimine" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3300,14 +3360,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Kui määratud tõeseks siis toimingut ei kuvata vormivaate parempoolsel " -"tööriistaribal." #. module: base #: view:ir.attachment:0 @@ -3504,6 +3560,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3545,8 +3609,10 @@ msgid "Starter Partner" msgstr "Uus partner" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3715,7 +3781,7 @@ msgid "Flow Start" msgstr "Voo algus" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3747,9 +3813,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Prantsuse)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3814,6 +3880,13 @@ msgstr "Kliendi toimingu seadistus" msgid "Partner Addresses" msgstr "Partneri aadressid" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3975,11 +4048,6 @@ msgstr "Päringute ajalugu" msgid "Menus" msgstr "Menüüd" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4172,6 +4240,11 @@ msgstr "" "Sisesta välja nimi, kus kirje id hoitakse pärast loomist. Kui see on tühi " "siis sa ei saa jälgita uut kirjet." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4223,6 +4296,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Madal" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4253,11 +4331,6 @@ msgstr "" msgid "Create Access" msgstr "Loomisõigus" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4454,6 +4527,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4719,7 +4800,7 @@ msgid "Change My Preferences" msgstr "Muuda Eelistusi" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Vigane mudeli nimi toimingu definitsioonis." @@ -4914,9 +4995,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Ameerika Ühendriigid" #. module: base #: view:ir.module.module:0 @@ -4941,7 +5022,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Moodul %s: Vigane kvaliteedisertifikaat" @@ -4978,9 +5059,10 @@ msgid "Nigeria" msgstr "Nigeeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5002,12 +5084,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Väärtused sündmuse tüübile" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5134,6 +5210,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5157,7 +5240,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5334,6 +5417,13 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunion (Prantsuse)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5341,11 +5431,6 @@ msgstr "Reunion (Prantsuse)" msgid "Global" msgstr "Globaalne" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5357,7 +5442,7 @@ msgid "Solomon Islands" msgstr "Saalomoni Saared" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5373,7 +5458,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5427,9 +5512,9 @@ msgid "Module Category" msgstr "Mooduli kategooria" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Ameerika Ühendriigid" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "" #. module: base #: report:ir.module.reference.graph:0 @@ -5580,13 +5665,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5621,7 +5706,6 @@ msgstr "OpenERP tuum, vajalik kõigil paigaldustel" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5640,6 +5724,11 @@ msgstr "PO fail" msgid "Neutral Zone" msgstr "Neutraalne tsoon" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5650,11 +5739,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5769,7 +5853,7 @@ msgid "" msgstr "Vali objekt millel toiming rakendub (loe, kirjuta, loo)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5928,11 +6012,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5970,6 +6049,12 @@ msgstr "Prantsusmaa" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5988,8 +6073,6 @@ msgstr "Afganistani Islamiosariik" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Viga!" @@ -6102,13 +6185,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "Pitcairni Saar" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6192,11 +6268,6 @@ msgstr "Muud toimingud" msgid "Done" msgstr "Valmis" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6285,7 +6356,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6387,6 +6458,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6421,6 +6499,11 @@ msgstr "Väljuvad siirded" msgid "Icon" msgstr "Ikoon" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6466,7 +6549,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6487,8 +6570,8 @@ msgid "Child IDs" msgstr "Alam ID-d" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6800,9 +6883,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Päästiku seadistus" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis ja Futuna Saared" #. module: base #: selection:server.action.create,init,type:0 @@ -6838,7 +6921,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6986,11 +7069,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komoori saared" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7004,6 +7085,11 @@ msgstr "Serveri tegevused" msgid "Cancel Install" msgstr "Katkesta paigaldamine" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7020,7 +7106,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7109,13 +7195,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Kasutaja viide" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7261,7 +7355,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7300,13 +7394,6 @@ msgstr "Vaate viit" msgid "Selection" msgstr "Valik" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7443,6 +7530,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7463,6 +7558,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7488,6 +7589,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7556,11 +7666,6 @@ msgstr "Päästiku kuupäev" msgid "Croatian / hrvatski jezik" msgstr "Horvaatia / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7577,9 +7682,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Eemaldamatu" #. module: base #: view:res.partner.category:0 @@ -7620,9 +7725,12 @@ msgid "Menu Action" msgstr "Menüü tegevus" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Fääri saared" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7750,6 +7858,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7761,7 +7877,7 @@ msgid "China" msgstr "Hiina" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7851,7 +7967,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7959,7 +8074,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8060,7 +8175,7 @@ msgid "Auto-Refresh" msgstr "Automaatne värskendus" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8070,11 +8185,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis ja Futuna Saared" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8132,14 +8242,17 @@ msgid "Turkmenistan" msgstr "Türkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8148,7 +8261,7 @@ msgstr "Türkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8196,6 +8309,11 @@ msgstr "Tansaania" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8206,11 +8324,6 @@ msgstr "Jõulusaar" msgid "Other Actions Configuration" msgstr "Teiste toimingute seadistus" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Eemaldamatu" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8402,12 +8515,13 @@ msgid "Luxembourg" msgstr "Luksemburg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Madal" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Kliendipoolse toimingu või nupu tüüp, mis käivitab toimingu." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8576,7 +8690,7 @@ msgid "View Auto-Load" msgstr "Vaate automaatlaadimine" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8617,7 +8731,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8775,9 +8889,9 @@ msgid "Czech / Čeština" msgstr "Tsehhi keel / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Laiendatud otsing" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Päästiku seadistus" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8909,6 +9023,12 @@ msgstr "" msgid "Portrait" msgstr "Püstpaigutus" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9078,7 +9198,7 @@ msgid "Account Owner" msgstr "Konto omanik" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9648,6 +9768,9 @@ msgstr "Vene keel / русский язык" #~ msgid "Field child1" #~ msgstr "Väli child1" +#~ msgid "Field Selection" +#~ msgstr "Välja valimine" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "Gruppe kasutatakse, et määratleda ligipääsuõigused igale sirmile ja menüüle." @@ -10300,6 +10423,9 @@ msgstr "Vene keel / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Laiendatud otsing" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" diff --git a/bin/addons/base/i18n/eu.po b/bin/addons/base/i18n/eu.po index ade1319f132..80a1085b26c 100644 --- a/bin/addons/base/i18n/eu.po +++ b/bin/addons/base/i18n/eu.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2009-12-24 06:47+0000\n" "Last-Translator: Ander Elortondo \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Hego Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -340,7 +357,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -380,6 +397,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -448,7 +470,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -783,6 +805,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -799,6 +827,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Hego Korea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -905,6 +938,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -932,6 +971,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1065,13 +1110,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,8 +1166,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1172,17 +1227,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1290,7 +1334,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1302,7 +1346,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1471,11 +1515,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1581,6 +1620,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1614,7 +1658,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1802,6 +1846,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1863,6 +1913,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1900,6 +1955,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2108,6 +2168,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2192,6 +2259,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2260,7 +2328,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2413,11 +2481,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2747,11 +2810,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2790,8 +2848,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2816,6 +2874,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2923,9 +2982,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2946,6 +3004,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2985,7 +3048,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3083,7 +3146,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3212,11 +3275,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3254,11 +3312,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3456,6 +3512,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3497,8 +3561,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3667,7 +3733,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3699,9 +3765,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3766,6 +3832,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3927,11 +4000,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4122,6 +4190,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4173,6 +4246,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4203,11 +4281,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4404,6 +4477,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4669,7 +4750,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4862,8 +4943,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4889,7 +4970,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4923,8 +5004,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4947,12 +5029,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5078,6 +5154,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5101,7 +5184,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5278,6 +5361,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5285,11 +5375,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5301,7 +5386,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5317,7 +5402,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5371,8 +5456,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5524,13 +5609,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5565,7 +5650,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5584,6 +5668,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5594,11 +5683,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5713,7 +5797,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5872,11 +5956,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5914,6 +5993,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5932,8 +6017,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6045,13 +6128,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6135,11 +6211,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6228,7 +6299,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6330,6 +6401,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6362,6 +6440,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6407,7 +6490,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6428,8 +6511,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6741,8 +6824,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6779,7 +6862,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6927,10 +7010,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6945,6 +7026,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6961,7 +7047,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7050,13 +7136,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7202,7 +7296,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7239,13 +7333,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7382,6 +7469,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7402,6 +7497,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7427,6 +7528,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7493,11 +7603,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7514,8 +7619,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7557,8 +7662,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7687,6 +7795,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7698,7 +7814,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7788,7 +7904,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7896,7 +8011,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7997,7 +8112,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8007,11 +8122,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8069,14 +8179,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8085,7 +8198,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8133,6 +8246,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8143,11 +8261,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8337,12 +8450,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8511,7 +8625,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8552,7 +8666,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8710,8 +8824,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8840,6 +8954,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9009,7 +9129,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/fa.po b/bin/addons/base/i18n/fa.po index a57be66d711..168c7ff4850 100644 --- a/bin/addons/base/i18n/fa.po +++ b/bin/addons/base/i18n/fa.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-16 08:41+0000\n" "Last-Translator: avion \n" "Language-Team: OpenERP Iran \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:06+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:50+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n" "X-Poedit-Language: Persian\n" @@ -109,13 +109,21 @@ msgid "Created Views" msgstr "نماهای پدیدآمده" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -127,9 +135,18 @@ msgid "Target Window" msgstr "پنجره هدف" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "کره جنوبی" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -341,7 +358,7 @@ msgid "Netherlands Antilles" msgstr "آنتیل هلند" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -386,6 +403,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "این کد iso نام پرونده‌های po بکارگرفته برای برگردان‌هاست" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -456,7 +478,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "نام فیلدهای دلخواه باید با 'x_' آغاز شوند!" @@ -791,6 +813,12 @@ msgstr "گوام (آمریکا)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -807,6 +835,11 @@ msgstr "XML برای ساختمان نما معتبر نیست!" msgid "Cayman Islands" msgstr "جزایر کِیمَن" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "کره جنوبی" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -916,6 +949,12 @@ msgstr "" msgid "Marshall Islands" msgstr "جزایر مارشال" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -943,6 +982,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1079,13 +1124,23 @@ msgstr "" msgid "Reports" msgstr "گزارش‌ها" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"اگر مقدار به درست تنظیم شود، کُنش در سمت راست نوار ابزار یک نمای فرم نشان " +"داده نخواهد شد." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "در هنگام پدیدن" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1130,9 +1185,11 @@ msgid "Wizard Info" msgstr "آگهگان تردست" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "کومورو" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1189,17 +1246,6 @@ msgstr "شناسه پیوست" msgid "Day: %(day)s" msgstr "روز: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1311,7 +1357,7 @@ msgid "Formula" msgstr "فرمول" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "نمی‌توانید کاربر ریشه را بردارید!" @@ -1323,7 +1369,7 @@ msgstr "مالاوی" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1498,11 +1544,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1611,6 +1652,11 @@ msgstr "فیلد" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "جزایر فارو" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1644,7 +1690,7 @@ msgid "Madagascar" msgstr "ماداگاسکار" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1836,6 +1882,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1897,6 +1949,11 @@ msgstr "جزیره‌ی نورفولک" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1934,6 +1991,11 @@ msgstr "نمی‌توانید پیمانه '%s' را ارتقا دهید زیر msgid "Cuba" msgstr "کوبا" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2144,6 +2206,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2228,6 +2297,7 @@ msgstr "نگاشت‌های فیلد" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "پیمانه" @@ -2296,7 +2366,7 @@ msgid "Mayotte" msgstr "مایوت" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "لطفا کُنشی را برای اجرا مشخص کنید!" @@ -2452,11 +2522,6 @@ msgstr "خطا! شما نمی‌توانید دسته‌بندی‌های تود msgid "%x - Appropriate date representation." msgstr "%x - چگونگی نمایش تاریخ" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2795,11 +2860,6 @@ msgstr "بخش تله‌کام" msgid "Trigger Object" msgstr "شی رهاساز" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2838,8 +2898,8 @@ msgid "Sequence Type" msgstr "نوع دنباله" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2864,6 +2924,7 @@ msgstr "قید SQL ای" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "مدل" @@ -2972,10 +3033,9 @@ msgstr "" "شما تلاش می‌کنید تا پیمانه‌ای را که برپاسازی شده یا خواهد شد، را بردارید" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "نوع کُنش یا دکمه‌ای که در سمت کارخواهم رهاساز کُنش را رها خواهد کرد." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "" #. module: base #: selection:base.language.install,lang:0 @@ -2995,6 +3055,11 @@ msgstr "گواتمالا" msgid "Workflows" msgstr "کارگردش‌ها" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3036,7 +3101,7 @@ msgid "Lesotho" msgstr "لسوتو" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "شما نمی‌توانید مدل '%s' را بردارید!" @@ -3134,7 +3199,7 @@ msgid "API ID" msgstr "شناسه API" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3266,11 +3331,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "گزینش فیلد" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3308,14 +3368,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"اگر مقدار به درست تنظیم شود، کُنش در سمت راست نوار ابزار یک نمای فرم نشان " -"داده نخواهد شد." #. module: base #: view:ir.attachment:0 @@ -3512,6 +3568,14 @@ msgstr "" msgid "Montserrat" msgstr "مونت‌سرات" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3553,8 +3617,10 @@ msgid "Starter Partner" msgstr "همکار تجاری آغازگر" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3723,7 +3789,7 @@ msgid "Flow Start" msgstr "آغاز گردش" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3755,9 +3821,9 @@ msgid "Guadeloupe (French)" msgstr "گویان فرانسه" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3822,6 +3888,13 @@ msgstr "پیکربندی کنش کارخواه" msgid "Partner Addresses" msgstr "نشانی‌های همکار" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3983,11 +4056,6 @@ msgstr "تاریخچه درخواست" msgid "Menus" msgstr "منوها" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4180,6 +4248,11 @@ msgstr "" "شامل نام فیلدی که شناسه رکورد آن پس از گردانش پدیدآوری ذخیره شده است. اگر " "خالی باشد، شما نمی‌توانید رکورد نو را ردگیری نمایید." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4231,6 +4304,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "پایین" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4261,11 +4339,6 @@ msgstr "" msgid "Create Access" msgstr "پدیدن دسترسی" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4462,6 +4535,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4727,7 +4808,7 @@ msgid "Change My Preferences" msgstr "تغییر ترجیحات من" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "نام مدل در تعریف کنش نامعتبر است." @@ -4923,9 +5004,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "" +#: model:res.country,name:base.us +msgid "United States" +msgstr "ایالات متحده" #. module: base #: view:ir.module.module:0 @@ -4950,7 +5031,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "پیمانه %s: گواهینامه کیفیت نامعتبر" @@ -4987,9 +5068,10 @@ msgid "Nigeria" msgstr "نیجریه" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5011,12 +5093,6 @@ msgstr "" msgid "Values for Event Type" msgstr "مقادیر برای نوع رویداد" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5143,6 +5219,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5166,7 +5249,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5343,6 +5426,13 @@ msgstr "" msgid "Reunion (French)" msgstr "گویان فرانسه" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5350,11 +5440,6 @@ msgstr "گویان فرانسه" msgid "Global" msgstr "فراگیر" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5366,7 +5451,7 @@ msgid "Solomon Islands" msgstr "جزایر سلیمان" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5382,7 +5467,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5436,9 +5521,9 @@ msgid "Module Category" msgstr "دسته‌بندی پیمانه" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "ایالات متحده" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "" #. module: base #: report:ir.module.reference.graph:0 @@ -5589,13 +5674,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5630,7 +5715,6 @@ msgstr "هسته اپن ای‌آر‌پی برای تمامی برپاسازی #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5649,6 +5733,11 @@ msgstr "پرونده PO" msgid "Neutral Zone" msgstr "منطقه بی‌طرف" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5659,11 +5748,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5778,7 +5862,7 @@ msgid "" msgstr "شیی را که کُنش روی آن کار خواهد کرد برگزینید (خواندن،‌نوشتن، پدیدن)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5937,11 +6021,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5979,6 +6058,12 @@ msgstr "فرانسه" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5997,8 +6082,6 @@ msgstr "افغانستان (ولایت اسلامی)" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "خطا!" @@ -6112,13 +6195,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "جزیره پیت کایرن" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6202,11 +6278,6 @@ msgstr "سایر کنش‌ها" msgid "Done" msgstr "انجام شد" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6295,7 +6366,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6397,6 +6468,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6431,6 +6509,11 @@ msgstr "گذارهای صادره" msgid "Icon" msgstr "شمایل" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6476,7 +6559,7 @@ msgid "Samoa" msgstr "ساموا" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6497,8 +6580,8 @@ msgid "Child IDs" msgstr "شناسه‌های فرزند" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "ایراد در پیکربندی 'شناسه رکورد' در کُنش سمت کارپذیر!" @@ -6810,9 +6893,9 @@ msgid "Grenada" msgstr "گرانادا" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "پیکربندی رهاساز" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "جزایر والیس و فوتونا" #. module: base #: selection:server.action.create,init,type:0 @@ -6848,7 +6931,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6996,11 +7079,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "کومورو" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7014,6 +7095,11 @@ msgstr "کُنش‌های کارپذیر" msgid "Cancel Install" msgstr "لغو برپاسازی" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7030,7 +7116,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7119,13 +7205,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "مرجع کاربر" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7271,7 +7365,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7310,13 +7404,6 @@ msgstr "مرجع نما" msgid "Selection" msgstr "گزینش" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7453,6 +7540,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7473,6 +7568,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7498,6 +7599,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7566,11 +7676,6 @@ msgstr "تاریخ رهاساز" msgid "Croatian / hrvatski jezik" msgstr "کرواسی / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7587,9 +7692,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "غیر قابل برپاسازی" #. module: base #: view:res.partner.category:0 @@ -7630,9 +7735,12 @@ msgid "Menu Action" msgstr "منوی کنش" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "جزایر فارو" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7760,6 +7868,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7771,7 +7887,7 @@ msgid "China" msgstr "چین" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7861,7 +7977,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7969,7 +8084,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8070,7 +8185,7 @@ msgid "Auto-Refresh" msgstr "نوسازی خودکار" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8080,11 +8195,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "جزایر والیس و فوتونا" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8142,14 +8252,17 @@ msgid "Turkmenistan" msgstr "ترکمنستان" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8158,7 +8271,7 @@ msgstr "ترکمنستان" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8206,6 +8319,11 @@ msgstr "تانزانیا، جمهوری متحد" msgid "Danish / Dansk" msgstr "دانمارکی / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8216,11 +8334,6 @@ msgstr "جزیره‌ی کریسمس" msgid "Other Actions Configuration" msgstr "پیکربندی سایر کنش‌ها" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "غیر قابل برپاسازی" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8416,12 +8529,13 @@ msgid "Luxembourg" msgstr "لوکزامبورگ" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "پایین" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "نوع کُنش یا دکمه‌ای که در سمت کارخواهم رهاساز کُنش را رها خواهد کرد." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8590,7 +8704,7 @@ msgid "View Auto-Load" msgstr "نمایش بارگذاری خودکار" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8631,7 +8745,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8789,9 +8903,9 @@ msgid "Czech / Čeština" msgstr "چک / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "جستجوی پیشرفته" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "پیکربندی رهاساز" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8923,6 +9037,12 @@ msgstr "" msgid "Portrait" msgstr "پیکره‌ای" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9093,7 +9213,7 @@ msgid "Account Owner" msgstr "دارنده حساب" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9674,6 +9794,9 @@ msgstr "روسی / русский язык" #~ msgid "Field child1" #~ msgstr "فیلد فرزند ۱" +#~ msgid "Field Selection" +#~ msgstr "گزینش فیلد" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "گروه‌ها برای حق دسترسی‌های تعریف شده روی هر منو و صفحه بکار برده می‌شوند." @@ -10352,6 +10475,9 @@ msgstr "روسی / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "جستجوی پیشرفته" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" diff --git a/bin/addons/base/i18n/fi.po b/bin/addons/base/i18n/fi.po index 67c496ee744..b03bc83a5aa 100644 --- a/bin/addons/base/i18n/fi.po +++ b/bin/addons/base/i18n/fi.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-08 07:41+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" +"PO-Revision-Date: 2011-01-11 21:54+0000\n" "Last-Translator: Sami Haahtinen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:47+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,17 +111,25 @@ msgid "Created Views" msgstr "Luodut näkymät" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" -msgstr "" +msgstr "Viite" #. module: base #: field:ir.actions.act_window,target:0 @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Kohdeikkuna" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Etelä-Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "Varoitus!" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -343,7 +360,7 @@ msgid "Netherlands Antilles" msgstr "Alankomaiden Antillit" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -387,6 +404,11 @@ msgstr "Lukumenetelmä ei ole käytössä tässä objektissa!" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -457,7 +479,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Kustomoidun kentän nimen täytyy alkaa 'x_' !" @@ -794,6 +816,12 @@ msgstr "Guam (Yhdysvallat)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -810,6 +838,11 @@ msgstr "Virheellinen XML näkymäarkkitehtuurille!" msgid "Cayman Islands" msgstr "Caymansaaret" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Etelä-Korea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -919,6 +952,12 @@ msgstr "Moduulin nimi" msgid "Marshall Islands" msgstr "Marshallinsaaret" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -946,6 +985,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1082,13 +1127,23 @@ msgstr "" msgid "Reports" msgstr "Raportit" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Jos valitaan tosi, toiminto ei ole näkyvissä lomakenäkymän oikeassa reunassa " +"olevassa palkissa." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Luo" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1133,9 +1188,11 @@ msgid "Wizard Info" msgstr "Ohjatun toiminnon tiedot" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komorit" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1192,17 +1249,6 @@ msgstr "Liitetty ID" msgid "Day: %(day)s" msgstr "Päivä: %(day)" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1314,7 +1360,7 @@ msgid "Formula" msgstr "Kaava" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Root-käyttäjää ei voi poistaa!" @@ -1326,7 +1372,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1500,11 +1546,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1613,6 +1654,11 @@ msgstr "Kenttä" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Färsaaret" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1646,7 +1692,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1838,6 +1884,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1899,6 +1951,11 @@ msgstr "Norfolkinsaari" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1936,6 +1993,11 @@ msgstr "Moduulia \"%s\" ei voi päivittää, koska sitä ei ole asennettu." msgid "Cuba" msgstr "Kuuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2146,6 +2208,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2230,6 +2299,7 @@ msgstr "Kenttien kartoitukset." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Moduuli" @@ -2298,7 +2368,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Määrittele toiminto joka käynnistetään!" @@ -2453,11 +2523,6 @@ msgstr "Virhe! Et voi luoda rekursiivisia kategorioita." msgid "%x - Appropriate date representation." msgstr "%x - Sopiva päivämäärän esitysmuoto." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2797,11 +2862,6 @@ msgstr "Tietoliikennesektori" msgid "Trigger Object" msgstr "Liipaisuobjekti" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2840,8 +2900,8 @@ msgid "Sequence Type" msgstr "Sarjan tyyppi" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2866,6 +2926,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Malli" @@ -2973,10 +3034,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "Yrität poistaa moduulia joka on asennettu tai tullaan asentamaan" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Toiminto tai painike asiakaspuolella joka liipaisee toiminnon." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "" #. module: base #: selection:base.language.install,lang:0 @@ -2996,6 +3056,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Työnkulut" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3037,7 +3102,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Mallia '%s' ei voida poistaa!" @@ -3135,7 +3200,7 @@ msgid "API ID" msgstr "API tunnus" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3267,11 +3332,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Kentän valinta" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3309,14 +3369,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Jos valitaan tosi, toiminto ei ole näkyvissä lomakenäkymän oikeassa reunassa " -"olevassa palkissa." #. module: base #: view:ir.attachment:0 @@ -3514,6 +3570,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3555,8 +3619,10 @@ msgid "Starter Partner" msgstr "Aloituskumppani" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3725,7 +3791,7 @@ msgid "Flow Start" msgstr "Kulun aloitus" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3757,9 +3823,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Ranska)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Käyttäjä virhe" @@ -3824,6 +3890,13 @@ msgstr "Asiakasohjelman toimintojen asetukset" msgid "Partner Addresses" msgstr "Kumppanien osoitteet" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3986,11 +4059,6 @@ msgstr "Pyyntöhistoria" msgid "Menus" msgstr "Valikot" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4184,6 +4252,11 @@ msgstr "" "Anna kentäin nimi johon tietueen tunnus tallennetaan luontitoimintojen " "jälkeen. Jos tämä jätetään tyhjäksi, et voi jäljittää uutta tietuetta." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4235,6 +4308,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Matala" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4265,11 +4343,6 @@ msgstr "" msgid "Create Access" msgstr "Luo käyttöoikeus" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4466,6 +4539,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4731,7 +4812,7 @@ msgid "Change My Preferences" msgstr "Muuta asetuksiani" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Virheellinen mallin nimi toimenpiteen määrittelyssä." @@ -4926,9 +5007,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Yhdysvallat" #. module: base #: view:ir.module.module:0 @@ -4953,7 +5034,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Moduuli %s: virheellinen laatusertifikaatti" @@ -4990,9 +5071,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5014,12 +5096,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Arvot tapahtumatyypille" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5147,6 +5223,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5170,7 +5253,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5347,6 +5430,13 @@ msgstr "" msgid "Reunion (French)" msgstr "Réunion (Ranska)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5354,11 +5444,6 @@ msgstr "Réunion (Ranska)" msgid "Global" msgstr "Yleinen" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5370,7 +5455,7 @@ msgid "Solomon Islands" msgstr "Salomonsaaret" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5386,7 +5471,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5440,9 +5525,9 @@ msgid "Module Category" msgstr "Moduulin kategoria" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Yhdysvallat" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "" #. module: base #: report:ir.module.reference.graph:0 @@ -5593,13 +5678,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5634,7 +5719,6 @@ msgstr "OpenERP-järjestelmän ydin, vaaditaan kaikkiin asennuksiin." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5653,6 +5737,11 @@ msgstr "PO-tiedosto" msgid "Neutral Zone" msgstr "Neutraali alue" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5663,11 +5752,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5783,7 +5867,7 @@ msgstr "" "Valitse objekti jossa toiminto suoritetaan (luku, kirjoitus, luonti)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5942,11 +6026,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5984,6 +6063,12 @@ msgstr "Ranska" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6002,8 +6087,6 @@ msgstr "Afganistan" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Virhe !" @@ -6117,13 +6200,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "Pitcairnsaaret" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6207,11 +6283,6 @@ msgstr "Muut toiminnot" msgid "Done" msgstr "Valmis" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6300,7 +6371,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6402,6 +6473,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6436,6 +6514,11 @@ msgstr "Lähtevät siirtymät" msgid "Icon" msgstr "Kuvake" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6481,7 +6564,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6502,8 +6585,8 @@ msgid "Child IDs" msgstr "Alatunnukset" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Ongelma palvelintoiminnon konfiguraatiossa \"Talletustunnus\"." @@ -6817,9 +6900,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Liipaisimien konfiguraatio" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis- ja Futunasaaret" #. module: base #: selection:server.action.create,init,type:0 @@ -6855,7 +6938,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -7003,11 +7086,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komorit" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7021,6 +7102,11 @@ msgstr "Palvelintoiminnot" msgid "Cancel Install" msgstr "Peruuta asennus" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7037,7 +7123,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7126,13 +7212,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Käyttäjän viite" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Varoitus !" @@ -7278,7 +7372,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7317,13 +7411,6 @@ msgstr "Näkymän viite" msgid "Selection" msgstr "Valinta" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7460,6 +7547,14 @@ msgstr "Määrittelemätön \"get\" menetelmä!" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7480,6 +7575,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7505,6 +7606,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7573,11 +7683,6 @@ msgstr "Liipaisupäivämäärä" msgid "Croatian / hrvatski jezik" msgstr "Kroatia / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7594,9 +7699,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Poistettavissa" #. module: base #: view:res.partner.category:0 @@ -7637,9 +7742,12 @@ msgid "Menu Action" msgstr "Valikkotoiminto" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Färsaaret" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7767,6 +7875,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7778,7 +7894,7 @@ msgid "China" msgstr "Kiina" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7868,7 +7984,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7976,7 +8091,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8077,7 +8192,7 @@ msgid "Auto-Refresh" msgstr "Automaattinen päivitys" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8087,11 +8202,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis- ja Futunasaaret" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8149,14 +8259,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8165,7 +8278,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8213,6 +8326,11 @@ msgstr "Tansania" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8223,11 +8341,6 @@ msgstr "Joulusaari" msgid "Other Actions Configuration" msgstr "Muiden toimintojen asetukset" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Poistettavissa" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8421,12 +8534,13 @@ msgid "Luxembourg" msgstr "Luxemburg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Matala" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Toiminto tai painike asiakaspuolella joka liipaisee toiminnon." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8595,7 +8709,7 @@ msgid "View Auto-Load" msgstr "Näkymän automaattinen lataus" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8636,7 +8750,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8794,9 +8908,9 @@ msgid "Czech / Čeština" msgstr "Tšekki / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Tarkennettu haku" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Liipaisimien konfiguraatio" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8928,6 +9042,12 @@ msgstr "" msgid "Portrait" msgstr "Pystysuunta" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9099,7 +9219,7 @@ msgid "Account Owner" msgstr "Tilin omistaja" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -10288,6 +10408,9 @@ msgstr "Venäjä / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Tarkennettu haku" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -11079,6 +11202,9 @@ msgstr "Venäjä / русский язык" #~ msgid "Albanian / Shqipëri" #~ msgstr "Albania / Shqiperia" +#~ msgid "Field Selection" +#~ msgstr "Kentän valinta" + #, python-format #~ msgid "Delivered Qty" #~ msgstr "Toimitettu määrä" diff --git a/bin/addons/base/i18n/fr.po b/bin/addons/base/i18n/fr.po index 68bdf711038..6d3129260c9 100644 --- a/bin/addons/base/i18n/fr.po +++ b/bin/addons/base/i18n/fr.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2011-01-10 15:41+0000\n" "Last-Translator: Quentin THEURET \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:47+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -113,7 +113,7 @@ msgid "Created Views" msgstr "Vues créées" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " @@ -122,6 +122,14 @@ msgstr "" "Vous ne pouvez pas écrire dans ce document (%s) ! Êtes-vous sûr que votre " "utilisateur fait partie d'un de ces groupes : %s." +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -133,9 +141,18 @@ msgid "Target Window" msgstr "Fenêtre cible" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Corée du Sud" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -350,7 +367,7 @@ msgid "Netherlands Antilles" msgstr "Antilles Néerlandaises" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -395,6 +412,11 @@ msgstr "La méthode \"read\" n'est pas implémentée dans cet objet !" msgid "This ISO code is the name of po files to use for translations" msgstr "Ce code ISO est le nom des fichiers po utilisés pour les traductions" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Votre système sera mis à jour." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -467,7 +489,7 @@ msgid "Miscellaneous Suppliers" msgstr "Fournisseurs divers" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Les champs personnalisés doivent avoir un nom commençant par 'x_' !" @@ -818,6 +840,12 @@ msgstr "Guam (É-U)" msgid "Human Resources Dashboard" msgstr "Tableau de bord ressources humaines" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -834,6 +862,11 @@ msgstr "XML non valide pour l'architecture de la vue" msgid "Cayman Islands" msgstr "Îles Caïmans" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Corée du Sud" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -947,6 +980,12 @@ msgstr "Nom du module" msgid "Marshall Islands" msgstr "Îles Marshall" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -978,6 +1017,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "2. Les règles de groupe sont coordonnées par un ET logique" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1121,13 +1166,23 @@ msgstr "Chemin d'accès aux rapports" msgid "Reports" msgstr "Rapports" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Si cette case est cochée, l'action ne sera pas affichée dans la barre " +"d'outil à droite de la vue formulaire." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Lors de la création" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1174,9 +1229,11 @@ msgid "Wizard Info" msgstr "Information de l'assistant" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comores" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Export de la traduction" #. module: base #: help:res.log,secondary:0 @@ -1248,24 +1305,6 @@ msgstr "ID lié" msgid "Day: %(day)s" msgstr "Jour: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Liste tous les modules certifiés disponibles pour configurer votre OpenERP. " -"Les modules qui sont installés sont marqués ainsi. Vous pouvez rechercher un " -"module spécifique en utilisant le nom ou la description du module. Vous ne " -"devez pas installer les modules un par un, vous pouvez en installer " -"plusieurs en même temps en cliquant sur le bouton 'Planifier' dans la liste. " -"Ensuite, lancer la mise à jour planifiée depuis le menu Action une fois pour " -"tous les modules dont vous avez planifié l'installation." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1377,7 +1416,7 @@ msgid "Formula" msgstr "Formule" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Impossible de supprimer l'utilisateur root" @@ -1389,7 +1428,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (copie)" @@ -1570,11 +1609,6 @@ msgstr "" "Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "Nouveau mot de passe" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1693,6 +1727,11 @@ msgstr "Champ" msgid "Groups (no group = global)" msgstr "Groupes (pas de groupe = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Îles Féroé" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1726,7 +1765,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1922,6 +1961,12 @@ msgid "Messages" msgstr "Messages" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1988,6 +2033,11 @@ msgstr "Île Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "Koréen (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -2025,6 +2075,11 @@ msgstr "Impossible de mettre à jour le module '%s'. Il n'est pas installé." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2243,6 +2298,13 @@ msgstr "Espagnol (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2327,6 +2389,7 @@ msgstr "Correspondances de champ" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Module" @@ -2395,7 +2458,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Veuillez spécifier une action à lancer !" @@ -2555,11 +2618,6 @@ msgstr "Erreur ! Vous ne pouvez pas créer de catégories récursives" msgid "%x - Appropriate date representation." msgstr "%x - Représentation de date appropriée" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "change.user.password" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2910,11 +2968,6 @@ msgstr "Secteur des télécoms" msgid "Trigger Object" msgstr "Objet déclencheur" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "Entrer le mot de passe à nouveau pour confirmer." - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2953,9 +3006,9 @@ msgid "Sequence Type" msgstr "Type de Séquence" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Hindou / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2979,6 +3032,7 @@ msgstr "Contrainte SQL" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Modèle" @@ -3093,11 +3147,9 @@ msgstr "" "Vous essayez d'enlever un module qui est installé ou qui va être installer" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "" -"Le genre d'action ou de bouton, coté client, qui déclenchera l'action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Les modules sélectionnés ont été mis à jour / installés !" #. module: base #: selection:base.language.install,lang:0 @@ -3117,6 +3169,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Processus" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3158,7 +3215,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Vous ne pouvez pas supprimer le model '%s' !" @@ -3256,7 +3313,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3391,11 +3448,6 @@ msgstr "" msgid "System update completed" msgstr "Mise à jour du système complète" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Sélection de champ" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3433,14 +3485,10 @@ msgid "Apply For Delete" msgstr "Appliquer pour supprimer" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Si cette case est cochée, l'action ne sera pas affichée dans la barre " -"d'outil à droite de la vue formulaire." #. module: base #: view:ir.attachment:0 @@ -3652,6 +3700,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3697,9 +3753,11 @@ msgid "Starter Partner" msgstr "Partenaire Débutant" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Votre système sera mis à jour." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3869,7 +3927,7 @@ msgid "Flow Start" msgstr "Flux de départ" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "le module ne peut être charger! (astuce: vérifier addons-path)" @@ -3901,9 +3959,9 @@ msgid "Guadeloupe (French)" msgstr "Gouadeloupe (Française)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Erreur Utilisateur" @@ -3971,6 +4029,13 @@ msgstr "Configuration de l'action client" msgid "Partner Addresses" msgstr "Carnet d'adresses" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4134,11 +4199,6 @@ msgstr "Historique des requêtes" msgid "Menus" msgstr "Menus" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Les modules sélectionnés ont été mis à jour / installés !" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4335,6 +4395,11 @@ msgstr "" "après les opérations d'écriture. S'il est vide, vous ne pourrez pas " "surveiller le nouvel enregistrement." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4386,6 +4451,11 @@ msgstr "Voulez-vous effacer les \"Ids\" ? " msgid "Serial Key" msgstr "Numéro de série" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Faible" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4416,11 +4486,6 @@ msgstr "Employée" msgid "Create Access" msgstr "Accès en création" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "Mot de passe actuel" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4623,6 +4688,14 @@ msgstr "" "nouveaux modules mais vous pouvez choisir de les déclencher manuellement à " "partir de ce menu." +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4896,7 +4969,7 @@ msgid "Change My Preferences" msgstr "Changer mes préférences" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Modèle non valide dans la définition de l'action." @@ -5096,9 +5169,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorer" +#: model:res.country,name:base.us +msgid "United States" +msgstr "États Unis" #. module: base #: view:ir.module.module:0 @@ -5123,7 +5196,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Module %s: Certificat de qualité non valide" @@ -5161,9 +5234,10 @@ msgid "Nigeria" msgstr "Nigéria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5185,12 +5259,6 @@ msgstr "Image de l'icone web" msgid "Values for Event Type" msgstr "Valeurs pour le type d'évènement" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "Le mot de passe actuel ne correspond pas, vérifiez de nouveau." - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5333,6 +5401,13 @@ msgstr "" "groupes. Si ce champ est vide, OpenERP calculera la visibilité sur le " "critère des droits d'accès aux objets relatifs." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5358,7 +5433,7 @@ msgstr "" "externe non présente: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5540,6 +5615,13 @@ msgstr "Recrutement" msgid "Reunion (French)" msgstr "Réunion (Française)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5547,13 +5629,6 @@ msgstr "Réunion (Française)" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" -"Vous devez vous déconnecter puis vous reconnecter lors d'un changement de " -"mot de passe." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5565,7 +5640,7 @@ msgid "Solomon Islands" msgstr "Îles Salomon" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5581,7 +5656,7 @@ msgid "Waiting" msgstr "En attente" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Impossible de charger le module base" @@ -5635,9 +5710,9 @@ msgid "Module Category" msgstr "Catégorie du module" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "États Unis" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorer" #. module: base #: report:ir.module.reference.graph:0 @@ -5793,13 +5868,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Le modèle %s n'existe pas!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5836,7 +5911,6 @@ msgstr "Le noyau de OpenERP, nécéssaire pour toutes les installations" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5855,6 +5929,11 @@ msgstr "Fichier PO" msgid "Neutral Zone" msgstr "Zone neutre" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Hindou / हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5865,11 +5944,6 @@ msgstr "Personnalisé" msgid "Current" msgstr "Actuel" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "Entrez le mot de passe." - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5990,7 +6064,7 @@ msgstr "" "création)" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Spécifier, SVP, l'option du serveur --email-from !" @@ -6152,11 +6226,6 @@ msgstr "Levée de fonds" msgid "Sequence Codes" msgstr "Codes de la Séquence" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "Confirmer le mot de passe" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6197,6 +6266,12 @@ msgstr "France" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6215,8 +6290,6 @@ msgstr "République Islamique d'Afghanistan" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Erreur !" @@ -6332,15 +6405,6 @@ msgstr "Nom du service" msgid "Pitcairn Island" msgstr "Îles Pitcairn" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" -"Le nouveau mot de passe et la confirmation ne correspondent pas. Vérifiez de " -"nouveau." - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6428,11 +6492,6 @@ msgstr "Autres actions" msgid "Done" msgstr "Terminé" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "Modifier" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6526,7 +6585,7 @@ msgstr "" "liens :" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6633,6 +6692,13 @@ msgstr "" "pour la devise: %s \n" "à la date de: %s" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6667,6 +6733,11 @@ msgstr "Transitions sortantes" msgid "Icon" msgstr "Icône" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6712,7 +6783,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6737,8 +6808,8 @@ msgid "Child IDs" msgstr "ID enfants" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problème dans la configuration `Record Id`dans le Server Action!" @@ -7066,9 +7137,9 @@ msgid "Grenada" msgstr "Grenade" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Configuration du déclencheur" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis et Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -7106,7 +7177,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "La taille du champ ne doit jamais être inférieure à 1 !" @@ -7254,11 +7325,9 @@ msgid "Manufacturing" msgstr "GPAO" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Export de la traduction" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comores" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7272,6 +7341,11 @@ msgstr "Serveur Actions" msgid "Cancel Install" msgstr "Annuler l'installation" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7288,7 +7362,7 @@ msgid "Copy Object" msgstr "Copier l'objet" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7384,13 +7458,21 @@ msgstr "" "Nombre de fois ou la fonction est appelé,\n" "un nombre négatif indique qu'il n'y a pas de limite" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Réf. utilisateur" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Avertissement !" @@ -7536,7 +7618,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Critères de recherche non valides" @@ -7575,13 +7657,6 @@ msgstr "Voir la Réf." msgid "Selection" msgstr "Sélection" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "Modifier le mot de passe" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7720,6 +7795,14 @@ msgstr "Méthode 'get' non définie !" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "Norwegian Bokmål / Norsk bokmål" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7740,6 +7823,12 @@ msgstr "Tableaux de bord" msgid "Binary File or external URL" msgstr "Fichier binaire ou URL externe" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7765,6 +7854,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "Occitan (FR, post 1500) / Occitan" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7834,11 +7932,6 @@ msgstr "Date de déclenchement" msgid "Croatian / hrvatski jezik" msgstr "Croate / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "Entrez votre mot de passe actuel." - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7855,9 +7948,9 @@ msgid "The code of the country must be unique !" msgstr "Le code du pays doit être unique !" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Gestion du temps" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Non installable" #. module: base #: view:res.partner.category:0 @@ -7898,9 +7991,12 @@ msgid "Menu Action" msgstr "Action du menu" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Îles Féroé" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -8035,6 +8131,14 @@ msgstr "" "Nom de la méthode qui peut être appeler sur l'objet quand cet ordonnanceur " "est exécuté." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -8046,7 +8150,7 @@ msgid "China" msgstr "Chine" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -8146,7 +8250,6 @@ msgid "ltd" msgstr "Ets" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8254,7 +8357,7 @@ msgid "Account No." msgstr "Compte n°." #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Langue de base 'en_US' ne peut pas être supprimée !" @@ -8357,7 +8460,7 @@ msgid "Auto-Refresh" msgstr "Rafraîchissement automatique" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8368,11 +8471,6 @@ msgstr "" msgid "Diagram" msgstr "Diagramme" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis et Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8430,14 +8528,17 @@ msgid "Turkmenistan" msgstr "Turkménistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8446,7 +8547,7 @@ msgstr "Turkménistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8494,6 +8595,11 @@ msgstr "Tanzanie" msgid "Danish / Dansk" msgstr "Danish / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8504,11 +8610,6 @@ msgstr "Île Christmas" msgid "Other Actions Configuration" msgstr "Configuration des autres actions" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Non installable" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8706,12 +8807,14 @@ msgid "Luxembourg" msgstr "Luxembourg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Faible" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"Le genre d'action ou de bouton, coté client, qui déclenchera l'action." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Erreur ! Vous ne pouvez pas créer de menu récursif." @@ -8887,7 +8990,7 @@ msgid "View Auto-Load" msgstr "Auto-chargement de la vue" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Vous ne pouvez pas supprimer le champ '%s' !" @@ -8930,7 +9033,7 @@ msgstr "" "(Objet portable GetText)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -9095,9 +9198,9 @@ msgid "Czech / Čeština" msgstr "Tchèque / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Recherche avancée" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Configuration du déclencheur" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9241,6 +9344,12 @@ msgstr "" msgid "Portrait" msgstr "Portrait" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9413,7 +9522,7 @@ msgid "Account Owner" msgstr "Titulaire du compte" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "Avertissement lors du changement de société" @@ -9913,6 +10022,9 @@ msgstr "Russie / русский язык" #~ msgid "Field child1" #~ msgstr "Champ fils1" +#~ msgid "Field Selection" +#~ msgstr "Sélection de champ" + #~ msgid "Sale Opportunity" #~ msgstr "Opportunité de Vente" @@ -10757,6 +10869,9 @@ msgstr "Russie / русский язык" #~ msgid "Access Controls Grid" #~ msgstr "Grille de contrôles d'accès" +#~ msgid "Advanced Search" +#~ msgstr "Recherche avancée" + #~ msgid "" #~ "Create your users.\n" #~ "You will be able to assign groups to users. Groups define the access rights " @@ -11119,6 +11234,11 @@ msgstr "Russie / русский язык" #~ msgid "terp-accessories-archiver" #~ msgstr "terp-accessories-archiver" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "" +#~ "Vous devez vous déconnecter puis vous reconnecter lors d'un changement de " +#~ "mot de passe." + #~ msgid "terp-face-plain" #~ msgstr "terp-face-plain" @@ -11176,6 +11296,9 @@ msgstr "Russie / русский язык" #~ msgid "Ltd." #~ msgstr "Ltd." +#~ msgid "Time Tracking" +#~ msgstr "Gestion du temps" + #~ msgid "Web Icons" #~ msgstr "Icones de la version web" @@ -11209,6 +11332,22 @@ msgstr "Russie / русский язык" #~ msgid "Web Icons Hover" #~ msgstr "Icône web au survol de la souris" +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Liste tous les modules certifiés disponibles pour configurer votre OpenERP. " +#~ "Les modules qui sont installés sont marqués ainsi. Vous pouvez rechercher un " +#~ "module spécifique en utilisant le nom ou la description du module. Vous ne " +#~ "devez pas installer les modules un par un, vous pouvez en installer " +#~ "plusieurs en même temps en cliquant sur le bouton 'Planifier' dans la liste. " +#~ "Ensuite, lancer la mise à jour planifiée depuis le menu Action une fois pour " +#~ "tous les modules dont vous avez planifié l'installation." + #~ msgid "Stéphane Wirtel's tweets" #~ msgstr "Tweets de Stéphane Wirtel" @@ -11235,3 +11374,41 @@ msgstr "Russie / русский язык" #~ msgid "Nhomar Hernandez's tweets" #~ msgstr "Tweets de Nhomar Hernandez's" + +#~ msgid "New Password" +#~ msgstr "Nouveau mot de passe" + +#~ msgid "change.user.password" +#~ msgstr "change.user.password" + +#~ msgid "Current Password" +#~ msgstr "Mot de passe actuel" + +#~ msgid "Enter the new password." +#~ msgstr "Entrez le mot de passe." + +#~ msgid "Change Password" +#~ msgstr "Modifier le mot de passe" + +#~ msgid "Change" +#~ msgstr "Modifier" + +#~ msgid "Enter the new password again for confirmation." +#~ msgstr "Entrer le mot de passe à nouveau pour confirmer." + +#, python-format +#~ msgid "The current password does not match, please double-check it." +#~ msgstr "Le mot de passe actuel ne correspond pas, vérifiez de nouveau." + +#~ msgid "Confirm Password" +#~ msgstr "Confirmer le mot de passe" + +#, python-format +#~ msgid "" +#~ "The new and confirmation passwords do not match, please double-check them." +#~ msgstr "" +#~ "Le nouveau mot de passe et la confirmation ne correspondent pas. Vérifiez de " +#~ "nouveau." + +#~ msgid "Enter your current password." +#~ msgstr "Entrez votre mot de passe actuel." diff --git a/bin/addons/base/i18n/gl.po b/bin/addons/base/i18n/gl.po index 00b61e69302..c8e3c2a361f 100644 --- a/bin/addons/base/i18n/gl.po +++ b/bin/addons/base/i18n/gl.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-14 08:43+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:04+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:48+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "Vistas creadas" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "Fiestra destino" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Corea do Sur" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -345,7 +362,7 @@ msgid "Netherlands Antilles" msgstr "Antillas Holandesas" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -387,6 +404,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "Este código ISO é o nome dos ficheiros po para usar coma traducións" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "O seu sistema será actualizado." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -459,7 +481,7 @@ msgid "Miscellaneous Suppliers" msgstr "Diversos provedores" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Os campos personalizados deben ter un nome que comeza con 'x_' !" @@ -797,6 +819,12 @@ msgstr "Guam (EUA)" msgid "Human Resources Dashboard" msgstr "Tableiro de Recursos Humanos" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -813,6 +841,11 @@ msgstr "XML válido para Arquitectura de Vistas!" msgid "Cayman Islands" msgstr "Illas Caymans" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Corea do Sur" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -919,6 +952,12 @@ msgstr "Nome do módulo" msgid "Marshall Islands" msgstr "Illas Marshall" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -946,6 +985,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1081,13 +1126,21 @@ msgstr "Ruta do arquivo do informe principal" msgid "Reports" msgstr "Informes" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Ó Crear" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1129,9 +1182,11 @@ msgid "Wizard Info" msgstr "Información do Asistente" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comores" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Exportar Tradución" #. module: base #: help:res.log,secondary:0 @@ -1190,17 +1245,6 @@ msgstr "ID do Adxunto" msgid "Day: %(day)s" msgstr "Día: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1308,7 +1352,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Non se pode eliminar o usuario root!" @@ -1320,7 +1364,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (copia)" @@ -1489,11 +1533,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1599,6 +1638,11 @@ msgstr "Campo" msgid "Groups (no group = global)" msgstr "Grupos (sen grupo = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Illas Feroe" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1632,7 +1676,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1821,6 +1865,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1882,6 +1932,11 @@ msgstr "Norfolk Island" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1919,6 +1974,11 @@ msgstr "Non se pode actualizar o módulo '%s' . Non está instalado." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2127,6 +2187,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2211,6 +2278,7 @@ msgstr "Mapeamentos de campo." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Módulo" @@ -2279,7 +2347,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Por favor, especifique unha acción para lanzar!" @@ -2433,11 +2501,6 @@ msgstr "Erro! Non podes crear categorías recursivamente." msgid "%x - Appropriate date representation." msgstr "%x - representación de data axeitada." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2767,11 +2830,6 @@ msgstr "sector de Telecomunicacións" msgid "Trigger Object" msgstr "Obxecto Disparador" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2810,8 +2868,8 @@ msgid "Sequence Type" msgstr "Secuencia de Tipo" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2836,6 +2894,7 @@ msgstr "SQL Restrición" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Modelo" @@ -2943,10 +3002,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "Intenta eliminar un módulo que está instalado ou será instalado" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "" +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Os módulos seleccionados foron actualizados / instalados!" #. module: base #: selection:base.language.install,lang:0 @@ -2966,6 +3024,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Fluxos de Traballo" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3005,7 +3068,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Non se pode eliminar o modelo '%s' !" @@ -3103,7 +3166,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3232,11 +3295,6 @@ msgstr "" msgid "System update completed" msgstr "Sistema de actualización rematada" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Campo Selección" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3274,11 +3332,9 @@ msgid "Apply For Delete" msgstr "Aplique Para Eliminar" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3476,6 +3532,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3517,9 +3581,11 @@ msgid "Starter Partner" msgstr "Empresa Inicial" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "O seu sistema será actualizado." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3687,7 +3753,7 @@ msgid "Flow Start" msgstr "Inicio do Fluxo" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3719,9 +3785,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe (en francés)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Erro de Usuario" @@ -3786,6 +3852,13 @@ msgstr "Configuración de Acción de Cliente" msgid "Partner Addresses" msgstr "Enderezos da Empresa" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3947,11 +4020,6 @@ msgstr "Solicitude de Historia" msgid "Menus" msgstr "Menús" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Os módulos seleccionados foron actualizados / instalados!" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4142,6 +4210,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4193,6 +4266,11 @@ msgstr "Quere limpar os IDs? " msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Baixa" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4223,11 +4301,6 @@ msgstr "Empregado" msgid "Create Access" msgstr "Crear Acceso" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4424,6 +4497,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4689,7 +4770,7 @@ msgid "Change My Preferences" msgstr "Cambiar as Miñas Preferencias" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Nome inválido do modelo na definición da acción." @@ -4882,9 +4963,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorar" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Estados Unidos" #. module: base #: view:ir.module.module:0 @@ -4909,7 +4990,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Módulo %s: Certificado de Calidade Inválido" @@ -4943,9 +5024,10 @@ msgid "Nigeria" msgstr "Nixeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -4967,12 +5049,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Os valores para o tipo de evento" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5100,6 +5176,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5123,7 +5206,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5300,6 +5383,13 @@ msgstr "Contratación" msgid "Reunion (French)" msgstr "Reunion (francesa)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5307,12 +5397,6 @@ msgstr "Reunion (francesa)" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" -"Ten que saír e entrar da sesión despois de cambiar o seu contrasinal." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5324,7 +5408,7 @@ msgid "Solomon Islands" msgstr "Illas Salomón" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5340,7 +5424,7 @@ msgid "Waiting" msgstr "Esperando" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5394,9 +5478,9 @@ msgid "Module Category" msgstr "Categoría do Módulo" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Estados Unidos" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorar" #. module: base #: report:ir.module.reference.graph:0 @@ -5547,13 +5631,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Non podes eliminar a linguaxe que é a preferida do usuario!" @@ -5588,7 +5672,6 @@ msgstr "O núcleo do OpenERP, necesario para toda instalación." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5607,6 +5690,11 @@ msgstr "Arquivo PO" msgid "Neutral Zone" msgstr "Zona neutral" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5617,11 +5705,6 @@ msgstr "Custom" msgid "Current" msgstr "Actual" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5736,7 +5819,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Indique a opción do servidor --email-from !" @@ -5895,11 +5978,6 @@ msgstr "Recolleita de fondos" msgid "Sequence Codes" msgstr "Códigos de Secuencia" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5937,6 +6015,12 @@ msgstr "Francia" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5955,8 +6039,6 @@ msgstr "Afganistán, Estado Islámico de" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Erro!" @@ -6068,13 +6150,6 @@ msgstr "Nome do Servizo" msgid "Pitcairn Island" msgstr "Illa de Pitcairn" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6158,11 +6233,6 @@ msgstr "Outras accións" msgid "Done" msgstr "Feito" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6251,7 +6321,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "Para ver traducións oficiais, pode comezar con estes enlaces:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6353,6 +6423,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6385,6 +6462,11 @@ msgstr "As transicións de saída" msgid "Icon" msgstr "Icona" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6430,7 +6512,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6451,8 +6533,8 @@ msgid "Child IDs" msgstr "IDs Fillas" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problema na configuración `Record Id` na Acción de Servidor!" @@ -6764,9 +6846,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Illas Wallis e Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -6802,7 +6884,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6950,11 +7032,9 @@ msgid "Manufacturing" msgstr "Industria" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Exportar Tradución" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comores" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -6968,6 +7048,11 @@ msgstr "Accións de Servidor" msgid "Cancel Install" msgstr "Cancelar Instalación" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6984,7 +7069,7 @@ msgid "Copy Object" msgstr "Objeto de Copia" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7073,13 +7158,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Usuario Ref." #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Atención!" @@ -7225,7 +7318,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7262,13 +7355,6 @@ msgstr "Vista Ref." msgid "Selection" msgstr "Selección" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7405,6 +7491,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7425,6 +7519,12 @@ msgstr "Panel de Control" msgid "Binary File or external URL" msgstr "Ficheiro binario ou URL externa" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7451,6 +7551,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7517,11 +7626,6 @@ msgstr "Data do disparador" msgid "Croatian / hrvatski jezik" msgstr "Croata / Hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7538,9 +7642,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Tempo de seguimento" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Non Instaláveis" #. module: base #: view:res.partner.category:0 @@ -7581,9 +7685,12 @@ msgid "Menu Action" msgstr "Menú Acción" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Illas Feroe" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7711,6 +7818,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7722,7 +7837,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7812,7 +7927,6 @@ msgid "ltd" msgstr "Ltd" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7920,7 +8034,7 @@ msgid "Account No." msgstr "Conta nº" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "A Lingua Base 'gl_ES' non se pode borrar!" @@ -8021,7 +8135,7 @@ msgid "Auto-Refresh" msgstr "Auto-refresh" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8031,11 +8145,6 @@ msgstr "" msgid "Diagram" msgstr "Diagrama" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Illas Wallis e Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8093,14 +8202,17 @@ msgid "Turkmenistan" msgstr "Turcomenistán" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8109,7 +8221,7 @@ msgstr "Turcomenistán" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8157,6 +8269,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "Dinamarca / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8167,11 +8284,6 @@ msgstr "Illa de Christmas" msgid "Other Actions Configuration" msgstr "Configuración de Outras Accións" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Non Instaláveis" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8362,12 +8474,13 @@ msgid "Luxembourg" msgstr "Luxemburgo" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Baixa" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Erro! Non podes crear Menú recursivamente." @@ -8536,7 +8649,7 @@ msgid "View Auto-Load" msgstr "Ver Auto-Load" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Non pode eliminar o campo '%s' !" @@ -8577,7 +8690,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8735,9 +8848,9 @@ msgid "Czech / Čeština" msgstr "Checa / čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Búsqueda Avanzada" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Trigger Configuration" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8865,6 +8978,12 @@ msgstr "" msgid "Portrait" msgstr "Retrato" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9034,7 +9153,7 @@ msgid "Account Owner" msgstr "Propietario da Conta" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9418,6 +9537,9 @@ msgstr "Rusia / русский язык" #~ msgid "Albanian / Shqipëri" #~ msgstr "Albanesa / Shqiperi" +#~ msgid "Field Selection" +#~ msgstr "Campo Selección" + #~ msgid "terp-gtk-go-back-rtl" #~ msgstr "terp-gtk-go-back-rtl" @@ -9532,6 +9654,9 @@ msgstr "Rusia / русский язык" #~ msgid "STOCK_ABOUT" #~ msgstr "STOCK_ABOUT" +#~ msgid "Advanced Search" +#~ msgstr "Búsqueda Avanzada" + #~ msgid "terp-go-week" #~ msgstr "terp-go-week" @@ -9571,6 +9696,10 @@ msgstr "Rusia / русский язык" #~ msgid "Occitan (post 1500) / France" #~ msgstr "Occitano (post 1500) / Francia" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "" +#~ "Ten que saír e entrar da sesión despois de cambiar o seu contrasinal." + #~ msgid "STOCK_UNINDENT" #~ msgstr "STOCK_UNINDENT" @@ -9702,6 +9831,9 @@ msgstr "Rusia / русский язык" #~ msgid "STOCK_GO_FORWARD" #~ msgstr "STOCK_GO_FORWARD" +#~ msgid "Time Tracking" +#~ msgstr "Tempo de seguimento" + #~ msgid "STOCK_SELECT_FONT" #~ msgstr "STOCK_SELECT_FONT" diff --git a/bin/addons/base/i18n/he.po b/bin/addons/base/i18n/he.po index bafb4117953..dd9c54af761 100644 --- a/bin/addons/base/i18n/he.po +++ b/bin/addons/base/i18n/he.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-10 07:42+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:04+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:48+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "צפיה בנוצרו" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "חלון מטרה" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -342,7 +359,7 @@ msgid "Netherlands Antilles" msgstr "Netherlands Antilles" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -386,6 +403,11 @@ msgstr "שיטת הקריאה אינה מיושמת על אובייקט זה!" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -456,7 +478,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "שדות מותאמים אישית חייבים להתחיל ב 'x_' !" @@ -791,6 +813,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -807,6 +835,11 @@ msgstr "XML לא בתוקף להצגת ארכיטקטורה" msgid "Cayman Islands" msgstr "Cayman Islands" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "South Korea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -915,6 +948,12 @@ msgstr "" msgid "Marshall Islands" msgstr "Marshall Islands" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -942,6 +981,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1077,13 +1122,21 @@ msgstr "" msgid "Reports" msgstr "דוחות" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "אם הוגדר ל -TRUE , הפעולה לא תוצג על סרגל הכלים הימני של תצוגת טופס." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "בהפקה" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1125,9 +1178,11 @@ msgid "Wizard Info" msgstr "מידע אשף" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1184,17 +1239,6 @@ msgstr "מזהה קובץ מצורף" msgid "Day: %(day)s" msgstr "יום: %(יום)" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1305,7 +1349,7 @@ msgid "Formula" msgstr "נוסחה" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "לא ניתן להסיר משתמש מקור!" @@ -1317,7 +1361,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1488,11 +1532,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1600,6 +1639,11 @@ msgstr "שדה" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1633,7 +1677,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1823,6 +1867,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1884,6 +1934,11 @@ msgstr "Norfolk Island" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1921,6 +1976,11 @@ msgstr "לא ניתן לשדרג מודול '%s'. הוא לא מותקן." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2129,6 +2189,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2213,6 +2280,7 @@ msgstr "מיפויי שדה" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "מודול" @@ -2281,7 +2349,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "אנא ציין פעולה לביצוע!" @@ -2436,11 +2504,6 @@ msgstr "שגיאה! אינך יכול ליצור קטגוריות רקרוסיב msgid "%x - Appropriate date representation." msgstr "%x - ייצוג תאריך הולם." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2778,11 +2841,6 @@ msgstr "מגזר טלקום (תקשורת מרחקים ארוכים)" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2821,8 +2879,8 @@ msgid "Sequence Type" msgstr "סוג ערך" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2847,6 +2905,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "מודל" @@ -2954,10 +3013,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "אתה מנסה להסיר מודול מותקן או שיותקן." #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "סוג הפעולה או הפקד בצד הלקוח שיגרמו לפעולה." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "" #. module: base #: selection:base.language.install,lang:0 @@ -2977,6 +3035,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "רצפי עבודה" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3018,7 +3081,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "אתה לא יכול להסיר את המודל '%s' !" @@ -3116,7 +3179,7 @@ msgid "API ID" msgstr "מזהה API (ממשק לתכנות מחשבים)" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3247,11 +3310,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "בחירת שדה" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3289,12 +3347,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." -msgstr "אם הוגדר ל -TRUE , הפעולה לא תוצג על סרגל הכלים הימני של תצוגת טופס." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" +msgstr "" #. module: base #: view:ir.attachment:0 @@ -3491,6 +3547,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3532,8 +3596,10 @@ msgid "Starter Partner" msgstr "שותףהתחלתי" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3702,7 +3768,7 @@ msgid "Flow Start" msgstr "זרם התחלתי" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3734,9 +3800,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (French)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3801,6 +3867,13 @@ msgstr "קביעת תצורה לפעולות לקוח" msgid "Partner Addresses" msgstr "כתובת שותף" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3962,11 +4035,6 @@ msgstr "בקש היסטוריה" msgid "Menus" msgstr "תפריטים" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4159,6 +4227,11 @@ msgstr "" "ספק את שם השדה בו מזהה הרשומה מאוחסן לאחר ביצוע הפעולה. אם השדה ריק, לא ניתן " "לעקוב אחר הרשומה החדשה." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4210,6 +4283,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "נמוך" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4240,11 +4318,6 @@ msgstr "" msgid "Create Access" msgstr "צור גישה" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4441,6 +4514,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4706,7 +4787,7 @@ msgid "Change My Preferences" msgstr "שנה את העדפות שלי" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4901,9 +4982,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "" +#: model:res.country,name:base.us +msgid "United States" +msgstr "United States" #. module: base #: view:ir.module.module:0 @@ -4928,7 +5009,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "מודול %s: ללא אישו איכות בתוקף" @@ -4964,9 +5045,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -4988,12 +5070,6 @@ msgstr "" msgid "Values for Event Type" msgstr "ערכים לסוג אירוע" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5119,6 +5195,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5142,7 +5225,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5319,6 +5402,13 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunion (French)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5326,11 +5416,6 @@ msgstr "Reunion (French)" msgid "Global" msgstr "גלובלי" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5342,7 +5427,7 @@ msgid "Solomon Islands" msgstr "Solomon Islands" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5358,7 +5443,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5412,9 +5497,9 @@ msgid "Module Category" msgstr "קטגורית מודול" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "" #. module: base #: report:ir.module.reference.graph:0 @@ -5565,13 +5650,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5606,7 +5691,6 @@ msgstr "הליבה של openERP, זקוקה להתקנה מלאה." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5625,6 +5709,11 @@ msgstr "קובץ PO" msgid "Neutral Zone" msgstr "אזור נטרלי" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5635,11 +5724,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5754,7 +5838,7 @@ msgid "" msgstr "בחר את האובייקט אשר עליו הפעולה תעבוד (קריאה,כתיבה,יצירה)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5913,11 +5997,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5955,6 +6034,12 @@ msgstr "France" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5973,8 +6058,6 @@ msgstr "Afghanistan, Islamic State of" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "שגיאה!" @@ -6086,13 +6169,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "Pitcairn Island" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6176,11 +6252,6 @@ msgstr "פעולות אחרות" msgid "Done" msgstr "בוצע" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6269,7 +6340,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6371,6 +6442,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6404,6 +6482,11 @@ msgstr "תרגומים יוצאים" msgid "Icon" msgstr "סמל" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6449,7 +6532,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6470,8 +6553,8 @@ msgid "Child IDs" msgstr "מזהי ילד" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "בעיה בקביעת תצורה 'מזהה רשומה' בפעולת שרת!" @@ -6785,9 +6868,9 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" #. module: base #: selection:server.action.create,init,type:0 @@ -6823,7 +6906,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6971,11 +7054,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comoros" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -6989,6 +7070,11 @@ msgstr "פעולות שרת" msgid "Cancel Install" msgstr "בטל התקנה" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7005,7 +7091,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7094,13 +7180,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7246,7 +7340,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7283,13 +7377,6 @@ msgstr "" msgid "Selection" msgstr "בחירה" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7426,6 +7513,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7446,6 +7541,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7471,6 +7572,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7539,11 +7649,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "קרואטיה / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7560,9 +7665,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "לא ניתן להסרה" #. module: base #: view:res.partner.category:0 @@ -7603,9 +7708,12 @@ msgid "Menu Action" msgstr "פעולת תפריט" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7733,6 +7841,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7744,7 +7860,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7834,7 +7950,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7942,7 +8057,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8043,7 +8158,7 @@ msgid "Auto-Refresh" msgstr "רענן- אוטומטית" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8053,11 +8168,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8115,14 +8225,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8131,7 +8244,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8179,6 +8292,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8189,11 +8307,6 @@ msgstr "Christmas Island" msgid "Other Actions Configuration" msgstr "קביעת תצורה של פעולות אחרות" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "לא ניתן להסרה" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8387,12 +8500,13 @@ msgid "Luxembourg" msgstr "Luxembourg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "נמוך" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "סוג הפעולה או הפקד בצד הלקוח שיגרמו לפעולה." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8561,7 +8675,7 @@ msgid "View Auto-Load" msgstr "הצג טעינה אוטומטית" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8602,7 +8716,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8760,9 +8874,9 @@ msgid "Czech / Čeština" msgstr "צ'כית / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "חיפוש מתקדם" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8894,6 +9008,12 @@ msgstr "" msgid "Portrait" msgstr "דיוקן" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9063,7 +9183,7 @@ msgid "Account Owner" msgstr "בעל החשבון" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9651,6 +9771,9 @@ msgstr "רוסית / русский язык" #~ msgid "Field child1" #~ msgstr "שדה ילד1" +#~ msgid "Field Selection" +#~ msgstr "בחירת שדה" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "קבוצות אשר משמשות להגדרת אפשרויות גישה למסכים ותפריטים." @@ -10319,6 +10442,9 @@ msgstr "רוסית / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "חיפוש מתקדם" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" diff --git a/bin/addons/base/i18n/hr.po b/bin/addons/base/i18n/hr.po index 1087bb2ca08..96aae8b834a 100644 --- a/bin/addons/base/i18n/hr.po +++ b/bin/addons/base/i18n/hr.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-16 08:53+0000\n" "Last-Translator: nafterburner \n" "Language-Team: openerp-translators\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:07+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:51+0000\n" "X-Generator: Launchpad (build Unknown)\n" "Language: hr\n" @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "Stvoreni ekrani za pregled" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "Odredišni ekran" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Republika Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -342,7 +359,7 @@ msgid "Netherlands Antilles" msgstr "Nizozemski Antili" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -386,6 +403,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "ISO oznaka je naziv PO datoteke za potrebe prijevoda" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -456,7 +478,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Imena dodatnih polja moraju počinjati s 'x_' !" @@ -791,6 +813,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -807,6 +835,11 @@ msgstr "Neispravan XML za izgradnju preglednog ekrana!" msgid "Cayman Islands" msgstr "Kajmanski otoci" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Republika Korea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -916,6 +949,12 @@ msgstr "" msgid "Marshall Islands" msgstr "Maršalovi otoci" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -943,6 +982,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1078,13 +1123,21 @@ msgstr "" msgid "Reports" msgstr "Izvještaji" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Pri stvaranju" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1126,9 +1179,11 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comoro otoci" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1185,17 +1240,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Dan: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1303,7 +1347,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Nije moguće obrisati root korisnika!" @@ -1315,7 +1359,7 @@ msgstr "Malavi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1487,11 +1531,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1600,6 +1639,11 @@ msgstr "Polje" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1633,7 +1677,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1822,6 +1866,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1883,6 +1933,11 @@ msgstr "Norfolk Otočje" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1920,6 +1975,11 @@ msgstr "Nije moguće nadograditi modul '%s'. Nije instaliran." msgid "Cuba" msgstr "Kuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2128,6 +2188,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2212,6 +2279,7 @@ msgstr "Mapiranje polja." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Modul" @@ -2280,7 +2348,7 @@ msgid "Mayotte" msgstr "Majote" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Navedite radnju za pokretanje !" @@ -2433,11 +2501,6 @@ msgstr "Graška ! Ne može se stvoriti kategorije s rekurzijom." msgid "%x - Appropriate date representation." msgstr "%x - Odgovarajući oblik datuma" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2774,11 +2837,6 @@ msgstr "" msgid "Trigger Object" msgstr "Objekt za pokretanje radnje" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2817,8 +2875,8 @@ msgid "Sequence Type" msgstr "Vrsta sekvence" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2843,6 +2901,7 @@ msgstr "SQL ograničenje" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -2951,10 +3010,9 @@ msgstr "" "Pokušavate obrisati modul koji je instaliran ili je označen za instalaciju" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Vrsta akcije ili gumba na klijentskoj strani koja će okinuti akciju." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "" #. module: base #: selection:base.language.install,lang:0 @@ -2974,6 +3032,11 @@ msgstr "Gvatemala" msgid "Workflows" msgstr "Tijek procesa" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3015,7 +3078,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Nije moguće obrisati model '%s' !" @@ -3113,7 +3176,7 @@ msgid "API ID" msgstr "API Oznaka" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3242,11 +3305,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Odabir polja" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3284,11 +3342,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3486,6 +3542,14 @@ msgstr "" msgid "Montserrat" msgstr "Monserat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3527,8 +3591,10 @@ msgid "Starter Partner" msgstr "Početni partner" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3697,7 +3763,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3729,9 +3795,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3796,6 +3862,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3957,11 +4030,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4152,6 +4220,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4203,6 +4276,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4233,11 +4311,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4434,6 +4507,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4699,7 +4780,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4894,8 +4975,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4921,7 +5002,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4955,8 +5036,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4979,12 +5061,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5110,6 +5186,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5133,7 +5216,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5310,6 +5393,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5317,11 +5407,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5333,7 +5418,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5349,7 +5434,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5403,8 +5488,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5556,13 +5641,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5597,7 +5682,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5616,6 +5700,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5626,11 +5715,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5745,7 +5829,7 @@ msgid "" msgstr "Odaberite objekt na koje će akcija raditi (read, write, create)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5904,11 +5988,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5946,6 +6025,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5964,8 +6049,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6077,13 +6160,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6167,11 +6243,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6260,7 +6331,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6362,6 +6433,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6394,6 +6472,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6439,7 +6522,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6460,8 +6543,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6773,8 +6856,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6811,7 +6894,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6959,11 +7042,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comoro otoci" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -6977,6 +7058,11 @@ msgstr "Serverske radnje" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6993,7 +7079,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7082,13 +7168,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7234,7 +7328,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7271,13 +7365,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7414,6 +7501,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7434,6 +7529,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7459,6 +7560,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7525,11 +7635,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7546,8 +7651,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7589,8 +7694,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7719,6 +7827,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7730,7 +7846,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7820,7 +7936,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7928,7 +8043,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8029,7 +8144,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8039,11 +8154,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8101,14 +8211,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8117,7 +8230,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8165,6 +8278,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8175,11 +8293,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8369,12 +8482,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Vrsta akcije ili gumba na klijentskoj strani koja će okinuti akciju." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8543,7 +8657,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8584,7 +8698,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8742,8 +8856,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8872,6 +8986,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9041,7 +9161,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9699,6 +9819,9 @@ msgstr "Ruski / русский язык" #~ msgid "Field child1" #~ msgstr "Podređeno polje1" +#~ msgid "Field Selection" +#~ msgstr "Odabir polja" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "Grupe se koriste za definiciju prava pristupa za svaki od ekrana i izbornika." diff --git a/bin/addons/base/i18n/hu.po b/bin/addons/base/i18n/hu.po index 670d164bc61..5d4643f8fc2 100644 --- a/bin/addons/base/i18n/hu.po +++ b/bin/addons/base/i18n/hu.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2011-01-04 20:04+0000\n" "Last-Translator: NOVOTRADE RENDSZERHÁZ \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-05 04:45+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:48+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,7 +111,7 @@ msgid "Created Views" msgstr "Létrehozott nézetek" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " @@ -120,6 +120,14 @@ msgstr "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -131,9 +139,18 @@ msgid "Target Window" msgstr "Cél ablak" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Dél-Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -345,7 +362,7 @@ msgid "Netherlands Antilles" msgstr "Holland Antillák" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -389,6 +406,11 @@ msgstr "The read method is not implemented on this object !" msgid "This ISO code is the name of po files to use for translations" msgstr "Az ISO kód a fordításokhoz használatos po file-ok neve" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Your system will be updated." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -460,7 +482,7 @@ msgid "Miscellaneous Suppliers" msgstr "Egyéb beszállítók" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Egyedi mező nevének 'x_'-el kell kezdődnie!" @@ -807,6 +829,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -823,6 +851,11 @@ msgstr "Invalid XML for View Architecture!" msgid "Cayman Islands" msgstr "Kajmán-szigetek" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Dél-Korea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -934,6 +967,12 @@ msgstr "Modul név" msgid "Marshall Islands" msgstr "Marshall-szigetek" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -967,6 +1006,12 @@ msgstr "" "2. A csoport-specifikus szabályok logikai ÉS kapcsolattal lesznek figyelembe " "véve" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1108,13 +1153,21 @@ msgstr "Main report file path" msgid "Reports" msgstr "Jelentések" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "On Create" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1160,9 +1213,11 @@ msgid "Wizard Info" msgstr "Wizard Info" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comore-szigetek" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Export Translation" #. module: base #: help:res.log,secondary:0 @@ -1232,23 +1287,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Day: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1360,7 +1398,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Can not remove root user!" @@ -1372,7 +1410,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (másolat)" @@ -1552,11 +1590,6 @@ msgstr "" "Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "Új jelszó" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1672,6 +1705,11 @@ msgstr "Field" msgid "Groups (no group = global)" msgstr "Csoportok (globális, ha üres)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1705,7 +1743,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1899,6 +1937,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1962,6 +2006,11 @@ msgstr "Norfolk Island" msgid "Korean (KR) / 한국어 (KR)" msgstr "Korean (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1999,6 +2048,11 @@ msgstr "Can not upgrade module '%s'. It is not installed." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2217,6 +2271,13 @@ msgstr "Spanish (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2301,6 +2362,7 @@ msgstr "Field Mappings." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Module" @@ -2369,7 +2431,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Please specify an action to launch !" @@ -2527,11 +2589,6 @@ msgstr "Error ! You can not create recursive categories." msgid "%x - Appropriate date representation." msgstr "%x - Appropriate date representation." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "change.user.password" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2879,11 +2936,6 @@ msgstr "Telekommunikációs szektor" msgid "Trigger Object" msgstr "Trigger Object" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "Enter the new password again for confirmation." - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2922,9 +2974,9 @@ msgid "Sequence Type" msgstr "Sequence Type" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2948,6 +3000,7 @@ msgstr "SQL Constraint" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -3060,11 +3113,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "You try to remove a module that is installed or will be installed" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "The selected modules have been updated / installed !" #. module: base #: selection:base.language.install,lang:0 @@ -3084,6 +3135,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Workflows" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3125,7 +3181,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "You can not remove the model '%s' !" @@ -3223,7 +3279,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3357,11 +3413,6 @@ msgstr "" msgid "System update completed" msgstr "System update completed" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Field Selection" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3399,11 +3450,9 @@ msgid "Apply For Delete" msgstr "Apply For Delete" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3614,6 +3663,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3659,9 +3716,11 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3830,7 +3889,7 @@ msgid "Flow Start" msgstr "Flow Start" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "module base cannot be loaded! (hint: verify addons-path)" @@ -3862,9 +3921,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (French)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "User Error" @@ -3932,6 +3991,13 @@ msgstr "Client Action Configuration" msgid "Partner Addresses" msgstr "Partner Addresses" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4093,11 +4159,6 @@ msgstr "Üzenet előzmények" msgid "Menus" msgstr "Menus" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "The selected modules have been updated / installed !" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4293,6 +4354,11 @@ msgstr "" "Provide the field name where the record id is stored after the create " "operations. If it is empty, you can not track the new record." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4344,6 +4410,11 @@ msgstr "Want to Clear Ids ? " msgid "Serial Key" msgstr "Serial Key" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Low" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4375,11 +4446,6 @@ msgstr "Employee" msgid "Create Access" msgstr "Create Access" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "Current Password" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4580,6 +4646,14 @@ msgstr "" "OpenERP. They are launched during the installation of new modules, but you " "can choose to restart some wizards manually from this menu." +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4854,7 +4928,7 @@ msgid "Change My Preferences" msgstr "Change My Preferences" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Invalid model name in the action definition." @@ -5054,9 +5128,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignore" +#: model:res.country,name:base.us +msgid "United States" +msgstr "United States" #. module: base #: view:ir.module.module:0 @@ -5081,7 +5155,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Module %s: Invalid Quality Certificate" @@ -5118,9 +5192,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5142,12 +5217,6 @@ msgstr "Web Icon Image" msgid "Values for Event Type" msgstr "Values for Event Type" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "The current password does not match, please double-check it." - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5287,6 +5356,13 @@ msgstr "" "groups. If this field is empty, OpenERP will compute visibility based on the " "related object's read access." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5311,7 +5387,7 @@ msgstr "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5488,6 +5564,13 @@ msgstr "Toborzás" msgid "Reunion (French)" msgstr "Reunion (French)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5495,11 +5578,6 @@ msgstr "Reunion (French)" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "You must logout and login again after changing your password." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5511,7 +5589,7 @@ msgid "Solomon Islands" msgstr "Solomon Islands" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5527,7 +5605,7 @@ msgid "Waiting" msgstr "Waiting" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Could not load base module" @@ -5581,9 +5659,9 @@ msgid "Module Category" msgstr "Module Category" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignore" #. module: base #: report:ir.module.reference.graph:0 @@ -5738,13 +5816,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Model %s does not exist!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "You cannot delete the language which is User's Preferred Language !" @@ -5779,7 +5857,6 @@ msgstr "The kernel of OpenERP, needed for all installation." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5798,6 +5875,11 @@ msgstr "PO File" msgid "Neutral Zone" msgstr "Neutral Zone" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Hindi / हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5808,11 +5890,6 @@ msgstr "Custom" msgid "Current" msgstr "Current" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "Enter the new password." - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5930,7 +6007,7 @@ msgstr "" "Select the object on which the action will work (read, write, create)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Please specify server option --email-from !" @@ -6090,11 +6167,6 @@ msgstr "" msgid "Sequence Codes" msgstr "Sequence Codes" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "Confirm Password" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6134,6 +6206,12 @@ msgstr "France" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6152,8 +6230,6 @@ msgstr "Afghanistan, Islamic State of" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Error !" @@ -6268,14 +6344,6 @@ msgstr "Service Name" msgid "Pitcairn Island" msgstr "Pitcairn Island" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" -"The new and confirmation passwords do not match, please double-check them." - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6362,11 +6430,6 @@ msgstr "Other Actions" msgid "Done" msgstr "Done" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "Change" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6457,7 +6520,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "To browse official translations, you can start with these links:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6564,6 +6627,13 @@ msgstr "" "a %s pénznemhez\n" "a %s napra." +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6598,6 +6668,11 @@ msgstr "Outgoing Transitions" msgid "Icon" msgstr "Icon" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6643,7 +6718,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6668,8 +6743,8 @@ msgid "Child IDs" msgstr "Child IDs" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem in configuration `Record Id` in Server Action!" @@ -6992,9 +7067,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" #. module: base #: selection:server.action.create,init,type:0 @@ -7030,7 +7105,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Size of the field can never be less than 1 !" @@ -7178,11 +7253,9 @@ msgid "Manufacturing" msgstr "Gyártás" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comore-szigetek" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7196,6 +7269,11 @@ msgstr "Server Actions" msgid "Cancel Install" msgstr "Cancel Install" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7212,7 +7290,7 @@ msgid "Copy Object" msgstr "Copy Object" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7307,13 +7385,21 @@ msgstr "" "A művelet indításának száma,\n" "negatív szám esetén nincs korlát." +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Felhasználó ref." #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Warning !" @@ -7459,7 +7545,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Invalid search criterions" @@ -7496,13 +7582,6 @@ msgstr "View Ref." msgid "Selection" msgstr "Selection" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "Change Password" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7641,6 +7720,14 @@ msgstr "undefined get method !" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "Norwegian Bokmål / Norsk bokmål" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7661,6 +7748,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "Binary File or external URL" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7686,6 +7779,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "Occitan (FR, post 1500) / Occitan" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7754,11 +7856,6 @@ msgstr "Trigger Date" msgid "Croatian / hrvatski jezik" msgstr "Croatian / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "Enter your current password." - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7775,9 +7872,9 @@ msgid "The code of the country must be unique !" msgstr "Az országkódnak egyedinek kell lennie!" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Uninstallable" #. module: base #: view:res.partner.category:0 @@ -7818,9 +7915,12 @@ msgid "Menu Action" msgstr "Menu Action" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7955,6 +8055,14 @@ msgstr "" "Name of the method to be called on the object when this scheduler is " "executed." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7966,7 +8074,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -8065,7 +8173,6 @@ msgid "ltd" msgstr "ltd" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8173,7 +8280,7 @@ msgid "Account No." msgstr "Account No." #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Base Language 'en_US' can not be deleted !" @@ -8276,7 +8383,7 @@ msgid "Auto-Refresh" msgstr "Auto-Refresh" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "The osv_memory field can only be compared with = and != operator." @@ -8286,11 +8393,6 @@ msgstr "The osv_memory field can only be compared with = and != operator." msgid "Diagram" msgstr "Diagram" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8348,14 +8450,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8364,7 +8469,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8412,6 +8517,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "Danish / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8422,11 +8532,6 @@ msgstr "Christmas Island" msgid "Other Actions Configuration" msgstr "Other Actions Configuration" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Uninstallable" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8622,12 +8727,14 @@ msgid "Luxembourg" msgstr "Luxembourg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"The kind of action or button in the client side that will trigger the action." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Error ! You can not create recursive Menu." @@ -8803,7 +8910,7 @@ msgid "View Auto-Load" msgstr "View Auto-Load" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "You cannot remove the field '%s' !" @@ -8846,7 +8953,7 @@ msgstr "" "Portable Objects)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -9010,9 +9117,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Trigger Configuration" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9153,6 +9260,12 @@ msgstr "" msgid "Portrait" msgstr "Portrait" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9324,7 +9437,7 @@ msgid "Account Owner" msgstr "Számlatulajdonos" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "Company Switch Warning" @@ -9443,3 +9556,64 @@ msgstr "Sri Lanka" #: selection:base.language.install,lang:0 msgid "Russian / русский язык" msgstr "Russian / русский язык" + +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." + +#~ msgid "New Password" +#~ msgstr "Új jelszó" + +#~ msgid "change.user.password" +#~ msgstr "change.user.password" + +#~ msgid "Advanced Search" +#~ msgstr "Advanced Search" + +#~ msgid "Field Selection" +#~ msgstr "Field Selection" + +#~ msgid "Current Password" +#~ msgstr "Current Password" + +#, python-format +#~ msgid "The current password does not match, please double-check it." +#~ msgstr "The current password does not match, please double-check it." + +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "You must logout and login again after changing your password." + +#~ msgid "Enter the new password." +#~ msgstr "Enter the new password." + +#~ msgid "Confirm Password" +#~ msgstr "Confirm Password" + +#, python-format +#~ msgid "" +#~ "The new and confirmation passwords do not match, please double-check them." +#~ msgstr "" +#~ "The new and confirmation passwords do not match, please double-check them." + +#~ msgid "Change" +#~ msgstr "Change" + +#~ msgid "Enter the new password again for confirmation." +#~ msgstr "Enter the new password again for confirmation." + +#~ msgid "Change Password" +#~ msgstr "Change Password" + +#~ msgid "Enter your current password." +#~ msgstr "Enter your current password." diff --git a/bin/addons/base/i18n/id.po b/bin/addons/base/i18n/id.po index 791447c388c..60337dad136 100644 --- a/bin/addons/base/i18n/id.po +++ b/bin/addons/base/i18n/id.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-08-28 06:59+0000\n" "Last-Translator: Iman Sulaiman \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:05+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:48+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "View Tercipta" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "Jendela Sasaran" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Korea Selatan" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -342,7 +359,7 @@ msgid "Netherlands Antilles" msgstr "Netherlands Antilles" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -384,6 +401,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "Kode ISO ini adalah nama file po untuk digunakan pada penerjemahan" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -452,7 +474,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -787,6 +809,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -803,6 +831,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Korea Selatan" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -909,6 +942,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -936,6 +975,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1069,13 +1114,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1117,8 +1170,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1176,17 +1231,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1294,7 +1338,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1306,7 +1350,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1475,11 +1519,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1585,6 +1624,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1618,7 +1662,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1806,6 +1850,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1867,6 +1917,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1904,6 +1959,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2112,6 +2172,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2196,6 +2263,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2264,7 +2332,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2417,11 +2485,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2751,11 +2814,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2794,8 +2852,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2820,6 +2878,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2927,9 +2986,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2950,6 +3008,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2989,7 +3052,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3087,7 +3150,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3216,11 +3279,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3258,11 +3316,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3460,6 +3516,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3501,8 +3565,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3671,7 +3737,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3703,9 +3769,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3770,6 +3836,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3931,11 +4004,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4126,6 +4194,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4177,6 +4250,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4207,11 +4285,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4408,6 +4481,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4673,7 +4754,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4866,8 +4947,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4893,7 +4974,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4927,8 +5008,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4951,12 +5033,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5082,6 +5158,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5105,7 +5188,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5282,6 +5365,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5289,11 +5379,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5305,7 +5390,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5321,7 +5406,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5375,8 +5460,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5528,13 +5613,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5569,7 +5654,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5588,6 +5672,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5598,11 +5687,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5717,7 +5801,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5876,11 +5960,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5918,6 +5997,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5936,8 +6021,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6049,13 +6132,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6139,11 +6215,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6232,7 +6303,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6334,6 +6405,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6366,6 +6444,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6411,7 +6494,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6432,8 +6515,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6745,8 +6828,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6783,7 +6866,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6931,10 +7014,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6949,6 +7030,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6965,7 +7051,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7054,13 +7140,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7206,7 +7300,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7243,13 +7337,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7386,6 +7473,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7406,6 +7501,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7431,6 +7532,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7497,11 +7607,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7518,8 +7623,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7561,8 +7666,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7691,6 +7799,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7702,7 +7818,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7792,7 +7908,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7900,7 +8015,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8001,7 +8116,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8011,11 +8126,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8073,14 +8183,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8089,7 +8202,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8137,6 +8250,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8147,11 +8265,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8341,12 +8454,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8515,7 +8629,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8556,7 +8670,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8714,8 +8828,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8844,6 +8958,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9013,7 +9133,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/is.po b/bin/addons/base/i18n/is.po index bba19f60b64..bd09bf46289 100644 --- a/bin/addons/base/i18n/is.po +++ b/bin/addons/base/i18n/is.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2009-11-30 08:27+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: Icelandic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:05+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:48+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,8 +138,17 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -340,7 +357,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -380,6 +397,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -448,7 +470,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -783,6 +805,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -799,6 +827,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -905,6 +938,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -932,6 +971,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1065,13 +1110,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,8 +1166,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1172,17 +1227,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1290,7 +1334,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1302,7 +1346,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1471,11 +1515,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1581,6 +1620,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1614,7 +1658,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1802,6 +1846,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1863,6 +1913,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1900,6 +1955,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2108,6 +2168,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2192,6 +2259,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2260,7 +2328,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2413,11 +2481,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2747,11 +2810,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2790,8 +2848,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2816,6 +2874,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2923,9 +2982,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2946,6 +3004,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2985,7 +3048,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3083,7 +3146,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3212,11 +3275,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3254,11 +3312,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3456,6 +3512,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3497,8 +3561,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3667,7 +3733,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3699,9 +3765,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3766,6 +3832,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3927,11 +4000,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4122,6 +4190,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4173,6 +4246,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4203,11 +4281,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4404,6 +4477,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4669,7 +4750,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4862,8 +4943,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4889,7 +4970,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4923,8 +5004,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4947,12 +5029,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5078,6 +5154,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5101,7 +5184,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5278,6 +5361,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5285,11 +5375,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5301,7 +5386,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5317,7 +5402,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5371,8 +5456,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5524,13 +5609,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5565,7 +5650,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5584,6 +5668,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5594,11 +5683,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5713,7 +5797,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5872,11 +5956,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5914,6 +5993,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5932,8 +6017,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6045,13 +6128,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6135,11 +6211,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6228,7 +6299,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6330,6 +6401,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6362,6 +6440,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6407,7 +6490,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6428,8 +6511,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6741,8 +6824,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6779,7 +6862,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6927,10 +7010,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6945,6 +7026,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6961,7 +7047,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7050,13 +7136,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7202,7 +7296,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7239,13 +7333,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7382,6 +7469,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7402,6 +7497,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7427,6 +7528,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7493,11 +7603,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7514,8 +7619,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7557,8 +7662,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7687,6 +7795,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7698,7 +7814,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7788,7 +7904,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7896,7 +8011,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7997,7 +8112,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8007,11 +8122,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8069,14 +8179,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8085,7 +8198,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8133,6 +8246,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8143,11 +8261,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8337,12 +8450,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8511,7 +8625,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8552,7 +8666,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8710,8 +8824,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8840,6 +8954,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9009,7 +9129,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/it.po b/bin/addons/base/i18n/it.po index 4370e2c654a..e1a409143c9 100644 --- a/bin/addons/base/i18n/it.po +++ b/bin/addons/base/i18n/it.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 16:35+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" +"PO-Revision-Date: 2011-01-11 17:04+0000\n" "Last-Translator: Lorenzo Battistini - agilebg.com " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:49+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -114,13 +114,21 @@ msgid "Created Views" msgstr "Viste Create" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -132,9 +140,18 @@ msgid "Target Window" msgstr "Finestra di Destinazione" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Corea del Sud" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -347,7 +364,7 @@ msgid "Netherlands Antilles" msgstr "Antille olandesi" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -393,6 +410,11 @@ msgid "This ISO code is the name of po files to use for translations" msgstr "" "Questo codice ISO è il nome del file PO da utilizzare per le traduzioni" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Il sistema verrà aggiornato." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -465,7 +487,7 @@ msgid "Miscellaneous Suppliers" msgstr "Fornitori generici" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "I Campi personalizzati devono avere un nome che inizia con 'x_' !" @@ -606,7 +628,7 @@ msgstr "Albanian / Shqip" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_opportunity msgid "Opportunities" -msgstr "" +msgstr "Opportunità" #. module: base #: model:ir.model,name:base.model_base_language_export @@ -811,6 +833,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "Pannello per le risorse umane" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -827,6 +855,11 @@ msgstr "XML non valido per Visualizzazione Architettura!" msgid "Cayman Islands" msgstr "Isole Cayman" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Corea del Sud" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -854,7 +887,7 @@ msgstr "Carattere" #: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_form #: model:ir.ui.menu,name:base.menu_publisher_warranty_contract msgid "Contracts" -msgstr "" +msgstr "Contratti" #. module: base #: selection:base.language.install,lang:0 @@ -940,6 +973,12 @@ msgstr "Nome modulo" msgid "Marshall Islands" msgstr "Isole Marshall" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -974,6 +1013,12 @@ msgstr "" "2. Le regole specifiche del gruppo sono combinate insieme tramite " "l'operatore logico AND" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1112,13 +1157,23 @@ msgstr "Percorso del report file principale" msgid "Reports" msgstr "Reports" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Se impostato a vero, l'azione non comparirà nella barra degli strumenti di " +"destra di un form" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Alla Creazione" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1165,9 +1220,11 @@ msgid "Wizard Info" msgstr "Informazioni procedura guidata" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Isole Comore" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Esporta traduzione" #. module: base #: help:res.log,secondary:0 @@ -1239,24 +1296,6 @@ msgstr "ID Allegato" msgid "Day: %(day)s" msgstr "Giorno: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Lista di tutti i moduli certificati disponibili per configurare OpenERP. I " -"moduli installati sono contrassegnati come tali. E' possibile ricercare un " -"modulo specifico usando il nome o la descrizione dello stesso. Non c'è " -"bisogno di installare i moduli uno alla volta ma è possibile installarli in " -"blocco, contemporaneamente, cliccando sul bottone \"Pianifica\" nella lista; " -"ricordatevi poi di applicare l'aggiornamento pianificato dal menù azioni, " -"una volta sola, per tutti quelli di cui avete pianificato l'installazione." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1368,7 +1407,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Non posso rimuovere l'utente root" @@ -1380,7 +1419,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (copia)" @@ -1563,11 +1602,6 @@ msgstr "" "Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1681,6 +1715,11 @@ msgstr "Campo" msgid "Groups (no group = global)" msgstr "Gruppi (no group = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Isole Fær Øer" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1714,7 +1753,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1910,6 +1949,12 @@ msgid "Messages" msgstr "Messaggi" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1974,6 +2019,11 @@ msgstr "Isola di Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "Korean (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -2011,6 +2061,11 @@ msgstr "Impossibile aggiornare il modulo '%s'. Non è installato.," msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2080,7 +2135,7 @@ msgstr "Configurazione iterazione di azione" #. module: base #: selection:publisher_warranty.contract,state:0 msgid "Canceled" -msgstr "" +msgstr "Annullato" #. module: base #: model:res.country,name:base.at @@ -2228,6 +2283,13 @@ msgstr "Spanish (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2312,6 +2374,7 @@ msgstr "Mappatura dei campi" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Modulo" @@ -2380,7 +2443,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Per favore specificare una azione da lanciare !" @@ -2539,11 +2602,6 @@ msgstr "Errore: non puoi creare Categorie ricorsive" msgid "%x - Appropriate date representation." msgstr "%x - Rappresentazione di data appropriata" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2892,11 +2950,6 @@ msgstr "Settore IT (telecomun.)" msgid "Trigger Object" msgstr "Oggetto di innesco" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2935,9 +2988,9 @@ msgid "Sequence Type" msgstr "Tipo Sequenza" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2961,6 +3014,7 @@ msgstr "Vincoli SQL" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Modello" @@ -3071,10 +3125,9 @@ msgstr "" "Stai provando a rimuovere un modulo che è installato o che verrà installato." #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Il tipo di azione o il pulsante nel client che scatenerà l'azione" +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "I moduli selezionati sono stati aggiornati / insallati!" #. module: base #: selection:base.language.install,lang:0 @@ -3094,6 +3147,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Workflow" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3135,7 +3193,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Non puoi rimuovere il modello '%s' !" @@ -3233,7 +3291,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3365,11 +3423,6 @@ msgstr "" msgid "System update completed" msgstr "Aggiornamento del sistema completato" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Selezione Campo" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3407,14 +3460,10 @@ msgid "Apply For Delete" msgstr "Applica per la cancellazione" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Se impostato a vero, l'azione non comparirà nella barra degli strumenti di " -"destra di un form" #. module: base #: view:ir.attachment:0 @@ -3620,6 +3669,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3665,9 +3722,11 @@ msgid "Starter Partner" msgstr "Partner iniziale" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Il sistema verrà aggiornato." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3837,7 +3896,7 @@ msgid "Flow Start" msgstr "Avvia Flusso" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3871,9 +3930,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupa (Francia)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Errore dell'Utente" @@ -3941,6 +4000,13 @@ msgstr "Configurazione azione del client" msgid "Partner Addresses" msgstr "Indirizzi Partner" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4102,11 +4168,6 @@ msgstr "Riepilogo Richiesta" msgid "Menus" msgstr "Menu" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "I moduli selezionati sono stati aggiornati / insallati!" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4301,6 +4362,11 @@ msgstr "" "Assegna un nome al campo in cui viene registrato l'identificativo del " "record. Se è vuoto, non potrai tracciare il nuovo record" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4352,6 +4418,11 @@ msgstr "Cancellare gli ID? " msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Bassa" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4382,11 +4453,6 @@ msgstr "Impiegato" msgid "Create Access" msgstr "Accesso in creazione" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4583,6 +4649,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4856,7 +4930,7 @@ msgid "Change My Preferences" msgstr "Cambia le Mie Preferenze" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Nome di modulo non valido nella definizione dell'azione." @@ -5056,9 +5130,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignora" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Stati Uniti d'America" #. module: base #: view:ir.module.module:0 @@ -5083,7 +5157,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modulo %s: Certificato di qualità non valido" @@ -5120,9 +5194,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5144,12 +5219,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Valori per i Tipi di Evento" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5289,6 +5358,13 @@ msgstr "" "Se il campo è lasciato vuoto, OpenERP calcola la visibilità basandosi sugli " "accessi di lettura del relativo oggetto" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5314,7 +5390,7 @@ msgstr "" "presente: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5495,6 +5571,13 @@ msgstr "Reclutamento" msgid "Reunion (French)" msgstr "La Réunion" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5502,13 +5585,6 @@ msgstr "La Réunion" msgid "Global" msgstr "Globale" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" -"E' necessario effettuare un logout e successivo login dopo avere cambiato la " -"password." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5520,7 +5596,7 @@ msgid "Solomon Islands" msgstr "Isole Salomone" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5536,7 +5612,7 @@ msgid "Waiting" msgstr "In attesa" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Non è possibile caricare il modulo base" @@ -5590,9 +5666,9 @@ msgid "Module Category" msgstr "Categoria Modulo" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Stati Uniti d'America" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignora" #. module: base #: report:ir.module.reference.graph:0 @@ -5747,13 +5823,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Il modello %s non esiste!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5790,7 +5866,6 @@ msgstr "Il kernel di OpenERP, necessario per tutta l'installazione." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5809,6 +5884,11 @@ msgstr "File .PO" msgid "Neutral Zone" msgstr "Zona neutrale" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Hindi / हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5819,11 +5899,6 @@ msgstr "Personalizzato" msgid "Current" msgstr "Attuale" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5944,7 +6019,7 @@ msgstr "" "creazione)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Per favore specificare l'opzione server: --email-from!" @@ -6106,11 +6181,6 @@ msgstr "Raccolta fondi" msgid "Sequence Codes" msgstr "Codici sequenza" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6151,6 +6221,12 @@ msgstr "Francia" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6169,8 +6245,6 @@ msgstr "Stato islamico dell'Afghanistan" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Errore !" @@ -6288,13 +6362,6 @@ msgstr "Nome del servizio" msgid "Pitcairn Island" msgstr "Isole Pitcairn" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6382,11 +6449,6 @@ msgstr "Altre Azioni" msgid "Done" msgstr "Completato" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6478,7 +6540,7 @@ msgstr "" "Per sfogliare le traduzioni ufficiali, è possibile partire con questi link:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6583,6 +6645,13 @@ msgstr "" "per la valuta: %s \n" "alla data: %s" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6617,6 +6686,11 @@ msgstr "Transizioni in Uscita" msgid "Icon" msgstr "Icona" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6662,7 +6736,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6687,8 +6761,8 @@ msgid "Child IDs" msgstr "ID dipendenti" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problema nella configurazione 'Record Id' nell'azione del Server!" @@ -7011,9 +7085,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Trigger Configurazione" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis e Fortuna" #. module: base #: selection:server.action.create,init,type:0 @@ -7049,7 +7123,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "La dimensione del campo non può mai essere minore a 1 !" @@ -7197,11 +7271,9 @@ msgid "Manufacturing" msgstr "Produzione" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Esporta traduzione" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Isole Comore" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7215,6 +7287,11 @@ msgstr "Azioni Server" msgid "Cancel Install" msgstr "Annulla Installazione" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7231,7 +7308,7 @@ msgid "Copy Object" msgstr "Copia oggetto" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7325,13 +7402,21 @@ msgstr "" "Numero di volte in cui funzione è chiamata,\n" "un numero negativo indica: nessun limite" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Rif. Utente" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Attenzione!" @@ -7477,7 +7562,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Criteri di ricerca non validi" @@ -7516,13 +7601,6 @@ msgstr "Rif. Vista" msgid "Selection" msgstr "Selezione" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7662,6 +7740,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "Norwegian Bokmål / Norsk bokmål" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7682,6 +7768,12 @@ msgstr "Dashboard" msgid "Binary File or external URL" msgstr "File binario o URL esterno" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7707,6 +7799,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "Occitan (FR, post 1500) / Occitan" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7775,11 +7876,6 @@ msgstr "Data Avvio Automatico" msgid "Croatian / hrvatski jezik" msgstr "Croatian / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7796,9 +7892,9 @@ msgid "The code of the country must be unique !" msgstr "Il codice della Nazione deve essere unico!" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Tracciamento temporale" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Disinstallabile" #. module: base #: view:res.partner.category:0 @@ -7839,9 +7935,12 @@ msgid "Menu Action" msgstr "Azione Menu" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Isole Fær Øer" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7976,6 +8075,14 @@ msgstr "" "Nome del metodo da chiamare sull'oggetto quanto questa schedulazione è " "eseguita." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7987,7 +8094,7 @@ msgid "China" msgstr "Cina" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -8086,7 +8193,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8194,7 +8300,7 @@ msgid "Account No." msgstr "Conto n." #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Il Linguaggio base 'en_US' non può essere eliminato !" @@ -8295,7 +8401,7 @@ msgid "Auto-Refresh" msgstr "Auto-Aggiornamento" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8307,11 +8413,6 @@ msgstr "" msgid "Diagram" msgstr "Diagramma" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis e Fortuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8369,14 +8470,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8385,7 +8489,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8433,6 +8537,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "Danese / Danimarca" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8443,11 +8552,6 @@ msgstr "Isola di Natale" msgid "Other Actions Configuration" msgstr "Configurazione Altre Azioni" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Disinstallabile" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8642,12 +8746,13 @@ msgid "Luxembourg" msgstr "Lussemburgo" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Bassa" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Il tipo di azione o il pulsante nel client che scatenerà l'azione" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Errore! Non è possibile creare un menù ricorsivo." @@ -8823,7 +8928,7 @@ msgid "View Auto-Load" msgstr "Visualizza Auto-Caricamento" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Non è possibile rimuovere il campo \"%s\"!" @@ -8866,7 +8971,7 @@ msgstr "" "Portable Objects)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -9029,9 +9134,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Ricerca Avanzata" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Trigger Configurazione" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9166,6 +9271,12 @@ msgstr "" msgid "Portrait" msgstr "Verticale" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9339,7 +9450,7 @@ msgid "Account Owner" msgstr "Titolare Conto" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "Messaggio di warning per il Cambiamento dell'Azienda" @@ -9879,6 +9990,9 @@ msgstr "Russian / русский язык" #~ msgid "wizard.module.lang.export" #~ msgstr "wizard.module.lang.export" +#~ msgid "Field Selection" +#~ msgstr "Selezione Campo" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "I gruppi sono utilizzati per definire i diritti di accesso su ciascuna " @@ -10504,6 +10618,9 @@ msgstr "Russian / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Ricerca Avanzata" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -11008,6 +11125,11 @@ msgstr "Russian / русский язык" #~ msgid "Serbian / српски језик" #~ msgstr "Serbian / српски језик" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "" +#~ "E' necessario effettuare un logout e successivo login dopo avere cambiato la " +#~ "password." + #~ msgid "Access Groups" #~ msgstr "Gruppi di accesso" @@ -11172,9 +11294,28 @@ msgstr "Russian / русский язык" #~ msgid "terp-mail-message-new" #~ msgstr "terp-mail-message-new" +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Lista di tutti i moduli certificati disponibili per configurare OpenERP. I " +#~ "moduli installati sono contrassegnati come tali. E' possibile ricercare un " +#~ "modulo specifico usando il nome o la descrizione dello stesso. Non c'è " +#~ "bisogno di installare i moduli uno alla volta ma è possibile installarli in " +#~ "blocco, contemporaneamente, cliccando sul bottone \"Pianifica\" nella lista; " +#~ "ricordatevi poi di applicare l'aggiornamento pianificato dal menù azioni, " +#~ "una volta sola, per tutti quelli di cui avete pianificato l'installazione." + #~ msgid "Ltd." #~ msgstr "S.r.l." +#~ msgid "Time Tracking" +#~ msgstr "Tracciamento temporale" + #~ msgid "" #~ "With the Suppliers menu, you have access to all informations regarding your " #~ "suppliers, including an history to track event (crm) and his accounting " diff --git a/bin/addons/base/i18n/ja.po b/bin/addons/base/i18n/ja.po index 95bc6b01417..f6d1c311e75 100644 --- a/bin/addons/base/i18n/ja.po +++ b/bin/addons/base/i18n/ja.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-09-09 06:58+0000\n" "Last-Translator: Harry (Open ERP) \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:05+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:49+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "韓国" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -340,7 +357,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -380,6 +397,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "このISOコードが、翻訳に使うpoファイルの名前になります。" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -448,7 +470,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "カスタム・フィールドは、x_で始まる名前を持っていなければなりません。" @@ -783,6 +805,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -799,6 +827,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "韓国" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -905,6 +938,12 @@ msgstr "" msgid "Marshall Islands" msgstr "マーシャル諸島" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -932,6 +971,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1065,13 +1110,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,8 +1166,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1172,17 +1227,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1290,7 +1334,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1302,7 +1346,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1471,11 +1515,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1581,6 +1620,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1614,7 +1658,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1802,6 +1846,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1863,6 +1913,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1900,6 +1955,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2108,6 +2168,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2192,6 +2259,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2260,7 +2328,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2413,11 +2481,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2747,11 +2810,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2790,8 +2848,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2816,6 +2874,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2923,9 +2982,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2946,6 +3004,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2985,7 +3048,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "あなたは、モデル %s を削除することができません。" @@ -3083,7 +3146,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3212,11 +3275,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3254,11 +3312,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3456,6 +3512,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3497,8 +3561,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3667,7 +3733,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3699,9 +3765,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3766,6 +3832,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3927,11 +4000,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4122,6 +4190,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4173,6 +4246,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4203,11 +4281,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4404,6 +4477,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4669,7 +4750,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4862,8 +4943,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4889,7 +4970,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4923,8 +5004,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4947,12 +5029,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5078,6 +5154,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5101,7 +5184,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5278,6 +5361,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5285,11 +5375,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5301,7 +5386,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5317,7 +5402,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5371,8 +5456,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5524,13 +5609,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5565,7 +5650,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5584,6 +5668,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5594,11 +5683,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5713,7 +5797,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5872,11 +5956,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5914,6 +5993,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5932,8 +6017,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6045,13 +6128,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6135,11 +6211,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6228,7 +6299,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6330,6 +6401,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6362,6 +6440,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6407,7 +6490,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6428,8 +6511,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6741,8 +6824,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6779,7 +6862,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6927,10 +7010,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6945,6 +7026,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6961,7 +7047,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7050,13 +7136,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7202,7 +7296,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7239,13 +7333,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7382,6 +7469,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7402,6 +7497,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7427,6 +7528,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7493,11 +7603,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7514,8 +7619,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7557,8 +7662,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7687,6 +7795,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7698,7 +7814,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7788,7 +7904,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7896,7 +8011,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7997,7 +8112,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8007,11 +8122,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8069,14 +8179,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8085,7 +8198,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8133,6 +8246,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8143,11 +8261,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8337,12 +8450,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8511,7 +8625,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8552,7 +8666,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8710,8 +8824,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8840,6 +8954,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9009,7 +9129,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/ko.po b/bin/addons/base/i18n/ko.po index 88f2550ef58..e9fbe1a349d 100644 --- a/bin/addons/base/i18n/ko.po +++ b/bin/addons/base/i18n/ko.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-16 08:15+0000\n" "Last-Translator: ekodaq \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:05+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:49+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "생성된 뷰" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "타겟 윈도우" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "대한민국" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -340,7 +357,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -381,6 +398,11 @@ msgstr "이 읽기 방식은 이 오브젝트에 적용되지 않음!" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -449,7 +471,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "고객화 필드 이름은 'x_'로 시작해야 합니다!" @@ -784,6 +806,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -800,6 +828,11 @@ msgstr "유효하지 않은 뷰 아키텍처를 위한 XML !" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "대한민국" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -908,6 +941,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -935,6 +974,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1068,13 +1113,21 @@ msgstr "" msgid "Reports" msgstr "리포트" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "참으로 설정하면, 이 액션이 양식 뷰의 오른쪽 툴바에 나타나지 않습니다." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "생성" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1116,8 +1169,10 @@ msgid "Wizard Info" msgstr "위저드 정보" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1175,17 +1230,6 @@ msgstr "첨부된 ID" msgid "Day: %(day)s" msgstr "일: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1294,7 +1338,7 @@ msgid "Formula" msgstr "공식" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "루트 사용자를 제거할 수는 없음!" @@ -1306,7 +1350,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1477,11 +1521,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1589,6 +1628,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1622,7 +1666,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1810,6 +1854,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1871,6 +1921,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1908,6 +1963,11 @@ msgstr "모듈 '%s' 을 업그레이드할 수 없습니다. 설치 안됨." msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2116,6 +2176,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2200,6 +2267,7 @@ msgstr "필드 매핑" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "모듈" @@ -2268,7 +2336,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "시작할 액션을 지정하십시오!" @@ -2421,11 +2489,6 @@ msgstr "에러! 재귀적 카테고리를 생성할 수는 없습니다." msgid "%x - Appropriate date representation." msgstr "%x - 적절한 날짜 표시" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2761,11 +2824,6 @@ msgstr "텔레콤 섹터" msgid "Trigger Object" msgstr "오브젝트 트리거" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2804,8 +2862,8 @@ msgid "Sequence Type" msgstr "시퀀스 타입" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2830,6 +2888,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "모델" @@ -2937,10 +2996,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "설치된 혹은 설치 예정 모듈을 제거하려 합니다." #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "액션을 트리거할 클라이언트 사이트의 액션이나 버튼 종류" +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "" #. module: base #: selection:base.language.install,lang:0 @@ -2960,6 +3018,11 @@ msgstr "" msgid "Workflows" msgstr "워크플로우" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3001,7 +3064,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "귀하는 모델 '%s'을 제거할 수 없음!" @@ -3099,7 +3162,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3230,11 +3293,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "필스 선택" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3272,12 +3330,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." -msgstr "참으로 설정하면, 이 액션이 양식 뷰의 오른쪽 툴바에 나타나지 않습니다." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" +msgstr "" #. module: base #: view:ir.attachment:0 @@ -3474,6 +3530,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3515,8 +3579,10 @@ msgid "Starter Partner" msgstr "시작 파트너" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3685,7 +3751,7 @@ msgid "Flow Start" msgstr "흐름 시작" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3717,9 +3783,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3784,6 +3850,13 @@ msgstr "클라이언트 액션 구성" msgid "Partner Addresses" msgstr "파트너 주소" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3945,11 +4018,6 @@ msgstr "히스토리 요청" msgid "Menus" msgstr "메뉴" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4140,6 +4208,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "오퍼레이션 생성 뒤에 레코드 ID가 저장될 필드 이름을 제공합니다. 비워두면, 새 레코드를 추적할 수 없습니다." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4191,6 +4264,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "낮음" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4221,11 +4299,6 @@ msgstr "" msgid "Create Access" msgstr "접근 생성" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4422,6 +4495,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4687,7 +4768,7 @@ msgid "Change My Preferences" msgstr "내 설정 변경" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4882,8 +4963,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4909,7 +4990,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "모듈 %s: 유효하지 않은 품질 증명" @@ -4945,8 +5026,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4969,12 +5051,6 @@ msgstr "" msgid "Values for Event Type" msgstr "이벤트 타입을 위한 값" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5100,6 +5176,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5123,7 +5206,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5300,6 +5383,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5307,11 +5397,6 @@ msgstr "" msgid "Global" msgstr "글로벌" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5323,7 +5408,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5339,7 +5424,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5393,8 +5478,8 @@ msgid "Module Category" msgstr "모듈 카테고리" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5546,13 +5631,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5587,7 +5672,6 @@ msgstr "OpenERP 커널. 모든 설치에 요구됨." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5606,6 +5690,11 @@ msgstr "PO 파일" msgid "Neutral Zone" msgstr "중립 지역" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5616,11 +5705,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5735,7 +5819,7 @@ msgid "" msgstr "이 액션이 동작 (읽기, 쓰기, 만들기)할 오브젝트를 선택하십시오." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5894,11 +5978,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5936,6 +6015,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5954,8 +6039,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "에러!" @@ -6067,13 +6150,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6157,11 +6233,6 @@ msgstr "기타 액션" msgid "Done" msgstr "완료" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6250,7 +6321,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6352,6 +6423,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6384,6 +6462,11 @@ msgstr "아웃고잉 트랜지션" msgid "Icon" msgstr "아이콘" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6429,7 +6512,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6450,8 +6533,8 @@ msgid "Child IDs" msgstr "자식 ID" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "서버 액션에서 '레코드 ID' 구성에 문제" @@ -6763,9 +6846,9 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "트리거 구성" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" #. module: base #: selection:server.action.create,init,type:0 @@ -6801,7 +6884,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6949,10 +7032,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6967,6 +7048,11 @@ msgstr "서버 액션" msgid "Cancel Install" msgstr "설치 취소" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6983,7 +7069,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7072,13 +7158,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "사용자 참조" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7224,7 +7318,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7261,13 +7355,6 @@ msgstr "" msgid "Selection" msgstr "선택" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7404,6 +7491,14 @@ msgstr "정의되지 않은 Get 메쏘드!" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7424,6 +7519,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7449,6 +7550,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7515,11 +7625,6 @@ msgstr "트리거 날짜" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7536,9 +7641,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "설치 해제 가능" #. module: base #: view:res.partner.category:0 @@ -7579,8 +7684,11 @@ msgid "Menu Action" msgstr "메뉴 액션" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7709,6 +7817,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7720,7 +7836,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7810,7 +7926,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7918,7 +8033,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8019,7 +8134,7 @@ msgid "Auto-Refresh" msgstr "자동 Refresh" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8029,11 +8144,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8091,14 +8201,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8107,7 +8220,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8155,6 +8268,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8165,11 +8283,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "다른 액션 구성" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "설치 해제 가능" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8360,12 +8473,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "낮음" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "액션을 트리거할 클라이언트 사이트의 액션이나 버튼 종류" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8534,7 +8648,7 @@ msgid "View Auto-Load" msgstr "뷰 자동 로드" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8575,7 +8689,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8733,9 +8847,9 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "고급 검색" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "트리거 구성" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8863,6 +8977,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9032,7 +9152,7 @@ msgid "Account Owner" msgstr "계정 소유자" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9553,6 +9673,9 @@ msgstr "" #~ msgid "Field child1" #~ msgstr "필드 자식1" +#~ msgid "Field Selection" +#~ msgstr "필스 선택" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "그룹은 각 스크린과 메뉴에 대한 접근 권한을 정의하는데 이용됩니다." @@ -10014,6 +10137,9 @@ msgstr "" #~ msgid "Document" #~ msgstr "문서" +#~ msgid "Advanced Search" +#~ msgstr "고급 검색" + #, python-format #~ msgid "Bar charts need at least two fields" #~ msgstr "막대 차트는 적어도 두 개의 필드가 필요합니다." diff --git a/bin/addons/base/i18n/lt.po b/bin/addons/base/i18n/lt.po index 2017e523156..b39346af381 100644 --- a/bin/addons/base/i18n/lt.po +++ b/bin/addons/base/i18n/lt.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 12:52+0000\n" -"Last-Translator: OpenERP Administrators \n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" +"PO-Revision-Date: 2011-01-11 21:44+0000\n" +"Last-Translator: Paulius Sladkevičius - http://www.inovera.lt \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:49+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -23,12 +23,12 @@ msgstr "" #: field:ir.rule,domain_force:0 #: field:res.partner.title,domain:0 msgid "Domain" -msgstr "" +msgstr "Sritis" #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" -msgstr "" +msgstr "Šv. Elenos sala" #. module: base #: view:ir.actions.report.xml:0 @@ -52,7 +52,7 @@ msgstr "" #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 msgid "Metadata" -msgstr "" +msgstr "Metaduomenys" #. module: base #: field:ir.ui.view,arch:0 @@ -73,22 +73,22 @@ msgstr "Kodas (pvz., lt__LT)" #: field:workflow.transition,wkf_id:0 #: field:workflow.workitem,wkf_id:0 msgid "Workflow" -msgstr "" +msgstr "Darbų eiga" #. module: base #: view:partner.sms.send:0 msgid "SMS - Gateway: clickatell" -msgstr "" +msgstr "SMS - Vartai: clickatell" #. module: base #: selection:base.language.install,lang:0 msgid "Hungarian / Magyar" -msgstr "" +msgstr "Vengrų kalba" #. module: base #: selection:ir.model.fields,select_level:0 msgid "Not Searchable" -msgstr "" +msgstr "Neieškomas" #. module: base #: selection:base.language.install,lang:0 @@ -108,20 +108,28 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "" +msgstr "Sukurti rodiniai" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" -msgstr "" +msgstr "Nuoroda" #. module: base #: field:ir.actions.act_window,target:0 @@ -129,8 +137,17 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "Įspėjimas!" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -147,7 +164,7 @@ msgstr "" #. module: base #: model:res.country,name:base.sz msgid "Swaziland" -msgstr "" +msgstr "Svazilandas" #. module: base #: code:addons/orm.py:1993 @@ -172,13 +189,13 @@ msgstr "" #. module: base #: field:ir.sequence,number_increment:0 msgid "Increment Number" -msgstr "" +msgstr "Numerio prieaugis" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_tree #: model:ir.ui.menu,name:base.menu_action_res_company_tree msgid "Company's Structure" -msgstr "" +msgstr "Įmonės struktūra" #. module: base #: selection:base.language.install,lang:0 @@ -188,7 +205,7 @@ msgstr "" #. module: base #: view:res.partner:0 msgid "Search Partner" -msgstr "" +msgstr "Ieškoti partnerio" #. module: base #: code:addons/base/res/res_user.py:132 @@ -200,7 +217,7 @@ msgstr "" #: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" -msgstr "" +msgstr "naujas" #. module: base #: field:ir.actions.report.xml,multi:0 @@ -210,7 +227,7 @@ msgstr "" #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" -msgstr "" +msgstr "Modulių kiekis" #. module: base #: help:multi_company.default,company_dest_id:0 @@ -220,12 +237,12 @@ msgstr "" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "" +msgstr "Maksimalus dydis" #. module: base #: field:res.partner.address,name:0 msgid "Contact Name" -msgstr "" +msgstr "Kontakto pavadinimas" #. module: base #: code:addons/base/module/wizard/base_export_language.py:56 @@ -243,12 +260,12 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "" +msgstr "aktyvus" #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" -msgstr "" +msgstr "Vedlio pavadinimas" #. module: base #: code:addons/orm.py:2160 @@ -259,17 +276,17 @@ msgstr "" #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" -msgstr "" +msgstr "Kredito limitas" #. module: base #: field:ir.model.data,date_update:0 msgid "Update Date" -msgstr "" +msgstr "Atnaujinimo data" #. module: base #: view:ir.attachment:0 msgid "Owner" -msgstr "" +msgstr "Savininkas" #. module: base #: field:ir.actions.act_window,src_model:0 @@ -297,14 +314,14 @@ msgstr "" #: field:ir.model.access,group_id:0 #: view:res.config.users:0 msgid "Group" -msgstr "" +msgstr "Grupė" #. module: base #: field:ir.exports.line,name:0 #: field:ir.translation,name:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" -msgstr "" +msgstr "Lauko pavadinimas" #. module: base #: wizard_view:server.action.create,init:0 @@ -315,7 +332,7 @@ msgstr "" #. module: base #: model:res.country,name:base.tv msgid "Tuvalu" -msgstr "" +msgstr "Tuvalu" #. module: base #: selection:ir.model,state:0 @@ -325,21 +342,21 @@ msgstr "" #. module: base #: field:res.lang,date_format:0 msgid "Date Format" -msgstr "" +msgstr "Datos formatas" #. module: base #: field:res.bank,email:0 #: field:res.partner.address,email:0 msgid "E-Mail" -msgstr "" +msgstr "El. paštas" #. module: base #: model:res.country,name:base.an msgid "Netherlands Antilles" -msgstr "" +msgstr "Nyderlandų Antilai" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -349,7 +366,7 @@ msgstr "" #. module: base #: model:res.country,name:base.gf msgid "French Guyana" -msgstr "" +msgstr "Prancūzijos Gviana" #. module: base #: selection:base.language.install,lang:0 @@ -379,26 +396,31 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 msgid "Text" -msgstr "" +msgstr "Tekstas" #. module: base #: field:res.country,name:0 msgid "Country Name" -msgstr "" +msgstr "Šalies pavadinimas" #. module: base #: model:res.country,name:base.co msgid "Colombia" -msgstr "" +msgstr "Kolumbija" #. module: base #: view:ir.module.module:0 msgid "Schedule Upgrade" -msgstr "" +msgstr "Suplanuoti atnaujinimą" #. module: base #: code:addons/orm.py:838 @@ -412,21 +434,23 @@ msgid "" "The ISO country code in two chars.\n" "You can use this field for quick search." msgstr "" +"ISO šalies kodas iš dviejų simbolių.\n" +"Jūs galite naudoti šį lauką greitai paieškai." #. module: base #: model:res.country,name:base.pw msgid "Palau" -msgstr "" +msgstr "Palau" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "" +msgstr "Pardavimai ir pirkimai" #. module: base #: view:ir.translation:0 msgid "Untranslated" -msgstr "" +msgstr "Neišversta" #. module: base #: help:ir.actions.act_window,context:0 @@ -439,7 +463,7 @@ msgstr "" #: view:ir.actions.wizard:0 #: model:ir.ui.menu,name:base.menu_ir_action_wizard msgid "Wizards" -msgstr "" +msgstr "Vedliai" #. module: base #: model:res.partner.category,name:base.res_partner_category_miscellaneoussuppliers0 @@ -447,10 +471,10 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" +msgstr "Sukurtų laukų pavadinimai turi prasidėti 'x_'!" #. module: base #: help:ir.actions.server,action_id:0 @@ -460,17 +484,17 @@ msgstr "" #. module: base #: view:res.config.users:0 msgid "New User" -msgstr "" +msgstr "Naujas naudotojas" #. module: base #: view:base.language.export:0 msgid "Export done" -msgstr "" +msgstr "Eksportavimas baigtas" #. module: base #: view:ir.model:0 msgid "Model Description" -msgstr "" +msgstr "Modelio aprašymas" #. module: base #: help:ir.actions.act_window,src_model:0 @@ -486,23 +510,23 @@ msgstr "" #. module: base #: model:res.country,name:base.jo msgid "Jordan" -msgstr "" +msgstr "Jordanas" #. module: base #: view:ir.module.module:0 msgid "Certified" -msgstr "" +msgstr "Sertifikuota" #. module: base #: model:res.country,name:base.er msgid "Eritrea" -msgstr "" +msgstr "Eritrėja" #. module: base #: view:res.config:0 #: view:res.config.installer:0 msgid "description" -msgstr "" +msgstr "aprašymas" #. module: base #: model:ir.ui.menu,name:base.menu_base_action_rule @@ -782,6 +806,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -798,6 +828,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -904,6 +939,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -931,6 +972,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1064,13 +1111,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1112,8 +1167,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1171,17 +1228,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1289,7 +1335,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1301,7 +1347,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1470,11 +1516,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1580,6 +1621,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1613,7 +1659,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1801,6 +1847,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1862,6 +1914,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1899,6 +1956,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2107,6 +2169,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2191,6 +2260,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2259,7 +2329,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2412,11 +2482,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2746,11 +2811,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2789,8 +2849,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2815,6 +2875,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2922,9 +2983,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2945,6 +3005,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2984,7 +3049,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3082,7 +3147,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3211,11 +3276,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3253,11 +3313,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3455,6 +3513,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3496,8 +3562,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3666,7 +3734,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3698,9 +3766,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3765,6 +3833,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3926,11 +4001,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4121,6 +4191,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4172,6 +4247,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4202,11 +4282,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4403,6 +4478,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4668,7 +4751,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4861,8 +4944,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4888,7 +4971,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4922,8 +5005,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4946,12 +5030,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5077,6 +5155,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5100,7 +5185,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5277,6 +5362,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5284,11 +5376,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5300,7 +5387,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5316,7 +5403,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5370,8 +5457,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5523,13 +5610,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5564,7 +5651,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5583,6 +5669,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5593,11 +5684,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5712,7 +5798,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5871,11 +5957,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5913,6 +5994,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5931,8 +6018,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6044,13 +6129,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6134,11 +6212,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6227,7 +6300,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6329,6 +6402,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6361,6 +6441,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6406,7 +6491,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6427,8 +6512,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6740,8 +6825,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6778,7 +6863,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6926,10 +7011,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6944,6 +7027,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6960,7 +7048,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7049,13 +7137,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7201,7 +7297,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7238,13 +7334,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7381,6 +7470,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7401,6 +7498,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7426,6 +7529,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7492,11 +7604,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7513,8 +7620,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7556,8 +7663,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7686,6 +7796,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7697,7 +7815,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7787,7 +7905,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7895,7 +8012,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7996,7 +8113,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8006,11 +8123,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8068,14 +8180,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8084,7 +8199,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8132,6 +8247,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8142,11 +8262,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8336,12 +8451,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8510,7 +8626,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8551,7 +8667,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8709,8 +8825,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8839,6 +8955,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9008,7 +9130,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/lv.po b/bin/addons/base/i18n/lv.po index 92498e2656c..af523719f40 100644 --- a/bin/addons/base/i18n/lv.po +++ b/bin/addons/base/i18n/lv.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-19 08:19+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:05+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:49+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "Izveidotie Skatījumi" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "Mērķa Logs" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Dienvidkoreja (Korejas Republika)" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -343,7 +360,7 @@ msgid "Netherlands Antilles" msgstr "Nīderlandes Antiļu salas" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -387,6 +404,11 @@ msgstr "Lasīšanas funkcija nav ieviesta šim objektam!" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Jūsu sistēma tiks atjaunināta" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -457,7 +479,7 @@ msgid "Miscellaneous Suppliers" msgstr "Dažādi piegādātāji" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Speciālo lauku nosaukumiem jāsākas ar 'x_' !" @@ -793,6 +815,12 @@ msgstr "Guama" msgid "Human Resources Dashboard" msgstr "Cilvēkresursu instrumentu panelis" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -809,6 +837,11 @@ msgstr "Nepareizs Skatījuma uzbūves XML!" msgid "Cayman Islands" msgstr "Kaimanu Salas" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Dienvidkoreja (Korejas Republika)" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -919,6 +952,12 @@ msgstr "Moduļa nosaukums" msgid "Marshall Islands" msgstr "Māršala Salas" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -946,6 +985,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1082,13 +1127,23 @@ msgstr "" msgid "Reports" msgstr "Atskaites" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Ja atzīmēts kā true, tad darbības poga netiks atainota formas skatījuma " +"labās puses rīku panelī." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Pie Izveides" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1130,9 +1185,11 @@ msgid "Wizard Info" msgstr "Vedņa Info" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komoras" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1189,17 +1246,6 @@ msgstr "Pievienotais ID" msgid "Day: %(day)s" msgstr "Diena: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1311,7 +1357,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Nevar dzēst root lietotāju!" @@ -1323,7 +1369,7 @@ msgstr "Malāvija" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (kopēt)" @@ -1498,11 +1544,6 @@ msgstr "" "Piemērs: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1611,6 +1652,11 @@ msgstr "Lauks" msgid "Groups (no group = global)" msgstr "Grupas (ja nav = globāla)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Fēru Salas" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1644,7 +1690,7 @@ msgid "Madagascar" msgstr "Madagaskara" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1837,6 +1883,12 @@ msgid "Messages" msgstr "Ziņojumi" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1898,6 +1950,11 @@ msgstr "Norfolkas Sala" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1935,6 +1992,11 @@ msgstr "Neizdodas jaunināt moduli '%s'. Tas nav uzinstalēts." msgid "Cuba" msgstr "Kuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2145,6 +2207,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2231,6 +2300,7 @@ msgstr "Lauka Sasaistes" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Modulis" @@ -2299,7 +2369,7 @@ msgid "Mayotte" msgstr "Majota" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Lūdzu norādiet darbību, kuru palaist!" @@ -2454,11 +2524,6 @@ msgstr "Kļūda! Jūs nevarat veidot rekursīvas kategorijas." msgid "%x - Appropriate date representation." msgstr "%x - Atbilstošais datuma attainojums." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2800,11 +2865,6 @@ msgstr "Telekomunikāciju nozare" msgid "Trigger Object" msgstr "Darbību izraisošais Objekts" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2843,8 +2903,8 @@ msgid "Sequence Type" msgstr "Sēriju Veidi" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2869,6 +2929,7 @@ msgstr "SQL Ierobežojums" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Modelis" @@ -2977,11 +3038,9 @@ msgstr "" "Jūs mēģināt dzēst moduli, kas ir uzinstalēts/ vai atzīmēts \"Instalēt\"." #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" -"Darbības tips vai poga klienta programmā, kas izraisīs darbību/notikumu." #. module: base #: selection:base.language.install,lang:0 @@ -3001,6 +3060,11 @@ msgstr "Gvatemala" msgid "Workflows" msgstr "Darba plūsmas." +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3042,7 +3106,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Jūs nevarat izdzēst modeli '%s' !" @@ -3140,7 +3204,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3272,11 +3336,6 @@ msgstr "" msgid "System update completed" msgstr "Sistēmas atjaunināšana pabeigta" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Lauku izvēle" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3314,14 +3373,10 @@ msgid "Apply For Delete" msgstr "Pieteikties dzēšanai" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Ja atzīmēts kā true, tad darbības poga netiks atainota formas skatījuma " -"labās puses rīku panelī." #. module: base #: view:ir.attachment:0 @@ -3520,6 +3575,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrata" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3561,9 +3624,11 @@ msgid "Starter Partner" msgstr "Sākotnējais Partneris" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Jūsu sistēma tiks atjaunināta" +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3731,7 +3796,7 @@ msgid "Flow Start" msgstr "Plūsmas Sākums" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3763,9 +3828,9 @@ msgid "Guadeloupe (French)" msgstr "Gvadelupa" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Lietotāja kļūda" @@ -3830,6 +3895,13 @@ msgstr "Darbību konfigurācija Klientam" msgid "Partner Addresses" msgstr "Partnera Adreses" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3992,11 +4064,6 @@ msgstr "Pieprasījumu Vēsture" msgid "Menus" msgstr "Izvēlnes" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4189,6 +4256,11 @@ msgstr "" "Nodrošina lauka nosaukumu, kurā pēc izveides operācijām tiks saglabāts " "ieraksta identifikators. Ja tas ir tukšs, tad nevar izsekot jaunos ierakstus." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4240,6 +4312,11 @@ msgstr "" msgid "Serial Key" msgstr "Seriālā atslēga" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Zems" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4270,11 +4347,6 @@ msgstr "Darbinieks" msgid "Create Access" msgstr "Izveidot Pieeju" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4471,6 +4543,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4736,7 +4816,7 @@ msgid "Change My Preferences" msgstr "Izmainīt manus Uzstādījumus" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Procesa definīcijā nepareizs modeļa nosaukums." @@ -4931,9 +5011,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorēt" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Amerikas Savienotās Valstis" #. module: base #: view:ir.module.module:0 @@ -4958,7 +5038,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modulim %s ir nederīgs kvalitātes sertifikāts" @@ -4995,9 +5075,10 @@ msgid "Nigeria" msgstr "Nigērija" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5019,12 +5100,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Notikuma Tipu Vērtības" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5152,6 +5227,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5175,7 +5257,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5352,6 +5434,13 @@ msgstr "Rekrutēšana" msgid "Reunion (French)" msgstr "Reinjona" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5359,11 +5448,6 @@ msgstr "Reinjona" msgid "Global" msgstr "Vispārēji" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5375,7 +5459,7 @@ msgid "Solomon Islands" msgstr "Zālamana Salas" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5391,7 +5475,7 @@ msgid "Waiting" msgstr "Gaidu" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Nevar ielādēt moduli \"base\"" @@ -5445,9 +5529,9 @@ msgid "Module Category" msgstr "Moduļa Kategorija" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Amerikas Savienotās Valstis" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorēt" #. module: base #: report:ir.module.reference.graph:0 @@ -5598,13 +5682,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Modulis %s neeksistē!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5639,7 +5723,6 @@ msgstr "OpenERP kodols, nepieciešams visām instalācijām." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5658,6 +5741,11 @@ msgstr "PO Fails" msgid "Neutral Zone" msgstr "Neutral Zone" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5668,11 +5756,6 @@ msgstr "Pielāgots" msgid "Current" msgstr "Pašreizējs" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5788,7 +5871,7 @@ msgstr "" "Izvēlēties objektu uz kuru attieksies darbība (lasīt, rakstīt, izveidot)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5947,11 +6030,6 @@ msgstr "Līdzekļu piesaistīšana" msgid "Sequence Codes" msgstr "Secību kodi" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5989,6 +6067,12 @@ msgstr "Francija" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6007,8 +6091,6 @@ msgstr "Afganistāna" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Kļūda!" @@ -6121,13 +6203,6 @@ msgstr "Servisa nosaukums" msgid "Pitcairn Island" msgstr "Pitkērna" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6211,11 +6286,6 @@ msgstr "Citas Darbības" msgid "Done" msgstr "Pabeigts" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6304,7 +6374,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6406,6 +6476,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6440,6 +6517,11 @@ msgstr "Izejošās pārejas" msgid "Icon" msgstr "Ikona" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6485,7 +6567,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6506,8 +6588,8 @@ msgid "Child IDs" msgstr "Child IDs" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problēma konfigurācijā `Record Id` Servera Darbības kontekstā!" @@ -6821,9 +6903,9 @@ msgid "Grenada" msgstr "Grenāda" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Darbības Izraisītāja Konfigurācija" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Volisa un Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -6859,7 +6941,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -7007,11 +7089,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komoras" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7025,6 +7105,11 @@ msgstr "Servera Darbības" msgid "Cancel Install" msgstr "Atcelt Uzstādīšanu" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7041,7 +7126,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7130,13 +7215,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Lietotāja Atsauce" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7282,7 +7375,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7321,13 +7414,6 @@ msgstr "Skatījuma Atsauce" msgid "Selection" msgstr "Atlase" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7464,6 +7550,14 @@ msgstr "nedefinēta get funkcija!" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7484,6 +7578,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7509,6 +7609,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7577,11 +7686,6 @@ msgstr "Datums, kad tiks Izpildīts" msgid "Croatian / hrvatski jezik" msgstr "Horvātu / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7598,9 +7702,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Nav iespējams noinstalēt" #. module: base #: view:res.partner.category:0 @@ -7641,9 +7745,12 @@ msgid "Menu Action" msgstr "Izvēlnes Darbība" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Fēru Salas" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7771,6 +7878,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7782,7 +7897,7 @@ msgid "China" msgstr "Ķīna" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7872,7 +7987,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7980,7 +8094,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8081,7 +8195,7 @@ msgid "Auto-Refresh" msgstr "Auto-Jaunināt" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8091,11 +8205,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Volisa un Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8153,14 +8262,17 @@ msgid "Turkmenistan" msgstr "Turkmenistāna" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8169,7 +8281,7 @@ msgstr "Turkmenistāna" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8217,6 +8329,11 @@ msgstr "Tanzānija" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8227,11 +8344,6 @@ msgstr "Ziemsvētku Sala" msgid "Other Actions Configuration" msgstr "Citu Darbību Konfigurācija" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Nav iespējams noinstalēt" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8425,12 +8537,14 @@ msgid "Luxembourg" msgstr "Luksemburga" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Zems" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"Darbības tips vai poga klienta programmā, kas izraisīs darbību/notikumu." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8599,7 +8713,7 @@ msgid "View Auto-Load" msgstr "Skatīt Auto-Ielādi" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8640,7 +8754,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8798,9 +8912,9 @@ msgid "Czech / Čeština" msgstr "Čehu / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Paplašinātā Meklēšana" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Darbības Izraisītāja Konfigurācija" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8932,6 +9046,12 @@ msgstr "" msgid "Portrait" msgstr "Vertikāli" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9102,7 +9222,7 @@ msgid "Account Owner" msgstr "Konta Īpašnieks" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9737,6 +9857,9 @@ msgstr "Krievu / русский язык" #~ msgid "Field child1" #~ msgstr "Lauks child1" +#~ msgid "Field Selection" +#~ msgstr "Lauku izvēle" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "Grupas tiek izmantotas, lai definētu pieejas tiesības skatījumiem un " @@ -10454,6 +10577,9 @@ msgstr "Krievu / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Paplašinātā Meklēšana" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" diff --git a/bin/addons/base/i18n/mn.po b/bin/addons/base/i18n/mn.po index 60285a11d3f..ecf696ac7d3 100644 --- a/bin/addons/base/i18n/mn.po +++ b/bin/addons/base/i18n/mn.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-16 08:03+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:06+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:49+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Үүссэн" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Ашиглах цонх" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Өмнөд Солонгос" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -344,7 +361,7 @@ msgid "Netherlands Antilles" msgstr "Нидерландын Антилын арлууд" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -388,6 +405,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "Энэ ISO код болвоос орчуулгад тухайн po файлын нэр болж хэрэглэгдэнэ" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Таны систем шинэчлэгдэж байна." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -459,7 +481,7 @@ msgid "Miscellaneous Suppliers" msgstr "Бусад нийлүүлэгчид" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Нэмэлт талбарын нэр нь 'x_' -аар эхэлсэн байх ёстой !" @@ -802,6 +824,12 @@ msgstr "Гуам (USA)" msgid "Human Resources Dashboard" msgstr "Хүний нөөцийн хянах самбар" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -818,6 +846,11 @@ msgstr "Дэлгэцийн XML алдаатай!" msgid "Cayman Islands" msgstr "Кайманы арлууд" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Өмнөд Солонгос" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -931,6 +964,12 @@ msgstr "Модулийн нэр" msgid "Marshall Islands" msgstr "Маршалын арлууд" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -963,6 +1002,12 @@ msgid "" msgstr "" "Олон групп-ээс хамаарсан хандах дүрэм нь логик AND нөхцөлөөр хэрэгжинэ." +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1101,13 +1146,22 @@ msgstr "Үндсэн тайлангийн файлын зам" msgid "Reports" msgstr "Тайлан" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Хэрэв чагт тавибал уг үйлдэл дэлгэцийн баруун талын самбар дээр харагдахгүй." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Үүсгэх үед" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1153,9 +1207,11 @@ msgid "Wizard Info" msgstr "Визардын мэдээлэл" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Коморск" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Орчуулга экспортлох" #. module: base #: help:res.log,secondary:0 @@ -1226,22 +1282,6 @@ msgstr "Хавсрагасан ID" msgid "Day: %(day)s" msgstr "Өдөр: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Таны OpenERP системд тохируулагдах боломжтой бүх сертификаттай модулын " -"жагсаалт. Модулиуд системд суусан тухай тэмдэглэгээтэй. Та модулиын нэр " -"болон тайлбараар хайлт хийх боломжтой. Та модулыг нэг нэгээр нь суулгах " -"шаардлагагүй бөгөөд нэг дор суулгах модулиудаа сонгож төлөвлөнө. Улмаар " -"товлосон шинэчлэлтийг эхлүүлэхэд бүх модулиуд нэг дор сууна." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1352,7 +1392,7 @@ msgid "Formula" msgstr "Томьёолол" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Супер хэрэглэгчийг устгах боломжгүй!" @@ -1364,7 +1404,7 @@ msgstr "Малави" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (copy)" @@ -1540,11 +1580,6 @@ msgstr "" "Жишээ: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1655,6 +1690,11 @@ msgstr "Талбар" msgid "Groups (no group = global)" msgstr "Групүүд (групгүй = глобал)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Фарерын арлууд" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1688,7 +1728,7 @@ msgid "Madagascar" msgstr "Мадагаскар" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1880,6 +1920,12 @@ msgid "Messages" msgstr "Зурвас" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1941,6 +1987,11 @@ msgstr "Норфолкын арлууд" msgid "Korean (KR) / 한국어 (KR)" msgstr "Солонгос (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1979,6 +2030,11 @@ msgstr "" msgid "Cuba" msgstr "Куб" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2189,6 +2245,13 @@ msgstr "Спани хэл (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2273,6 +2336,7 @@ msgstr "Талбарын зурагжуулалт." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Модуль" @@ -2341,7 +2405,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Эхлүүлэх үйлдлийг заана уу!" @@ -2494,11 +2558,6 @@ msgstr "Алдаа! Рекурсив ангилал үүсгэж болохгү msgid "%x - Appropriate date representation." msgstr "%x - Тохиромжтой огнооны дүрслэл." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2837,11 +2896,6 @@ msgstr "Телеком хэлтэс" msgid "Trigger Object" msgstr "Гол объект" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2880,9 +2934,9 @@ msgid "Sequence Type" msgstr "Дугаарлалтын төрөл" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Хинди / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2906,6 +2960,7 @@ msgstr "SQL нөхцөл" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Загвар" @@ -3013,10 +3068,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "Суулгасан эсвэл суулгах модулиудыг хасаад үзэх хэрэгтэй." #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Үйлдлийг гогодох клиент талын товч эсвэл үйлдлийн төрөл." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Сонгогдсон модулиуд шинэчлэгдсэн / суусан !" #. module: base #: selection:base.language.install,lang:0 @@ -3036,6 +3090,11 @@ msgstr "Гватемал" msgid "Workflows" msgstr "Ажлын урсгалууд" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3077,7 +3136,7 @@ msgid "Lesotho" msgstr "Лесото" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Та '%s' моделийг устгах боломжгүй !" @@ -3175,7 +3234,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3304,11 +3363,6 @@ msgstr "" msgid "System update completed" msgstr "Систем шинэчдэгдэж дууслаа" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Талбар сонголт" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3346,13 +3400,10 @@ msgid "Apply For Delete" msgstr "Устгах эрх" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Хэрэв чагт тавибал уг үйлдэл дэлгэцийн баруун талын самбар дээр харагдахгүй." #. module: base #: view:ir.attachment:0 @@ -3549,6 +3600,14 @@ msgstr "" msgid "Montserrat" msgstr "Монтсеррат" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3592,9 +3651,11 @@ msgid "Starter Partner" msgstr "Эхлэлийн харилцагч" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Таны систем шинэчлэгдэж байна." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3762,7 +3823,7 @@ msgid "Flow Start" msgstr "Урсгалын эхлэл" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3794,9 +3855,9 @@ msgid "Guadeloupe (French)" msgstr "Гуаделоп (Франц)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Хэрэглэгчийн алдаа" @@ -3861,6 +3922,13 @@ msgstr "Клиент үйлдлийн тохиргоо" msgid "Partner Addresses" msgstr "Харилцагчийн хаягууд" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4022,11 +4090,6 @@ msgstr "Хүсэлтийн түүх" msgid "Menus" msgstr "Цэс" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Сонгогдсон модулиуд шинэчлэгдсэн / суусан !" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4219,6 +4282,11 @@ msgstr "" "Үүсгэх үйлдлийн дараа бичлэг үүссэн талбарын нэрийг заана. Хэрэв хоосон " "орхивол шинэ бичлэгийг олж чадахгүй." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4270,6 +4338,11 @@ msgstr "Арилгах Ids гэж юу вэ? " msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Бага" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4300,11 +4373,6 @@ msgstr "Ажилтан" msgid "Create Access" msgstr "Хандалт үүсгэх" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4501,6 +4569,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4766,7 +4842,7 @@ msgid "Change My Preferences" msgstr "Өөрийн тохиргоог өөрчлөх" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Үйлдлийн тодорхойлолтод буруу моделийн нэр байна." @@ -4964,9 +5040,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Алдаа" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Америкын нэгдсэн улс" #. module: base #: view:ir.module.module:0 @@ -4991,7 +5067,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "%s модуль: Буруу чанарын сертификат" @@ -5027,9 +5103,10 @@ msgid "Nigeria" msgstr "Нигер" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5051,12 +5128,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Үзэгдлийн төрлийн утгууд" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5185,6 +5256,13 @@ msgstr "" "Хэрэв энэ талбар хоосон бол OpenERP таны унших эрхтэй обьектуудын холбогдох " "цэсүүдийг танд харагдуулна." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5208,7 +5286,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5385,6 +5463,13 @@ msgstr "Нэмэлт" msgid "Reunion (French)" msgstr "Reunion (French)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5392,11 +5477,6 @@ msgstr "Reunion (French)" msgid "Global" msgstr "Глобал" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5408,7 +5488,7 @@ msgid "Solomon Islands" msgstr "Соломоны арлууд" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5424,7 +5504,7 @@ msgid "Waiting" msgstr "Хүлээх" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5478,9 +5558,9 @@ msgid "Module Category" msgstr "Модулийн ангилал" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Америкын нэгдсэн улс" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Алдаа" #. module: base #: report:ir.module.reference.graph:0 @@ -5631,13 +5711,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Хэрэглэгчийн Эрхэм хэлийг устгаж болохгүй !" @@ -5672,7 +5752,6 @@ msgstr "Бүх суулгалтад хэрэгтэй OpenERP цөм." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5691,6 +5770,11 @@ msgstr "PO файл" msgid "Neutral Zone" msgstr "Дундын бүс" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Хинди / हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5701,11 +5785,6 @@ msgstr "Үйлчлүүлэгч" msgid "Current" msgstr "Одоо" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5822,7 +5901,7 @@ msgid "" msgstr "Үйлдэл (унших, бичих, үүсгэх) хийгдэх объектыг сонгох" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5981,11 +6060,6 @@ msgstr "" msgid "Sequence Codes" msgstr "Дарааллын төрөл" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6023,6 +6097,12 @@ msgstr "Франц" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6041,8 +6121,6 @@ msgstr "Афганистан, Исламын муж" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Алдаа !" @@ -6154,13 +6232,6 @@ msgstr "Сервисийн нэр" msgid "Pitcairn Island" msgstr "Питкэйрн арал" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6248,11 +6319,6 @@ msgstr "Бусад үйлдлүүд" msgid "Done" msgstr "Дууссан" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6341,7 +6407,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "Энэ линк нь албан ёсны орчуулга ачааллахыг эхлүүлнэ:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6443,6 +6509,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6475,6 +6548,11 @@ msgstr "Гарах шилжилт" msgid "Icon" msgstr "Тэмдэг" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6520,7 +6598,7 @@ msgid "Samoa" msgstr "Самоа" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6543,8 +6621,8 @@ msgid "Child IDs" msgstr "Дэд IDs" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Серверийн үйлдэлд `Record Id` тохиргооны асуудал байна!" @@ -6858,9 +6936,9 @@ msgid "Grenada" msgstr "Гренада" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Гол тохиргоо" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" #. module: base #: selection:server.action.create,init,type:0 @@ -6896,7 +6974,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Талбарын хэмжээ 1-с бага байж болохгүй !" @@ -7044,11 +7122,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Орчуулга экспортлох" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Коморск" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7062,6 +7138,11 @@ msgstr "Сервер үйлдлүүд" msgid "Cancel Install" msgstr "Суулгахыг болих" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7078,7 +7159,7 @@ msgid "Copy Object" msgstr "Хувилах Обьект" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7170,13 +7251,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Хэрэглэгч дугаар." #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Сануулга !" @@ -7322,7 +7411,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7359,13 +7448,6 @@ msgstr "Дэлгэц" msgid "Selection" msgstr "Сонголт" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7502,6 +7584,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7522,6 +7612,12 @@ msgstr "Хянах самбар" msgid "Binary File or external URL" msgstr "Бинари файл буюу гадаад URL" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7547,6 +7643,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7613,11 +7718,6 @@ msgstr "Гол огноо" msgid "Croatian / hrvatski jezik" msgstr "Хорват хэл / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7634,9 +7734,9 @@ msgid "The code of the country must be unique !" msgstr "Улсын код давхцах ёсгүй !" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Ирц,цагийн хяналт" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Устгаж боломгүй" #. module: base #: view:res.partner.category:0 @@ -7677,9 +7777,12 @@ msgid "Menu Action" msgstr "Цэсний үйлдэл" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Фарерын арлууд" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7807,6 +7910,14 @@ msgid "" "executed." msgstr "Тухайн обьектын дуудагдаж ажиллах функцын нэр." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7818,7 +7929,7 @@ msgid "China" msgstr "Хятад" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7910,7 +8021,6 @@ msgid "ltd" msgstr "ххк" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8018,7 +8128,7 @@ msgid "Account No." msgstr "Дансны дугаар." #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Үндсэн хэл 'en_US'-ийг устгаж болохгүй !" @@ -8119,7 +8229,7 @@ msgid "Auto-Refresh" msgstr "Автомат-Шинэчлэл" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8129,11 +8239,6 @@ msgstr "" msgid "Diagram" msgstr "Диаграм" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8191,14 +8296,17 @@ msgid "Turkmenistan" msgstr "Туркменстан" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8207,7 +8315,7 @@ msgstr "Туркменстан" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8255,6 +8363,11 @@ msgstr "Танзани" msgid "Danish / Dansk" msgstr "Дани хэл/ Данск" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8265,11 +8378,6 @@ msgstr "Зул сарын арал" msgid "Other Actions Configuration" msgstr "Бусад үйлдлийн тохиргоо" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Устгаж боломгүй" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8463,12 +8571,13 @@ msgid "Luxembourg" msgstr "Люксембург" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Бага" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Үйлдлийг гогодох клиент талын товч эсвэл үйлдлийн төрөл." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Алдаа! Та рекурсив цэс үүсгэж болохгүй." @@ -8637,7 +8746,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Энэ талбрыг та устгаж болохгүй '%s' !" @@ -8678,7 +8787,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8836,9 +8945,9 @@ msgid "Czech / Čeština" msgstr "Чех / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Дэлгэрэнгүй хайлт" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Гол тохиргоо" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8966,6 +9075,12 @@ msgstr "" msgid "Portrait" msgstr "Босоо" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9135,7 +9250,7 @@ msgid "Account Owner" msgstr "Данс эзэмшигч" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9566,6 +9681,9 @@ msgstr "Орос хэл / русский язык" #~ msgid "Field child1" #~ msgstr "child1 талбар" +#~ msgid "Field Selection" +#~ msgstr "Талбар сонголт" + #~ msgid "Field child3" #~ msgstr "child3 талбар" @@ -9816,6 +9934,9 @@ msgstr "Орос хэл / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Дэлгэрэнгүй хайлт" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -10732,6 +10853,9 @@ msgstr "Орос хэл / русский язык" #~ msgid "Dutch (Belgium) / Nederlands (Belgïe)" #~ msgstr "Dutch (Belgium) / Nederlands (Belgïe)" +#~ msgid "Time Tracking" +#~ msgstr "Ирц,цагийн хяналт" + #~ msgid "" #~ "Would your payment have been carried out after this mail was sent, please " #~ "consider the present one as void. Do not hesitate to contact our accounting " @@ -10848,3 +10972,17 @@ msgstr "Орос хэл / русский язык" #~ msgid "Web Icons" #~ msgstr "Веб icon" + +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Таны OpenERP системд тохируулагдах боломжтой бүх сертификаттай модулын " +#~ "жагсаалт. Модулиуд системд суусан тухай тэмдэглэгээтэй. Та модулиын нэр " +#~ "болон тайлбараар хайлт хийх боломжтой. Та модулыг нэг нэгээр нь суулгах " +#~ "шаардлагагүй бөгөөд нэг дор суулгах модулиудаа сонгож төлөвлөнө. Улмаар " +#~ "товлосон шинэчлэлтийг эхлүүлэхэд бүх модулиуд нэг дор сууна." diff --git a/bin/addons/base/i18n/nb.po b/bin/addons/base/i18n/nb.po index ba16dbd2cfe..1ef6150a152 100644 --- a/bin/addons/base/i18n/nb.po +++ b/bin/addons/base/i18n/nb.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-03-11 05:06+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:06+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:50+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Sør-Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -340,7 +357,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -380,6 +397,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -448,7 +470,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -783,6 +805,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -799,6 +827,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Sør-Korea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -905,6 +938,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -932,6 +971,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1065,13 +1110,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,8 +1166,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1172,17 +1227,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1290,7 +1334,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1302,7 +1346,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1471,11 +1515,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1581,6 +1620,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1614,7 +1658,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1802,6 +1846,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1863,6 +1913,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1900,6 +1955,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2108,6 +2168,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2192,6 +2259,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2260,7 +2328,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2413,11 +2481,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2747,11 +2810,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2790,8 +2848,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2816,6 +2874,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2923,9 +2982,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2946,6 +3004,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2985,7 +3048,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3083,7 +3146,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3212,11 +3275,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3254,11 +3312,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3456,6 +3512,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3497,8 +3561,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3667,7 +3733,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3699,9 +3765,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3766,6 +3832,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3927,11 +4000,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4122,6 +4190,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4173,6 +4246,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4203,11 +4281,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4404,6 +4477,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4669,7 +4750,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4862,8 +4943,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4889,7 +4970,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4923,8 +5004,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4947,12 +5029,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5078,6 +5154,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5101,7 +5184,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5278,6 +5361,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5285,11 +5375,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5301,7 +5386,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5317,7 +5402,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5371,8 +5456,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5524,13 +5609,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5565,7 +5650,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5584,6 +5668,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5594,11 +5683,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5713,7 +5797,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5872,11 +5956,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5914,6 +5993,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5932,8 +6017,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6045,13 +6128,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6135,11 +6211,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6228,7 +6299,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6330,6 +6401,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6362,6 +6440,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6407,7 +6490,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6428,8 +6511,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6741,8 +6824,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6779,7 +6862,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6927,10 +7010,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6945,6 +7026,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6961,7 +7047,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7050,13 +7136,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7202,7 +7296,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7239,13 +7333,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7382,6 +7469,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7402,6 +7497,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7427,6 +7528,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7493,11 +7603,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7514,8 +7619,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7557,8 +7662,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7687,6 +7795,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7698,7 +7814,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7788,7 +7904,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7896,7 +8011,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7997,7 +8112,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8007,11 +8122,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8069,14 +8179,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8085,7 +8198,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8133,6 +8246,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8143,11 +8261,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8337,12 +8450,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8511,7 +8625,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8552,7 +8666,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8710,8 +8824,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8840,6 +8954,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9009,7 +9129,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/nl.po b/bin/addons/base/i18n/nl.po index e4a73a0235e..4654cf43a0b 100644 --- a/bin/addons/base/i18n/nl.po +++ b/bin/addons/base/i18n/nl.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2011-01-10 16:30+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:47+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -113,7 +113,7 @@ msgid "Created Views" msgstr "Aangemaakte weergaves" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " @@ -122,6 +122,14 @@ msgstr "" "U kunt niet schrijven in dit document (%s) ! Controleer of uw gebruiker " "behoort bij één van deze groepen: %s." +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -133,9 +141,18 @@ msgid "Target Window" msgstr "Doelvenster" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Zuid-Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -349,7 +366,7 @@ msgid "Netherlands Antilles" msgstr "Nederlandse Antillen" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -396,6 +413,11 @@ msgstr "" "Deze ISO-code is de naam van de po-bestanden die gebruikt worden voor " "vertalingen." +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Uw systeem wordt bijgewerkt." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -467,7 +489,7 @@ msgid "Miscellaneous Suppliers" msgstr "Overige leveranciers" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Eigen velden dienen een naam te hebben die begint met 'x_' !" @@ -814,6 +836,12 @@ msgstr "Guam (VS)" msgid "Human Resources Dashboard" msgstr "Personeel dashboard" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -830,6 +858,11 @@ msgstr "Ongeldige XML voor weergave!" msgid "Cayman Islands" msgstr "Kaaimaneilanden" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Zuid-Korea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -943,6 +976,12 @@ msgstr "Modulenaam" msgid "Marshall Islands" msgstr "Marshall-eilanden" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -975,6 +1014,12 @@ msgid "" msgstr "" "2. Groep-specifieke regels worden samengevoegd met een logische EN operator" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1116,13 +1161,23 @@ msgstr "Hoofd overzicht bestandspad" msgid "Reports" msgstr "Overzichten" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Als op WAAR gezet, dan wordt de actie niet getoond op de rechter werkbalk " +"van een formulier" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Bij aanmaken" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1169,9 +1224,11 @@ msgid "Wizard Info" msgstr "Informatie assistent" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komoren" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Vertaling exporteren" #. module: base #: help:res.log,secondary:0 @@ -1241,24 +1298,6 @@ msgstr "Bijlage ID" msgid "Day: %(day)s" msgstr "Dag: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Lijst van alle beschikbare gecertificeerde modules om uw OpenERP te " -"configureren. Geïnstalleerde modules zijn als zodanig gemarkeerd. U kunt " -"naar een specifieke module zoeken via de naam of de beschrijving van de " -"module. U hoeft de modules niet één voor één te installeren; u kunt veel " -"tegelijk installeren door op de 'uitvoeren' knop in de lijst te klikken, " -"Vervolgens voert u de installatie voor alles in één keer uit via het " -"actiemenu." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1370,7 +1409,7 @@ msgid "Formula" msgstr "Formule" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "U kunt de hoofdgebruiker niet verwijderen!" @@ -1382,7 +1421,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (kopie)" @@ -1563,11 +1602,6 @@ msgstr "" "Voorbeeld: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "Nieuw wachtwoord" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1684,6 +1718,11 @@ msgstr "Veld" msgid "Groups (no group = global)" msgstr "Groepen (geen groep = globaal)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faeröereilanden" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1717,7 +1756,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1911,6 +1950,12 @@ msgid "Messages" msgstr "Berichten" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1977,6 +2022,11 @@ msgstr "Norfolkeiland" msgid "Korean (KR) / 한국어 (KR)" msgstr "Koreans(KR) / Korea (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -2014,6 +2064,11 @@ msgstr "Kan module '%s' niet opwaarderen. Deze is niet geïnstalleerd." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2232,6 +2287,13 @@ msgstr "Spaans (DO) / Spanje (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2316,6 +2378,7 @@ msgstr "Veldkoppelingen" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Module" @@ -2384,7 +2447,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Geef alstublieft een actie om uit te voeren !" @@ -2543,11 +2606,6 @@ msgstr "Fout ! U kunt geen recursieve categorieën aanmaken." msgid "%x - Appropriate date representation." msgstr "%x - Passende datum weergave" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "change.user.password" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2897,11 +2955,6 @@ msgstr "Telecom sector" msgid "Trigger Object" msgstr "Trigger-object" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "Voer het nieuwe wachtwoord nogmaals in ter bevestiging." - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2940,9 +2993,9 @@ msgid "Sequence Type" msgstr "Soort reeks" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2966,6 +3019,7 @@ msgstr "SQL-beperking" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -3080,10 +3134,9 @@ msgstr "" "geïnstalleerd." #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "De soort actie of knop in de client die deze actie zal starten." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "De geselecteerde modules zijn bijgewerkt / geïnstalleerd !" #. module: base #: selection:base.language.install,lang:0 @@ -3103,6 +3156,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Werkschema's" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3144,7 +3202,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "U kunt het model '%s' niet verwijderen !" @@ -3242,7 +3300,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3376,11 +3434,6 @@ msgstr "" msgid "System update completed" msgstr "Systeemupdate afgerond" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Veldkeuze" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3418,14 +3471,10 @@ msgid "Apply For Delete" msgstr "Toepassen bij verwijderen" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Als op WAAR gezet, dan wordt de actie niet getoond op de rechter werkbalk " -"van een formulier" #. module: base #: view:ir.attachment:0 @@ -3646,6 +3695,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3691,9 +3748,11 @@ msgid "Starter Partner" msgstr "Startende partner" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Uw systeem wordt bijgewerkt." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3863,7 +3922,7 @@ msgid "Flow Start" msgstr "Begin werkschema" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "Basis module kan niet worden geladen! (hint: controleer addons-pad)" @@ -3895,9 +3954,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Frans)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Gebruikersfout" @@ -3965,6 +4024,13 @@ msgstr "Instellingen client-actie" msgid "Partner Addresses" msgstr "Adressen relatie" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4127,11 +4193,6 @@ msgstr "Verzoekenhistorie" msgid "Menus" msgstr "Menu's" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "De geselecteerde modules zijn bijgewerkt / geïnstalleerd !" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4328,6 +4389,11 @@ msgstr "" "Geef de veldnaam waar het record id is opgeslagen na de aanmaak operatie. " "Als het leeg is kunt u het nieuwe record niet volgen." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4379,6 +4445,11 @@ msgstr "Wilt u Ids opschonen ? " msgid "Serial Key" msgstr "Sleutelcode" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Laag" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4410,11 +4481,6 @@ msgstr "Medewerker" msgid "Create Access" msgstr "Aanmaken" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "Huidig wachtwoord" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4617,6 +4683,14 @@ msgstr "" "gedurende de installatie van nieuwe modules, maar u kunt ervoor kiezen om " "sommige assistenten handmatig in het menu te herstarten." +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4892,7 +4966,7 @@ msgid "Change My Preferences" msgstr "Wijzig mijn voorkeuren" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Ongeldige modelnaam in de definitie van de actie." @@ -5092,9 +5166,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Negeren" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Verenigde Staten" #. module: base #: view:ir.module.module:0 @@ -5119,7 +5193,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Module %s: Ongeldig kwaliteitscertificaat" @@ -5156,9 +5230,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5180,12 +5255,6 @@ msgstr "Web icon afbeelding" msgid "Values for Event Type" msgstr "Waarde voor soort gebeurtenis" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "Het huidige wachtwoord klopt niet, controleer het nog eens." - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5327,6 +5396,13 @@ msgstr "" "groepen. Als het veld leeg is berekent OpenERP de zichtbaarheid op basis van " "de leesrechten van het gerelateerde object." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5352,7 +5428,7 @@ msgstr "" "afhankelijkheid is voldaan: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5534,6 +5610,13 @@ msgstr "Werving" msgid "Reunion (French)" msgstr "Reunion (Frans)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5541,11 +5624,6 @@ msgstr "Reunion (Frans)" msgid "Global" msgstr "Algemeen" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "U moet afmelden en aanmelden na het wijzigen van uw wachtwoord." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5557,7 +5635,7 @@ msgid "Solomon Islands" msgstr "Salomoneilanden" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5573,7 +5651,7 @@ msgid "Waiting" msgstr "Wachtend" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Kon basis module niet laden" @@ -5627,9 +5705,9 @@ msgid "Module Category" msgstr "Categorie module" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Verenigde Staten" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Negeren" #. module: base #: report:ir.module.reference.graph:0 @@ -5784,13 +5862,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Model %s bestaat niet!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "U kunt geen taal verwijderen die gebruikers voorkeurstaal is !" @@ -5825,7 +5903,6 @@ msgstr "De basis van OpenERP, noodzakelijk in alle installaties." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5844,6 +5921,11 @@ msgstr "PO-bestand" msgid "Neutral Zone" msgstr "Neutrale Zone" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Hindi / हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5854,11 +5936,6 @@ msgstr "Aangepast" msgid "Current" msgstr "Actueel" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "Het nieuwe wachtwoord invoeren." - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5976,7 +6053,7 @@ msgstr "" "Kies het object waarop de actie wordt uitgevoerd (lezen, schrijven, aanmaken)" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Geef aub server optie --email-from op !" @@ -6138,11 +6215,6 @@ msgstr "Fondsenwerving" msgid "Sequence Codes" msgstr "Reeks codes" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "Wachtwoord bevestigen" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6182,6 +6254,12 @@ msgstr "Frankrijk" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6200,8 +6278,6 @@ msgstr "Afghanistan" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Fout !" @@ -6317,14 +6393,6 @@ msgstr "Servicenaam" msgid "Pitcairn Island" msgstr "Pitcairn eiland" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" -"Het nieuwe en bevestigde wachtwoord kloppen niet. Controleer ze nog eens." - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6412,11 +6480,6 @@ msgstr "Andere acties" msgid "Done" msgstr "Voltooid" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "Wijzigen" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6508,7 +6571,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "Om officiële vertalingen te bekijken begint u met deze links:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6615,6 +6678,13 @@ msgstr "" "voor valuta: %s \n" "op datum; %s" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6649,6 +6719,11 @@ msgstr "Uitgaande overgangen" msgid "Icon" msgstr "Icoon" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6694,7 +6769,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6719,8 +6794,8 @@ msgid "Child IDs" msgstr "Onderliggende ID's" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Probleem in instellingen `Record id` in server-actie!" @@ -7045,9 +7120,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Trigger-instellingen" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis en Futuna-eilanden" #. module: base #: selection:server.action.create,init,type:0 @@ -7084,7 +7159,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "De veldlengte kan nooit kleiner dan 1 zijn !" @@ -7233,11 +7308,9 @@ msgid "Manufacturing" msgstr "Productie" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Vertaling exporteren" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komoren" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7251,6 +7324,11 @@ msgstr "Server-acties" msgid "Cancel Install" msgstr "Installatie afbreken" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7267,7 +7345,7 @@ msgid "Copy Object" msgstr "Object kopieren" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7363,13 +7441,21 @@ msgstr "" "Aantal keren dat de functie wordt aangeroepen,\n" "een negatief getal betekent geen limiet" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Ref. gebruiker" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Waarschuwing !" @@ -7515,7 +7601,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Ongeldige zoekcriteria" @@ -7554,13 +7640,6 @@ msgstr "Weergave ref." msgid "Selection" msgstr "Selectie" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "Wachtwoord wijzigen" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7699,6 +7778,14 @@ msgstr "Ongedefinieerde get methode !" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "Noors / Noorwegen" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7719,6 +7806,12 @@ msgstr "Dashboards" msgid "Binary File or external URL" msgstr "Binair bestand of externe URL" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7744,6 +7837,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "Occitan (FR, post 1500) / Occitan" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7812,11 +7914,6 @@ msgstr "Activeringsdatum" msgid "Croatian / hrvatski jezik" msgstr "Croatisch / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "Huidige wachtwoord invoeren." - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7833,9 +7930,9 @@ msgid "The code of the country must be unique !" msgstr "De landcode moet uniek zijn !" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Tijdregistratie" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Niet installeerbaar" #. module: base #: view:res.partner.category:0 @@ -7876,9 +7973,12 @@ msgid "Menu Action" msgstr "Menu-actie" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faeröereilanden" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -8013,6 +8113,14 @@ msgstr "" "Naam van de aan te roepen methode op het object als de planner wordt " "uitgevoerd." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -8024,7 +8132,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -8123,7 +8231,6 @@ msgid "ltd" msgstr "ltd" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8231,7 +8338,7 @@ msgid "Account No." msgstr "Rekeningnr." #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Basistaal 'en_US' kan niet worden verwijderd !" @@ -8334,7 +8441,7 @@ msgid "Auto-Refresh" msgstr "Vanzelf verversen" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8345,11 +8452,6 @@ msgstr "" msgid "Diagram" msgstr "Diagram" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis en Futuna-eilanden" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8407,14 +8509,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8423,7 +8528,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8471,6 +8576,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "Deens / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8481,11 +8591,6 @@ msgstr "Christmaseiland" msgid "Other Actions Configuration" msgstr "Instellingen andere handelingen" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Niet installeerbaar" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8682,12 +8787,13 @@ msgid "Luxembourg" msgstr "Luxemburg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Laag" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "De soort actie of knop in de client die deze actie zal starten." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Fout ! U kunt geen recursief menu maken." @@ -8863,7 +8969,7 @@ msgid "View Auto-Load" msgstr "Weergave vanzelf verversen" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "U kunt het veld '%s' niet verwijderen !" @@ -8906,7 +9012,7 @@ msgstr "" "(GetText Portable Objecten)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -9070,9 +9176,9 @@ msgid "Czech / Čeština" msgstr "Tsjechisch / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Uitgebreid zoeken" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Trigger-instellingen" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9213,6 +9319,12 @@ msgstr "" msgid "Portrait" msgstr "Staand" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9385,7 +9497,7 @@ msgid "Account Owner" msgstr "Rekeninghouder" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "Bedrijf overgang waarschuwing" @@ -10498,6 +10610,9 @@ msgstr "Russisch / русский язык" #~ msgid "Albanian / Shqipëri" #~ msgstr "Albaans / Shqipëri" +#~ msgid "Field Selection" +#~ msgstr "Veldkeuze" + #~ msgid "Calculate Average" #~ msgstr "Bereken gemiddelde" @@ -10884,6 +10999,9 @@ msgstr "Russisch / русский язык" #~ msgid "Access Controls Grid" #~ msgstr "TAbel toegangsbeperking" +#~ msgid "Advanced Search" +#~ msgstr "Uitgebreid zoeken" + #, python-format #~ msgid "Bar charts need at least two fields" #~ msgstr "Staafdiagrammen hebben tenminste twee velden nodig" @@ -11230,6 +11348,9 @@ msgstr "Russisch / русский язык" #~ msgid "terp-accessories-archiver" #~ msgstr "terp-accessories-archiver" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "U moet afmelden en aanmelden na het wijzigen van uw wachtwoord." + #~ msgid "Occitan (post 1500) / France" #~ msgstr "Occitaans (na 1500) / Frankrijk" @@ -11272,6 +11393,9 @@ msgstr "Russisch / русский язык" #~ msgid "terp-check" #~ msgstr "terp-check" +#~ msgid "Time Tracking" +#~ msgstr "Tijdregistratie" + #~ msgid "" #~ "Would your payment have been carried out after this mail was sent, please " #~ "consider the present one as void. Do not hesitate to contact our accounting " @@ -11338,6 +11462,22 @@ msgstr "Russisch / русский язык" #~ msgid "Corporation" #~ msgstr "Bedrijf" +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Lijst van alle beschikbare gecertificeerde modules om uw OpenERP te " +#~ "configureren. Geïnstalleerde modules zijn als zodanig gemarkeerd. U kunt " +#~ "naar een specifieke module zoeken via de naam of de beschrijving van de " +#~ "module. U hoeft de modules niet één voor één te installeren; u kunt veel " +#~ "tegelijk installeren door op de 'uitvoeren' knop in de lijst te klikken, " +#~ "Vervolgens voert u de installatie voor alles in één keer uit via het " +#~ "actiemenu." + #~ msgid "Serbian / српски језик" #~ msgstr "Servisch / Servië" @@ -11410,3 +11550,40 @@ msgstr "Russisch / русский язык" #~ msgid "Nhomar Hernandez's tweets" #~ msgstr "Nhomar Hernandez's tweets" + +#~ msgid "New Password" +#~ msgstr "Nieuw wachtwoord" + +#~ msgid "change.user.password" +#~ msgstr "change.user.password" + +#~ msgid "Enter the new password again for confirmation." +#~ msgstr "Voer het nieuwe wachtwoord nogmaals in ter bevestiging." + +#~ msgid "Current Password" +#~ msgstr "Huidig wachtwoord" + +#, python-format +#~ msgid "The current password does not match, please double-check it." +#~ msgstr "Het huidige wachtwoord klopt niet, controleer het nog eens." + +#~ msgid "Enter the new password." +#~ msgstr "Het nieuwe wachtwoord invoeren." + +#~ msgid "Confirm Password" +#~ msgstr "Wachtwoord bevestigen" + +#, python-format +#~ msgid "" +#~ "The new and confirmation passwords do not match, please double-check them." +#~ msgstr "" +#~ "Het nieuwe en bevestigde wachtwoord kloppen niet. Controleer ze nog eens." + +#~ msgid "Change" +#~ msgstr "Wijzigen" + +#~ msgid "Enter your current password." +#~ msgstr "Huidige wachtwoord invoeren." + +#~ msgid "Change Password" +#~ msgstr "Wachtwoord wijzigen" diff --git a/bin/addons/base/i18n/pl.po b/bin/addons/base/i18n/pl.po index ec3ea588e4a..9ba1f1a244d 100644 --- a/bin/addons/base/i18n/pl.po +++ b/bin/addons/base/i18n/pl.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-29 07:08+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:06+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:50+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Utworzone widoki" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Docelowe okno" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Korea Południowa" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -345,7 +362,7 @@ msgid "Netherlands Antilles" msgstr "Antyle Holenderskie" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -389,6 +406,11 @@ msgstr "Metoda 'read' (czytania) nie jest zaimplementowana na tym obiekcie !" msgid "This ISO code is the name of po files to use for translations" msgstr "Kod ISO kraju jest nazwą pliku PO stosowanym do tłumaczeń" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Twój system zostanie zaktualizowany." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -460,7 +482,7 @@ msgid "Miscellaneous Suppliers" msgstr "Różni dostawcy" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Własne pole musi mieć nazwę rozpoczynającą się od 'x_' !" @@ -803,6 +825,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "Konsola kadr" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -819,6 +847,11 @@ msgstr "XML niewłaściwy dla tej architektury wyświetlania!" msgid "Cayman Islands" msgstr "Wyspy Kajmany" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Korea Południowa" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -928,6 +961,12 @@ msgstr "Nazwa modułu" msgid "Marshall Islands" msgstr "Wyspy Marshalla" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -956,6 +995,12 @@ msgid "" msgstr "" "2. Reguły grup są rozpatrywane razem jako połączone operatorem l (AND)" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1094,13 +1139,23 @@ msgstr "Ścieżka pliku głównego raportu" msgid "Reports" msgstr "Raporty" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Jeśli ustawione na prawda (true), to akcja nie będzie wyświetlana na prawym " +"pasku narzędzi widoku formularza." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Przy tworzeniu" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1145,9 +1200,11 @@ msgid "Wizard Info" msgstr "Informacja o kreatorze" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komory" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Eksportuj tłumaczenie" #. module: base #: help:res.log,secondary:0 @@ -1204,21 +1261,6 @@ msgstr "Związane ID" msgid "Day: %(day)s" msgstr "Dzień: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Lista wszystkich certyfikowanych modułów dostępnych do konfiguracji OpenERP. " -"Zainstalowane moduły są oznaczone. Możesz wyszukać moduł wpisując jego nazwę " -"lub opis. Nie musisz instalować modułów pojedynczo. Możesz zaznaczyć wiele " -"modułów do instalacji i uruchomić ich instalację jednocześnie ikoną Akcje." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1330,7 +1372,7 @@ msgid "Formula" msgstr "Formuła" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Nie można usunąć użytkownika root!" @@ -1342,7 +1384,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1522,11 +1564,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1640,6 +1677,11 @@ msgstr "Pole" msgid "Groups (no group = global)" msgstr "Grupy (brak grup = globalny)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1673,7 +1715,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1868,6 +1910,12 @@ msgid "Messages" msgstr "Wiadomości" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1931,6 +1979,11 @@ msgstr "Wyspa Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1968,6 +2021,11 @@ msgstr "Nie można aktualizować modułu '%s'. Nie jest on zainstalowany." msgid "Cuba" msgstr "Kuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2180,6 +2238,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2264,6 +2329,7 @@ msgstr "Mapowania pola." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Moduł" @@ -2332,7 +2398,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Podaj akcję do uruchomienia !" @@ -2490,11 +2556,6 @@ msgstr "Błąd ! Nie możesz tworzyć rekurencyjnych kategorii." msgid "%x - Appropriate date representation." msgstr "%x - Odpowiednia reprezentacja daty." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2837,11 +2898,6 @@ msgstr "Sektor telekomunikacji" msgid "Trigger Object" msgstr "Wyzwól obiekt" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2880,8 +2936,8 @@ msgid "Sequence Type" msgstr "Typ numeracji" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2906,6 +2962,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -3019,10 +3076,9 @@ msgstr "" "Próbujesz usunąć moduł, który jest zainstalowany lub jest do instalacji" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Rodzaj akcji lub przycisk po stronie klienta, który wyzwoli akcję." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Wybrane moduły zostały zaktualizowane / zainstalowane !" #. module: base #: selection:base.language.install,lang:0 @@ -3042,6 +3098,11 @@ msgstr "Gwatemala" msgid "Workflows" msgstr "Obiegi" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3083,7 +3144,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Nie możesz usunąć modelu '%s' !" @@ -3181,7 +3242,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3313,11 +3374,6 @@ msgstr "" msgid "System update completed" msgstr "Aktualizacja systemu zakończona" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Wybór pól" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3355,14 +3411,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Jeśli ustawione na prawda (true), to akcja nie będzie wyświetlana na prawym " -"pasku narzędzi widoku formularza." #. module: base #: view:ir.attachment:0 @@ -3565,6 +3617,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3610,9 +3670,11 @@ msgid "Starter Partner" msgstr "Partner startowy" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Twój system zostanie zaktualizowany." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3780,7 +3842,7 @@ msgid "Flow Start" msgstr "Uruchom przepływ" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3812,9 +3874,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3882,6 +3944,13 @@ msgstr "Konfiguracja akcji klienta" msgid "Partner Addresses" msgstr "Adres partnera" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4046,11 +4115,6 @@ msgstr "Historia zgłoszenia" msgid "Menus" msgstr "Menu" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Wybrane moduły zostały zaktualizowane / zainstalowane !" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4243,6 +4307,11 @@ msgstr "" "Wprowadź nazwę pola, w którym id rekordu ma być umieszczone po utworzeniu " "operacji. Jeśli jest puste, nie będziesz mógł śledzić nowego rekordu." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4294,6 +4363,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Niski" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4324,11 +4398,6 @@ msgstr "Pracownik" msgid "Create Access" msgstr "Prawo tworzenia" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4525,6 +4594,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4793,7 +4870,7 @@ msgid "Change My Preferences" msgstr "Zmień moje preferencje" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Nieprawidłowa nazwa modelu w definicji akcji." @@ -4990,9 +5067,9 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignoruj" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Stany Zjednoczone" #. module: base #: view:ir.module.module:0 @@ -5017,7 +5094,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Moduł %s: Niepoprawny certyfikat jakości" @@ -5054,8 +5131,9 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -5078,12 +5156,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Wartości dla typów zdarzeń" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5222,6 +5294,13 @@ msgstr "" "to pole jest puste, to OpenERP obliczy widoczność na podstawie praw dostępu " "do obiektu." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5245,7 +5324,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5426,6 +5505,13 @@ msgstr "Rekrutacja" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5433,11 +5519,6 @@ msgstr "" msgid "Global" msgstr "Globalna" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "Po zmianie hasła musisz się wylogować i zalogować ponownie." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5449,7 +5530,7 @@ msgid "Solomon Islands" msgstr "Wyspy Salomona" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5465,7 +5546,7 @@ msgid "Waiting" msgstr "Oczekiwanie" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "nie mozna załadowac modułu podstawowego" @@ -5519,9 +5600,9 @@ msgid "Module Category" msgstr "Kategoria modułu" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Stany Zjednoczone" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignoruj" #. module: base #: report:ir.module.reference.graph:0 @@ -5676,13 +5757,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Model %s nie istnieje!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Nie możesz usunąć języka, który jest w preferencjach użytkownika !" @@ -5717,7 +5798,6 @@ msgstr "Jądro OpenERP jest konieczne do pełnej instalacji." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5736,6 +5816,11 @@ msgstr "Plik PO" msgid "Neutral Zone" msgstr "Strefa Neutralna" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5746,11 +5831,6 @@ msgstr "Własne" msgid "Current" msgstr "Bieżące" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5868,7 +5948,7 @@ msgstr "" "Wybierz obiekt, na którym akcja ma być wykonana (odczyt, zapis, tworzenie)" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Określ opcję serwera --email-from !" @@ -6027,11 +6107,6 @@ msgstr "Zwiększenie funduszu" msgid "Sequence Codes" msgstr "Kody numeracji" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6071,6 +6146,12 @@ msgstr "Francja" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6089,8 +6170,6 @@ msgstr "Afganistan, Republika Islamska" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Błąd !" @@ -6205,13 +6284,6 @@ msgstr "Nazwa usługi" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6298,11 +6370,6 @@ msgstr "Inne akcje" msgid "Done" msgstr "Wykonano" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6392,7 +6459,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6497,6 +6564,13 @@ msgstr "" "dla waluty: %s \n" "i daty: %s" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6531,6 +6605,11 @@ msgstr "Przejścia wyjściowe" msgid "Icon" msgstr "Ikona" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6576,7 +6655,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6597,8 +6676,8 @@ msgid "Child IDs" msgstr "ID podrzędnego" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem w konfiguracji `Record Id` w akcji serwera!" @@ -6915,9 +6994,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Konfiguracja wyzwalacza" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" #. module: base #: selection:server.action.create,init,type:0 @@ -6953,7 +7032,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -7101,11 +7180,9 @@ msgid "Manufacturing" msgstr "Produkowanie" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Eksportuj tłumaczenie" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komory" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7119,6 +7196,11 @@ msgstr "Akcje serwera" msgid "Cancel Install" msgstr "Anuluj instalację" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7135,7 +7217,7 @@ msgid "Copy Object" msgstr "Kopiuj obiekt" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7227,13 +7309,21 @@ msgstr "" "Liczba wykonań funkcji.\n" "Liczba ujemna oznacza brak limitu." +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Odn. użytkownika" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Ostrzeżenie !" @@ -7379,7 +7469,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7418,13 +7508,6 @@ msgstr "Odnośnik widoku" msgid "Selection" msgstr "Wybieranie" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7563,6 +7646,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7583,6 +7674,12 @@ msgstr "Konsole" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7608,6 +7705,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7676,11 +7782,6 @@ msgstr "Data wyzwolenia" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7697,9 +7798,9 @@ msgid "The code of the country must be unique !" msgstr "Kod kraju musi być unikalny !" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Śledzenie czasu" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Nieinstalowalne" #. module: base #: view:res.partner.category:0 @@ -7740,8 +7841,11 @@ msgid "Menu Action" msgstr "Menu Akcja" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7872,6 +7976,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7883,7 +7995,7 @@ msgid "China" msgstr "Chiny" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7976,7 +8088,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8084,7 +8195,7 @@ msgid "Account No." msgstr "Nr konta" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8185,7 +8296,7 @@ msgid "Auto-Refresh" msgstr "Autoodświeżanie" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8195,11 +8306,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8257,14 +8363,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8273,7 +8382,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8321,6 +8430,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8331,11 +8445,6 @@ msgstr "Wyspa Bożego Narodzenia" msgid "Other Actions Configuration" msgstr "Konfiguracja innych akcji" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Nieinstalowalne" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8529,12 +8638,13 @@ msgid "Luxembourg" msgstr "Luksemburg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Niski" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Rodzaj akcji lub przycisk po stronie klienta, który wyzwoli akcję." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Błąd ! Nie możesz tworzyć rekurencyjnych menu." @@ -8703,7 +8813,7 @@ msgid "View Auto-Load" msgstr "Autoładowanie widoku" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8746,7 +8856,7 @@ msgstr "" "Portable Objects)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8907,9 +9017,9 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Wyszukiwanie zaawansowane" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Konfiguracja wyzwalacza" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9045,6 +9155,12 @@ msgstr "" msgid "Portrait" msgstr "Pionowo" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9214,7 +9330,7 @@ msgid "Account Owner" msgstr "Właściciel konta" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "Ostrzeżenie przy przełączaniu firmy" @@ -10140,6 +10256,9 @@ msgstr "" #~ msgid "SUBTOTAL" #~ msgstr "PODSUMA" +#~ msgid "Field Selection" +#~ msgstr "Wybór pól" + #, python-format #~ msgid "Delivered Qty" #~ msgstr "Ilość dostarczona" @@ -10731,6 +10850,9 @@ msgstr "" #~ msgid "Document" #~ msgstr "Dokument" +#~ msgid "Advanced Search" +#~ msgstr "Wyszukiwanie zaawansowane" + #~ msgid "Start Date" #~ msgstr "Data rozpoczęcia" @@ -11043,3 +11165,22 @@ msgstr "" #~ msgid "Web Icons" #~ msgstr "Ikonay web" + +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Lista wszystkich certyfikowanych modułów dostępnych do konfiguracji OpenERP. " +#~ "Zainstalowane moduły są oznaczone. Możesz wyszukać moduł wpisując jego nazwę " +#~ "lub opis. Nie musisz instalować modułów pojedynczo. Możesz zaznaczyć wiele " +#~ "modułów do instalacji i uruchomić ich instalację jednocześnie ikoną Akcje." + +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "Po zmianie hasła musisz się wylogować i zalogować ponownie." + +#~ msgid "Time Tracking" +#~ msgstr "Śledzenie czasu" diff --git a/bin/addons/base/i18n/pt.po b/bin/addons/base/i18n/pt.po index fd076feba93..6e387cf0ced 100644 --- a/bin/addons/base/i18n/pt.po +++ b/bin/addons/base/i18n/pt.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-11 01:36+0000\n" -"Last-Translator: Tiago Baptista \n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" +"PO-Revision-Date: 2011-01-11 08:18+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:50+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Criar vistas" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Janela alvo" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Coreia do Sul" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -343,7 +360,7 @@ msgid "Netherlands Antilles" msgstr "Antilhas Holandesas" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -387,6 +404,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "Este código ISO é o nome do ficheiro .po a usar para as traduções" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "O sistema será atualizado." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -459,7 +481,7 @@ msgid "Miscellaneous Suppliers" msgstr "Fornecedores diversos" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Os campos personalizados devem ter um nome que começado por 'x_'!" @@ -804,6 +826,12 @@ msgstr "Guam (EUA)" msgid "Human Resources Dashboard" msgstr "Painel de Recursos Humanos" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -820,6 +848,11 @@ msgstr "XML inválido para a arquitectura de vista" msgid "Cayman Islands" msgstr "Ilhas Caimão" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Coreia do Sul" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -932,6 +965,12 @@ msgstr "Nome do módulo" msgid "Marshall Islands" msgstr "Ilhas Marshall" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -960,6 +999,12 @@ msgid "" msgstr "" "Regras específicas do grupo são combinados com o operador lógico \"E\"" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1098,13 +1143,23 @@ msgstr "" msgid "Reports" msgstr "Relatórios" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Se assinalado como verdadeiro, a acção não será mostrada na barra de " +"ferramentas da direita na vista" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Em criação" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1150,9 +1205,11 @@ msgid "Wizard Info" msgstr "Informação do assistente" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comores" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Exportar tradução" #. module: base #: help:res.log,secondary:0 @@ -1209,23 +1266,6 @@ msgstr "Id ligado" msgid "Day: %(day)s" msgstr "Dias: %(dia)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Lista todos os módulos certificados disponíveis para configurar o seu " -"OpenERP. Módulos instalados são marcados como tal. Pode procurar por um " -"módulo específico usando seu nome ou descrição. Não é necessário instalar um " -"módulo de cada vez, pode instalar vários módulos clicando no botão agendar " -"nesta lista. Então, aplique todas as atualizações agendadas de uma só vez a " -"partir do menu \"Ação\"." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1337,7 +1377,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Não pode remover utilizador root!" @@ -1349,7 +1389,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1529,11 +1569,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1646,6 +1681,11 @@ msgstr "Campo" msgid "Groups (no group = global)" msgstr "Grupos (Sem grupo = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Ilhas Faroé" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1679,7 +1719,7 @@ msgid "Madagascar" msgstr "Madagáscar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1871,6 +1911,12 @@ msgid "Messages" msgstr "Mensagens" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1932,6 +1978,11 @@ msgstr "Ilha Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1969,6 +2020,11 @@ msgstr "Não é possível actualizar o modulo '%s'. Não esta instalado." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2183,6 +2239,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2267,6 +2330,7 @@ msgstr "Mapeamento de campos" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Módulo" @@ -2335,7 +2399,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Por favor especifique uma acção a iniciar!" @@ -2493,11 +2557,6 @@ msgstr "Erro ! Você não pode criar categorias recursivas." msgid "%x - Appropriate date representation." msgstr "%x - Apresentação apropriada da data." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2841,11 +2900,6 @@ msgstr "Setor das telecomunicações" msgid "Trigger Object" msgstr "Accionar objecto" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2884,8 +2938,8 @@ msgid "Sequence Type" msgstr "Tipo de sequência" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2910,6 +2964,7 @@ msgstr "Constrição SQL" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Modelo" @@ -3019,10 +3074,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "Tentou eliminar um módulo que está instalado ou será instalado" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "O tipo de acção ou botão no lado do cliente que desencadeará a acção" +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Os módulos selecionados foram actualizados / instalados!" #. module: base #: selection:base.language.install,lang:0 @@ -3042,6 +3096,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Fluxos de trabalhos" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3083,7 +3142,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Não pode remover o modelo '%s'!" @@ -3181,7 +3240,7 @@ msgid "API ID" msgstr "ID da API" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3313,11 +3372,6 @@ msgstr "" msgid "System update completed" msgstr "Atualização do sistema concluida" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Selecção de campo" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3355,14 +3409,10 @@ msgid "Apply For Delete" msgstr "Aplique para eliminar" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Se assinalado como verdadeiro, a acção não será mostrada na barra de " -"ferramentas da direita na vista" #. module: base #: view:ir.attachment:0 @@ -3567,6 +3617,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3612,9 +3670,11 @@ msgid "Starter Partner" msgstr "Parceiro iniciante" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "O sistema será atualizado." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3784,7 +3844,7 @@ msgid "Flow Start" msgstr "Inicio do fluxo" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3817,9 +3877,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Erro do utilizador" @@ -3887,6 +3947,13 @@ msgstr "Configuração das acções do cliente" msgid "Partner Addresses" msgstr "Endereços de parceiros" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4048,11 +4115,6 @@ msgstr "Requisitar histórico" msgid "Menus" msgstr "Menus" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Os módulos selecionados foram actualizados / instalados!" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4245,6 +4307,11 @@ msgstr "" "Fornece o nome do campo onde o ID do registo é guardado após a operação " "criar. Se ficar vazio não poderá rastrear o novo registo." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4296,6 +4363,11 @@ msgstr "Quer limpar Ids? " msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Baixo" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4326,11 +4398,6 @@ msgstr "Empregado" msgid "Create Access" msgstr "Criar acesso" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4527,6 +4594,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4800,7 +4875,7 @@ msgid "Change My Preferences" msgstr "Alterar as minhas preferencias" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Nome de modelo inválido na definição da acção" @@ -4997,9 +5072,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorar" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Estados Unidos" #. module: base #: view:ir.module.module:0 @@ -5024,7 +5099,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Módulo %s: Certificado de qualidade inválido" @@ -5061,9 +5136,10 @@ msgid "Nigeria" msgstr "Nigéria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5085,12 +5161,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Valores para Tipo de Evento" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5229,6 +5299,13 @@ msgstr "" "está vazio, o OpenERP calculará a visibilidade baseada nos direitos de " "leitura do objeto relacionado." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5254,7 +5331,7 @@ msgstr "" "não satisfeita: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5431,6 +5508,13 @@ msgstr "Recrutamento" msgid "Reunion (French)" msgstr "Reunião (França)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5438,11 +5522,6 @@ msgstr "Reunião (França)" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "Tem de sair e voltar a entrar, após alterar a palavra-passe." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5454,7 +5533,7 @@ msgid "Solomon Islands" msgstr "Ilhas Salomão" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5470,7 +5549,7 @@ msgid "Waiting" msgstr "A aguardar" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Não pôde carregar o módulo base" @@ -5524,9 +5603,9 @@ msgid "Module Category" msgstr "Módulo categoria" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Estados Unidos" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorar" #. module: base #: report:ir.module.reference.graph:0 @@ -5682,13 +5761,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "O modelo %s não existe!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Não pode eliminar o idioma preferido de um utilizador." @@ -5723,7 +5802,6 @@ msgstr "O núcleo do OpenERP, necessário em todas as instalações." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5742,6 +5820,11 @@ msgstr "Ficheiro PO" msgid "Neutral Zone" msgstr "Zona Neutra" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5752,11 +5835,6 @@ msgstr "Personalizar" msgid "Current" msgstr "Corrente" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5876,7 +5954,7 @@ msgstr "" "criar)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -6038,11 +6116,6 @@ msgstr "Angariação de fundos" msgid "Sequence Codes" msgstr "Codigos das sequências" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6082,6 +6155,12 @@ msgstr "França" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6100,8 +6179,6 @@ msgstr "Afeganistão" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Erro!" @@ -6216,13 +6293,6 @@ msgstr "Nome do serviço" msgid "Pitcairn Island" msgstr "Ilha Pitcairn" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6310,11 +6380,6 @@ msgstr "Outra acções" msgid "Done" msgstr "Concluído" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6403,7 +6468,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "Para" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6508,6 +6573,13 @@ msgstr "" "para a divisa: %s \n" "à data: %s" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6542,6 +6614,11 @@ msgstr "Transições de Saída" msgid "Icon" msgstr "Ícone" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6587,7 +6664,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6612,8 +6689,8 @@ msgid "Child IDs" msgstr "IDs filho" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problema na configuração `Record Id` na acção do servidor!" @@ -6925,9 +7002,9 @@ msgid "Grenada" msgstr "Granada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Activar configuração" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Ilhas Wallis e Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -6963,7 +7040,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "O tamanho do campo nunca pode ser menor que 1 !" @@ -7111,11 +7188,9 @@ msgid "Manufacturing" msgstr "Produção" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Exportar tradução" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comores" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7129,6 +7204,11 @@ msgstr "Acções do servidor" msgid "Cancel Install" msgstr "Cancelar instalação" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7145,7 +7225,7 @@ msgid "Copy Object" msgstr "Copiar objeto" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7236,13 +7316,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Ref. do utilizador" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Aviso!" @@ -7388,7 +7476,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7427,13 +7515,6 @@ msgstr "Ver referencia" msgid "Selection" msgstr "Selecção" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7572,6 +7653,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7592,6 +7681,12 @@ msgstr "Painéis" msgid "Binary File or external URL" msgstr "Ficheiro binário ou URL externo" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7617,6 +7712,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7685,11 +7789,6 @@ msgstr "Data de activação" msgid "Croatian / hrvatski jezik" msgstr "Croata / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7706,9 +7805,9 @@ msgid "The code of the country must be unique !" msgstr "O código do país tem de ser único!" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Não instalavel" #. module: base #: view:res.partner.category:0 @@ -7749,9 +7848,12 @@ msgid "Menu Action" msgstr "Menu acção" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Ilhas Faroé" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7882,6 +7984,14 @@ msgid "" msgstr "" "Nome do método do objecto a ser evocado, quando o planificador for executado." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7893,7 +8003,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7983,7 +8093,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8091,7 +8200,7 @@ msgid "Account No." msgstr "Nº da conta" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "O idioma base \"en_US\" não pode ser eliminado!" @@ -8192,7 +8301,7 @@ msgid "Auto-Refresh" msgstr "Auto-refrescar" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8204,11 +8313,6 @@ msgstr "" msgid "Diagram" msgstr "Diagrama" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Ilhas Wallis e Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8266,14 +8370,17 @@ msgid "Turkmenistan" msgstr "Turquemenistão" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8282,7 +8389,7 @@ msgstr "Turquemenistão" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8330,6 +8437,11 @@ msgstr "Tanzânia" msgid "Danish / Dansk" msgstr "Dinamarquês / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8340,11 +8452,6 @@ msgstr "Ilhas do Natal" msgid "Other Actions Configuration" msgstr "Outras configurações de acções" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Não instalavel" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8538,12 +8645,13 @@ msgid "Luxembourg" msgstr "Luxemburgo" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Baixo" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "O tipo de acção ou botão no lado do cliente que desencadeará a acção" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Erro ! Você não pode criar menus recursivamente." @@ -8714,7 +8822,7 @@ msgid "View Auto-Load" msgstr "Ver auto-carregamento" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Não pode eliminar o campo '%s'!" @@ -8755,7 +8863,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8913,9 +9021,9 @@ msgid "Czech / Čeština" msgstr "Checo / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Procura avançada" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Activar configuração" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9050,6 +9158,12 @@ msgstr "" msgid "Portrait" msgstr "Retrato" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9219,7 +9333,7 @@ msgid "Account Owner" msgstr "Dono da conta" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9614,6 +9728,9 @@ msgstr "Russo / русский язык" #~ msgid "Module Repository" #~ msgstr "Repositorio do módulo" +#~ msgid "Field Selection" +#~ msgstr "Selecção de campo" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "Grupos são usados para definir direitos de acesso em cada ecrã e menu" @@ -10056,6 +10173,9 @@ msgstr "Russo / русский язык" #~ msgid "Document" #~ msgstr "Documento" +#~ msgid "Advanced Search" +#~ msgstr "Procura avançada" + #~ msgid "Titles" #~ msgstr "Títulos" @@ -10824,6 +10944,9 @@ msgstr "Russo / русский язык" #~ msgid "Icon File" #~ msgstr "Ficheiro do Ícone" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "Tem de sair e voltar a entrar, após alterar a palavra-passe." + #~ msgid "" #~ "Would your payment have been carried out after this mail was sent, please " #~ "consider the present one as void. Do not hesitate to contact our accounting " @@ -10836,6 +10959,21 @@ msgstr "Russo / русский язык" #~ msgid "Your maintenance contract is already subscribed in the system !" #~ msgstr "O seu contrato de manutenção já se encontra registado no sistema!" +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Lista todos os módulos certificados disponíveis para configurar o seu " +#~ "OpenERP. Módulos instalados são marcados como tal. Pode procurar por um " +#~ "módulo específico usando seu nome ou descrição. Não é necessário instalar um " +#~ "módulo de cada vez, pode instalar vários módulos clicando no botão agendar " +#~ "nesta lista. Então, aplique todas as atualizações agendadas de uma só vez a " +#~ "partir do menu \"Ação\"." + #~ msgid "maintenance contract modules" #~ msgstr "Módulos do contracto de manutenção" diff --git a/bin/addons/base/i18n/pt_BR.po b/bin/addons/base/i18n/pt_BR.po index 067f6369666..6444fd71eba 100644 --- a/bin/addons/base/i18n/pt_BR.po +++ b/bin/addons/base/i18n/pt_BR.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-11 01:48+0000\n" -"Last-Translator: Guilherme Santos \n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" +"PO-Revision-Date: 2011-01-11 10:16+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:55+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:52+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -113,7 +113,7 @@ msgid "Created Views" msgstr "Views Criadas" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " @@ -122,6 +122,14 @@ msgstr "" "Você não pode escrever neste documento (%s) ! Tenha certeza que seu usuário " "pertence a um destes grupos: %s." +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -133,9 +141,18 @@ msgid "Target Window" msgstr "Janela de Destino" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Coreia do Sul" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "Informação!" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -348,7 +365,7 @@ msgid "Netherlands Antilles" msgstr "Antílhas Holandesas" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -393,6 +410,11 @@ msgstr "O método de leitura não está implementado neste objeto !" msgid "This ISO code is the name of po files to use for translations" msgstr "Este codigo ISO é o nome do arquivo po usado nas traduções" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Seu sistema será atualizado." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -464,7 +486,7 @@ msgid "Miscellaneous Suppliers" msgstr "Fornecedores diversos" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Campos customizados precisam ter nomes que começam com 'x_'!" @@ -811,6 +833,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "Painel de Recursos Humanps" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -827,6 +855,11 @@ msgstr "XML inválido para Arquitetura da View" msgid "Cayman Islands" msgstr "Ilhas Cayman" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Coreia do Sul" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -939,6 +972,12 @@ msgstr "Nome do Módulo" msgid "Marshall Islands" msgstr "Ilhas Marshall" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -972,6 +1011,12 @@ msgid "" msgstr "" "Regras específicas do grupo são combinados com um operador lógico AND" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1114,13 +1159,23 @@ msgstr "Principal caminho para o relatório" msgid "Reports" msgstr "Relatórios" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Se definido como verdadeiro, a ação não será exibida na barra de ferramentas " +"a direita." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Na Criação" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1167,9 +1222,11 @@ msgid "Wizard Info" msgstr "Info. do Assistente" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comores" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1241,23 +1298,6 @@ msgstr "ID do anexo" msgid "Day: %(day)s" msgstr "Dia: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Lista todos os módulo certificados disponíveis para configurar seu OpenERP. " -"Módulos instalados são marcados como tal. Você pode procurar por um módulo " -"específico usando seu nome ou descrição. Não é necessário instalar um módulo " -"por vez, você pode instalar vários módulos clicando no botão agendar nesta " -"lista. Então, aplique todas as atualizações agendadas de uma só vez a partir " -"do menu Ação." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1369,7 +1409,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Não posso remover o usuário root!" @@ -1381,7 +1421,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (cópia)" @@ -1561,11 +1601,6 @@ msgstr "" "Exemplo: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "Nova Senha" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1682,6 +1717,11 @@ msgstr "Campo" msgid "Groups (no group = global)" msgstr "Grupos (Sem grupo = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Ilhas Feroé" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1715,7 +1755,7 @@ msgid "Madagascar" msgstr "Madadascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1910,6 +1950,12 @@ msgid "Messages" msgstr "Mensagens" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1976,6 +2022,11 @@ msgstr "Ilhas Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "Coreâno (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -2013,6 +2064,11 @@ msgstr "Impossível atualizar o módulo '%s'. Ele não está instalado." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2228,6 +2284,13 @@ msgstr "Espanhol (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2312,6 +2375,7 @@ msgstr "Mapeamento de campos." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Módulo" @@ -2380,7 +2444,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Especifique uma ação a ser disparada !" @@ -2538,11 +2602,6 @@ msgstr "Erro ! voce não pode criar categorias recursivas." msgid "%x - Appropriate date representation." msgstr "%x - Representação apropriada para data." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2891,11 +2950,6 @@ msgstr "Setor de Telecom" msgid "Trigger Object" msgstr "Objeto a disparar" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "Digite novamente a nova senha para confirmação." - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2934,8 +2988,8 @@ msgid "Sequence Type" msgstr "Tipo de Sequencia" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2960,6 +3014,7 @@ msgstr "Restrição de SQL" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Modelo" @@ -3073,10 +3128,9 @@ msgstr "" "Voce tentou remover um módulo que esta instalado ou poderá ser instalado" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "O tipo de ação ou butão no lado cliente que irá disparar a ação." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Os módulos selecionados foram instalados / atualizados" #. module: base #: selection:base.language.install,lang:0 @@ -3096,6 +3150,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Workflows" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3137,7 +3196,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Você não pode remover este modelo '%s' !" @@ -3235,7 +3294,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3369,11 +3428,6 @@ msgstr "" msgid "System update completed" msgstr "Atualização do Sistema Concluida" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr ": Seleção de Campo" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3411,14 +3465,10 @@ msgid "Apply For Delete" msgstr "Aplique para excluir" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Se definido como verdadeiro, a ação não será exibida na barra de ferramentas " -"a direita." #. module: base #: view:ir.attachment:0 @@ -3625,6 +3675,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3670,9 +3728,11 @@ msgid "Starter Partner" msgstr "Parceiro Inicial" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Seu sistema será atualizado." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3843,7 +3903,7 @@ msgid "Flow Start" msgstr "Iniciar fluxo" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3876,9 +3936,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe (em francês)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Erro de usuário" @@ -3946,6 +4006,13 @@ msgstr "Configuração de ação" msgid "Partner Addresses" msgstr "Endereços do parceiro" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4107,11 +4174,6 @@ msgstr "Histórico das mensagens" msgid "Menus" msgstr "Menus" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Os módulos selecionados foram instalados / atualizados" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4306,6 +4368,11 @@ msgstr "" "Forneça o nome do campo onde o id do registro será armazenado depois da " "operação de criação. Se omitido não será possível rastrear o novo registro." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4357,6 +4424,11 @@ msgstr "Quer limpar Ids? " msgid "Serial Key" msgstr "Chave de Registro" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Baixo" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4387,11 +4459,6 @@ msgstr "Empregado" msgid "Create Access" msgstr "Criar Acesso" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "Senha Atual" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4594,6 +4661,14 @@ msgstr "" "módulos, mas você pode optar por reiniciar alguns assistentes manualmente " "neste menu." +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4868,7 +4943,7 @@ msgid "Change My Preferences" msgstr "Alterar Preferências" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Nome do modelo inválido na definição da ação." @@ -5068,9 +5143,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorar" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Estados Unidos" #. module: base #: view:ir.module.module:0 @@ -5095,7 +5170,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Módulo %s: Certificado de qualidad inválido" @@ -5132,9 +5207,10 @@ msgid "Nigeria" msgstr "Nigéria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5156,12 +5232,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Valores para Tipos de evento" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5303,6 +5373,13 @@ msgstr "" "campo está em branco, OpenERP calculará a visibilidade baseada nos direitos " "de leitura do objeto relacionado" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5328,7 +5405,7 @@ msgstr "" "não satisfeita: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5510,6 +5587,13 @@ msgstr "Recrutamento" msgid "Reunion (French)" msgstr "Reunião" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5517,11 +5601,6 @@ msgstr "Reunião" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "Você deve se logar novamente após alterar sua senha." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5533,7 +5612,7 @@ msgid "Solomon Islands" msgstr "Ilhas Salomão" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5549,7 +5628,7 @@ msgid "Waiting" msgstr "Aguardando" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Não é possivel carregar o módulo Base." @@ -5603,9 +5682,9 @@ msgid "Module Category" msgstr "Categoria de Módulos" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Estados Unidos" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorar" #. module: base #: report:ir.module.reference.graph:0 @@ -5760,13 +5839,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Modelo %s não existe!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Você não pode excluir a linguagem de preferida do usuário!" @@ -5801,7 +5880,6 @@ msgstr "O kernel do OpenERP, necessário para qualquer instalação." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5820,6 +5898,11 @@ msgstr "Arquivo PO" msgid "Neutral Zone" msgstr "Zona Neutra" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5830,11 +5913,6 @@ msgstr "Personalizar" msgid "Current" msgstr "Atual" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "Entre uma nova senha" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5951,7 +6029,7 @@ msgstr "" "Selecione o objeto sobre o qual a ação irá atuar (ler, escrever, criar)" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Favor especifique as opções do servidor --email-form !" @@ -6110,11 +6188,6 @@ msgstr "Arrecadação de Fundos (contribuições)" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6155,6 +6228,12 @@ msgstr "França" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6173,8 +6252,6 @@ msgstr "Afeganistão" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Erro!" @@ -6288,13 +6365,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "Ilhas Pitcairn" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6378,11 +6448,6 @@ msgstr "Outras Ações" msgid "Done" msgstr "Concluído" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6471,7 +6536,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6573,6 +6638,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6606,6 +6678,11 @@ msgstr "Transições de saida" msgid "Icon" msgstr "Ícone" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6651,7 +6728,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6672,8 +6749,8 @@ msgid "Child IDs" msgstr "IDs filhos" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Prbolemas na configuracao do 'id do registro' na ação do servidor!" @@ -6986,9 +7063,9 @@ msgid "Grenada" msgstr "Granada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Configuração de Gatilhos" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Ilhas Wallis e Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -7024,7 +7101,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -7172,11 +7249,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comores" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7190,6 +7265,11 @@ msgstr "Ações do Servidor" msgid "Cancel Install" msgstr "Cancelar Instalação" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7206,7 +7286,7 @@ msgid "Copy Object" msgstr "Copiar Objeto" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7295,13 +7375,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Ref. Usuário" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Aviso !" @@ -7447,7 +7535,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7485,13 +7573,6 @@ msgstr "Ref. de visão" msgid "Selection" msgstr "Seleção" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7628,6 +7709,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7648,6 +7737,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7673,6 +7768,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7742,11 +7846,6 @@ msgstr "Data de disparo" msgid "Croatian / hrvatski jezik" msgstr "Croatian / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7763,9 +7862,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Não instalado" #. module: base #: view:res.partner.category:0 @@ -7806,9 +7905,12 @@ msgid "Menu Action" msgstr "Menu Ação" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Ilhas Feroé" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7936,6 +8038,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7947,7 +8057,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -8040,7 +8150,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8148,7 +8257,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8249,7 +8358,7 @@ msgid "Auto-Refresh" msgstr "Auto-atualizar" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8259,11 +8368,6 @@ msgstr "" msgid "Diagram" msgstr "Diagrama" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Ilhas Wallis e Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8321,14 +8425,17 @@ msgid "Turkmenistan" msgstr "Turcomenistão" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8337,7 +8444,7 @@ msgstr "Turcomenistão" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8385,6 +8492,11 @@ msgstr "Tanzânia" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8395,11 +8507,6 @@ msgstr "Ilhas Natal" msgid "Other Actions Configuration" msgstr "Outras ações de configuração" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Não instalado" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8593,12 +8700,13 @@ msgid "Luxembourg" msgstr "Luxemburgo" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Baixo" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "O tipo de ação ou butão no lado cliente que irá disparar a ação." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Erro ! Você não pode criar menu recursivo." @@ -8769,7 +8877,7 @@ msgid "View Auto-Load" msgstr "Auto-carregar Visão" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8810,7 +8918,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8968,9 +9076,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Pesquisa avançada" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Configuração de Gatilhos" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9105,6 +9213,12 @@ msgstr "" msgid "Portrait" msgstr "Retrato" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9274,7 +9388,7 @@ msgid "Account Owner" msgstr "Titular da Conta" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9766,6 +9880,9 @@ msgstr "Russo / русский язык" #~ msgid "wizard.module.lang.export" #~ msgstr "wizard.module.lang.export" +#~ msgid "Field Selection" +#~ msgstr ": Seleção de Campo" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "Grupos são usados para definir direitos de acesso a cada tela e menu." @@ -10325,6 +10442,9 @@ msgstr "Russo / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Pesquisa avançada" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -10784,9 +10904,6 @@ msgstr "Russo / русский язык" #~ msgid "Result (/10)" #~ msgstr "Resultado (/10)" -#~ msgid "Warning!" -#~ msgstr "Informação!" - #~ msgid "Uninstalled" #~ msgstr "Desinstalado" @@ -11344,8 +11461,38 @@ msgstr "Russo / русский язык" #~ "\"\n" #~ " 'aos usuários" +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Lista todos os módulo certificados disponíveis para configurar seu OpenERP. " +#~ "Módulos instalados são marcados como tal. Você pode procurar por um módulo " +#~ "específico usando seu nome ou descrição. Não é necessário instalar um módulo " +#~ "por vez, você pode instalar vários módulos clicando no botão agendar nesta " +#~ "lista. Então, aplique todas as atualizações agendadas de uma só vez a partir " +#~ "do menu Ação." + #~ msgid "Web Icons" #~ msgstr "Ícones Web" #~ msgid "Icon File" #~ msgstr "Arquivo de Ícone" + +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "Você deve se logar novamente após alterar sua senha." + +#~ msgid "New Password" +#~ msgstr "Nova Senha" + +#~ msgid "Enter the new password again for confirmation." +#~ msgstr "Digite novamente a nova senha para confirmação." + +#~ msgid "Current Password" +#~ msgstr "Senha Atual" + +#~ msgid "Enter the new password." +#~ msgstr "Entre uma nova senha" diff --git a/bin/addons/base/i18n/ro.po b/bin/addons/base/i18n/ro.po index 6b0780758b5..bc8fcd92a61 100644 --- a/bin/addons/base/i18n/ro.po +++ b/bin/addons/base/i18n/ro.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-10 07:53+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:07+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:50+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Afisari Create" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Fereastra tinta" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Coreea de Sud" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -346,7 +363,7 @@ msgid "Netherlands Antilles" msgstr "Antilele Olandeze" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -390,6 +407,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "Codul ISO este numele fisierelor po folosite in traduceri" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Sistemul va fi actualizat." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -460,7 +482,7 @@ msgid "Miscellaneous Suppliers" msgstr "Furnizori diverşi" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Câmpurile client trebuie să aibă la inceputul numelui 'x_' !" @@ -808,6 +830,12 @@ msgstr "Guam (SUA)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -824,6 +852,11 @@ msgstr "Fișierul XML pentru arhitectura planului vizual nu este valid!" msgid "Cayman Islands" msgstr "Insulele Cayman" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Coreea de Sud" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -933,6 +966,12 @@ msgstr "Numele modulului" msgid "Marshall Islands" msgstr "Insulele Marshall" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -961,6 +1000,12 @@ msgid "" msgstr "" "2. Regulile specifice unui grup pot fi combinate cu operatorul logic AND" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1099,13 +1144,21 @@ msgstr "" msgid "Reports" msgstr "Rapoarte" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "In creare" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1150,9 +1203,11 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comore" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Export traducere" #. module: base #: help:res.log,secondary:0 @@ -1209,17 +1264,6 @@ msgstr "ID-ul atașat" msgid "Day: %(day)s" msgstr "Ziua: %(zi)le" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1332,7 +1376,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Nu este posibilă ştergerea utilizatorului 'root' !" @@ -1344,7 +1388,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (copy)" @@ -1526,11 +1570,6 @@ msgstr "" "Exemplu: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1641,6 +1680,11 @@ msgstr "Câmp" msgid "Groups (no group = global)" msgstr "Grupuri (dacă nu specificați nici unul, înseamnă 'global')" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Insulele Feroe" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1674,7 +1718,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1866,6 +1910,12 @@ msgid "Messages" msgstr "Mesaje" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1927,6 +1977,11 @@ msgstr "Insula Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "Coreană (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1964,6 +2019,11 @@ msgstr "Modulul '%s' nu poate fi actualizat. Nu este instalat." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2174,6 +2234,13 @@ msgstr "Spaniolă (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2258,6 +2325,7 @@ msgstr "Mapări câmpuri" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Modul" @@ -2326,7 +2394,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Specificaţi o acţiune care să fie lansată !" @@ -2482,11 +2550,6 @@ msgstr "Eroare ! Nu puteti crea categorii recursive." msgid "%x - Appropriate date representation." msgstr "%x- Reprezentarea adecvată a datei" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2818,11 +2881,6 @@ msgstr "Sectorul de telecomunicaţii" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2861,9 +2919,9 @@ msgid "Sequence Type" msgstr "Tipul secvenţei" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2887,6 +2945,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -2996,9 +3055,8 @@ msgstr "" "instalat" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -3019,6 +3077,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3060,7 +3123,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Nu puteti inlatura modelul '%s' !" @@ -3158,7 +3221,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3287,11 +3350,6 @@ msgstr "" msgid "System update completed" msgstr "Actualizarea sistemului este completă" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Selecţie câmpuri" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3329,11 +3387,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3533,6 +3589,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3574,9 +3638,11 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Sistemul va fi actualizat." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3744,7 +3810,7 @@ msgid "Flow Start" msgstr "Flux - Start" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3776,9 +3842,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Eroare utilizator" @@ -3843,6 +3909,13 @@ msgstr "" msgid "Partner Addresses" msgstr "Adresele partenerului" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4004,11 +4077,6 @@ msgstr "Istoric de cereri" msgid "Menus" msgstr "Meniuri" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4199,6 +4267,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4250,6 +4323,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Scăzut" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4280,11 +4358,6 @@ msgstr "Angajat" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4481,6 +4554,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4746,7 +4827,7 @@ msgid "Change My Preferences" msgstr "Modificare preferinţe" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Nume invalid de model în definirea acțiunii." @@ -4939,9 +5020,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorare" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Statele Unite" #. module: base #: view:ir.module.module:0 @@ -4966,7 +5047,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modul %s: Certificat de calitate invalid" @@ -5003,9 +5084,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5027,12 +5109,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Valori posibile pentru tipul evenimentului" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5160,6 +5236,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5183,7 +5266,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5360,6 +5443,13 @@ msgstr "Recrutare" msgid "Reunion (French)" msgstr "Reunion (Franceză)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5367,13 +5457,6 @@ msgstr "Reunion (Franceză)" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" -"După schimbarea parolei este necesar să vă deconectaţi şi apoi să vă " -"reconectaţi." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5385,7 +5468,7 @@ msgid "Solomon Islands" msgstr "Insulele Solomon" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5401,7 +5484,7 @@ msgid "Waiting" msgstr "În așteptare" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Modulul de bază nu a putut fi încărcat" @@ -5455,9 +5538,9 @@ msgid "Module Category" msgstr "Categoria modulului" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Statele Unite" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorare" #. module: base #: report:ir.module.reference.graph:0 @@ -5608,13 +5691,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Modelul %s nu există !" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5649,7 +5732,6 @@ msgstr "Nucleul OpenERP , necesar pentru toate instalarile." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5668,6 +5750,11 @@ msgstr "Fişier PO" msgid "Neutral Zone" msgstr "Zona Neutră" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Hindi / हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5678,11 +5765,6 @@ msgstr "" msgid "Current" msgstr "Curent" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5797,7 +5879,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5956,11 +6038,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5998,6 +6075,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6016,8 +6099,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6129,13 +6210,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6219,11 +6293,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6312,7 +6381,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6414,6 +6483,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6448,6 +6524,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6493,7 +6574,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6516,8 +6597,8 @@ msgid "Child IDs" msgstr "ID- urile copil" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6829,9 +6910,9 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Insulele Wallis şi Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -6867,7 +6948,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Lungimea acestui câmp trebui să fie cel puțin 1 !" @@ -7015,11 +7096,9 @@ msgid "Manufacturing" msgstr "Producție" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Export traducere" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comore" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7033,6 +7112,11 @@ msgstr "Acțiuni server" msgid "Cancel Install" msgstr "Anularea instalării" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7049,7 +7133,7 @@ msgid "Copy Object" msgstr "Copiere obiect" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7142,13 +7226,21 @@ msgstr "" "Numărul care indică de câte ori este apelată funcția.\n" "O valoare negativă indică faptul că nu există nici o limită" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Ref. utilisator" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Atenţie !" @@ -7294,7 +7386,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Criterii de căutare invalide" @@ -7333,13 +7425,6 @@ msgstr "Referinta view" msgid "Selection" msgstr "Selecție" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7478,6 +7563,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "Norvegiană Bokmål / Norsk bokmål" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7498,6 +7591,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "Fișier binar sau URL extern" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7523,6 +7622,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "Occitan (FR, post 1500) / Occitan" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7589,11 +7697,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "Croată / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7610,9 +7713,9 @@ msgid "The code of the country must be unique !" msgstr "Codul țării trebuie să fie unic !" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Nu poate fi instalat" #. module: base #: view:res.partner.category:0 @@ -7653,9 +7756,12 @@ msgid "Menu Action" msgstr "Acţiune meniu" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Insulele Feroe" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7783,6 +7889,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7794,7 +7908,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7884,7 +7998,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7992,7 +8105,7 @@ msgid "Account No." msgstr "Nr. cont" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Limba 'en_US' nu poate fi ștearsă !" @@ -8093,7 +8206,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8103,11 +8216,6 @@ msgstr "" msgid "Diagram" msgstr "Diagramă" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Insulele Wallis şi Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8165,14 +8273,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8181,7 +8292,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8229,6 +8340,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "Daneză / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8239,11 +8355,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Nu poate fi instalat" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8435,12 +8546,13 @@ msgid "Luxembourg" msgstr "Luxemburg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Scăzut" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8609,7 +8721,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Câmpul '%s' nu poate fi șters !" @@ -8652,7 +8764,7 @@ msgstr "" "(GetText Portable Objects)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8810,9 +8922,9 @@ msgid "Czech / Čeština" msgstr "Cehă / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Căutare avansată" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8940,6 +9052,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9110,7 +9228,7 @@ msgid "Account Owner" msgstr "Titularul contului" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9482,6 +9600,12 @@ msgstr "Rusă / русский язык" #~ msgid "Unvalid" #~ msgstr "Invalid" +#~ msgid "Advanced Search" +#~ msgstr "Căutare avansată" + +#~ msgid "Field Selection" +#~ msgstr "Selecţie câmpuri" + #~ msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." #~ msgstr "%H - Ora (de tip 24) ca număr zecimal [00,23]." @@ -9509,6 +9633,11 @@ msgstr "Rusă / русский язык" #~ msgid "Olivier Dony's tweets" #~ msgstr "Olivier Dony's tweets" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "" +#~ "După schimbarea parolei este necesar să vă deconectaţi şi apoi să vă " +#~ "reconectaţi." + #~ msgid "Partial" #~ msgstr "Parțial" diff --git a/bin/addons/base/i18n/ru.po b/bin/addons/base/i18n/ru.po index e2bff2b2767..32f3496a08f 100644 --- a/bin/addons/base/i18n/ru.po +++ b/bin/addons/base/i18n/ru.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 19:19+0000\n" -"Last-Translator: serg_alban \n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" +"PO-Revision-Date: 2011-01-11 08:59+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:50+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Созданные виды" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Окно назначения" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Южная Корея" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -344,7 +361,7 @@ msgid "Netherlands Antilles" msgstr "Нидерландские Антиллы" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -388,6 +405,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "Этот код ISO является именем файлов перевода в формате po" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Ваша система будет обновлена." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -458,7 +480,7 @@ msgid "Miscellaneous Suppliers" msgstr "Прочие поставщики" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Названия пользовательских полей должны начинаться с 'x_' !" @@ -795,6 +817,12 @@ msgstr "Территория Гуам (США)" msgid "Human Resources Dashboard" msgstr "Инф. панель отдела кадров" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -811,6 +839,11 @@ msgstr "Неправильный XML для просмотра архитект msgid "Cayman Islands" msgstr "Каймановы острова" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Южная Корея" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -920,6 +953,12 @@ msgstr "Название модуля" msgid "Marshall Islands" msgstr "Маршалловы Острова" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -947,6 +986,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1082,13 +1127,23 @@ msgstr "" msgid "Reports" msgstr "Отчёты" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Если Истина, действие не будет отображаться на правой панели инструментов " +"формы." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "При создании" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1133,9 +1188,11 @@ msgid "Wizard Info" msgstr "Информация мастера" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Коморские Острова" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Экспорт переводов" #. module: base #: help:res.log,secondary:0 @@ -1204,17 +1261,6 @@ msgstr "Вложенный ID" msgid "Day: %(day)s" msgstr "Дней: %(day)" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1326,7 +1372,7 @@ msgid "Formula" msgstr "Формула" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Невозможно удалить суперпользователя!" @@ -1338,7 +1384,7 @@ msgstr "Малави" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (копия)" @@ -1518,11 +1564,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "Новый пароль" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1631,6 +1672,11 @@ msgstr "Поле" msgid "Groups (no group = global)" msgstr "Группы (нет групп = глобально)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Фарерские острова" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1664,7 +1710,7 @@ msgid "Madagascar" msgstr "Мадагаскар" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1860,6 +1906,12 @@ msgid "Messages" msgstr "Сообщения" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1921,6 +1973,11 @@ msgstr "Остров Норфолк" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1958,6 +2015,11 @@ msgstr "Невозможно обновить модуль '%s'. Он не ус msgid "Cuba" msgstr "Куба" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "События партнера" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2168,6 +2230,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2252,6 +2321,7 @@ msgstr "Отображения полей." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Модуль" @@ -2320,7 +2390,7 @@ msgid "Mayotte" msgstr "Майотта" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Пожалуйста, укажите действие для запуска!" @@ -2475,11 +2545,6 @@ msgstr "Ошибка ! Невозможно создать рекурсивну msgid "%x - Appropriate date representation." msgstr "%x - Подходящий формат даты." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2819,11 +2884,6 @@ msgstr "Телекоммуникации" msgid "Trigger Object" msgstr "Объект триггер" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2862,8 +2922,8 @@ msgid "Sequence Type" msgstr "Тип последовательности" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2888,6 +2948,7 @@ msgstr "SQL ограничение" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Модель" @@ -2998,12 +3059,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "Вы пытаетесь удалить модуль, который установлен или будет установлен" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "" -"Разновидность действия или кнопка на стороне клиента, которая вызывает " -"действие." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Выбранные модули будут обновлены / установлены !" #. module: base #: selection:base.language.install,lang:0 @@ -3023,6 +3081,11 @@ msgstr "Гватемала" msgid "Workflows" msgstr "Рабочие процессы" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3064,7 +3127,7 @@ msgid "Lesotho" msgstr "Лесото" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Вы не можете удалить модель'%s' !" @@ -3162,7 +3225,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3294,11 +3357,6 @@ msgstr "" msgid "System update completed" msgstr "Обновление системы завершено" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Выбор полей" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3336,14 +3394,10 @@ msgid "Apply For Delete" msgstr "Применить для удаления" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Если Истина, действие не будет отображаться на правой панели инструментов " -"формы." #. module: base #: view:ir.attachment:0 @@ -3542,6 +3596,14 @@ msgstr "" msgid "Montserrat" msgstr "Монсеррат" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3583,9 +3645,11 @@ msgid "Starter Partner" msgstr "Начинающий партнер" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Ваша система будет обновлена." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3755,7 +3819,7 @@ msgid "Flow Start" msgstr "Начало процесса" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3787,9 +3851,9 @@ msgid "Guadeloupe (French)" msgstr "Гваделупа (Франция)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Oшибка пользователя" @@ -3854,6 +3918,13 @@ msgstr "Настройка действий клиента" msgid "Partner Addresses" msgstr "Адреса партнеров" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4015,11 +4086,6 @@ msgstr "История запроса" msgid "Menus" msgstr "Меню" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Выбранные модули будут обновлены / установлены !" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4212,6 +4278,11 @@ msgstr "" "Предусмотрите имя поля, где номер записи хранятся после создания операций. " "Если он пуст, вы не можете отслеживать новые записи." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4263,6 +4334,11 @@ msgstr "Хотите стереть Id`ы ? " msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Низкий" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4293,11 +4369,6 @@ msgstr "Сотрудник" msgid "Create Access" msgstr "Доступ на создание" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4494,6 +4565,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4759,7 +4838,7 @@ msgid "Change My Preferences" msgstr "Изменить мои предпочтения" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Недопустимое имя модели в определении действия" @@ -4959,9 +5038,9 @@ msgid "ir.ui.menu" msgstr "Меню" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Игнорировать" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Соединённые Штаты Америки" #. module: base #: view:ir.module.module:0 @@ -4986,7 +5065,7 @@ msgid "ir.server.object.lines" msgstr "События сервера" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Модуль %s: Недействительный сертификат качества" @@ -5023,9 +5102,10 @@ msgid "Nigeria" msgstr "Нигерия" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "События партнера" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5047,12 +5127,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Значения для Типа события" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5179,6 +5253,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5204,7 +5285,7 @@ msgstr "" "удовлетворена: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5381,6 +5462,13 @@ msgstr "Наем" msgid "Reunion (French)" msgstr "Реюньон (заморский регион Франции)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5388,11 +5476,6 @@ msgstr "Реюньон (заморский регион Франции)" msgid "Global" msgstr "Глобальный" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "После смены пароля вы должны выйти и зайти снова." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5404,7 +5487,7 @@ msgid "Solomon Islands" msgstr "Соломоновы Острова" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5420,7 +5503,7 @@ msgid "Waiting" msgstr "Ожидание" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Не удалось загрузить базовый модуль" @@ -5474,9 +5557,9 @@ msgid "Module Category" msgstr "Категория модуля" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Соединённые Штаты Америки" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Игнорировать" #. module: base #: report:ir.module.reference.graph:0 @@ -5627,13 +5710,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Модель %s не существует !" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5668,7 +5751,6 @@ msgstr "Ядро OpenERP, необходимо для всех профилей. #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5687,6 +5769,11 @@ msgstr "Файл '.po'" msgid "Neutral Zone" msgstr "Нейтральная зона" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5697,11 +5784,6 @@ msgstr "" msgid "Current" msgstr "Текущий" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5818,7 +5900,7 @@ msgstr "" "создавать)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Пожалуйста, задайте серверу опцию --email-from !" @@ -5979,11 +6061,6 @@ msgstr "Сбор средств" msgid "Sequence Codes" msgstr "Последовательность кодов" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6021,6 +6098,12 @@ msgstr "Франция" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6039,8 +6122,6 @@ msgstr "Афганистан" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Ошибка !" @@ -6155,13 +6236,6 @@ msgstr "Название службы" msgid "Pitcairn Island" msgstr "Острова Питкэрн" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6247,11 +6321,6 @@ msgstr "Прочие действия" msgid "Done" msgstr "Выполнено" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6340,7 +6409,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "Для просмотра официальных переводов начните с этой ссылки:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6445,6 +6514,13 @@ msgstr "" "для валюты: %s \n" "на дату: %s" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6479,6 +6555,11 @@ msgstr "Исходящее перемещение" msgid "Icon" msgstr "Пиктограмма" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6524,7 +6605,7 @@ msgid "Samoa" msgstr "Самоа" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6549,8 +6630,8 @@ msgid "Child IDs" msgstr "Подчиненные идентификаторы" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Проблемы в конфигурации `Record Id` в серверном действии!" @@ -6864,9 +6945,9 @@ msgid "Grenada" msgstr "Гренада" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Настройка триггера" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Острова Уоллис и Футуна" #. module: base #: selection:server.action.create,init,type:0 @@ -6902,7 +6983,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Размер поля никогда не может быть меньше 1 !" @@ -7050,11 +7131,9 @@ msgid "Manufacturing" msgstr "Производство" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Экспорт переводов" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Коморские Острова" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7068,6 +7147,11 @@ msgstr "Действия сервера" msgid "Cancel Install" msgstr "Отмена установки" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7084,7 +7168,7 @@ msgid "Copy Object" msgstr "Копировать объект" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7177,13 +7261,21 @@ msgstr "" "Количество раз вызова функции,\n" "отрицательное значение - не ограничено" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Ссылка на пользователя" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Внимание !" @@ -7329,7 +7421,7 @@ msgid "workflow.triggers" msgstr "События процесса" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Неверные критерии поиска" @@ -7368,13 +7460,6 @@ msgstr "Ссылка на вид" msgid "Selection" msgstr "Выбор" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "Изменить пароль" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7513,6 +7598,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7533,6 +7626,12 @@ msgstr "Информационные панели" msgid "Binary File or external URL" msgstr "Двоичный файл или внешний URL" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7558,6 +7657,15 @@ msgstr "Значения" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7626,11 +7734,6 @@ msgstr "Дата триггера" msgid "Croatian / hrvatski jezik" msgstr "Хорватский / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7647,9 +7750,9 @@ msgid "The code of the country must be unique !" msgstr "Код страны должен быть уникальным !" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Учет времени" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Не устанавливаемый" #. module: base #: view:res.partner.category:0 @@ -7690,9 +7793,12 @@ msgid "Menu Action" msgstr "Меню действий" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Фарерские острова" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7820,6 +7926,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7831,7 +7945,7 @@ msgid "China" msgstr "Китай" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7923,7 +8037,6 @@ msgid "ltd" msgstr "ООО" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8031,7 +8144,7 @@ msgid "Account No." msgstr "Счет номер" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Базовый язык 'en_US' нельзя удалить !" @@ -8132,7 +8245,7 @@ msgid "Auto-Refresh" msgstr "Автообновление" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8142,11 +8255,6 @@ msgstr "" msgid "Diagram" msgstr "Диаграмма" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Острова Уоллис и Футуна" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8204,14 +8312,17 @@ msgid "Turkmenistan" msgstr "Туркменистан" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8220,7 +8331,7 @@ msgstr "Туркменистан" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8268,6 +8379,11 @@ msgstr "Танзания" msgid "Danish / Dansk" msgstr "Датский/Данск" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8278,11 +8394,6 @@ msgstr "Остров Рождества" msgid "Other Actions Configuration" msgstr "Настройка прочих действий" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Не устанавливаемый" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8476,12 +8587,15 @@ msgid "Luxembourg" msgstr "Люксембург" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Низкий" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"Разновидность действия или кнопка на стороне клиента, которая вызывает " +"действие." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Ошибка ! Нельзя создать зацикленные меню." @@ -8650,7 +8764,7 @@ msgid "View Auto-Load" msgstr "Автозагрузка вида" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Вы не можете удалить поле '%s' !" @@ -8691,7 +8805,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8849,9 +8963,9 @@ msgid "Czech / Čeština" msgstr "Чешский / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Расширенный поиск" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Настройка триггера" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8979,6 +9093,12 @@ msgstr "" msgid "Portrait" msgstr "Книжная" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9149,7 +9269,7 @@ msgid "Account Owner" msgstr "Владелец счёта" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9578,6 +9698,9 @@ msgstr "Русский / русский язык" #~ msgid "Module Repository" #~ msgstr "Хранилище модулей" +#~ msgid "Field Selection" +#~ msgstr "Выбор полей" + #~ msgid "Sale Opportunity" #~ msgstr "возможная продажа" @@ -10025,6 +10148,9 @@ msgstr "Русский / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Расширенный поиск" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -10762,6 +10888,9 @@ msgstr "Русский / русский язык" #~ msgid "terp-go-week" #~ msgstr "terp-go-week" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "После смены пароля вы должны выйти и зайти снова." + #~ msgid "terp-face-plain" #~ msgstr "terp-face-plain" @@ -10786,6 +10915,9 @@ msgstr "Русский / русский язык" #~ msgid "terp-gtk-go-back-ltr" #~ msgstr "terp-gtk-go-back-ltr" +#~ msgid "Time Tracking" +#~ msgstr "Учет времени" + #~ msgid "terp-folder-green" #~ msgstr "terp-folder-green" @@ -10837,3 +10969,9 @@ msgstr "Русский / русский язык" #~ msgid "Access Groups" #~ msgstr "Группы доступа" + +#~ msgid "Change Password" +#~ msgstr "Изменить пароль" + +#~ msgid "New Password" +#~ msgstr "Новый пароль" diff --git a/bin/addons/base/i18n/sk.po b/bin/addons/base/i18n/sk.po index a8abab42dbe..ffe200674ae 100644 --- a/bin/addons/base/i18n/sk.po +++ b/bin/addons/base/i18n/sk.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-19 08:23+0000\n" "Last-Translator: Peter Kohaut \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:07+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:51+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "Vytvorené pohľady" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "Cieľové okno" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Južná Kórea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -346,7 +363,7 @@ msgid "Netherlands Antilles" msgstr "Holandské Antily" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -390,6 +407,11 @@ msgstr "Metóda nie je implementovaná na tento objekt!" msgid "This ISO code is the name of po files to use for translations" msgstr "Tento ISO kód je meno PO súborov použitých pre preklady" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Váš systém bude aktualizovaný" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -460,7 +482,7 @@ msgid "Miscellaneous Suppliers" msgstr "Rôzny dodávatelia" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Vlastné pole musí mať meno, ktoré začína 'x_'!" @@ -802,6 +824,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "Nástenka ľudských zdrojov" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -818,6 +846,11 @@ msgstr "Neplatné XML pre štruktúru pohľadu!" msgid "Cayman Islands" msgstr "Kajmanské Ostrovy" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Južná Kórea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -930,6 +963,12 @@ msgstr "Meno modulu" msgid "Marshall Islands" msgstr "Maršalové ostrovy" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -957,6 +996,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "2. Pravidlá skupiny, ktoré sú spojené pomocou logického AND" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1098,13 +1143,22 @@ msgstr "Adresa súboru hlavného výkazu" msgid "Reports" msgstr "Výkazy" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Ak je povolené, akcia nebude viditeľná v pravom paneli nástrojov pohľadu." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Pri vytvorení" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1150,9 +1204,11 @@ msgid "Wizard Info" msgstr "Informácie sprievodcu" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komory" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Export prekladu" #. module: base #: help:res.log,secondary:0 @@ -1224,22 +1280,6 @@ msgstr "ID prílohy" msgid "Day: %(day)s" msgstr "Deň: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"Zoznam všetkých certifikovaných dostupných modulov pre Vaše OpenERP. Moduly, " -"ktoré sú nainštalované sú takto označené. Možte hľadať konkrétny modul " -"použitím mena alebo popisu modulu. Nemusíte inštalovať každý modul zvlášť, " -"môžte ich nainštalovať naraz kliknutím na tlačidlo naplánovať. Potom " -"kliknite na \"Vykonať naplánované aktualizácie\" z menu akcíí." - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1351,7 +1391,7 @@ msgid "Formula" msgstr "Vzorec" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Nie je možné odstrániť root používateľa!" @@ -1363,7 +1403,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (kópia)" @@ -1542,11 +1582,6 @@ msgstr "" "Príklad: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1663,6 +1698,11 @@ msgstr "Pole" msgid "Groups (no group = global)" msgstr "Skupiny (žiadne skupiny = globálne)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faerské ostrovy" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1696,7 +1736,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1889,6 +1929,12 @@ msgid "Messages" msgstr "Správy" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1953,6 +1999,11 @@ msgstr "Norfolkské ostrovy" msgid "Korean (KR) / 한국어 (KR)" msgstr "Kórejčina (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1990,6 +2041,11 @@ msgstr "Nie je možné aktualizovať modul '%s'. Nie je nainštalovaný." msgid "Cuba" msgstr "Kuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2202,6 +2258,13 @@ msgstr "Španielčina (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2286,6 +2349,7 @@ msgstr "Mapovania pola." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Modul" @@ -2354,7 +2418,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Prosím vyberte akciu na spustenie!" @@ -2511,11 +2575,6 @@ msgstr "Chyba! Nemožte vytvoriť rekurzívne kategórie." msgid "%x - Appropriate date representation." msgstr "%x - Vhodná reprezentácia dátumu." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2860,11 +2919,6 @@ msgstr "Telekom sektor" msgid "Trigger Object" msgstr "Spúštací objekt" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2903,9 +2957,9 @@ msgid "Sequence Type" msgstr "Typ postupnosti" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Hindčina / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2929,6 +2983,7 @@ msgstr "SQL obmedzenie" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -3042,10 +3097,9 @@ msgstr "" "Pokúšate sa odstrániť modul, ktorý je nainštalvaný alebo bude nainštalovaný" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Typ akcie alebo tlačidla na strane klienta, ktorá spustí akcia." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Vybrané moduly boli aktulizované / nainštalované!" #. module: base #: selection:base.language.install,lang:0 @@ -3065,6 +3119,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Pracovné toky" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3106,7 +3165,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Nemôžete odstrániť model '%s'!" @@ -3204,7 +3263,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3336,11 +3395,6 @@ msgstr "" msgid "System update completed" msgstr "Aktualizácia systému je hotová" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Výber pola" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3378,13 +3432,10 @@ msgid "Apply For Delete" msgstr "Žiadať o vymazanie" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Ak je povolené, akcia nebude viditeľná v pravom paneli nástrojov pohľadu." #. module: base #: view:ir.attachment:0 @@ -3588,6 +3639,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3632,9 +3691,11 @@ msgid "Starter Partner" msgstr "Začínajúci partner" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Váš systém bude aktualizovaný" +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3804,7 +3865,7 @@ msgid "Flow Start" msgstr "Začiatie toku" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "Základný modul sa nedá nahrať! (skontrolujte addons-path)" @@ -3836,9 +3897,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Francúzcko)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Používateľská chyba" @@ -3906,6 +3967,13 @@ msgstr "Nastavenie klientskej akcie" msgid "Partner Addresses" msgstr "Partnerove adresy" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4067,11 +4135,6 @@ msgstr "História žiadosti" msgid "Menus" msgstr "Menu" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Vybrané moduly boli aktulizované / nainštalované!" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4264,6 +4327,11 @@ msgstr "" "Zadajte meno poľa, kde bude uložené id záznamu poo jeho vytvorení. Ak je " "prázdne, nebudete môcť sledovať nový záznam." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4315,6 +4383,11 @@ msgstr "Chcete vyčistiť Id? " msgid "Serial Key" msgstr "Sériové číslo" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Nízka" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4345,11 +4418,6 @@ msgstr "Zamestnanec" msgid "Create Access" msgstr "Právo vytvárať" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4546,6 +4614,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4818,7 +4894,7 @@ msgid "Change My Preferences" msgstr "Zmeniť moje predvoľby" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Nesprávne meno modulu v definícii aktivity." @@ -5015,9 +5091,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorovať" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Spojené štáty" #. module: base #: view:ir.module.module:0 @@ -5042,7 +5118,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modul %s: Nesprávny certifikát kvality" @@ -5079,9 +5155,10 @@ msgid "Nigeria" msgstr "Nigéria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5103,12 +5180,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Hodnoty pre typy udalosti" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5244,6 +5315,13 @@ msgstr "" "toto pole prázdne, OpenERP zistí viditeľnosť v závislosti na priradenom " "objekte (právo na čítanie)." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5269,7 +5347,7 @@ msgstr "" "závislosti: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5450,6 +5528,13 @@ msgstr "Nábor" msgid "Reunion (French)" msgstr "Réunion (Francúzsko)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5457,11 +5542,6 @@ msgstr "Réunion (Francúzsko)" msgid "Global" msgstr "Globálny" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "Po zmene hesla sa musíte odhlásiť a potom znova prihlásiť." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5473,7 +5553,7 @@ msgid "Solomon Islands" msgstr "Šalamúnove ostrovy" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5489,7 +5569,7 @@ msgid "Waiting" msgstr "Čaká" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Nie je možné nahrať základný modul" @@ -5543,9 +5623,9 @@ msgid "Module Category" msgstr "Kategória modulu" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Spojené štáty" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorovať" #. module: base #: report:ir.module.reference.graph:0 @@ -5700,13 +5780,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Model %s neexistuje!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Nemôžte vymazať jazyk ktorý je predvoleným jazykom používateľov!" @@ -5741,7 +5821,6 @@ msgstr "Jadro OpenERP, potrebné pre všetky inštalácie." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5760,6 +5839,11 @@ msgstr "PO súbor" msgid "Neutral Zone" msgstr "Neutrálna zóna" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Hindčina / हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5770,11 +5854,6 @@ msgstr "Vlastný" msgid "Current" msgstr "Bežiace" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5892,7 +5971,7 @@ msgstr "" "Vyberte objen nad ktorým bude akcia pracovať (čítať, zapisovať, vytvoriť)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Prosím uveďte prepínač servera --email-from!" @@ -6052,11 +6131,6 @@ msgstr "Navýšenie fondu" msgid "Sequence Codes" msgstr "Kódy postupnosti" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6096,6 +6170,12 @@ msgstr "Francúzsko" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6114,8 +6194,6 @@ msgstr "Afganista, Islamská republika" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Chyba!" @@ -6230,13 +6308,6 @@ msgstr "Meno služby" msgid "Pitcairn Island" msgstr "Pitcairnove ostrovy" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6324,11 +6395,6 @@ msgstr "Iné akcie" msgid "Done" msgstr "Dokončiť" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6421,7 +6487,7 @@ msgstr "" "Ak chcete prezerať oficiálne preklady, možte začať nasledovnými odkazmi:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6526,6 +6592,13 @@ msgstr "" "pre menu: %s \n" "v deň: %s" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6560,6 +6633,11 @@ msgstr "Odchádzajúce prechody" msgid "Icon" msgstr "Ikona" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6605,7 +6683,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6630,8 +6708,8 @@ msgid "Child IDs" msgstr "ID potomka" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problémv nastavení `Record Id` v Akcii servera!" @@ -6954,9 +7032,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Nastavenie spúštača" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis a Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -6994,7 +7072,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Veľkosť pola nemôže byť nikdy menšia ako 1!" @@ -7142,11 +7220,9 @@ msgid "Manufacturing" msgstr "Výroba" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Export prekladu" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komory" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7160,6 +7236,11 @@ msgstr "Akcie servera" msgid "Cancel Install" msgstr "Zrušiť inštaláciu" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7176,7 +7257,7 @@ msgid "Copy Object" msgstr "Kopírovať objekt" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7267,13 +7348,21 @@ msgstr "" "Počeť volaní funkcie,\n" "záporné číslo znamená bez limitu" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Odkaz na používateľa" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Varovanie!" @@ -7419,7 +7508,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Zlé podmienky hľadania" @@ -7458,13 +7547,6 @@ msgstr "Odkaz na pohľad" msgid "Selection" msgstr "Výber" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7603,6 +7685,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "Bokmål / Norsk bokmål" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7623,6 +7713,12 @@ msgstr "Nástenky" msgid "Binary File or external URL" msgstr "Binárny súbor alebo externá URL" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7648,6 +7744,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "Okcitánčina (FR, po 1500) / Occitan" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7716,11 +7821,6 @@ msgstr "Dátum spúštača" msgid "Croatian / hrvatski jezik" msgstr "Chorvátčina / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7737,9 +7837,9 @@ msgid "The code of the country must be unique !" msgstr "Kód krajiny musí byť jedinečný!" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Sledovanie času" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Nenainštalovateľný" #. module: base #: view:res.partner.category:0 @@ -7780,9 +7880,12 @@ msgid "Menu Action" msgstr "Akcia menu" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faerské ostrovy" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7915,6 +8018,14 @@ msgid "" msgstr "" "Meno metódy, ktorá sa zavolá nad objektom, po spustení totho plánovača." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7926,7 +8037,7 @@ msgid "China" msgstr "Čína" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -8024,7 +8135,6 @@ msgid "ltd" msgstr "ltd" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8132,7 +8242,7 @@ msgid "Account No." msgstr "Číslo účtu" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Základný jazyk 'en_US' nemôže byť vymazaný!" @@ -8233,7 +8343,7 @@ msgid "Auto-Refresh" msgstr "Automatická obnova" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "Pole osv_memory sa dá porovnávať iba pomocou operátora = alebo !=." @@ -8243,11 +8353,6 @@ msgstr "Pole osv_memory sa dá porovnávať iba pomocou operátora = alebo !=." msgid "Diagram" msgstr "Diagram" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis a Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8305,14 +8410,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8321,7 +8429,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8369,6 +8477,11 @@ msgstr "Tanzánia" msgid "Danish / Dansk" msgstr "Dánčina / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8379,11 +8492,6 @@ msgstr "Vianočný ostrov" msgid "Other Actions Configuration" msgstr "Iné akcie nastavenia" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Nenainštalovateľný" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8577,12 +8685,13 @@ msgid "Luxembourg" msgstr "Luxemburgsko" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Nízka" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Typ akcie alebo tlačidla na strane klienta, ktorá spustí akcia." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Chyba! Nemôžte vytvoriť rekurzívne Menu." @@ -8757,7 +8866,7 @@ msgid "View Auto-Load" msgstr "Automatické načítanie pohľadu" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Nemôžte odstrániť pole '%s' !" @@ -8800,7 +8909,7 @@ msgstr "" "(GetText Portable Objects)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8962,9 +9071,9 @@ msgid "Czech / Čeština" msgstr "Čeština / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Pokročilé hľadanie" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Nastavenie spúštača" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9101,6 +9210,12 @@ msgstr "" msgid "Portrait" msgstr "Na výšku" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9272,7 +9387,7 @@ msgid "Account Owner" msgstr "Vlastník účtu" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "Varovanie prepnutia spoločnosti" @@ -10065,6 +10180,9 @@ msgstr "Rusčina / русский язык" #~ msgid "Albanian / Shqipëri" #~ msgstr "Albánčina / Shqipëri" +#~ msgid "Field Selection" +#~ msgstr "Výber pola" + #~ msgid "Field child3" #~ msgstr "Pole potomok3" @@ -10109,6 +10227,9 @@ msgstr "Rusčina / русский язык" #~ msgid "Web Icons Hover" #~ msgstr "Vysvietené web ikony" +#~ msgid "Advanced Search" +#~ msgstr "Pokročilé hľadanie" + #~ msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." #~ msgstr "%H - Hodina (24-hodinový formát) ako celé čislo [00,23]." @@ -10139,6 +10260,9 @@ msgstr "Rusčina / русский язык" #~ msgid "Full" #~ msgstr "Plný" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "Po zmene hesla sa musíte odhlásiť a potom znova prihlásiť." + #~ msgid "Partial" #~ msgstr "Čiastočný" @@ -10167,6 +10291,9 @@ msgstr "Rusčina / русский язык" #~ "V menu Dodávatelia, máte prístup ku všetkým informáciám, ktoré sa týkaju " #~ "dodávateľov vrátane histórie udalosti (crm) a ich učtovných vlastností." +#~ msgid "Time Tracking" +#~ msgstr "Sledovanie času" + #~ msgid "_Cancel" #~ msgstr "_Zrušiť" @@ -10247,6 +10374,20 @@ msgstr "Rusčina / русский язык" #~ msgid "Subscribed" #~ msgstr "Prihlásený" +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "Zoznam všetkých certifikovaných dostupných modulov pre Vaše OpenERP. Moduly, " +#~ "ktoré sú nainštalované sú takto označené. Možte hľadať konkrétny modul " +#~ "použitím mena alebo popisu modulu. Nemusíte inštalovať každý modul zvlášť, " +#~ "môžte ich nainštalovať naraz kliknutím na tlačidlo naplánovať. Potom " +#~ "kliknite na \"Vykonať naplánované aktualizácie\" z menu akcíí." + #~ msgid "Could you check your contract information ?" #~ msgstr "Môžte skontrolovať informácie na zmluve?" diff --git a/bin/addons/base/i18n/sl.po b/bin/addons/base/i18n/sl.po index ef004891633..e920d383d0b 100644 --- a/bin/addons/base/i18n/sl.po +++ b/bin/addons/base/i18n/sl.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-01 06:59+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:08+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:51+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Izdelani pogledi" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Ciljno okno" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Južna Koreja" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -341,7 +358,7 @@ msgid "Netherlands Antilles" msgstr "Nizozemski Antili" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -383,6 +400,11 @@ msgstr "Metoda 'read' ni implementirana za ta objekt." msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -453,7 +475,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Nazivi polj po meri se morajo začeti z 'x_'." @@ -788,6 +810,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -804,6 +832,11 @@ msgstr "Neveljaven XML za arhitekturo pogleda." msgid "Cayman Islands" msgstr "Kajmanski otoki" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Južna Koreja" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -910,6 +943,12 @@ msgstr "Ime modula" msgid "Marshall Islands" msgstr "Marshallovi otoki" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -937,6 +976,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1070,13 +1115,21 @@ msgstr "" msgid "Reports" msgstr "Poročila" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Pri ustvarjanju" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1118,9 +1171,11 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komori" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1177,17 +1232,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Dan: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1295,7 +1339,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Ne morete odstaniti uporabnika 'root'." @@ -1307,7 +1351,7 @@ msgstr "Malavi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1478,11 +1522,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1588,6 +1627,11 @@ msgstr "Polje" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Ferski otoki" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1621,7 +1665,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1810,6 +1854,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1871,6 +1921,11 @@ msgstr "Otok Norfolk" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1908,6 +1963,11 @@ msgstr "Modula '%s' ne morete nadgraditi, ker ni nameščen." msgid "Cuba" msgstr "Kuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2116,6 +2176,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2200,6 +2267,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Modul" @@ -2268,7 +2336,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2421,11 +2489,6 @@ msgstr "Napaka! Ne morete ustvariti rekurzivne kategorije." msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2762,11 +2825,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2805,8 +2863,8 @@ msgid "Sequence Type" msgstr "Vrsta zaporedja" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2831,6 +2889,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -2938,9 +2997,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "Poskušate odstraniti modul, ki je nameščen ali bo nameščen" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2961,6 +3019,11 @@ msgstr "Gvatemala" msgid "Workflows" msgstr "Poteki dela" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3002,7 +3065,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Ne morete odstraniti modela '%s'." @@ -3100,7 +3163,7 @@ msgid "API ID" msgstr "ID API" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3229,11 +3292,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Izbira polj" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3271,11 +3329,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3474,6 +3530,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3515,8 +3579,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3685,7 +3751,7 @@ msgid "Flow Start" msgstr "Začetek poteka dela" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3717,9 +3783,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Napaka uporabnika" @@ -3784,6 +3850,13 @@ msgstr "" msgid "Partner Addresses" msgstr "Naslovi partnerja" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3945,11 +4018,6 @@ msgstr "Zgodovina zahteve" msgid "Menus" msgstr "Menuji" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4140,6 +4208,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4191,6 +4264,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Nizka" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4221,11 +4299,6 @@ msgstr "" msgid "Create Access" msgstr "Ustvari dostop" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4422,6 +4495,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4687,7 +4768,7 @@ msgid "Change My Preferences" msgstr "Spremeni moje nastavitve" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Napačno ime modela v definiciji dejanja." @@ -4880,9 +4961,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Združene države" #. module: base #: view:ir.module.module:0 @@ -4907,7 +4988,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4941,9 +5022,10 @@ msgid "Nigeria" msgstr "Nigerija" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -4965,12 +5047,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5096,6 +5172,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5119,7 +5202,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5296,6 +5379,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5303,11 +5393,6 @@ msgstr "" msgid "Global" msgstr "Globalno" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5319,7 +5404,7 @@ msgid "Solomon Islands" msgstr "Solomonovi otoki" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5335,7 +5420,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5389,9 +5474,9 @@ msgid "Module Category" msgstr "Kategorija modulov" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Združene države" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "" #. module: base #: report:ir.module.reference.graph:0 @@ -5542,13 +5627,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5583,7 +5668,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5602,6 +5686,11 @@ msgstr "PO datoteka" msgid "Neutral Zone" msgstr "Nevtralno območje" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5612,11 +5701,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5731,7 +5815,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5890,11 +5974,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5932,6 +6011,12 @@ msgstr "Francija" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5950,8 +6035,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Napaka!" @@ -6063,13 +6146,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6153,11 +6229,6 @@ msgstr "Druge akcije" msgid "Done" msgstr "Zaključeno" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6246,7 +6317,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6348,6 +6419,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6380,6 +6458,11 @@ msgstr "" msgid "Icon" msgstr "Ikona" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6425,7 +6508,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6446,8 +6529,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6759,9 +6842,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Konfiguracija prožilnika" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Otoki Wallis in Futuna" #. module: base #: selection:server.action.create,init,type:0 @@ -6797,7 +6880,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6945,11 +7028,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komori" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -6963,6 +7044,11 @@ msgstr "Strežniške akcije" msgid "Cancel Install" msgstr "Prekliči namestitev" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6979,7 +7065,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7068,13 +7154,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Sklic uporabnika" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Opozorilo!" @@ -7220,7 +7314,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7257,13 +7351,6 @@ msgstr "Sklic pogleda" msgid "Selection" msgstr "Izbor" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7400,6 +7487,14 @@ msgstr "Nedefinirana metoda 'get'" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7420,6 +7515,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7445,6 +7546,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7511,11 +7621,6 @@ msgstr "Sproženo dne" msgid "Croatian / hrvatski jezik" msgstr "Hrvaščina" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7532,9 +7637,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Nenamestljiv" #. module: base #: view:res.partner.category:0 @@ -7575,9 +7680,12 @@ msgid "Menu Action" msgstr "Menuji" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Ferski otoki" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7705,6 +7813,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7716,7 +7832,7 @@ msgid "China" msgstr "Kitajska" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7806,7 +7922,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7914,7 +8029,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8015,7 +8130,7 @@ msgid "Auto-Refresh" msgstr "Samoosvežitev" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8025,11 +8140,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Otoki Wallis in Futuna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8087,14 +8197,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8103,7 +8216,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8151,6 +8264,11 @@ msgstr "Tanzanija" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8161,11 +8279,6 @@ msgstr "Božični otok" msgid "Other Actions Configuration" msgstr "Konfiguracija ostalih akcij" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Nenamestljiv" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8357,12 +8470,13 @@ msgid "Luxembourg" msgstr "Luksemburg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Nizka" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8531,7 +8645,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8572,7 +8686,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8730,9 +8844,9 @@ msgid "Czech / Čeština" msgstr "Češčina" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Napredno iskanje" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Konfiguracija prožilnika" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8860,6 +8974,12 @@ msgstr "" msgid "Portrait" msgstr "Pokočno" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9029,7 +9149,7 @@ msgid "Account Owner" msgstr "Lastnik konta" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9482,6 +9602,9 @@ msgstr "rusko" #~ msgid "wizard.module.lang.export" #~ msgstr "wizard.module.lang.export" +#~ msgid "Field Selection" +#~ msgstr "Izbira polj" + #~ msgid "Sale Opportunity" #~ msgstr "Prodajna priložnost" @@ -9985,6 +10108,9 @@ msgstr "rusko" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Napredno iskanje" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" diff --git a/bin/addons/base/i18n/sq.po b/bin/addons/base/i18n/sq.po index b122da23185..88a11b7434d 100644 --- a/bin/addons/base/i18n/sq.po +++ b/bin/addons/base/i18n/sq.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2009-11-30 08:55+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:45+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,8 +137,17 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -339,7 +356,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -379,6 +396,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -447,7 +469,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -782,6 +804,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -798,6 +826,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -904,6 +937,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -931,6 +970,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1064,13 +1109,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1112,8 +1165,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1171,17 +1226,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1289,7 +1333,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1301,7 +1345,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1470,11 +1514,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1580,6 +1619,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1613,7 +1657,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1801,6 +1845,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1862,6 +1912,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1899,6 +1954,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2107,6 +2167,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2191,6 +2258,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2259,7 +2327,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2412,11 +2480,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2746,11 +2809,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2789,8 +2847,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2815,6 +2873,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2922,9 +2981,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2945,6 +3003,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2984,7 +3047,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3082,7 +3145,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3211,11 +3274,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3253,11 +3311,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3455,6 +3511,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3496,8 +3560,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3666,7 +3732,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3698,9 +3764,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3765,6 +3831,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3926,11 +3999,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4121,6 +4189,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4172,6 +4245,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4202,11 +4280,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4403,6 +4476,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4668,7 +4749,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4861,8 +4942,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4888,7 +4969,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4922,8 +5003,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4946,12 +5028,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5077,6 +5153,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5100,7 +5183,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5277,6 +5360,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5284,11 +5374,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5300,7 +5385,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5316,7 +5401,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5370,8 +5455,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5523,13 +5608,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5564,7 +5649,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5583,6 +5667,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5593,11 +5682,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5712,7 +5796,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5871,11 +5955,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5913,6 +5992,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5931,8 +6016,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6044,13 +6127,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6134,11 +6210,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6227,7 +6298,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6329,6 +6400,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6361,6 +6439,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6406,7 +6489,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6427,8 +6510,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6740,8 +6823,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6778,7 +6861,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6926,10 +7009,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6944,6 +7025,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6960,7 +7046,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7049,13 +7135,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7201,7 +7295,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7238,13 +7332,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7381,6 +7468,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7401,6 +7496,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7426,6 +7527,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7492,11 +7602,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7513,8 +7618,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7556,8 +7661,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7686,6 +7794,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7697,7 +7813,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7787,7 +7903,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7895,7 +8010,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7996,7 +8111,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8006,11 +8121,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8068,14 +8178,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8084,7 +8197,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8132,6 +8245,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8142,11 +8260,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8336,12 +8449,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8510,7 +8624,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8551,7 +8665,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8709,8 +8823,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8839,6 +8953,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9008,7 +9128,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/sr.po b/bin/addons/base/i18n/sr.po index d0d90817bf8..17d5383befa 100644 --- a/bin/addons/base/i18n/sr.po +++ b/bin/addons/base/i18n/sr.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-11-15 08:29+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:07+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:51+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "Kreirani pregledi" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "Ciljni prozor" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Južna Koreja" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -346,7 +363,7 @@ msgid "Netherlands Antilles" msgstr "Holandski Antili" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -390,6 +407,11 @@ msgstr "Metoda za čitanje nije implementirana u ovaj objekat !" msgid "This ISO code is the name of po files to use for translations" msgstr "ISO oznaka je naziv PO datoteke za potrebe prevoda" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Vaš sistem će biti nadograđen." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -461,7 +483,7 @@ msgid "Miscellaneous Suppliers" msgstr "Ostali sitni Dobavljači" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Posebnim poljima naziv mora da počinje sa 'x_' !" @@ -805,6 +827,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "Tabla Ljudskih Resursa" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -821,6 +849,11 @@ msgstr "Neispravan XML za arhitekturu pregleda!" msgid "Cayman Islands" msgstr "Kajmanska ostrva" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Južna Koreja" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -933,6 +966,12 @@ msgstr "Ime Modula" msgid "Marshall Islands" msgstr "Maršalska ostrva" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -962,6 +1001,12 @@ msgstr "" "2, Grupa Specifičnih pravila su kombinovani zajedno sa logičkim AND " "operatorom" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1098,13 +1143,22 @@ msgstr "Putanja fajla glavnog izveštaja" msgid "Reports" msgstr "Izveštaji" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Ako je postavljeno da, akcija neće biti prikazana na desnoj traci obrasca." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Pri kreiranju" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1150,9 +1204,11 @@ msgid "Wizard Info" msgstr "Informacije o čarobnjaku" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komori" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Izvezi Prevod" #. module: base #: help:res.log,secondary:0 @@ -1223,17 +1279,6 @@ msgstr "Priključena šifra" msgid "Day: %(day)s" msgstr "Dan: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1345,7 +1390,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Ne mogu ukloniti root korisnika!" @@ -1357,7 +1402,7 @@ msgstr "Malavi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (kopija)" @@ -1539,11 +1584,6 @@ msgstr "" "Primer:GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1654,6 +1694,11 @@ msgstr "Polje" msgid "Groups (no group = global)" msgstr "Grupe (no group = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Farska ostrva" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1687,7 +1732,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1882,6 +1927,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1943,6 +1994,11 @@ msgstr "Norfolško ostrvo" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1980,6 +2036,11 @@ msgstr "Ne možete da nadogradite modul '%s'. Nije instaliran." msgid "Cuba" msgstr "Kuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2192,6 +2253,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2276,6 +2344,7 @@ msgstr "Mapiranja polja." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Modul" @@ -2344,7 +2413,7 @@ msgid "Mayotte" msgstr "Majote" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Odaberite akciju koju želite da pokrenete !" @@ -2503,11 +2572,6 @@ msgstr "Greška ! Ne možete da napravite rekurzivne kategorije." msgid "%x - Appropriate date representation." msgstr "%x - Adekvatan prikaz datuma." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2848,11 +2912,6 @@ msgstr "Telekom sektor" msgid "Trigger Object" msgstr "Okini Objekt" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2891,8 +2950,8 @@ msgid "Sequence Type" msgstr "Vrsta sekvence" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2917,6 +2976,7 @@ msgstr "SQL ograničenje" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -3027,11 +3087,9 @@ msgstr "" "Pokušavate da uklonite modul koji je instaliran ili koji će biti instaliran" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "" -"Vrsta akcije ili dugmeta na klijentskoj strani koja će pokrenuti akciju." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Selektovani moduli su unapređeni / instalirani !" #. module: base #: selection:base.language.install,lang:0 @@ -3051,6 +3109,11 @@ msgstr "Gvatamala" msgid "Workflows" msgstr "Tokovi posla" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3092,7 +3155,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Ne možete izbrisati model '%s' !" @@ -3190,7 +3253,7 @@ msgid "API ID" msgstr "Šifra API-ja" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3323,11 +3386,6 @@ msgstr "" msgid "System update completed" msgstr "Unapređenje sistema je gotovo" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Odabir polja" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3365,13 +3423,10 @@ msgid "Apply For Delete" msgstr "Prihvati za brisanje" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Ako je postavljeno da, akcija neće biti prikazana na desnoj traci obrasca." #. module: base #: view:ir.attachment:0 @@ -3572,6 +3627,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3617,9 +3680,11 @@ msgid "Starter Partner" msgstr "Početni partner" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Vaš sistem će biti nadograđen." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3787,7 +3852,7 @@ msgid "Flow Start" msgstr "Početak toka" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3819,9 +3884,9 @@ msgid "Guadeloupe (French)" msgstr "Gvadelup (Francuska)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Greška Korisnika" @@ -3889,6 +3954,13 @@ msgstr "Postavke klijentske akcije" msgid "Partner Addresses" msgstr "Adrese partnera" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4050,11 +4122,6 @@ msgstr "Zahteva Istoriju" msgid "Menus" msgstr "Meniji" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Selektovani moduli su unapređeni / instalirani !" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4248,6 +4315,11 @@ msgstr "" "Unesite naziv polja u kome je zapamćena šifra zapisa nakon operacija " "kreiranja. Ako je prazno, ne možete da pratite nove zapise." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4299,6 +4371,11 @@ msgstr "Želiš da očistiš ID-ove? " msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Nizak" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4329,11 +4406,6 @@ msgstr "Zapošljeni" msgid "Create Access" msgstr "Napravi pristup" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4530,6 +4602,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4798,7 +4878,7 @@ msgid "Change My Preferences" msgstr "Izmena postavki" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Neispravno ime modela u definiciji akcije" @@ -4998,9 +5078,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignoriši" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Sjedinjene Američke Države" #. module: base #: view:ir.module.module:0 @@ -5025,7 +5105,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modul %s: Nevaljan certifikat o kvaliteti" @@ -5062,9 +5142,10 @@ msgid "Nigeria" msgstr "Nigerija" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5086,12 +5167,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Vrednosti vrste događaja" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5223,6 +5298,13 @@ msgstr "" "je ovo polje prazno, OpenERP će sam proračunati vidljivost na osnovu " "pristupnih prava čitanja." +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5246,7 +5328,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5423,6 +5505,13 @@ msgstr "Zapošljavanje" msgid "Reunion (French)" msgstr "Reunion (Franciska)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5430,11 +5519,6 @@ msgstr "Reunion (Franciska)" msgid "Global" msgstr "Globalno" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "Morate se odjaviti pa prijaviti ponovo nakon promene lozinke." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5446,7 +5530,7 @@ msgid "Solomon Islands" msgstr "Solomonska ostrva" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5462,7 +5546,7 @@ msgid "Waiting" msgstr "Čekanje" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5516,9 +5600,9 @@ msgid "Module Category" msgstr "Kategorija modula" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Sjedinjene Američke Države" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignoriši" #. module: base #: report:ir.module.reference.graph:0 @@ -5673,13 +5757,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Ne možeš izbrisati jezik koji je kirisnikov izabrani jezik !" @@ -5714,7 +5798,6 @@ msgstr "Jezgro OpenERP-a, potrebno je za sve instalacije." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5733,6 +5816,11 @@ msgstr "PO Datoteka" msgid "Neutral Zone" msgstr "Neutralna Zona" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5743,11 +5831,6 @@ msgstr "Prilagođeno" msgid "Current" msgstr "Trenutni" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5868,7 +5951,7 @@ msgstr "" "kreiranje)." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "Molim Specifiviraj opciju srevera --email-from !" @@ -6030,11 +6113,6 @@ msgstr "Uvećanje Prihoda" msgid "Sequence Codes" msgstr "Sekvence kodova" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6074,6 +6152,12 @@ msgstr "Francuska" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6092,8 +6176,6 @@ msgstr "Avganistan, Islamska država" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Greška !" @@ -6208,13 +6290,6 @@ msgstr "Ime Servisa" msgid "Pitcairn Island" msgstr "Ostrvo Pitkern" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6302,11 +6377,6 @@ msgstr "Druge akcije" msgid "Done" msgstr "Završeno" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6395,7 +6465,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "Za pretragu oficijelnih prevoda, možeš početii sa ovim vezama:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6497,6 +6567,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6531,6 +6608,11 @@ msgstr "Odlazni prelazi" msgid "Icon" msgstr "Ikona" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6576,7 +6658,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6601,8 +6683,8 @@ msgid "Child IDs" msgstr "Šifre potomaka" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem u konfiguraciji 'Šifre zapisa' u serverskoj akciji!" @@ -6920,9 +7002,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Konfiguracija okidača" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Ostrva" #. module: base #: selection:server.action.create,init,type:0 @@ -6959,7 +7041,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -7107,11 +7189,9 @@ msgid "Manufacturing" msgstr "Proizvodnja" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Izvezi Prevod" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komori" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7125,6 +7205,11 @@ msgstr "Akcije servera" msgid "Cancel Install" msgstr "Poništi instalaciju" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7141,7 +7226,7 @@ msgid "Copy Object" msgstr "Kopiraj Objekat" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7232,13 +7317,21 @@ msgstr "" "Koliko je puta funkcija pozvana,\n" "negativni broj označava da nema limita." +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Vezani korisnik" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Upozorenje !" @@ -7384,7 +7477,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7423,13 +7516,6 @@ msgstr "Vezani pregled" msgid "Selection" msgstr "Izbor" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7566,6 +7652,14 @@ msgstr "nedefinisana get metoda !" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7586,6 +7680,12 @@ msgstr "Upravljačke Table" msgid "Binary File or external URL" msgstr "Binarni Fajl ili spoljni URL" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7611,6 +7711,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7679,11 +7788,6 @@ msgstr "Datum okidanja" msgid "Croatian / hrvatski jezik" msgstr "Hrvatski / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7700,9 +7804,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Praćenje vremena" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Ne može da se instalira" #. module: base #: view:res.partner.category:0 @@ -7743,9 +7847,12 @@ msgid "Menu Action" msgstr "Meni akcija" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Farska ostrva" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7878,6 +7985,14 @@ msgid "" "executed." msgstr "Ime metode koja će biti pozvata nad objektom kada se pokrene planer." +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7889,7 +8004,7 @@ msgid "China" msgstr "Kina" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7984,7 +8099,6 @@ msgid "ltd" msgstr "Copy text \t ltd" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8092,7 +8206,7 @@ msgid "Account No." msgstr "Br Naloga" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Osnovni jezik 'en_US' ne može biti izbrisan !" @@ -8193,7 +8307,7 @@ msgid "Auto-Refresh" msgstr "Automatsko osvežavanje" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8203,11 +8317,6 @@ msgstr "" msgid "Diagram" msgstr "Dijagram" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Ostrva" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8265,14 +8374,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8281,7 +8393,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8329,6 +8441,11 @@ msgstr "Tanzanija" msgid "Danish / Dansk" msgstr "Danish / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8339,11 +8456,6 @@ msgstr "Božićna ostrva" msgid "Other Actions Configuration" msgstr "Konfiguracija drugih akcija" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Ne može da se instalira" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8537,12 +8649,14 @@ msgid "Luxembourg" msgstr "Luksemburg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Nizak" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"Vrsta akcije ili dugmeta na klijentskoj strani koja će pokrenuti akciju." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Greška ! Ne možeš kreirati rekursivni meni." @@ -8713,7 +8827,7 @@ msgid "View Auto-Load" msgstr "Automatsko učitavanje pregleda" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Ne možeš ukloniti polje '%s' !" @@ -8756,7 +8870,7 @@ msgstr "" "(GetText Portable Objekti)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8914,9 +9028,9 @@ msgid "Czech / Čeština" msgstr "Češki / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Napredna pretraga" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Konfiguracija okidača" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -9050,6 +9164,12 @@ msgstr "" msgid "Portrait" msgstr "Uspravno" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9221,7 +9341,7 @@ msgid "Account Owner" msgstr "Vlasnik računa" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9826,6 +9946,9 @@ msgstr "Ruski / русский язык" #~ msgid "Field child1" #~ msgstr "Pod polje1" +#~ msgid "Field Selection" +#~ msgstr "Odabir polja" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "" #~ "Grupe se koriste za definisanje prava pristupa svakom ekranu i meniju." @@ -10507,6 +10630,9 @@ msgstr "Ruski / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Napredna pretraga" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -10818,6 +10944,9 @@ msgstr "Ruski / русский язык" #~ msgid "terp-accessories-archiver" #~ msgstr "terp-accessories-archiver" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "Morate se odjaviti pa prijaviti ponovo nakon promene lozinke." + #~ msgid "Occitan (post 1500) / France" #~ msgstr "Occitan (post 1500) / France" @@ -10895,6 +11024,9 @@ msgstr "Ruski / русский язык" #~ msgid "terp-report" #~ msgstr "terp-report" +#~ msgid "Time Tracking" +#~ msgstr "Praćenje vremena" + #~ msgid "STOCK_HELP" #~ msgstr "STOCK_HELP" diff --git a/bin/addons/base/i18n/sr@latin.po b/bin/addons/base/i18n/sr@latin.po index 4449156fe44..ad9e8bc522b 100644 --- a/bin/addons/base/i18n/sr@latin.po +++ b/bin/addons/base/i18n/sr@latin.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-10 14:35+0000\n" "Last-Translator: Dejan Milosavljevic \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:10+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:53+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,8 +138,17 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -340,7 +357,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -380,6 +397,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -448,7 +470,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -783,6 +805,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -799,6 +827,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -905,6 +938,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -932,6 +971,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1065,13 +1110,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,8 +1166,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1172,17 +1227,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1290,7 +1334,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1302,7 +1346,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1471,11 +1515,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1581,6 +1620,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1614,7 +1658,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1802,6 +1846,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1863,6 +1913,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1900,6 +1955,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2108,6 +2168,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2192,6 +2259,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2260,7 +2328,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2413,11 +2481,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2747,11 +2810,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2790,8 +2848,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2816,6 +2874,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2923,9 +2982,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2946,6 +3004,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2985,7 +3048,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3083,7 +3146,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3212,11 +3275,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3254,11 +3312,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3456,6 +3512,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3497,8 +3561,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3667,7 +3733,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3699,9 +3765,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3766,6 +3832,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3927,11 +4000,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4122,6 +4190,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4173,6 +4246,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4203,11 +4281,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4404,6 +4477,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4669,7 +4750,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4862,8 +4943,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4889,7 +4970,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4923,8 +5004,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4947,12 +5029,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5078,6 +5154,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5101,7 +5184,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5278,6 +5361,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5285,11 +5375,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5301,7 +5386,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5317,7 +5402,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5371,8 +5456,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5524,13 +5609,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5565,7 +5650,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5584,6 +5668,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5594,11 +5683,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5713,7 +5797,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5872,11 +5956,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5914,6 +5993,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5932,8 +6017,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6045,13 +6128,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6135,11 +6211,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6228,7 +6299,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6330,6 +6401,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6362,6 +6440,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6407,7 +6490,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6428,8 +6511,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6741,8 +6824,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6779,7 +6862,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6927,10 +7010,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6945,6 +7026,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6961,7 +7047,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7050,13 +7136,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7202,7 +7296,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7239,13 +7333,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7382,6 +7469,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7402,6 +7497,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7427,6 +7528,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7493,11 +7603,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7514,8 +7619,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7557,8 +7662,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7687,6 +7795,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7698,7 +7814,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7788,7 +7904,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7896,7 +8011,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7997,7 +8112,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8007,11 +8122,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8069,14 +8179,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8085,7 +8198,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8133,6 +8246,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8143,11 +8261,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8337,12 +8450,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8511,7 +8625,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8552,7 +8666,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8710,8 +8824,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8840,6 +8954,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9009,7 +9129,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/sv.po b/bin/addons/base/i18n/sv.po index ae4defd60a5..9e96fd98303 100644 --- a/bin/addons/base/i18n/sv.po +++ b/bin/addons/base/i18n/sv.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2011-01-05 07:15+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:34+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:51+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Skapade vyer" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Målfönster" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Sydkorea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -344,7 +361,7 @@ msgid "Netherlands Antilles" msgstr "Netherlands Antilles" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -389,6 +406,11 @@ msgid "This ISO code is the name of po files to use for translations" msgstr "" "Denna ISO-kod är namnet på PO-filer som ska användas för översättningar" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Ditt system kommer att uppdateras." + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -459,7 +481,7 @@ msgid "Miscellaneous Suppliers" msgstr "Diverse leverantörer" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Anpassade fält måste ha ett namn som börjar med 'x_' !" @@ -801,6 +823,12 @@ msgstr "Guam (USA)" msgid "Human Resources Dashboard" msgstr "Personal dashboard" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -817,6 +845,11 @@ msgstr "Felaktig XML för Vyarkitektur!" msgid "Cayman Islands" msgstr "Caymanöarna" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Sydkorea" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -929,6 +962,12 @@ msgstr "Modulnamn" msgid "Marshall Islands" msgstr "Marshall Islands" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -958,6 +997,12 @@ msgstr "" "2. Gruppspecifika regler är kombinerade tillsammans med en logisk AND " "operand" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1095,13 +1140,21 @@ msgstr "" msgid "Reports" msgstr "Rapporter" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Vid skapande" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1146,9 +1199,11 @@ msgid "Wizard Info" msgstr "Guideinformation" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "Exportera översättning" #. module: base #: help:res.log,secondary:0 @@ -1206,17 +1261,6 @@ msgstr "Bifogat ID" msgid "Day: %(day)s" msgstr "Dagar: %(dag)ar" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1326,7 +1370,7 @@ msgid "Formula" msgstr "Formel" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Kan inte ta bort root användare!" @@ -1338,7 +1382,7 @@ msgstr "Malawi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (kopia)" @@ -1516,11 +1560,6 @@ msgstr "" "Exempel: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "Nytt lösenord" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1630,6 +1669,11 @@ msgstr "Fält" msgid "Groups (no group = global)" msgstr "Grupper (ingen grupp = global)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1663,7 +1707,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1855,6 +1899,12 @@ msgid "Messages" msgstr "Meddelanden" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1919,6 +1969,11 @@ msgstr "Norfolk Island" msgid "Korean (KR) / 한국어 (KR)" msgstr "Koreanska (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1956,6 +2011,11 @@ msgstr "Kan inte uppgradera modulen \"%s\". Den är inte installerad." msgid "Cuba" msgstr "Cuba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2170,6 +2230,13 @@ msgstr "Spanska (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2254,6 +2321,7 @@ msgstr "Fältmappningar." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Modul" @@ -2322,7 +2390,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Ange den åtgärd som skall startas !" @@ -2480,11 +2548,6 @@ msgstr "Fel ! Du kan inte skapa rekursiva kategorier." msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2825,11 +2888,6 @@ msgstr "Telekomsektor" msgid "Trigger Object" msgstr "Trigger objekt" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2868,8 +2926,8 @@ msgid "Sequence Type" msgstr "Nummerserietyp" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2894,6 +2952,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Modell" @@ -3008,10 +3067,9 @@ msgstr "" "installeras" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "" +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "De valda modulerna har uppdaterats / installerats!" #. module: base #: selection:base.language.install,lang:0 @@ -3031,6 +3089,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "Arbetsflöden" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3072,7 +3135,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Du kan inte ta bort modellen '%s' !" @@ -3170,7 +3233,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3301,11 +3364,6 @@ msgstr "" msgid "System update completed" msgstr "Systemuppdatering klar" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Fälturval" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3343,11 +3401,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3545,6 +3601,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3588,9 +3652,11 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Ditt system kommer att uppdateras." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3758,7 +3824,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3790,9 +3856,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (French)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Användarfel" @@ -3857,6 +3923,13 @@ msgstr "" msgid "Partner Addresses" msgstr "Företagsadress" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -4018,11 +4091,6 @@ msgstr "Ärendehistorik" msgid "Menus" msgstr "Menyer" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "De valda modulerna har uppdaterats / installerats!" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4214,6 +4282,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4265,6 +4338,11 @@ msgstr "Vill ni rensa Ids ? " msgid "Serial Key" msgstr "Serienyckel" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Låg" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4295,11 +4373,6 @@ msgstr "Anställd" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4496,6 +4569,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4763,7 +4844,7 @@ msgid "Change My Preferences" msgstr "Ändra min inställningar" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Felaktigt namn för modell i händelsedefinitionen." @@ -4959,9 +5040,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Ignorera" +#: model:res.country,name:base.us +msgid "United States" +msgstr "United States" #. module: base #: view:ir.module.module:0 @@ -4986,7 +5067,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modul %s: Felaktigt kvalitetscertifikat" @@ -5020,9 +5101,10 @@ msgid "Nigeria" msgstr "Nigeria" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5044,12 +5126,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Värde för händelsetyp" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5182,6 +5258,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5207,7 +5290,7 @@ msgstr "" "uppfyllt: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5384,6 +5467,13 @@ msgstr "Rekrytering" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5391,11 +5481,6 @@ msgstr "" msgid "Global" msgstr "Global" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "Du måste logga ut och logga in igen efter att ha bytt lösenord." - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5407,7 +5492,7 @@ msgid "Solomon Islands" msgstr "Salomonöarna" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5423,7 +5508,7 @@ msgid "Waiting" msgstr "Väntar" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Kunde inte ladda bas modulerna" @@ -5477,9 +5562,9 @@ msgid "Module Category" msgstr "Modulkategori" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Ignorera" #. module: base #: report:ir.module.reference.graph:0 @@ -5630,13 +5715,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Modulen %s finns inte!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Du kan inte ta bort språk som är användarens valda språk" @@ -5671,7 +5756,6 @@ msgstr "OpenERP's kärna, behövs för alla installationer" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5690,6 +5774,11 @@ msgstr "PO fil" msgid "Neutral Zone" msgstr "Neutral Zone" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5700,11 +5789,6 @@ msgstr "Anpassad" msgid "Current" msgstr "Nuvarande" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5822,7 +5906,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5982,11 +6066,6 @@ msgstr "Pengainsamling" msgid "Sequence Codes" msgstr "Kodsekvens" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -6024,6 +6103,12 @@ msgstr "France" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -6042,8 +6127,6 @@ msgstr "Afganistan, Islamic State of" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Fel !" @@ -6156,13 +6239,6 @@ msgstr "Tjänstenamn" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6250,11 +6326,6 @@ msgstr "Andra åtgärder" msgid "Done" msgstr "Klar" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6343,7 +6414,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6448,6 +6519,13 @@ msgstr "" "För valuta: %s \n" "per datum: %s" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6480,6 +6558,11 @@ msgstr "" msgid "Icon" msgstr "Ikon" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6525,7 +6608,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6550,8 +6633,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6869,9 +6952,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Triggerkonfigurering" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis och Futunaöarna" #. module: base #: selection:server.action.create,init,type:0 @@ -6908,7 +6991,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Storleken på fältet kan inte vara mindre än 1 !" @@ -7056,11 +7139,9 @@ msgid "Manufacturing" msgstr "Tillverkning" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "Exportera översättning" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7074,6 +7155,11 @@ msgstr "Serveråtgärder" msgid "Cancel Install" msgstr "Avbryt installering" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7090,7 +7176,7 @@ msgid "Copy Object" msgstr "Kopiera objekt" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7179,13 +7265,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Användarreferens" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Varning !" @@ -7331,7 +7425,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "Felaktiga sökkriterier" @@ -7370,13 +7464,6 @@ msgstr "Vy ref." msgid "Selection" msgstr "Urval" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7515,6 +7602,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "Norska Bokmål / Norsk bokmål" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7535,6 +7630,12 @@ msgstr "Startsidor" msgid "Binary File or external URL" msgstr "Binär fil eller extern URL" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7560,6 +7661,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7628,11 +7738,6 @@ msgstr "Triggerdatum" msgid "Croatian / hrvatski jezik" msgstr "Croatian / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7649,9 +7754,9 @@ msgid "The code of the country must be unique !" msgstr "Landskoden måste vara unik !" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "Tidredovisning" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Ej installerabar" #. module: base #: view:res.partner.category:0 @@ -7692,9 +7797,12 @@ msgid "Menu Action" msgstr "Menyval" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7824,6 +7932,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7835,7 +7951,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7925,7 +8041,6 @@ msgid "ltd" msgstr "ltd" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -8033,7 +8148,7 @@ msgid "Account No." msgstr "Kontonummer" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Basspråket 'en_Us' kan inte tas bort !" @@ -8134,7 +8249,7 @@ msgid "Auto-Refresh" msgstr "Automatisk uppdatering" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "osv_memory fältet kan bara jämföras med = och != operatorn." @@ -8144,11 +8259,6 @@ msgstr "osv_memory fältet kan bara jämföras med = och != operatorn." msgid "Diagram" msgstr "Diagram" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis och Futunaöarna" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8206,14 +8316,17 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8222,7 +8335,7 @@ msgstr "Turkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8270,6 +8383,11 @@ msgstr "Tanzania" msgid "Danish / Dansk" msgstr "Danska / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8280,11 +8398,6 @@ msgstr "Christmas Island" msgid "Other Actions Configuration" msgstr "Annan åtgärdskonfigurering" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Ej installerabar" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8479,12 +8592,13 @@ msgid "Luxembourg" msgstr "Luxembourg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Låg" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Fel ! Du kan inte skapa rekursiva menyer." @@ -8653,7 +8767,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Du kan inte ta bort fältet '%s' !" @@ -8696,7 +8810,7 @@ msgstr "" "Objects)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8854,9 +8968,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Avancerad sökning" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Triggerkonfigurering" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8987,6 +9101,12 @@ msgstr "" msgid "Portrait" msgstr "Stående" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9156,7 +9276,7 @@ msgid "Account Owner" msgstr "Kontoägare" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9882,9 +10002,15 @@ msgstr "Russian / русский язык" #~ msgid "You can not delete this document! (%s)" #~ msgstr "Du kan inte ta bort detta dokument! (%s)" +#~ msgid "Advanced Search" +#~ msgstr "Avancerad sökning" + #~ msgid "Full" #~ msgstr "Fullständig" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "Du måste logga ut och logga in igen efter att ha bytt lösenord." + #~ msgid "Partial" #~ msgstr "Delvis" @@ -9910,6 +10036,9 @@ msgstr "Russian / русский язык" #~ "(adresser, kontakter, prislistor, konton mm). Med historikfliken kan du " #~ "följa alla transaktioner med kunden som kundorder, ärenden mm." +#~ msgid "Time Tracking" +#~ msgstr "Tidredovisning" + #~ msgid "Olivier Dony's tweets" #~ msgstr "Olivier Dony's tweets" @@ -9918,3 +10047,9 @@ msgstr "Russian / русский язык" #~ msgid "Icon File" #~ msgstr "Ikonfil" + +#~ msgid "Field Selection" +#~ msgstr "Fälturval" + +#~ msgid "New Password" +#~ msgstr "Nytt lösenord" diff --git a/bin/addons/base/i18n/th.po b/bin/addons/base/i18n/th.po index 47da8be56bc..a512a866d2e 100644 --- a/bin/addons/base/i18n/th.po +++ b/bin/addons/base/i18n/th.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2009-11-30 09:01+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:08+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:52+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,8 +138,17 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -340,7 +357,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -380,6 +397,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -448,7 +470,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -783,6 +805,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -799,6 +827,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -905,6 +938,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -932,6 +971,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1065,13 +1110,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,8 +1166,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1172,17 +1227,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1290,7 +1334,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1302,7 +1346,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1471,11 +1515,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1581,6 +1620,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1614,7 +1658,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1802,6 +1846,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1863,6 +1913,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1900,6 +1955,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2108,6 +2168,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2192,6 +2259,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2260,7 +2328,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2413,11 +2481,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2747,11 +2810,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2790,8 +2848,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2816,6 +2874,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2923,9 +2982,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2946,6 +3004,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2985,7 +3048,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3083,7 +3146,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3212,11 +3275,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3254,11 +3312,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3456,6 +3512,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3497,8 +3561,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3667,7 +3733,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3699,9 +3765,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3766,6 +3832,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3927,11 +4000,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4122,6 +4190,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4173,6 +4246,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4203,11 +4281,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4404,6 +4477,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4669,7 +4750,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4862,8 +4943,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4889,7 +4970,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4923,8 +5004,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4947,12 +5029,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5078,6 +5154,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5101,7 +5184,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5278,6 +5361,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5285,11 +5375,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5301,7 +5386,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5317,7 +5402,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5371,8 +5456,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5524,13 +5609,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5565,7 +5650,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5584,6 +5668,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5594,11 +5683,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5713,7 +5797,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5872,11 +5956,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5914,6 +5993,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5932,8 +6017,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6045,13 +6128,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6135,11 +6211,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6228,7 +6299,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6330,6 +6401,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6362,6 +6440,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6407,7 +6490,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6428,8 +6511,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6741,8 +6824,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6779,7 +6862,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6927,10 +7010,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6945,6 +7026,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6961,7 +7047,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7050,13 +7136,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7202,7 +7296,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7239,13 +7333,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7382,6 +7469,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7402,6 +7497,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7427,6 +7528,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7493,11 +7603,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7514,8 +7619,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7557,8 +7662,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7687,6 +7795,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7698,7 +7814,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7788,7 +7904,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7896,7 +8011,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7997,7 +8112,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8007,11 +8122,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8069,14 +8179,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8085,7 +8198,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8133,6 +8246,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8143,11 +8261,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8337,12 +8450,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8511,7 +8625,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8552,7 +8666,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8710,8 +8824,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8840,6 +8954,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9009,7 +9129,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/tlh.po b/bin/addons/base/i18n/tlh.po index 55fdd8a999b..61a5fed8085 100644 --- a/bin/addons/base/i18n/tlh.po +++ b/bin/addons/base/i18n/tlh.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2009-11-30 07:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:08+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:52+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,8 +137,17 @@ msgid "Target Window" msgstr "" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -339,7 +356,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -379,6 +396,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -447,7 +469,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -782,6 +804,12 @@ msgstr "" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -798,6 +826,11 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -904,6 +937,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -931,6 +970,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1064,13 +1109,21 @@ msgstr "" msgid "Reports" msgstr "" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1112,8 +1165,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1171,17 +1226,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1289,7 +1333,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1301,7 +1345,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1470,11 +1514,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1580,6 +1619,11 @@ msgstr "" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1613,7 +1657,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1801,6 +1845,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1862,6 +1912,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1899,6 +1954,11 @@ msgstr "" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2107,6 +2167,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2191,6 +2258,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "" @@ -2259,7 +2327,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2412,11 +2480,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2746,11 +2809,6 @@ msgstr "" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2789,8 +2847,8 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2815,6 +2873,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "" @@ -2922,9 +2981,8 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base @@ -2945,6 +3003,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2984,7 +3047,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3082,7 +3145,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3211,11 +3274,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3253,11 +3311,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3455,6 +3511,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3496,8 +3560,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3666,7 +3732,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3698,9 +3764,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3765,6 +3831,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3926,11 +3999,6 @@ msgstr "" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4121,6 +4189,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4172,6 +4245,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4202,11 +4280,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4403,6 +4476,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4668,7 +4749,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4861,8 +4942,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4888,7 +4969,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4922,8 +5003,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4946,12 +5028,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5077,6 +5153,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5100,7 +5183,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5277,6 +5360,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5284,11 +5374,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5300,7 +5385,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5316,7 +5401,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5370,8 +5455,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5523,13 +5608,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5564,7 +5649,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5583,6 +5667,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5593,11 +5682,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5712,7 +5796,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5871,11 +5955,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5913,6 +5992,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5931,8 +6016,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6044,13 +6127,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6134,11 +6210,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6227,7 +6298,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6329,6 +6400,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6361,6 +6439,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6406,7 +6489,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6427,8 +6510,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6740,8 +6823,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6778,7 +6861,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6926,10 +7009,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6944,6 +7025,11 @@ msgstr "" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6960,7 +7046,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7049,13 +7135,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7201,7 +7295,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7238,13 +7332,6 @@ msgstr "" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7381,6 +7468,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7401,6 +7496,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7426,6 +7527,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7492,11 +7602,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7513,8 +7618,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7556,8 +7661,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7686,6 +7794,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7697,7 +7813,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7787,7 +7903,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7895,7 +8010,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7996,7 +8111,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8006,11 +8121,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8068,14 +8178,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8084,7 +8197,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8132,6 +8245,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8142,11 +8260,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8336,12 +8449,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8510,7 +8624,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8551,7 +8665,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8709,8 +8823,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8839,6 +8953,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9008,7 +9128,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" diff --git a/bin/addons/base/i18n/tr.po b/bin/addons/base/i18n/tr.po index 1b40acb3395..c10754a0d32 100644 --- a/bin/addons/base/i18n/tr.po +++ b/bin/addons/base/i18n/tr.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-16 08:27+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:08+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:52+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Oluşturulan Görünümler" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Hedef Pencere" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Güney Kore" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -343,7 +360,7 @@ msgid "Netherlands Antilles" msgstr "Hollanda Antilleri" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -387,6 +404,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "Tercüme için kullanılan po dosyalarının ISO kod adı." +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -457,7 +479,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Özel alanların 'x_' ile başlayan bir adı olmalıdır !" @@ -792,6 +814,12 @@ msgstr "Guam" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -808,6 +836,11 @@ msgstr "Görüntüleme mimarisi için Geçersiz XML" msgid "Cayman Islands" msgstr "Cayman Adaları" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Güney Kore" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -917,6 +950,12 @@ msgstr "" msgid "Marshall Islands" msgstr "Marshall Adaları" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -944,6 +983,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1079,13 +1124,23 @@ msgstr "" msgid "Reports" msgstr "Raporlar" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Eğer doğru seçeneği seçilirse, işlem form görünümlerinin sağ araç çubuğunda " +"gösterilmeyecektir." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Oluşturmada" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1130,9 +1185,11 @@ msgid "Wizard Info" msgstr "Sihirbaz Bilgisi" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Komorlar" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1189,17 +1246,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Gün: %(gün)" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1311,7 +1357,7 @@ msgid "Formula" msgstr "Formül" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Root kullanıcısı kaldırılamaz!" @@ -1323,7 +1369,7 @@ msgstr "Malavi" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1497,11 +1543,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1609,6 +1650,11 @@ msgstr "Alan" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Adaları" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1642,7 +1688,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1834,6 +1880,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1895,6 +1947,11 @@ msgstr "Norfolk Adası" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1932,6 +1989,11 @@ msgstr "'%s' modülü güncellenemiyor. Kurulu değil" msgid "Cuba" msgstr "Küba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2142,6 +2204,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2226,6 +2295,7 @@ msgstr "Alan Eşleşmeleri." #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Modül" @@ -2294,7 +2364,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Lütfen başlatılacak bir işlem seçiniz !" @@ -2449,11 +2519,6 @@ msgstr "Hata ! İç içe tekrarlanan sınıflar oluşturamazsınız." msgid "%x - Appropriate date representation." msgstr "%x - Kabul edilen tarih sunumu." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2792,11 +2857,6 @@ msgstr "" msgid "Trigger Object" msgstr "Tetik Nesnesi" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2835,8 +2895,8 @@ msgid "Sequence Type" msgstr "Silsile Çeşidi" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2861,6 +2921,7 @@ msgstr "SQL Kısıtlaması" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Model" @@ -2968,10 +3029,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "Kurulu veya kurulacak bir modülü kaldırmaya çalışıyorsunuz." #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "İstemci tarafında işlemi tetikleyecek eylem veya tuş çeşidi." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "" #. module: base #: selection:base.language.install,lang:0 @@ -2991,6 +3051,11 @@ msgstr "Guatemala" msgid "Workflows" msgstr "İş Akışları" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3032,7 +3097,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Bu modeli kaldıramazsınız '%s' !" @@ -3130,7 +3195,7 @@ msgid "API ID" msgstr "API Belirteci" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3262,11 +3327,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Alan Seçimi" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3304,14 +3364,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Eğer doğru seçeneği seçilirse, işlem form görünümlerinin sağ araç çubuğunda " -"gösterilmeyecektir." #. module: base #: view:ir.attachment:0 @@ -3508,6 +3564,14 @@ msgstr "" msgid "Montserrat" msgstr "Montserrat" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3549,8 +3613,10 @@ msgid "Starter Partner" msgstr "Başlangıç Ortak" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3719,7 +3785,7 @@ msgid "Flow Start" msgstr "Akış Başlat" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3751,9 +3817,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Fransız)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3818,6 +3884,13 @@ msgstr "İstemci İşlemi Yapılandırması" msgid "Partner Addresses" msgstr "Ortak Adresleri" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3979,11 +4052,6 @@ msgstr "İstek Tarihçesi" msgid "Menus" msgstr "Menüler" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4176,6 +4244,11 @@ msgstr "" "Oluşturma işlemlerinden sonra kayıt belirtecinin saklandığı alan adını " "veriniz. Boş ise, yeni kayıtları takip edemezsiniz." +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4227,6 +4300,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Düşük" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4257,11 +4335,6 @@ msgstr "" msgid "Create Access" msgstr "Erişim Oluştur" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4458,6 +4531,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4723,7 +4804,7 @@ msgid "Change My Preferences" msgstr "Ayarlarımı değiştir" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "İşlem tanımlamasında geçersiz model adı." @@ -4918,9 +4999,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Amerika Birleşik Devletleri (A.B.D.)" #. module: base #: view:ir.module.module:0 @@ -4945,7 +5026,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modül %s: Geçersiz Kalite Belgesi" @@ -4982,9 +5063,10 @@ msgid "Nigeria" msgstr "Nijerya" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -5006,12 +5088,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Etkinlik Türü için Değerler" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5137,6 +5213,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5160,7 +5243,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5337,6 +5420,13 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunion (Fransız)" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5344,11 +5434,6 @@ msgstr "Reunion (Fransız)" msgid "Global" msgstr "Evrensel" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5360,7 +5445,7 @@ msgid "Solomon Islands" msgstr "Solomon Adaları" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5376,7 +5461,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5430,9 +5515,9 @@ msgid "Module Category" msgstr "Modül Sınıđı" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Amerika Birleşik Devletleri (A.B.D.)" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "" #. module: base #: report:ir.module.reference.graph:0 @@ -5583,13 +5668,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5624,7 +5709,6 @@ msgstr "OpenERP'nin çekirdeği; bütün kurulumlar için gereklidir." #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5643,6 +5727,11 @@ msgstr "PO Dosyası" msgid "Neutral Zone" msgstr "Tarafsız Bölge" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5653,11 +5742,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5772,7 +5856,7 @@ msgid "" msgstr "İşlemin üzerinde çalışacağı (okuma, yazma, oluşturma) nesneyi seç." #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5931,11 +6015,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5973,6 +6052,12 @@ msgstr "Fransa" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5991,8 +6076,6 @@ msgstr "Afganistan" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Hata !" @@ -6105,13 +6188,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "Pitcairn Adası" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6195,11 +6271,6 @@ msgstr "Diğer İşlemler" msgid "Done" msgstr "Tamamlandı" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6288,7 +6359,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6390,6 +6461,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6424,6 +6502,11 @@ msgstr "Dışa Giden Dönüşümler" msgid "Icon" msgstr "Simge" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6469,7 +6552,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6490,8 +6573,8 @@ msgid "Child IDs" msgstr "Alt Belirteçler" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Sunucu İşlemi Yapılandırma `Kayıt Belirteci` sorunu!" @@ -6806,9 +6889,9 @@ msgid "Grenada" msgstr "Grenada" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Tetikleme Yapılandırması" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis ve Futuna Adaları" #. module: base #: selection:server.action.create,init,type:0 @@ -6844,7 +6927,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6992,11 +7075,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Komorlar" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -7010,6 +7091,11 @@ msgstr "Sunucu İşlemleri" msgid "Cancel Install" msgstr "Yükleme İptal" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7026,7 +7112,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7115,13 +7201,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Kullanıcı Referansı" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7267,7 +7361,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7306,13 +7400,6 @@ msgstr "Görünüm Referansı" msgid "Selection" msgstr "Seçim" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7449,6 +7536,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7469,6 +7564,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7494,6 +7595,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7562,11 +7672,6 @@ msgstr "Tetiklenme Tarihi" msgid "Croatian / hrvatski jezik" msgstr "Hırvatça / Hrvatski Jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7583,9 +7688,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Kaldırılamaz" #. module: base #: view:res.partner.category:0 @@ -7626,9 +7731,12 @@ msgid "Menu Action" msgstr "Menü İşlemi" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Adaları" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7756,6 +7864,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7767,7 +7883,7 @@ msgid "China" msgstr "Çin" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7857,7 +7973,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7965,7 +8080,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8066,7 +8181,7 @@ msgid "Auto-Refresh" msgstr "Kendiliğinden-Yenile" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8076,11 +8191,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis ve Futuna Adaları" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8138,14 +8248,17 @@ msgid "Turkmenistan" msgstr "Türkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8154,7 +8267,7 @@ msgstr "Türkmenistan" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8202,6 +8315,11 @@ msgstr "Tanzanya" msgid "Danish / Dansk" msgstr "Danimarkaca / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8212,11 +8330,6 @@ msgstr "Christmas Adası" msgid "Other Actions Configuration" msgstr "Diğer İşlemleri Yapılandırma" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Kaldırılamaz" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8411,12 +8524,13 @@ msgid "Luxembourg" msgstr "Lüksemburg" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Düşük" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "İstemci tarafında işlemi tetikleyecek eylem veya tuş çeşidi." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8585,7 +8699,7 @@ msgid "View Auto-Load" msgstr "Görünüm Kendiliğinden Yüklenmesi" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8626,7 +8740,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8784,9 +8898,9 @@ msgid "Czech / Čeština" msgstr "Çekce / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Gelişmiş Arama" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Tetikleme Yapılandırması" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8915,6 +9029,12 @@ msgstr "" msgid "Portrait" msgstr "Dikey" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9085,7 +9205,7 @@ msgid "Account Owner" msgstr "Hesap Sahibi" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9978,6 +10098,9 @@ msgstr "Rusça / русский язык" #~ msgid "Multi company" #~ msgstr "Çoklu şirket" +#~ msgid "Field Selection" +#~ msgstr "Alan Seçimi" + #~ msgid "Sale Opportunity" #~ msgstr "Satış Fırsatı" @@ -10519,6 +10642,9 @@ msgstr "Rusça / русский язык" #~ msgid "odt" #~ msgstr "odt" +#~ msgid "Advanced Search" +#~ msgstr "Gelişmiş Arama" + #~ msgid "Start Date" #~ msgstr "Başlangıç Tarihi" diff --git a/bin/addons/base/i18n/uk.po b/bin/addons/base/i18n/uk.po index 1870fdb430b..9ae5564a85d 100644 --- a/bin/addons/base/i18n/uk.po +++ b/bin/addons/base/i18n/uk.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-16 08:59+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:08+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:52+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "Створені види" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "Цільове вікно" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Південна Корея" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -341,7 +358,7 @@ msgid "Netherlands Antilles" msgstr "Нідерландські Антильські Острови" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -385,6 +402,11 @@ msgid "This ISO code is the name of po files to use for translations" msgstr "" "Цей код ISO визначає ім`я po файлів, які використовуюсться для перекладу" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -455,7 +477,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Назва поля користувача має починатися з 'x_'!" @@ -790,6 +812,12 @@ msgstr "Гуам (США)" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -806,6 +834,11 @@ msgstr "Неправильний XML для архітектури виду!" msgid "Cayman Islands" msgstr "Кайманові острови" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Південна Корея" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -915,6 +948,12 @@ msgstr "" msgid "Marshall Islands" msgstr "Маршаллові Острови" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -942,6 +981,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1078,13 +1123,23 @@ msgstr "" msgid "Reports" msgstr "Звіти" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Якщо встановити значення \"істина\", ця дія не буде відображена на правому " +"пеналі виду форми." + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "Коли створюється" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1126,9 +1181,11 @@ msgid "Wizard Info" msgstr "Інформація про майстра" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Коморські Острови" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "" #. module: base #: help:res.log,secondary:0 @@ -1185,17 +1242,6 @@ msgstr "Приєднане ID" msgid "Day: %(day)s" msgstr "День: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1307,7 +1353,7 @@ msgid "Formula" msgstr "Формула" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Неможливо видалити користувача root!" @@ -1319,7 +1365,7 @@ msgstr "Малаві" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1494,11 +1540,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1604,6 +1645,11 @@ msgstr "Поле" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Фарерські Острови" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1637,7 +1683,7 @@ msgid "Madagascar" msgstr "Мадагаскар" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1827,6 +1873,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1888,6 +1940,11 @@ msgstr "Острів Норфолк" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1925,6 +1982,11 @@ msgstr "Неможливо оновити модуль '%s'. Він не вст msgid "Cuba" msgstr "Куба" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2135,6 +2197,13 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2219,6 +2288,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Модуль" @@ -2287,7 +2357,7 @@ msgid "Mayotte" msgstr "Майотта" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "Будьласка вкажіть дію до виконання !" @@ -2440,11 +2510,6 @@ msgstr "Помилка! Не можна створювати рекурсивн msgid "%x - Appropriate date representation." msgstr "%x - Прийнятне представлення дати." -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2781,11 +2846,6 @@ msgstr "Телекомунікації" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2824,8 +2884,8 @@ msgid "Sequence Type" msgstr "Тип послідовності" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2850,6 +2910,7 @@ msgstr "SQL Constraint" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Модель" @@ -2958,10 +3019,9 @@ msgstr "" "Ви намагаєтеся видалити модуль, який встановлено або буде встановлено" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "Вид дії або кнопки на клієнтському боці, яка запустить дію." +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "" #. module: base #: selection:base.language.install,lang:0 @@ -2981,6 +3041,11 @@ msgstr "Гватемала" msgid "Workflows" msgstr "Процеси" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3022,7 +3087,7 @@ msgid "Lesotho" msgstr "Лесото" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "Ви не можете видалити модель '%s'!" @@ -3120,7 +3185,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3249,11 +3314,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Вибір поля" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3291,14 +3351,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" -"Якщо встановити значення \"істина\", ця дія не буде відображена на правому " -"пеналі виду форми." #. module: base #: view:ir.attachment:0 @@ -3497,6 +3553,14 @@ msgstr "" msgid "Montserrat" msgstr "Монтсерат" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3538,8 +3602,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3708,7 +3774,7 @@ msgid "Flow Start" msgstr "Старт потоку" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3740,9 +3806,9 @@ msgid "Guadeloupe (French)" msgstr "Гваделупська (French)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3807,6 +3873,13 @@ msgstr "" msgid "Partner Addresses" msgstr "Адреси партнерів" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3968,11 +4041,6 @@ msgstr "Запит історії" msgid "Menus" msgstr "Меню" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4163,6 +4231,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4214,6 +4287,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Низький" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4244,11 +4322,6 @@ msgstr "" msgid "Create Access" msgstr "Доступ для створення" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4445,6 +4518,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4710,7 +4791,7 @@ msgid "Change My Preferences" msgstr "Змінити мої вподобання" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4905,9 +4986,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Сполучені Штати" #. module: base #: view:ir.module.module:0 @@ -4932,7 +5013,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Модуль %s: Невірний Сертифікат Якості" @@ -4966,9 +5047,10 @@ msgid "Nigeria" msgstr "Нігерія" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -4990,12 +5072,6 @@ msgstr "" msgid "Values for Event Type" msgstr "Значення для Типу Події" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5121,6 +5197,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5144,7 +5227,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5321,6 +5404,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5328,11 +5418,6 @@ msgstr "" msgid "Global" msgstr "Глобальне" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5344,7 +5429,7 @@ msgid "Solomon Islands" msgstr "Соломонові Острови" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5360,7 +5445,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5414,9 +5499,9 @@ msgid "Module Category" msgstr "Категорія модулів" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Сполучені Штати" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "" #. module: base #: report:ir.module.reference.graph:0 @@ -5567,13 +5652,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5608,7 +5693,6 @@ msgstr "Ядро OpenERP, необхідне для всього встанов #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5627,6 +5711,11 @@ msgstr "PO-файл" msgid "Neutral Zone" msgstr "Нейтральна Зона" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5637,11 +5726,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5756,7 +5840,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5915,11 +5999,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5957,6 +6036,12 @@ msgstr "Франція" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5975,8 +6060,6 @@ msgstr "Афганістан" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Помилка!" @@ -6089,13 +6172,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6179,11 +6255,6 @@ msgstr "Інші дії" msgid "Done" msgstr "Виконано" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6272,7 +6343,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6374,6 +6445,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6406,6 +6484,11 @@ msgstr "Вихідні Переміщення" msgid "Icon" msgstr "Значок" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6451,7 +6534,7 @@ msgid "Samoa" msgstr "Самоа" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6472,8 +6555,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6787,9 +6870,9 @@ msgid "Grenada" msgstr "Гренада" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Налаштування тригерів" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Острови Велліс та Футуна" #. module: base #: selection:server.action.create,init,type:0 @@ -6825,7 +6908,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6973,11 +7056,9 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Коморські Острови" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -6991,6 +7072,11 @@ msgstr "Дії на сервері" msgid "Cancel Install" msgstr "Скасувати встановлення" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7007,7 +7093,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7096,13 +7182,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "Користувач" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7248,7 +7342,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7287,13 +7381,6 @@ msgstr "Вид" msgid "Selection" msgstr "Selection" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7430,6 +7517,14 @@ msgstr "невизначений метод get!" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7450,6 +7545,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7475,6 +7576,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7543,11 +7653,6 @@ msgstr "Дата початку" msgid "Croatian / hrvatski jezik" msgstr "Хорватська / Croatian" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7564,9 +7669,9 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Видаляється" #. module: base #: view:res.partner.category:0 @@ -7607,9 +7712,12 @@ msgid "Menu Action" msgstr "Дія меню" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Фарерські Острови" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7737,6 +7845,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7748,7 +7864,7 @@ msgid "China" msgstr "Китай" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7838,7 +7954,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7946,7 +8061,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8047,7 +8162,7 @@ msgid "Auto-Refresh" msgstr "Автопоновлення" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8057,11 +8172,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Острови Велліс та Футуна" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8119,14 +8229,17 @@ msgid "Turkmenistan" msgstr "Туркменістан" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8135,7 +8248,7 @@ msgstr "Туркменістан" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8183,6 +8296,11 @@ msgstr "Танзанія" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8193,11 +8311,6 @@ msgstr "Острів Різдва" msgid "Other Actions Configuration" msgstr "Налаштування інших дій" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Видаляється" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8391,12 +8504,13 @@ msgid "Luxembourg" msgstr "Люксембург" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Низький" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "Вид дії або кнопки на клієнтському боці, яка запустить дію." #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8565,7 +8679,7 @@ msgid "View Auto-Load" msgstr "Продивитися автозавантаження" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8606,7 +8720,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8764,9 +8878,9 @@ msgid "Czech / Čeština" msgstr "Чеська / Czech" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Розширений пошук" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Налаштування тригерів" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8894,6 +9008,12 @@ msgstr "" msgid "Portrait" msgstr "Портрет" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9063,7 +9183,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9660,6 +9780,9 @@ msgstr "Російська / Russian" #~ msgid "wizard.module.lang.export" #~ msgstr "wizard.module.lang.export" +#~ msgid "Field Selection" +#~ msgstr "Вибір поля" + #~ msgid "Sale Opportunity" #~ msgstr "Можливість продажу" @@ -10308,6 +10431,9 @@ msgstr "Російська / Russian" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "Розширений пошук" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" diff --git a/bin/addons/base/i18n/vi.po b/bin/addons/base/i18n/vi.po index 1435046db8d..9d8de7b3979 100644 --- a/bin/addons/base/i18n/vi.po +++ b/bin/addons/base/i18n/vi.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-11 03:12+0000\n" -"Last-Translator: Phong Nguyen \n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" +"PO-Revision-Date: 2011-01-11 08:47+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:52+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -112,13 +112,21 @@ msgid "Created Views" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -130,9 +138,18 @@ msgid "Target Window" msgstr "Cửa sổ đích" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Nam Triều tiên" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -342,7 +359,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -384,6 +401,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "Mã ISO này là tên của tập tin po để sử dụng cho dịch" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "Hệ thống của bạn sẽ được cập nhật" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -454,7 +476,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -794,6 +816,12 @@ msgstr "Quần đảo Gu-am" msgid "Human Resources Dashboard" msgstr "Bảng điều khiển Nguồn nhân lực" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -810,6 +838,11 @@ msgstr "XML không hợp lệ cho Kiến trúc Xem!" msgid "Cayman Islands" msgstr "Quần đảo Cay-man" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Nam Triều tiên" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -916,6 +949,12 @@ msgstr "Tên mô đun" msgid "Marshall Islands" msgstr "Quần Đảo Ma-san" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -943,6 +982,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1076,13 +1121,21 @@ msgstr "" msgid "Reports" msgstr "Các báo cáo" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1124,8 +1177,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1183,17 +1238,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Ngày: %(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1301,7 +1345,7 @@ msgid "Formula" msgstr "Công thức" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "Không thể xóa người dùng gốc" @@ -1313,7 +1357,7 @@ msgstr "Ma-la-uy" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (sao chép)" @@ -1482,11 +1526,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1592,6 +1631,11 @@ msgstr "Trường" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1625,7 +1669,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1814,6 +1858,12 @@ msgid "Messages" msgstr "Các thông điệp" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1875,6 +1925,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "Tiếng Hàn quốc" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1912,6 +1967,11 @@ msgstr "Không thể nâng cấp mô-đun '%s'. Mô-đun này chưa được cà msgid "Cuba" msgstr "Cu-ba" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2120,6 +2180,13 @@ msgstr "Tiếng Tây Ban Nha (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2204,6 +2271,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "Mô đun" @@ -2272,7 +2340,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2425,11 +2493,6 @@ msgstr "Lỗi ! Bạn không thể tạo ra loại đệ quy." msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2761,11 +2824,6 @@ msgstr "Lĩnh vực viễn thông" msgid "Trigger Object" msgstr "" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2804,9 +2862,9 @@ msgid "Sequence Type" msgstr "" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "Tiếng Hin-đi" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2830,6 +2888,7 @@ msgstr "" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "Mô hình" @@ -2937,10 +2996,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "" +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "Các mô đun được lựa chọn đã được cập nhật / cài đặt !" #. module: base #: selection:base.language.install,lang:0 @@ -2960,6 +3018,11 @@ msgstr "" msgid "Workflows" msgstr "Các luồng công việc" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3001,7 +3064,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -3099,7 +3162,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3228,11 +3291,6 @@ msgstr "" msgid "System update completed" msgstr "Hoàn tất việc nâng cấp hệ thống" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3270,11 +3328,9 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" msgstr "" #. module: base @@ -3472,6 +3528,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3513,9 +3577,11 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "Hệ thống của bạn sẽ được cập nhật" +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3685,7 +3751,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3717,9 +3783,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "Lỗi người dùng" @@ -3784,6 +3850,13 @@ msgstr "" msgid "Partner Addresses" msgstr "Địa chỉ của đối tác" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3945,11 +4018,6 @@ msgstr "Lịch sử yêu cầu" msgid "Menus" msgstr "Trình đơn" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "Các mô đun được lựa chọn đã được cập nhật / cài đặt !" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4140,6 +4208,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4191,6 +4264,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Thấp" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4221,11 +4299,6 @@ msgstr "Người lao động" msgid "Create Access" msgstr "Quyền Tạo" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4422,6 +4495,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4687,7 +4768,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "Tên mô hình không hợp lệ trong định nghĩa hành động." @@ -4880,9 +4961,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "Bỏ qua" +#: model:res.country,name:base.us +msgid "United States" +msgstr "Hợp chủng quốc Hoa Kỳ" #. module: base #: view:ir.module.module:0 @@ -4907,7 +4988,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4941,9 +5022,10 @@ msgid "Nigeria" msgstr "Ni-giê-ri-a" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -4965,12 +5047,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5096,6 +5172,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5121,7 +5204,7 @@ msgstr "" "ứng: %s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5298,6 +5381,13 @@ msgstr "Tuyển dụng" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5305,11 +5395,6 @@ msgstr "" msgid "Global" msgstr "Toàn cục" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5321,7 +5406,7 @@ msgid "Solomon Islands" msgstr "Quần đảo Xô-lô-mông" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5337,7 +5422,7 @@ msgid "Waiting" msgstr "Đang chờ" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "Không thể nạp mô đun base" @@ -5391,9 +5476,9 @@ msgid "Module Category" msgstr "Loại mô-đun" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "Hợp chủng quốc Hoa Kỳ" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "Bỏ qua" #. module: base #: report:ir.module.reference.graph:0 @@ -5544,13 +5629,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "Mô-đun %s không tồn tại!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5585,7 +5670,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5604,6 +5688,11 @@ msgstr "Tập tin PO" msgid "Neutral Zone" msgstr "Khu Vực Trung Lập" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "Tiếng Hin-đi" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5614,11 +5703,6 @@ msgstr "Tự chọn" msgid "Current" msgstr "Current" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5733,7 +5817,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5892,11 +5976,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5934,6 +6013,12 @@ msgstr "Pháp" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5952,8 +6037,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "Lỗi !" @@ -6065,13 +6148,6 @@ msgstr "Tên dịch vụ" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6155,11 +6231,6 @@ msgstr "" msgid "Done" msgstr "Hoàn tất" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "Change" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6248,7 +6319,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6350,6 +6421,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6382,6 +6460,11 @@ msgstr "" msgid "Icon" msgstr "Icon" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6427,7 +6510,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6448,8 +6531,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6763,8 +6846,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6801,7 +6884,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Độ dài trường dữ liệu không thể nhỏ hơn 1 !" @@ -6949,10 +7032,8 @@ msgid "Manufacturing" msgstr "Sản xuất" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6967,6 +7048,11 @@ msgstr "" msgid "Cancel Install" msgstr "Hủy bỏ cài đặt." +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6983,7 +7069,7 @@ msgid "Copy Object" msgstr "Sao chép đối tượng" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7072,13 +7158,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "Cảnh báo !" @@ -7224,7 +7318,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7261,13 +7355,6 @@ msgstr "" msgid "Selection" msgstr "Lựa chọn" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7404,6 +7491,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7424,6 +7519,12 @@ msgstr "Các bảng điều khiển" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7449,6 +7550,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7515,11 +7625,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7536,9 +7641,9 @@ msgid "The code of the country must be unique !" msgstr "Mã quốc gia phải duy nhất !" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Có thể tháo cài đặt" #. module: base #: view:res.partner.category:0 @@ -7579,8 +7684,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7709,6 +7817,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7720,7 +7836,7 @@ msgid "China" msgstr "Trung Quốc" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7812,7 +7928,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7920,7 +8035,7 @@ msgid "Account No." msgstr "Số tài khoản" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8021,7 +8136,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8031,11 +8146,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8093,14 +8203,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8109,7 +8222,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8157,6 +8270,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8167,11 +8285,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Có thể tháo cài đặt" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8361,12 +8474,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Thấp" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Lỗi ! Bạn không thể tạo trình đơn đệ quy." @@ -8535,7 +8649,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Bạn không thể xóa trường '%s' !" @@ -8576,7 +8690,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8734,9 +8848,9 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Tìm kiếm nâng cao" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8864,6 +8978,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9033,7 +9153,7 @@ msgid "Account Owner" msgstr "Chủ tài khoản" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -10757,6 +10877,9 @@ msgstr "Tiếng Nga" #~ msgid "Fiscal Years" #~ msgstr "Fiscal Years" +#~ msgid "Change" +#~ msgstr "Change" + #~ msgid "Credit amount" #~ msgstr "Credit amount" @@ -14669,6 +14792,9 @@ msgstr "Tiếng Nga" #~ msgid "Unable to find a valid contract" #~ msgstr "Không thể tìm thấy một hợp đồng hợp lệ" +#~ msgid "Advanced Search" +#~ msgstr "Tìm kiếm nâng cao" + #~ msgid "Full" #~ msgstr "Đầy" diff --git a/bin/addons/base/i18n/zh_CN.po b/bin/addons/base/i18n/zh_CN.po index 6863a788712..7ee5f35c744 100644 --- a/bin/addons/base/i18n/zh_CN.po +++ b/bin/addons/base/i18n/zh_CN.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 12:47+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" +"PO-Revision-Date: 2011-01-11 13:28+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:55+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:53+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "已创建的视图" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "您不能写入单据 (%s)!请确保您的帐号属于用户组:%s" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,9 +137,18 @@ msgid "Target Window" msgstr "目标窗口" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "韩国" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "警告!" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" +msgstr "" #. module: base #: code:addons/osv.py:133 @@ -339,7 +356,7 @@ msgid "Netherlands Antilles" msgstr "荷属安德列斯岛" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -379,6 +396,11 @@ msgstr "该对象的“read”方法尚未实现!" msgid "This ISO code is the name of po files to use for translations" msgstr ".PO 文件翻译使用的 ISO 国家代码" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "你的系统将会被更新。" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -449,7 +471,7 @@ msgid "Miscellaneous Suppliers" msgstr "其他供应商" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "自定义的字段名称必须以“x_”开始!" @@ -786,6 +808,12 @@ msgstr "关岛(美属)" msgid "Human Resources Dashboard" msgstr "人事管理仪表盘" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "基于安全上的考虑不允许设置空密码!" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -802,6 +830,11 @@ msgstr "无效的 XML 视图结构" msgid "Cayman Islands" msgstr "开曼群岛" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "韩国" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -908,6 +941,12 @@ msgstr "模块名称" msgid "Marshall Islands" msgstr "马绍尔群岛" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -938,6 +977,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "多个组规则采用AND逻辑最终起作用" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "操作已经取消" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1072,13 +1117,21 @@ msgstr "主报表文件路径" msgid "Reports" msgstr "报表" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "如果设为真,该动作将不会显示表单右侧的工具栏中。" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "创建" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1120,9 +1173,11 @@ msgid "Wizard Info" msgstr "向导信息" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "科摩罗群岛" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "导出翻译" #. module: base #: help:res.log,secondary:0 @@ -1191,19 +1246,6 @@ msgstr "附件编号" msgid "Day: %(day)s" msgstr "天:%(day)s" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" -"这里列出了您服务器上所有可安装的模块,包括已安装的模块。您可以用模块名称或描述的部分字符去查找模块。并不需要逐个安装,可以先在列表中点“安排安装”按钮,最" -"后点“执行安排的升级”操作。" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1253,7 +1295,7 @@ msgstr "业务伙伴" #. module: base #: field:res.partner.category,parent_left:0 msgid "Left parent" -msgstr "" +msgstr "Left parent" #. module: base #: model:ir.actions.act_window,name:base.res_widget_act_window @@ -1311,7 +1353,7 @@ msgid "Formula" msgstr "公式" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "不能删除根用户!" @@ -1323,7 +1365,7 @@ msgstr "马拉维" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "%s (副本)" @@ -1494,11 +1536,6 @@ msgstr "" "例如:Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "新密码" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1605,6 +1642,11 @@ msgstr "字段" msgid "Groups (no group = global)" msgstr "用户组 (无用户组表示作用于全局)" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "法罗群岛" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1638,7 +1680,7 @@ msgid "Madagascar" msgstr "马达加斯加" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1826,6 +1868,12 @@ msgid "Messages" msgstr "信件" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1887,6 +1935,11 @@ msgstr "诺福克岛" msgid "Korean (KR) / 한국어 (KR)" msgstr "Korean (KR) / 한국어 (KR)" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "该字段所属模型的技术名称" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1924,6 +1977,11 @@ msgstr "不能升级模块 “%s“,因为它尚未安装。" msgid "Cuba" msgstr "古巴" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2132,6 +2190,13 @@ msgstr "Spanish (DO) / Español (DO)" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2216,6 +2281,7 @@ msgstr "字段映射" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "模块" @@ -2284,7 +2350,7 @@ msgid "Mayotte" msgstr "马约特" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "请指定要启动的动作!" @@ -2437,11 +2503,6 @@ msgstr "错误!您不能创建循环分类。" msgid "%x - Appropriate date representation." msgstr "%x - 使用日期表示" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "change.user.password" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2773,11 +2834,6 @@ msgstr "电信部门" msgid "Trigger Object" msgstr "触发器对象" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "再次输入新密码确认。" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2816,9 +2872,9 @@ msgid "Sequence Type" msgstr "序号类型" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" -msgstr "印度语/हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" +msgstr "" #. module: base #: field:ir.module.module,license:0 @@ -2842,6 +2898,7 @@ msgstr "SQL 约束" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "模型" @@ -2952,10 +3009,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "您试图删除一个已安装或正要安装的模块" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "客户端的该类动作或按钮将触发此动作。" +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "选择的模块将被更新/安装" #. module: base #: selection:base.language.install,lang:0 @@ -2975,6 +3031,11 @@ msgstr "危地马拉" msgid "Workflows" msgstr "工作流" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -3014,7 +3075,7 @@ msgid "Lesotho" msgstr "莱索托" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "您不能删除模型“%s”!" @@ -3112,7 +3173,7 @@ msgid "API ID" msgstr "API ID" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3242,11 +3303,6 @@ msgstr "" msgid "System update completed" msgstr "系统更新完成" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "选择字段" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3284,12 +3340,10 @@ msgid "Apply For Delete" msgstr "应用于删除" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." -msgstr "如果设为真,该动作将不会显示表单右侧的工具栏中。" +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" +msgstr "" #. module: base #: view:ir.attachment:0 @@ -3486,6 +3540,14 @@ msgstr "如果设为true,这个动作将不显示在表单视图右边工具 msgid "Montserrat" msgstr "蒙特塞拉特" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3527,9 +3589,11 @@ msgid "Starter Partner" msgstr "起始业务伙伴" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." -msgstr "你的系统将会被更新。" +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -3697,7 +3761,7 @@ msgid "Flow Start" msgstr "工作流开始" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "模块库不能装载!(提示:检查addons路径)" @@ -3729,9 +3793,9 @@ msgid "Guadeloupe (French)" msgstr "瓜德卢普(法属)" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "用户错误" @@ -3796,6 +3860,13 @@ msgstr "客户端动作设置" msgid "Partner Addresses" msgstr "业务伙伴地址列表" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3957,11 +4028,6 @@ msgstr "请求记录" msgid "Menus" msgstr "菜单" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "选择的模块将被更新/安装" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4152,6 +4218,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "请提供创建操作后保存记录标识符的字段名称。如果为空,您无法跟踪新的记录。" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4203,6 +4274,11 @@ msgstr "要清除Ids吗? " msgid "Serial Key" msgstr "产品密钥" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "低" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4233,11 +4309,6 @@ msgstr "雇员" msgid "Create Access" msgstr "创建权限" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "当前密码" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4434,6 +4505,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4699,7 +4778,7 @@ msgid "Change My Preferences" msgstr "更改我的首选项" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "动作定义中使用了无效的模式名称。" @@ -4895,9 +4974,9 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" -msgstr "忽略" +#: model:res.country,name:base.us +msgid "United States" +msgstr "美国" #. module: base #: view:ir.module.module:0 @@ -4922,7 +5001,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "模块 %s:无效的证书号" @@ -4956,9 +5035,10 @@ msgid "Nigeria" msgstr "尼日利亚" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send @@ -4980,12 +5060,6 @@ msgstr "Web 图标图片" msgid "Values for Event Type" msgstr "事件类型的取值" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "当前密码不匹配,请再次检查。" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5111,6 +5185,13 @@ msgid "" "related object's read access." msgstr "如果您归属于用户组,则此菜单的可见性将有这些用户组决定。如果该字段为空,系统将基于关联对象的读取权限计算可见性。" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5134,7 +5215,7 @@ msgid "" msgstr "不能升级模块 %s, 因为找不到外部依赖:%s" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5313,6 +5394,13 @@ msgstr "招聘" msgid "Reunion (French)" msgstr "法属留尼旺岛" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5320,11 +5408,6 @@ msgstr "法属留尼旺岛" msgid "Global" msgstr "全局" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "更改密码后,你需要登出再登入" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5336,7 +5419,7 @@ msgid "Solomon Islands" msgstr "所罗门群岛" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5352,7 +5435,7 @@ msgid "Waiting" msgstr "等待中" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "不能载入基本模块" @@ -5406,9 +5489,9 @@ msgid "Module Category" msgstr "模块分类" #. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "美国" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" +msgstr "忽略" #. module: base #: report:ir.module.reference.graph:0 @@ -5562,13 +5645,13 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "模型 %s 不存在!" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "不能删除用户的首先语言." @@ -5603,7 +5686,6 @@ msgstr "OpenERP 系统的核心,所有模块都需要它。" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5622,6 +5704,11 @@ msgstr "PO 文件" msgid "Neutral Zone" msgstr "中立区" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "印度语/हिंदी" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5632,11 +5719,6 @@ msgstr "自定义" msgid "Current" msgstr "当前的" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "输入新密码" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5751,7 +5833,7 @@ msgid "" msgstr "选择动作(读、写、创建)执行所在之对象。" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "请指定服务器选项,email from!" @@ -5910,11 +5992,6 @@ msgstr "筹集资金" msgid "Sequence Codes" msgstr "序列编码" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "确认密码" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5952,6 +6029,12 @@ msgstr "法国" msgid "res.log" msgstr "res.log" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5970,8 +6053,6 @@ msgstr "阿富汗伊斯兰国" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "错误!" @@ -6083,13 +6164,6 @@ msgstr "服务名" msgid "Pitcairn Island" msgstr "皮特克恩岛" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "新密码两次输入不匹配,请再次检查。" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6173,11 +6247,6 @@ msgstr "其他动作" msgid "Done" msgstr "已完成" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "更改" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6266,7 +6335,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "浏览官方的翻译,从这些连接开始:" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6368,6 +6437,13 @@ msgid "" "at the date: %s" msgstr "找不到货币 %s 日期 %s 的比率。" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6400,6 +6476,11 @@ msgstr "传出转换" msgid "Icon" msgstr "图标" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6445,7 +6526,7 @@ msgid "Samoa" msgstr "萨摩亚" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6468,8 +6549,8 @@ msgid "Child IDs" msgstr "下级标识符" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "设置服务器动作的“记录标识符”时出错!" @@ -6783,9 +6864,9 @@ msgid "Grenada" msgstr "格林纳达" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "触发器设置" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "瓦利斯和富图纳群岛" #. module: base #: selection:server.action.create,init,type:0 @@ -6821,7 +6902,7 @@ msgid "ir.wizard.screen" msgstr "ir.wizard.screen" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "字段的长度不小于1" @@ -6969,11 +7050,9 @@ msgid "Manufacturing" msgstr "生产" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" -msgstr "导出翻译" +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "科摩罗群岛" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -6987,6 +7066,11 @@ msgstr "服务器动作" msgid "Cancel Install" msgstr "取消安装" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -7003,7 +7087,7 @@ msgid "Copy Object" msgstr "复制对象" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7095,13 +7179,21 @@ msgid "" "a negative number indicates no limit" msgstr "函数执行次数(负数表示没有限制)" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "用户参照" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "警告 !" @@ -7247,7 +7339,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "无效搜索规则" @@ -7284,13 +7376,6 @@ msgstr "视图参照" msgid "Selection" msgstr "选中内容" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "修改密码" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7427,6 +7512,14 @@ msgstr "未定义“get”方法!" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "Norwegian Bokmål / Norsk bokmål" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7447,6 +7540,12 @@ msgstr "仪表盘" msgid "Binary File or external URL" msgstr "二进制文件或外部URL" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7472,6 +7571,15 @@ msgstr "ir.values" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7538,11 +7646,6 @@ msgstr "启动日期" msgid "Croatian / hrvatski jezik" msgstr "克罗地亚语 / hrvatski jezik" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "输入您的当前密码" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7559,9 +7662,9 @@ msgid "The code of the country must be unique !" msgstr "国家代码须唯一" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" -msgstr "时间估计" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "可删除的模块" #. module: base #: view:res.partner.category:0 @@ -7602,9 +7705,12 @@ msgid "Menu Action" msgstr "菜单动作" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "法罗群岛" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" +msgstr "" #. module: base #: selection:base.language.export,state:0 @@ -7732,6 +7838,14 @@ msgid "" "executed." msgstr "该名称指定的对象方法将在计划任务执行后被调用。" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7743,7 +7857,7 @@ msgid "China" msgstr "中国" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7835,7 +7949,6 @@ msgid "ltd" msgstr "ltd" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7943,7 +8056,7 @@ msgid "Account No." msgstr "科目号" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "不能删除基础语言 'en_US'!" @@ -8044,7 +8157,7 @@ msgid "Auto-Refresh" msgstr "自动刷新" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "osv_memory 字段仅用 = 和 != 操作符作比较." @@ -8054,11 +8167,6 @@ msgstr "osv_memory 字段仅用 = 和 != 操作符作比较." msgid "Diagram" msgstr "图表" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "瓦利斯和富图纳群岛" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8116,14 +8224,17 @@ msgid "Turkmenistan" msgstr "土库曼斯坦" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8132,7 +8243,7 @@ msgstr "土库曼斯坦" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8180,6 +8291,11 @@ msgstr "坦桑尼亚" msgid "Danish / Dansk" msgstr "丹麦语 / Dansk" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8190,11 +8306,6 @@ msgstr "圣诞岛" msgid "Other Actions Configuration" msgstr "其他动作设置" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "可删除的模块" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8386,12 +8497,13 @@ msgid "Luxembourg" msgstr "卢森堡" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "低" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "客户端的该类动作或按钮将触发此动作。" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "错误!您不能创建递归的菜单。" @@ -8560,7 +8672,7 @@ msgid "View Auto-Load" msgstr "自动加载视图" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "您不能删除字段 '%s' !" @@ -8601,7 +8713,7 @@ msgid "" msgstr "支持的文件格式:*.csv (逗号分隔值) 和 *.po (GetText 可一直对象)" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8759,9 +8871,9 @@ msgid "Czech / Čeština" msgstr "捷克语 / Čeština" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "高级搜索" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "触发器设置" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -8891,6 +9003,12 @@ msgstr "" msgid "Portrait" msgstr "纵向" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9060,7 +9178,7 @@ msgid "Account Owner" msgstr "帐号所有者" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "切换公司警告" @@ -9915,6 +10033,9 @@ msgstr "俄语 / русский язык" #~ msgid "Field child1" #~ msgstr "字段 child1" +#~ msgid "Field Selection" +#~ msgstr "选择字段" + #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "用户组用于为每个屏幕和菜单定义访问权限。" @@ -10411,6 +10532,9 @@ msgstr "俄语 / русский язык" #~ msgid "STOCK_EXECUTE" #~ msgstr "STOCK_EXECUTE" +#~ msgid "Advanced Search" +#~ msgstr "高级搜索" + #~ msgid "STOCK_COLOR_PICKER" #~ msgstr "STOCK_COLOR_PICKER" @@ -12075,6 +12199,17 @@ msgstr "俄语 / русский язык" #~ msgid "terp-folder-yellow" #~ msgstr "terp-folder-yellow" +#~ msgid "" +#~ "List all certified modules available to configure your OpenERP. Modules that " +#~ "are installed are flagged as such. You can search for a specific module " +#~ "using the name or the description of the module. You do not need to install " +#~ "modules one by one, you can install many at the same time by clicking on the " +#~ "schedule button in this list. Then, apply the schedule upgrade from Action " +#~ "menu once for all the ones you have scheduled for installation." +#~ msgstr "" +#~ "这里列出了您服务器上所有可安装的模块,包括已安装的模块。您可以用模块名称或描述的部分字符去查找模块。并不需要逐个安装,可以先在列表中点“安排安装”按钮,最" +#~ "后点“执行安排的升级”操作。" + #~ msgid "Serbian / српски језик" #~ msgstr "Serbian / српски језик" @@ -12084,12 +12219,18 @@ msgstr "俄语 / русский язык" #~ msgid "Maintenance Contracts" #~ msgstr "维护合同" +#~ msgid "You must logout and login again after changing your password." +#~ msgstr "更改密码后,你需要登出再登入" + #~ msgid "" #~ "With the Suppliers menu, you have access to all informations regarding your " #~ "suppliers, including an history to track event (crm) and his accounting " #~ "properties." #~ msgstr "在供应商菜单,你能查看关于供应商的所有信息,包括历史事件(crm)和会计内容." +#~ msgid "Time Tracking" +#~ msgstr "时间估计" + #, python-format #~ msgid "Invalid type" #~ msgstr "无效类型" @@ -12140,3 +12281,39 @@ msgstr "俄语 / русский язык" #~ msgid "Albert Cervera Areny's tweets" #~ msgstr "Albert Cervera Areny 的推" + +#~ msgid "change.user.password" +#~ msgstr "change.user.password" + +#~ msgid "New Password" +#~ msgstr "新密码" + +#~ msgid "Enter the new password again for confirmation." +#~ msgstr "再次输入新密码确认。" + +#~ msgid "Current Password" +#~ msgstr "当前密码" + +#, python-format +#~ msgid "The current password does not match, please double-check it." +#~ msgstr "当前密码不匹配,请再次检查。" + +#~ msgid "Enter the new password." +#~ msgstr "输入新密码" + +#~ msgid "Confirm Password" +#~ msgstr "确认密码" + +#, python-format +#~ msgid "" +#~ "The new and confirmation passwords do not match, please double-check them." +#~ msgstr "新密码两次输入不匹配,请再次检查。" + +#~ msgid "Change" +#~ msgstr "更改" + +#~ msgid "Enter your current password." +#~ msgstr "输入您的当前密码" + +#~ msgid "Change Password" +#~ msgstr "修改密码" diff --git a/bin/addons/base/i18n/zh_TW.po b/bin/addons/base/i18n/zh_TW.po index 1abe122e154..3d1c0bd4b4a 100644 --- a/bin/addons/base/i18n/zh_TW.po +++ b/bin/addons/base/i18n/zh_TW.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2010-12-16 08:34+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-04 14:09+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:53+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -111,13 +111,21 @@ msgid "Created Views" msgstr "已建立的視圖" #. module: base -#: code:addons/base/ir/ir_model.py:339 +#: code:addons/base/ir/ir_model.py:485 #, python-format msgid "" "You can not write in this document (%s) ! Be sure your user belongs to one " "of these groups: %s." msgstr "" +#. module: base +#: help:ir.model.fields,domain:0 +msgid "" +"The optional domain to restrict possible values for relationship fields, " +"specified as a Python expression defining a list of triplets. For example: " +"[('color','=','red')]" +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -129,8 +137,17 @@ msgid "Target Window" msgstr "目標視窗" #. module: base -#: model:res.country,name:base.kr -msgid "South Korea" +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:304 +#, python-format +msgid "" +"Properties of base fields cannot be altered in this manner! Please modify " +"them through Python code, preferably through a custom addon!" msgstr "" #. module: base @@ -339,7 +356,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -379,6 +396,11 @@ msgstr "" msgid "This ISO code is the name of po files to use for translations" msgstr "ISO代碼即為 po 翻譯檔的名稱" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 @@ -449,7 +471,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:255 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "自製的欄位名稱開頭必須是 'x_' !" @@ -784,6 +806,12 @@ msgstr "關島(Guam (USA))" msgid "Human Resources Dashboard" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:507 +#, python-format +msgid "Setting empty passwords is not allowed for security reasons!" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -800,6 +828,11 @@ msgstr "無效的XML視圖結構!" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition @@ -906,6 +939,12 @@ msgstr "" msgid "Marshall Islands" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:328 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "" + #. module: base #: model:res.country,name:base.ht msgid "Haiti" @@ -933,6 +972,12 @@ msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "Operation Canceled" +msgstr "" + #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." @@ -1067,13 +1112,21 @@ msgstr "" msgid "Reports" msgstr "報表" +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "如果設為真,該動作將不會顯示表單右側的工具欄中。" + #. module: base #: field:workflow,on_create:0 msgid "On Create" msgstr "On创建" #. module: base -#: code:addons/base/ir/ir_model.py:461 +#: code:addons/base/ir/ir_model.py:607 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1115,8 +1168,10 @@ msgid "Wizard Info" msgstr "" #. module: base -#: model:res.country,name:base.km -msgid "Comoros" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" msgstr "" #. module: base @@ -1174,17 +1229,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "天: %天" -#. module: base -#: model:ir.actions.act_window,help:base.open_module_tree -msgid "" -"List all certified modules available to configure your OpenERP. Modules that " -"are installed are flagged as such. You can search for a specific module " -"using the name or the description of the module. You do not need to install " -"modules one by one, you can install many at the same time by clicking on the " -"schedule button in this list. Then, apply the schedule upgrade from Action " -"menu once for all the ones you have scheduled for installation." -msgstr "" - #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1292,7 +1336,7 @@ msgid "Formula" msgstr "公式" #. module: base -#: code:addons/base/res/res_user.py:373 +#: code:addons/base/res/res_user.py:389 #, python-format msgid "Can not remove root user!" msgstr "無法移除root使用者" @@ -1304,7 +1348,7 @@ msgstr "" #. module: base #: code:addons/base/res/res_user.py:51 -#: code:addons/base/res/res_user.py:397 +#: code:addons/base/res/res_user.py:413 #, python-format msgid "%s (copy)" msgstr "" @@ -1473,11 +1517,6 @@ msgid "" "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" -#. module: base -#: field:change.user.password,new_password:0 -msgid "New Password" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.action_ui_view msgid "" @@ -1584,6 +1623,11 @@ msgstr "欄位" msgid "Groups (no group = global)" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 @@ -1617,7 +1661,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:94 +#: code:addons/base/ir/ir_model.py:96 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1805,6 +1849,12 @@ msgid "Messages" msgstr "" #. module: base +#: code:addons/base/ir/ir_model.py:303 +#: code:addons/base/ir/ir_model.py:317 +#: code:addons/base/ir/ir_model.py:319 +#: code:addons/base/ir/ir_model.py:321 +#: code:addons/base/ir/ir_model.py:328 +#: code:addons/base/ir/ir_model.py:331 #: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" @@ -1866,6 +1916,11 @@ msgstr "" msgid "Korean (KR) / 한국어 (KR)" msgstr "" +#. module: base +#: help:ir.model.fields,model:0 +msgid "The technical name of the model this field belongs to" +msgstr "" + #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 @@ -1903,6 +1958,11 @@ msgstr "無法升級此模組 '%s'. 它並沒有安裝!" msgid "Cuba" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: model:res.widget,title:base.facebook_widget msgid "Facebook" @@ -2111,6 +2171,13 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: help:ir.ui.view_sc,res_id:0 +msgid "" +"Reference of the target resource, whose model/table depends on the 'Resource " +"Name' field." +msgstr "" + #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" @@ -2195,6 +2262,7 @@ msgstr "欄位地圖" #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 +#: field:ir.translation,module:0 msgid "Module" msgstr "模組" @@ -2263,7 +2331,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:597 #, python-format msgid "Please specify an action to launch !" msgstr "請指示一個執行動作!" @@ -2416,11 +2484,6 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "%x - 使用日期表示" -#. module: base -#: model:ir.model,name:base.model_change_user_password -msgid "change.user.password" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." @@ -2750,11 +2813,6 @@ msgstr "" msgid "Trigger Object" msgstr "觸發器對象" -#. module: base -#: help:change.user.password,confirm_password:0 -msgid "Enter the new password again for confirmation." -msgstr "" - #. module: base #: view:res.users:0 msgid "Current Activity" @@ -2793,8 +2851,8 @@ msgid "Sequence Type" msgstr "序號類型" #. module: base -#: selection:base.language.install,lang:0 -msgid "Hindi / हिंदी" +#: view:ir.ui.view.custom:0 +msgid "Customized Architecture" msgstr "" #. module: base @@ -2819,6 +2877,7 @@ msgstr "SQL 限制" #. module: base #: field:ir.actions.server,srcmodel_id:0 +#: field:ir.model.fields,model_id:0 msgid "Model" msgstr "模型" @@ -2926,10 +2985,9 @@ msgid "You try to remove a module that is installed or will be installed" msgstr "您嘗試移除已安裝或將被安裝的模組" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "客戶端的該類動作或按鈕將觸發此動作。" +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" +msgstr "" #. module: base #: selection:base.language.install,lang:0 @@ -2949,6 +3007,11 @@ msgstr "" msgid "Workflows" msgstr "工作流程" +#. module: base +#: field:ir.translation,xml_id:0 +msgid "XML Id" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" @@ -2988,7 +3051,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:114 #, python-format msgid "You can not remove the model '%s' !" msgstr "您無法移除 '%s' 這個區域" @@ -3086,7 +3149,7 @@ msgid "API ID" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:340 +#: code:addons/base/ir/ir_model.py:486 #, python-format msgid "" "You can not create this document (%s) ! Be sure your user belongs to one of " @@ -3215,11 +3278,6 @@ msgstr "" msgid "System update completed" msgstr "" -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "選擇欄位" - #. module: base #: selection:res.request,state:0 msgid "draft" @@ -3257,12 +3315,10 @@ msgid "Apply For Delete" msgstr "" #. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." -msgstr "如果設為真,該動作將不會顯示表單右側的工具欄中。" +#: code:addons/base/ir/ir_model.py:319 +#, python-format +msgid "Cannot rename column to %s, because that column already exists!" +msgstr "" #. module: base #: view:ir.attachment:0 @@ -3459,6 +3515,14 @@ msgstr "" msgid "Montserrat" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:205 +#, python-format +msgid "" +"The Selection Options expression is not a valid Pythonic expression.Please " +"provide an expression in the [('key','Label'), ...] format." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" @@ -3500,8 +3564,10 @@ msgid "Starter Partner" msgstr "" #. module: base -#: view:base.module.upgrade:0 -msgid "Your system will be updated." +#: help:ir.model.fields,relation_field:0 +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" msgstr "" #. module: base @@ -3670,7 +3736,7 @@ msgid "Flow Start" msgstr "工作流开始" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3702,9 +3768,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 -#: code:addons/base/res/res_lang.py:88 -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:157 +#: code:addons/base/res/res_lang.py:159 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "User Error" msgstr "" @@ -3769,6 +3835,13 @@ msgstr "" msgid "Partner Addresses" msgstr "" +#. module: base +#: help:ir.model.fields,translate:0 +msgid "" +"Whether values for this field can be translated (enables the translation " +"mechanism for that field)" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." @@ -3930,11 +4003,6 @@ msgstr "请求历史" msgid "Menus" msgstr "" -#. module: base -#: view:base.module.upgrade:0 -msgid "The selected modules have been updated / installed !" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" @@ -4125,6 +4193,11 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: help:ir.model.fields,relation:0 +msgid "For relationship fields, the technical name of the target model" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" @@ -4176,6 +4249,11 @@ msgstr "" msgid "Serial Key" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_audit msgid "Audit" @@ -4206,11 +4284,6 @@ msgstr "" msgid "Create Access" msgstr "" -#. module: base -#: field:change.user.password,current_password:0 -msgid "Current Password" -msgstr "" - #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" @@ -4407,6 +4480,14 @@ msgid "" "can choose to restart some wizards manually from this menu." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:206 +#, python-format +msgid "" +"Please use the change password wizard (in User Preferences or User menu) to " +"change your own password." +msgstr "" + #. module: base #: code:addons/orm.py:1350 #, python-format @@ -4672,7 +4753,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:160 +#: code:addons/base/ir/ir_actions.py:164 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4867,8 +4948,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: view:partner.wizard.ean.check:0 -msgid "Ignore" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base @@ -4894,7 +4975,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4928,8 +5009,9 @@ msgid "Nigeria" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" +#: code:addons/base/ir/ir_model.py:250 +#, python-format +msgid "For selection fields, the Selection Options must be given!" msgstr "" #. module: base @@ -4952,12 +5034,6 @@ msgstr "" msgid "Values for Event Type" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:605 -#, python-format -msgid "The current password does not match, please double-check it." -msgstr "" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -5083,6 +5159,13 @@ msgid "" "related object's read access." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: view:ir.ui.view.custom:0 +msgid "Customized Views" +msgstr "" + #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" @@ -5106,7 +5189,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:241 +#: code:addons/base/res/res_user.py:257 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5283,6 +5366,13 @@ msgstr "" msgid "Reunion (French)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:321 +#, python-format +msgid "" +"New column name must still start with x_ , because it is a custom field!" +msgstr "" + #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 @@ -5290,11 +5380,6 @@ msgstr "" msgid "Global" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "You must logout and login again after changing your password." -msgstr "" - #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -5306,7 +5391,7 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:344 +#: code:addons/base/ir/ir_model.py:490 #: code:addons/orm.py:1897 #: code:addons/orm.py:2972 #: code:addons/orm.py:3165 @@ -5322,7 +5407,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:827 +#: code:addons/__init__.py:834 #, python-format msgid "Could not load base module" msgstr "" @@ -5376,8 +5461,8 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base @@ -5529,13 +5614,13 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_model.py:258 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:159 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" @@ -5570,7 +5655,6 @@ msgstr "" #: view:base.module.update:0 #: view:base.module.upgrade:0 #: view:base.update.translations:0 -#: view:change.user.password:0 #: view:partner.clear.ids:0 #: view:partner.sms.send:0 #: view:partner.wizard.spam:0 @@ -5589,6 +5673,11 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / हिंदी" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Custom" @@ -5599,11 +5688,6 @@ msgstr "" msgid "Current" msgstr "" -#. module: base -#: help:change.user.password,new_password:0 -msgid "Enter the new password." -msgstr "" - #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" @@ -5718,7 +5802,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:629 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5877,11 +5961,6 @@ msgstr "" msgid "Sequence Codes" msgstr "" -#. module: base -#: field:change.user.password,confirm_password:0 -msgid "Confirm Password" -msgstr "" - #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" @@ -5919,6 +5998,12 @@ msgstr "" msgid "res.log" msgstr "" +#. module: base +#: help:ir.translation,module:0 +#: help:ir.translation,xml_id:0 +msgid "Maps to the ir_model_data for which this translation is provided." +msgstr "" + #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 @@ -5937,8 +6022,6 @@ msgstr "" #. module: base #: code:addons/base/module/wizard/base_module_import.py:67 -#: code:addons/base/res/res_user.py:594 -#: code:addons/base/res/res_user.py:605 #, python-format msgid "Error !" msgstr "" @@ -6050,13 +6133,6 @@ msgstr "" msgid "Pitcairn Island" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:594 -#, python-format -msgid "" -"The new and confirmation passwords do not match, please double-check them." -msgstr "" - #. module: base #: view:base.module.upgrade:0 msgid "" @@ -6140,11 +6216,6 @@ msgstr "" msgid "Done" msgstr "" -#. module: base -#: view:change.user.password:0 -msgid "Change" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" @@ -6233,7 +6304,7 @@ msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:338 +#: code:addons/base/ir/ir_model.py:484 #, python-format msgid "" "You can not read this document (%s) ! Be sure your user belongs to one of " @@ -6335,6 +6406,13 @@ msgid "" "at the date: %s" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "" + #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 @@ -6367,6 +6445,11 @@ msgstr "" msgid "Icon" msgstr "" +#. module: base +#: help:ir.model.fields,model_id:0 +msgid "The model this field belongs to" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -6412,7 +6495,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:90 +#: code:addons/base/res/res_lang.py:161 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6433,8 +6516,8 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" @@ -6746,8 +6829,8 @@ msgid "Grenada" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" msgstr "" #. module: base @@ -6784,7 +6867,7 @@ msgid "ir.wizard.screen" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:189 +#: code:addons/base/ir/ir_model.py:223 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6932,10 +7015,8 @@ msgid "Manufacturing" msgstr "" #. module: base -#: view:base.language.export:0 -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export Translation" +#: model:res.country,name:base.km +msgid "Comoros" msgstr "" #. module: base @@ -6950,6 +7031,11 @@ msgstr "伺服器動作" msgid "Cancel Install" msgstr "" +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Selection Options" +msgstr "" + #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" @@ -6966,7 +7052,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:551 +#: code:addons/base/res/res_user.py:581 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -7055,13 +7141,21 @@ msgid "" "a negative number indicates no limit" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:331 +#, python-format +msgid "" +"Changing the type of a column is not yet supported. Please drop it and " +"create it again!" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." msgstr "授权用户参照" #. module: base -#: code:addons/base/res/res_user.py:550 +#: code:addons/base/res/res_user.py:580 #, python-format msgid "Warning !" msgstr "" @@ -7207,7 +7301,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7244,13 +7338,6 @@ msgstr "视图参照" msgid "Selection" msgstr "" -#. module: base -#: view:change.user.password:0 -#: model:ir.actions.act_window,name:base.action_view_change_password_form -#: view:res.users:0 -msgid "Change Password" -msgstr "" - #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" @@ -7387,6 +7474,14 @@ msgstr "" msgid "Norwegian Bokmål / Norsk bokmål" msgstr "" +#. module: base +#: help:res.config.users,new_password:0 +#: help:res.users,new_password:0 +msgid "" +"Only specify a value if you want to change the user password. This user will " +"have to logout and login again!" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" @@ -7407,6 +7502,12 @@ msgstr "" msgid "Binary File or external URL" msgstr "" +#. module: base +#: field:res.config.users,new_password:0 +#: field:res.users,new_password:0 +msgid "Change password" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -7432,6 +7533,15 @@ msgstr "" msgid "Occitan (FR, post 1500) / Occitan" msgstr "" +#. module: base +#: model:ir.actions.act_window,help:base.open_module_tree +msgid "" +"You can install new modules in order to activate new features, menu, reports " +"or data in your OpenERP instance. To install some modules, click on the " +"button \"Schedule for Installation\" from the form view, then click on " +"\"Apply Scheduled Upgrades\" to migrate your system." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_emails #: model:ir.ui.menu,name:base.menu_mail_gateway @@ -7498,11 +7608,6 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" -#. module: base -#: help:change.user.password,current_password:0 -msgid "Enter your current password." -msgstr "" - #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" @@ -7519,8 +7624,8 @@ msgid "The code of the country must be unique !" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_project_management_time_tracking -msgid "Time Tracking" +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" msgstr "" #. module: base @@ -7562,8 +7667,11 @@ msgid "Menu Action" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: help:ir.model.fields,selection:0 +msgid "" +"List of options for a selection field, specified as a Python expression " +"defining a list of (key, label) pairs. For example: " +"[('blue','Blue'),('yellow','Yellow')]" msgstr "" #. module: base @@ -7692,6 +7800,14 @@ msgid "" "executed." msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:219 +#, python-format +msgid "" +"The Selection Options expression is must be in the [('key','Label'), ...] " +"format!" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" @@ -7703,7 +7819,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:486 +#: code:addons/base/res/res_user.py:516 #, python-format msgid "" "--\n" @@ -7793,7 +7909,6 @@ msgid "ltd" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" @@ -7901,7 +8016,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:157 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -8002,7 +8117,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:60 +#: code:addons/base/ir/ir_model.py:62 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -8012,11 +8127,6 @@ msgstr "" msgid "Diagram" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -8074,14 +8184,17 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:593 -#: code:addons/base/ir/ir_actions.py:625 -#: code:addons/base/ir/ir_actions.py:709 -#: code:addons/base/ir/ir_actions.py:712 -#: code:addons/base/ir/ir_model.py:112 -#: code:addons/base/ir/ir_model.py:197 -#: code:addons/base/ir/ir_model.py:216 -#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/ir/ir_actions.py:597 +#: code:addons/base/ir/ir_actions.py:629 +#: code:addons/base/ir/ir_actions.py:713 +#: code:addons/base/ir/ir_actions.py:716 +#: code:addons/base/ir/ir_model.py:114 +#: code:addons/base/ir/ir_model.py:204 +#: code:addons/base/ir/ir_model.py:218 +#: code:addons/base/ir/ir_model.py:232 +#: code:addons/base/ir/ir_model.py:250 +#: code:addons/base/ir/ir_model.py:255 +#: code:addons/base/ir/ir_model.py:258 #: code:addons/base/module/module.py:215 #: code:addons/base/module/module.py:258 #: code:addons/base/module/module.py:262 @@ -8090,7 +8203,7 @@ msgstr "" #: code:addons/base/module/module.py:321 #: code:addons/base/module/module.py:336 #: code:addons/base/module/module.py:429 -#: code:addons/base/module/module.py:530 +#: code:addons/base/module/module.py:531 #: code:addons/base/publisher_warranty/publisher_warranty.py:163 #: code:addons/base/publisher_warranty/publisher_warranty.py:281 #: code:addons/base/res/res_currency.py:100 @@ -8138,6 +8251,11 @@ msgstr "" msgid "Danish / Dansk" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search (deprecated)" +msgstr "" + #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" @@ -8148,11 +8266,6 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - #. module: base #: view:res.config.installer:0 msgid "Install Modules" @@ -8342,12 +8455,13 @@ msgid "Luxembourg" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "" +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "客戶端的該類動作或按鈕將觸發此動作。" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:305 +#: code:addons/base/ir/ir_ui_menu.py:285 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" @@ -8516,7 +8630,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:232 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8557,7 +8671,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:341 +#: code:addons/base/ir/ir_model.py:487 #, python-format msgid "" "You can not delete this document (%s) ! Be sure your user belongs to one of " @@ -8715,8 +8829,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base @@ -8845,6 +8959,12 @@ msgstr "" msgid "Portrait" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:317 +#, python-format +msgid "Can only rename one column at a time!" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" @@ -9014,7 +9134,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:240 +#: code:addons/base/res/res_user.py:256 #, python-format msgid "Company Switch Warning" msgstr "" @@ -9529,6 +9649,9 @@ msgstr "" #~ msgid "Using a relation field which uses an unknown object" #~ msgstr "使用一個關聯欄位在不知名的對象中" +#~ msgid "Field Selection" +#~ msgstr "選擇欄位" + #~ msgid "Field child3" #~ msgstr "欄位 child3" diff --git a/debian/po/hu.po b/debian/po/hu.po new file mode 100644 index 00000000000..0764e0fd0eb --- /dev/null +++ b/debian/po/hu.po @@ -0,0 +1,42 @@ +# Hungarian translation for openobject-server +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-server package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-server\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-08-24 22:41+0300\n" +"PO-Revision-Date: 2011-01-11 16:46+0000\n" +"Last-Translator: NOVOTRADE RENDSZERHÁZ \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-12 04:53+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:1001 +msgid "Dedicated system account for the Open ERP server:" +msgstr "Dedikált rendszer felhasználó az Open ERP szerver számára:" + +#. Type: string +#. Description +#: ../openerp-server.templates:1001 +msgid "" +"The Open ERP server must use a dedicated account for its operation so that " +"the system's security is not compromised by running it with superuser " +"privileges." +msgstr "" +"Az Open ERP szervernek egy dedikált felhasználóként kell futnia, így a " +"rendszer biztonsága védettebb, mivel nem rendszergazda felhasználó jogaival " +"fut." + +#. Type: string +#. Description +#: ../openerp-server.templates:1001 +msgid "Please choose that account's username." +msgstr "Kérem válassza ki annak a felhasználónak a nevét." From 6098beab563cbe383612ca4234c0eb7544b56262 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Wed, 12 Jan 2011 04:58:46 +0000 Subject: [PATCH 05/20] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20110112045846-8uu2xx0dqvamh2rf --- addons/account/i18n/es_EC.po | 167 +- addons/account/i18n/id.po | 6 +- addons/account/i18n/pl.po | 20 +- addons/account/i18n/pt_BR.po | 62 +- addons/account/i18n/tr.po | 76 +- addons/account_accountant/i18n/ru.po | 4 +- .../account_analytic_analysis/i18n/es_EC.po | 17 +- .../account_analytic_analysis/i18n/pt_BR.po | 14 +- addons/account_analytic_plans/i18n/es_EC.po | 110 +- addons/account_anglo_saxon/i18n/it.po | 2 +- addons/account_anglo_saxon/i18n/nl.po | 6 +- addons/account_budget/i18n/sv.po | 6 +- addons/account_invoice_layout/i18n/it.po | 2 +- addons/account_invoice_layout/i18n/vi.po | 18 +- addons/account_payment/i18n/fr.po | 4 +- addons/account_voucher/i18n/es.po | 14 +- addons/account_voucher/i18n/fr.po | 8 +- addons/account_voucher/i18n/tr.po | 163 +- .../analytic_journal_billing_rate/i18n/es.po | 4 +- addons/analytic_user_function/i18n/mn.po | 2 +- addons/auction/i18n/de.po | 2 +- addons/auction/i18n/es.po | 26 +- addons/audittrail/i18n/nl.po | 6 +- addons/base_calendar/i18n/fr.po | 4 +- addons/base_contact/i18n/de.po | 2 +- addons/base_contact/i18n/fr.po | 6 +- addons/base_iban/i18n/es.po | 4 +- addons/base_report_creator/i18n/zh_CN.po | 4 +- addons/base_report_designer/i18n/de.po | 2 +- addons/base_vat/i18n/zh_CN.po | 4 +- addons/caldav/i18n/pt_BR.po | 567 +++ addons/crm/i18n/es.po | 18 +- addons/crm/i18n/es_EC.po | 3795 +++++++++++++++++ addons/crm/i18n/fr.po | 17 +- addons/crm/i18n/nl.po | 106 +- addons/crm_caldav/i18n/es.po | 9 +- addons/crm_caldav/i18n/hu.po | 6 +- addons/crm_caldav/i18n/pt_BR.po | 12 +- addons/crm_claim/i18n/nl.po | 37 +- addons/crm_fundraising/i18n/es.po | 13 +- addons/crm_fundraising/i18n/fr.po | 11 +- addons/crm_fundraising/i18n/nl.po | 13 +- addons/crm_helpdesk/i18n/nl.po | 16 +- addons/crm_partner_assign/i18n/nl.po | 21 +- addons/crm_profiling/i18n/es.po | 11 +- addons/crm_profiling/i18n/nl.po | 29 +- addons/decimal_precision/i18n/fr.po | 14 +- addons/decimal_precision/i18n/nl.po | 8 +- addons/delivery/i18n/es.po | 17 +- addons/delivery/i18n/nl.po | 28 +- addons/delivery/i18n/pt_BR.po | 51 +- addons/document/i18n/ar.po | 2 +- addons/document/i18n/hu.po | 28 +- addons/document/i18n/nl.po | 16 +- addons/document_ftp/i18n/nl.po | 17 +- addons/document_ics/i18n/nl.po | 12 +- addons/document_webdav/i18n/es.po | 8 +- addons/document_webdav/i18n/nl.po | 45 +- addons/email_template/i18n/fr.po | 11 +- addons/event/i18n/fr.po | 11 +- addons/event_project/i18n/it.po | 6 +- addons/fetchmail/i18n/pt.po | 2 +- addons/google_map/i18n/fr.po | 4 +- addons/google_map/i18n/sl.po | 6 +- addons/hr/i18n/fr.po | 9 +- addons/hr/i18n/hu.po | 8 +- addons/hr/i18n/zh_CN.po | 40 +- addons/hr_attendance/i18n/es.po | 8 +- addons/hr_contract/i18n/fr.po | 15 +- addons/hr_evaluation/i18n/es.po | 4 +- addons/hr_evaluation/i18n/fr.po | 10 +- addons/hr_expense/i18n/fr.po | 9 +- addons/hr_holidays/i18n/es.po | 19 +- addons/hr_payroll/i18n/es.po | 28 +- addons/hr_payroll_account/i18n/fr.po | 18 +- addons/hr_recruitment/i18n/fr.po | 18 +- addons/hr_timesheet/i18n/fr.po | 9 +- addons/hr_timesheet_invoice/i18n/fr.po | 8 +- addons/hr_timesheet_sheet/i18n/es.po | 14 +- addons/idea/i18n/fr.po | 2 +- addons/knowledge/i18n/ru.po | 22 +- addons/l10n_be/i18n/es.po | 36 +- addons/l10n_be/i18n/fr.po | 68 +- addons/l10n_de/i18n/es.po | 18 +- addons/l10n_ma/i18n/es.po | 9 +- addons/mail_gateway/i18n/pt.po | 2 +- addons/marketing_campaign_crm_demo/i18n/de.po | 2 +- addons/marketing_campaign_crm_demo/i18n/es.po | 6 +- addons/membership/i18n/fr.po | 21 +- addons/mrp/i18n/de.po | 2 +- addons/mrp/i18n/es.po | 22 +- addons/mrp/i18n/fr.po | 104 +- addons/mrp_jit/i18n/fr.po | 28 +- addons/mrp_jit/i18n/hu.po | 8 +- addons/mrp_operations/i18n/es.po | 12 +- addons/mrp_operations/i18n/fr.po | 37 +- addons/mrp_repair/i18n/es.po | 10 +- addons/mrp_repair/i18n/fr.po | 19 +- addons/mrp_subproduct/i18n/fr.po | 13 +- addons/multi_company/i18n/fr.po | 4 +- addons/pad/i18n/de.po | 2 +- addons/pad/i18n/fr.po | 14 +- addons/point_of_sale/i18n/es.po | 15 +- addons/point_of_sale/i18n/fr.po | 9 +- addons/point_of_sale/i18n/it.po | 134 +- addons/procurement/i18n/es.po | 14 +- addons/procurement/i18n/fr.po | 9 +- addons/product/i18n/es.po | 10 +- addons/product/i18n/fr.po | 77 +- addons/product/i18n/hu.po | 34 +- addons/product/i18n/zh_CN.po | 73 +- addons/product_margin/i18n/fr.po | 11 +- addons/profile_tools/i18n/fr.po | 13 +- addons/project/i18n/es.po | 9 +- addons/project/i18n/fr.po | 50 +- addons/project_caldav/i18n/fr.po | 15 +- addons/project_gtd/i18n/fr.po | 61 +- addons/project_issue/i18n/fr.po | 48 +- addons/project_issue_sheet/i18n/fr.po | 11 +- addons/project_long_term/i18n/es.po | 45 +- addons/project_long_term/i18n/fr.po | 9 +- addons/project_mailgate/i18n/fr.po | 14 +- addons/project_messages/i18n/de.po | 2 +- addons/project_messages/i18n/fr.po | 7 +- addons/project_mrp/i18n/fr.po | 9 +- addons/project_planning/i18n/fr.po | 32 +- addons/project_scrum/i18n/es.po | 36 +- addons/project_timesheet/i18n/fr.po | 6 +- addons/purchase/i18n/es.po | 35 +- addons/purchase/i18n/fr.po | 47 +- addons/purchase_analytic_plans/i18n/de.po | 2 +- addons/purchase_requisition/i18n/es.po | 8 +- addons/purchase_requisition/i18n/fr.po | 18 +- addons/report_designer/i18n/it.po | 2 +- addons/report_webkit/i18n/fr.po | 109 +- addons/sale/i18n/fr.po | 41 +- addons/sale/i18n/it.po | 6 +- addons/sale/i18n/pt_BR.po | 142 +- addons/sale/i18n/tr.po | 34 +- addons/sale_analytic_plans/i18n/pt_BR.po | 11 +- addons/sale_crm/i18n/pt_BR.po | 12 +- addons/sale_journal/i18n/hu.po | 16 +- addons/sale_journal/i18n/pt_BR.po | 40 +- addons/sale_layout/i18n/pt_BR.po | 302 ++ addons/sale_margin/i18n/pt_BR.po | 340 ++ addons/sale_mrp/i18n/pt_BR.po | 20 +- addons/sale_order_dates/i18n/pt_BR.po | 70 + addons/share/i18n/fr.po | 21 +- addons/stock/i18n/fr.po | 36 +- addons/stock/i18n/pl.po | 6 +- addons/stock/i18n/pt_BR.po | 28 +- addons/stock_invoice_directly/i18n/fr.po | 6 +- addons/stock_location/i18n/hu.po | 10 +- addons/stock_planning/i18n/fr.po | 16 +- addons/users_ldap/i18n/fr.po | 8 +- 155 files changed, 7354 insertions(+), 1195 deletions(-) create mode 100644 addons/caldav/i18n/pt_BR.po create mode 100644 addons/crm/i18n/es_EC.po create mode 100644 addons/sale_layout/i18n/pt_BR.po create mode 100644 addons/sale_margin/i18n/pt_BR.po create mode 100644 addons/sale_order_dates/i18n/pt_BR.po diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po index e6bd2cda2cd..d19f1690f17 100644 --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -10,13 +10,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2010-12-21 04:13+0000\n" +"PO-Revision-Date: 2011-01-11 15:35+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:04+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account @@ -188,7 +188,7 @@ msgstr "" #: code:addons/account/invoice.py:1439 #, python-format msgid "Warning!" -msgstr "" +msgstr "¡Aviso!" #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -215,7 +215,7 @@ msgstr "Negativo" #: code:addons/account/wizard/account_move_journal.py:95 #, python-format msgid "Journal: %s" -msgstr "" +msgstr "Diario: %s" #. module: account #: help:account.analytic.journal,type:0 @@ -1141,6 +1141,10 @@ msgid "" "purchase orders or receipts. This way, you can control the invoice from your " "supplier according to what you purchased or received." msgstr "" +"Con las facturas de proveedor puede introducir y gestionar facturas emitidas " +"por sus proveedores. OpenERP también puede generar borradores de factura " +"automáticamente desde pedidos o albaranes de compra. De esta forma, puede " +"contrastar la factura de su proveedor con lo comprado o recibido." #. module: account #: view:account.invoice.cancel:0 @@ -1279,7 +1283,7 @@ msgstr "Buscar platilla de impuesto" #. module: account #: report:account.invoice:0 msgid "Your Reference" -msgstr "" +msgstr "Su referencia" #. module: account #: view:account.move.reconcile:0 @@ -1426,6 +1430,10 @@ msgid "" "entry per accounting document: invoice, refund, supplier payment, bank " "statements, etc." msgstr "" +"Una entrada de diario consiste en varias lineas del diario, cada una " +"registra una transaccion al debe o haber. OpenERP crea automaticamente un " +"asiento contable por documento: factura, reembolso, pago a proveedor, " +"extracto bancario, etc." #. module: account #: view:account.entries.report:0 @@ -1491,7 +1499,7 @@ msgstr "Plantilla para Tipos de Contribuyentes" #. module: account #: model:account.tax.code,name:account.account_tax_code_0 msgid "Tax Code Test" -msgstr "" +msgstr "Test código impuesto" #. module: account #: field:account.automatic.reconcile,reconciled:0 @@ -1570,6 +1578,12 @@ msgid "" "the Payment column of a line, you can press F1 to open the reconciliation " "form." msgstr "" +"Un extracto bancario es un resumen de todas las transacciones financieras " +"ocurridas sobre un periodo y depositadas en una cuenta, tarjeta de creditoo " +"algun otro tipo de cuenta financiera. El saldo inicial es propuesto " +"automaticamente y el saldo final se encuentra en tu extracto. Cuando usted " +"está en la columna de pago de una línea, puede presionar F1 para abrir el " +"formulario de la reconciliación." #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -3607,6 +3621,7 @@ msgstr "#Asientos" msgid "" "You selected an Unit of Measure which is not compatible with the product." msgstr "" +"Ha seleccionado una unidad de medida que no es compatible con el producto." #. module: account #: code:addons/account/invoice.py:491 @@ -3707,6 +3722,10 @@ msgid "" "debit/credit accounts, of type 'situation' and with a centralized " "counterpart." msgstr "" +"Lo más recomendable es usar un diario dedicado a contener los asientos de " +"apertura de todos los ejercicios. Tenga en cuenta que lo debería definir con " +"cuentas de debe/haber por defecto, de tipo 'situación' y con una " +"contrapartida centralizada." #. module: account #: view:account.installer:0 @@ -3749,6 +3768,10 @@ msgid "" "customer as well as payment delays. The tool search can also be used to " "personalise your Invoices reports and so, match this analysis to your needs." msgstr "" +"A partir de este informe, puede tener una visión general del importe " +"facturado a sus clientes, así como los retrasos en los pagos. La herramienta " +"de búsqueda también se puede utilizar para personalizar los informes de las " +"facturas y por tanto, adaptar este análisis a sus necesidades." #. module: account #: view:account.invoice.confirm:0 @@ -3825,6 +3848,7 @@ msgid "" "If the active field is set to False, it will allow you to hide the account " "without removing it." msgstr "" +"Si el campo activo se desmarca, permite ocultar la cuenta sin eliminarla." #. module: account #: view:account.tax.template:0 @@ -3877,6 +3901,8 @@ msgid "" "This account will be used to value outgoing stock for the current product " "category using sale price" msgstr "" +"Esta cuenta se utilizará para valorar el stock saliente para la categoría de " +"producto actual utilizando el precio de venta." #. module: account #: selection:account.automatic.reconcile,power:0 @@ -3928,7 +3954,7 @@ msgstr "Month" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference UoM" -msgstr "" +msgstr "Referencia UdM" #. module: account #: field:account.account,note:0 @@ -4035,7 +4061,7 @@ msgstr "Check if you want to display Accounts with 0 balance too." #. module: account #: view:account.tax:0 msgid "Compute Code" -msgstr "" +msgstr "Código cálculo" #. module: account #: view:account.account.template:0 @@ -4141,7 +4167,7 @@ msgstr "Account Journal Select" #. module: account #: view:account.invoice:0 msgid "Print Invoice" -msgstr "" +msgstr "Imprimir factura" #. module: account #: view:account.tax.template:0 @@ -4521,6 +4547,10 @@ msgid "" "partially. You can easily generate refunds and reconcile them directly from " "the invoice form." msgstr "" +"Con el reembolso de proveedores puedes manejar las notas de credito que " +"recibes de tus proveedores. Un reembolso es un documento que acredita una " +"factura por completo o parcialmente. Usted puede generar las devoluciones y " +"conciliar con ellos directamente desde el formulario de factura." #. module: account #: field:account.analytic.Journal.report,date2:0 @@ -4676,7 +4706,7 @@ msgstr "Pagos" #. module: account #: view:account.tax:0 msgid "Reverse Compute Code" -msgstr "" +msgstr "Código cálculo inverso" #. module: account #: field:account.subscription.line,move_id:0 @@ -4705,6 +4735,7 @@ msgstr "Nombre de Columna" msgid "" "This report gives you an overview of the situation of your general journals" msgstr "" +"Este informe proporciona una vista general de la situación de sus diarios" #. module: account #: field:account.entries.report,year:0 @@ -5220,6 +5251,11 @@ msgid "" "impossible any new entry record. Close a fiscal year when you need to " "finalize your end of year results definitive " msgstr "" +"Si no debe introducir más asientos en un ejercicio fiscal, lo puede cerrar " +"desde aquí. Se cerrarán todos los períodos abiertos en este ejercicio que " +"hará imposible introducir ningún asiento nuevo. Cierre un ejercicio fiscal " +"cuando necesite finalizar los resultados de fin de ejercicio " +"definitivamente. " #. module: account #: field:account.central.journal,amount_currency:0 @@ -5429,6 +5465,10 @@ msgid "" "OpenERP allows you to define the tax structure and manage it from this menu. " "You can define both numeric and alphanumeric tax codes." msgstr "" +"La definicion de codigo de impuesto depende de la declaracion de impuestos " +"de tu pais. OpenERP permite definir tu estructura de impuestos y " +"administrarla desde este menu. Puedes definir codigos de dos tipos: " +"numericos y alfanumericos." #. module: account #: help:account.partner.reconcile.process,progress:0 @@ -5535,7 +5575,7 @@ msgstr "Invalid action !" #: code:addons/account/wizard/account_move_journal.py:102 #, python-format msgid "Period: %s" -msgstr "" +msgstr "Período: %s" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template @@ -5648,6 +5688,10 @@ msgid "" "line of the expense account. OpenERP will propose to you automatically the " "Tax related to this account and the counterpart \"Account Payable\"." msgstr "" +"Esta vista puede ser usada por los contadores para registrar asientos en " +"OpenERP. Si deseas registrar una factura de proveedor, empieza por registrar " +"la linea de la cuenta de egresos. OpenERP propondra automaticamente el " +"impuesto relacionado a esta cuenta y la contraparte de \"Cuenta por Pagar\"" #. module: account #: field:account.entries.report,date_created:0 @@ -6011,6 +6055,10 @@ msgid "" "the tool search to analyse information about analytic entries generated in " "the system." msgstr "" +"Desde esta vista, dispone de un análisis de los distintos asientos " +"analíticos de la cuenta analítica que ha definido para ajustarse a sus " +"necesidades del negocio. Utilice la herramienta de búsqueda para analizar la " +"información sobre los asientos analíticos generados en el sistema." #. module: account #: sql_constraint:account.journal:0 @@ -6062,7 +6110,7 @@ msgstr "Centralización" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Generate Your Accounting Chart from a Chart Template" -msgstr "" +msgstr "Generar su plan contable desde una plantilla de plan contable" #. module: account #: view:account.account:0 @@ -6204,6 +6252,13 @@ msgid "" "account. From this view, you can create and manage the account types you " "need for your company." msgstr "" +"Un tipo de cuenta se utiliza para determinar cómo se utiliza una cuenta en " +"cada diario. El método de diferido de un tipo de cuenta determina el proceso " +"para el cierre anual. Informes como el Balance General y el informe de " +"pérdidas y ganancias utiliza la categoría (ganancias / pérdida o balance). " +"Por ejemplo, el tipo de cuenta podría estar vinculado a una cuenta de " +"activo, de gastos, o cuenta por pagar. Desde esta vista, puede crear y " +"gestionar los tipos de cuenta que usted necesita para su empresa." #. module: account #: model:ir.actions.act_window,help:account.action_account_bank_reconcile_tree @@ -6358,6 +6413,11 @@ msgid "" "reconcile in a series of accounts. It finds entries for each partner where " "the amounts correspond." msgstr "" +"Para que una factura se considere pagada, los apuntes contables de la " +"factura deben estar conciliados con sus contrapartidas, normalmente pagos. " +"Con la funcionalidad de reconciliación automática, OpenERP realiza su propia " +"búsqueda de apuntes a conciliar en una serie de cuentas. Encuentra los " +"apuntes, para cada tercero, donde las cantidades se correspondan." #. module: account #: view:account.move:0 @@ -6386,6 +6446,8 @@ msgid "" "This report is an analysis done by a partner. It is a PDF report containing " "one line per partner representing the cumulative credit balance" msgstr "" +"Este informe es un análisis realizado por una empresa. Es un informe PDF que " +"contiene una línea por empresa representando el saldo del haber acumulativo." #. module: account #: code:addons/account/wizard/account_validate_account_move.py:61 @@ -6469,6 +6531,9 @@ msgid "" "allowing you to quickly check the balance of each of your accounts in a " "single report" msgstr "" +"Este informe le permite imprimir o generar un pdf de su balance de sumas y " +"saldos permitiendo comprobar con rapidez el saldo de cada una de sus cuentas " +"en un único informe." #. module: account #: help:account.move,to_check:0 @@ -6644,6 +6709,11 @@ msgid "" "an agreement with a customer or a supplier. With Define Recurring Entries, " "you can create such entries to automate the postings in the system." msgstr "" +"Una entrada recurrente es una entrada de varios que se produce de forma " +"recurrente a partir de una fecha específica, es decir, equivalente a la " +"firma de un contrato o un acuerdo con un cliente o proveedor. Con Definir " +"las entradas Recurrentes, puede crear las entradas como para automatizar las " +"contabilizaciones en el sistema." #. module: account #: field:account.entries.report,product_uom_id:0 @@ -6660,6 +6730,11 @@ msgid "" "basis. You can enter the coins that are in your cash box, and then post " "entries when money comes in or goes out of the cash box." msgstr "" +"Una caja registradora le permite administrar las entradas de efectivo en los " +"diarios de efectivo. Esta característica proporciona una manera fácil para " +"el seguimiento de los pagos en efectivo sobre una base diaria. Puede " +"introducir las monedas que están en su caja, y luego enviar las entradas " +"cuando el dinero entra o sale de la caja." #. module: account #: selection:account.automatic.reconcile,power:0 @@ -6814,6 +6889,9 @@ msgid "" "You can search for individual account entries through useful information. To " "search for account entries, open a journal, then select a record line." msgstr "" +"Puedes buscar por entrada de cuentas individuales atraves de información " +"útil. Para buscar asientos contables, abra un diario, luego seleccione la " +"linea de registro." #. module: account #: report:account.invoice:0 @@ -7052,6 +7130,12 @@ msgid "" "Situation' to be used at the time of new fiscal year creation or end of year " "entries generation." msgstr "" +"Seleccione 'Ventas' para el diario de ventas que será usado cuando se creen " +"facturas. Seleccione 'Compras' para el diario a usar cuando se aprueben " +"pedidos de compra. Seleccione 'Efectivo' (Caja) para que se use a la hora de " +"hacer pagos. Seleccione 'General' para operaciones misceláneas. Seleccione " +"'Situación apertura/cierre' para usarlo cuando se crea un nuevo ejercicio " +"fiscal o la generación del asiento de cierre." #. module: account #: report:account.invoice:0 @@ -7290,6 +7374,11 @@ msgid "" "in which they will appear. Then you can create a new journal and link your " "view to it." msgstr "" +"Aqui puedes personalizar una vista de diario existente o crear una nueva. " +"Las vista de diarios determinan la forma como puedes registrar entradas en " +"tu diario. Selecciona los campos que tu deseas que aparezcan en tu diario y " +"determina la secuencia en la que apareceran. Entonces puedes crear un nuevo " +"diario y ligarlo a tu vista." #. module: account #: view:account.payment.term.line:0 @@ -7598,11 +7687,15 @@ msgid "" "will see the taxes with codes related to your legal statement according to " "your country." msgstr "" +"El plan de impuestos es usado para generar tu declaracion periodica. Tu " +"veras los impuestos con los codigos relacionados a tu declaracion oficial " +"deacuerdo a tu pais." #. module: account #: view:account.installer.modules:0 msgid "Add extra Accounting functionalities to the ones already installed." msgstr "" +"Añade funcionalidades contables extras a las que ya tiene instaladas." #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -7739,6 +7832,10 @@ msgid "" "can easily generate refunds and reconcile them directly from the invoice " "form." msgstr "" +"Con reembolsos al cliente puede gestionar las notas de crédito para sus " +"clientes. Un reembolso es un documento que acredita una factura completa o " +"parcialmente. Usted puede generar las devoluciones y conciliar con ellos " +"directamente desde el formulario de factura." #. module: account #: model:ir.actions.act_window,help:account.action_account_vat_declaration @@ -7788,6 +7885,9 @@ msgid "" "added, Loss: Amount will be duducted), which is calculated from Profilt & " "Loss Report" msgstr "" +"Esta cuenta es usada para trasferir Perdidas/Ganacias (Ganacias: El monto se " +"sumara, Perdidas: El monto se restara), que es calculado del reporte de " +"Perdidas y Ganacias." #. module: account #: help:account.move.line,blocked:0 @@ -7899,6 +7999,10 @@ msgid "" "sales orders or deliveries. You should only confirm them before sending them " "to your customers." msgstr "" +"Con las facturas del cliente puede crear y gestionar las facturas de venta " +"emitidas a sus clientes. OpenERP tambien puede generar facturas en borrador " +"automaticamente desde ordenes de venta o envios. Solo debes confirmarlos " +"antes de enviarlos a tus clientes." #. module: account #: view:account.entries.report:0 @@ -8086,6 +8190,8 @@ msgid "" "The amount of the voucher must be the same amount as the one on the " "statement line" msgstr "" +"El importe del recibo debe ser el mismo importe que el de la línea del " +"extracto" #. module: account #: code:addons/account/account_move_line.py:1057 @@ -8164,6 +8270,13 @@ msgid "" "would be referred to as FY 2011. You are not obliged to follow the actual " "calendar year." msgstr "" +"Definir ejercicio de su empresa de acuerdo a sus necesidades. Un ejercicio " +"es un punto al final de la cual las cuentas de una empresa se componen (por " +"lo general 12 meses). El ejercicio que normalmente se conoce la fecha en que " +"termina. Por ejemplo, si el año financiero de la compañía termina 30 de " +"noviembre 2011, a continuación, todo lo que entre diciembre 1, 2010 y 30 de " +"noviembre 2011 se conoce como el Año Fiscal 2011. Usted no está obligado a " +"seguir el año calendario real." #. module: account #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open @@ -8689,6 +8802,12 @@ msgid "" "closed or left open depending on your company's activities over a specific " "period." msgstr "" +"Here you can define a financial period, an interval of time in your " +"company's financial year. An accounting period typically is a month or a " +"quarter. It usually corresponds to the periods of the tax declaration. " +"Create and manage periods from here and decide whether a period should be " +"closed or left open depending on your company's activities over a specific " +"period." #. module: account #: report:account.move.voucher:0 @@ -9084,6 +9203,9 @@ msgid "" "payment term!\n" "Please define partner on it!" msgstr "" +"La fecha de vencimiento de la línea de asiento generado por la línea del " +"modelo '%s' se basa en el plazo de pago de la empresa.\n" +"¡Por favor, defina la empresa en él!" #. module: account #: field:account.cashbox.line,number:0 @@ -9233,6 +9355,8 @@ msgid "" "This report allows you to print or generate a pdf of your general ledger " "with details of all your account journals" msgstr "" +"Este informe le permite imprimir o generar un pdf de su libro mayor con el " +"detalle de todos sus diarios contables." #. module: account #: selection:account.account,type:0 @@ -9398,7 +9522,7 @@ msgstr "Total" #: code:addons/account/wizard/account_move_journal.py:97 #, python-format msgid "Journal: All" -msgstr "" +msgstr "Diario: Todos" #. module: account #: field:account.account,company_id:0 @@ -9528,6 +9652,8 @@ msgid "" "This account will be used to value outgoing stock for the current product " "category using cost price" msgstr "" +"Esta cuenta se utilizará para valorar el stock saliente para la categoría de " +"producto actual utilizando el precio de coste." #. module: account #: report:account.move.voucher:0 @@ -9732,6 +9858,12 @@ msgid "" "may keep several types of specialized journals such as a cash journal, " "purchase journal, sales journal..." msgstr "" +"Create and manage your company's journals from this menu. A journal is used " +"to record transactions of all accounting data related to the day-to-day " +"business of your company using double-entry bookkeeping system. Depending on " +"the nature of its activities and the number of daily transactions, a company " +"may keep several types of specialized journals such as a cash journal, " +"purchase journal, sales journal..." #. module: account #: model:ir.model,name:account.model_account_analytic_chart @@ -9916,6 +10048,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the analytic " "journal without removing it." msgstr "" +"Si el campo activo se desmarca, permite ocultar el diario analítico sin " +"eliminarlo." #. module: account #: field:account.analytic.line,ref:0 @@ -10017,6 +10151,13 @@ msgid "" "certain amount of information. They have to be certified by an external " "auditor annually." msgstr "" +"Create and manage the accounts you need to record journal entries. An " +"account is part of a ledger allowing your company to register all kinds of " +"debit and credit transactions. Companies present their annual accounts in " +"two main parts: the balance sheet and the income statement (profit and loss " +"account). The annual accounts of a company are required by law to disclose a " +"certain amount of information. They have to be certified by an external " +"auditor annually." #~ msgid "Asset" #~ msgstr "Activo" diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po index ba07b20d717..e90a154dfc4 100644 --- a/addons/account/i18n/id.po +++ b/addons/account/i18n/id.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-09 08:22+0000\n" -"Last-Translator: Zulfahmi Andri \n" +"PO-Revision-Date: 2011-01-11 21:40+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:16+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index 0bd6eaa34d5..2feedb782fd 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-04 20:15+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" +"PO-Revision-Date: 2011-01-11 19:09+0000\n" +"Last-Translator: Adam Czabara \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account @@ -213,7 +213,7 @@ msgstr "Ujemne" #: code:addons/account/wizard/account_move_journal.py:95 #, python-format msgid "Journal: %s" -msgstr "" +msgstr "Dziennik: %s" #. module: account #: help:account.analytic.journal,type:0 @@ -401,7 +401,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "account.tax.template" -msgstr "" +msgstr "account.tax.template" #. module: account #: model:ir.model,name:account.model_account_bank_accounts_wizard @@ -540,7 +540,7 @@ msgstr "Potwierdź wybrane faktury" #. module: account #: field:account.addtmpl.wizard,cparent_id:0 msgid "Parent target" -msgstr "" +msgstr "Rodzic docelowy" #. module: account #: field:account.bank.statement,account_id:0 @@ -579,7 +579,7 @@ msgstr "Korekta" #. module: account #: report:account.overdue:0 msgid "Li." -msgstr "" +msgstr "Li." #. module: account #: field:account.automatic.reconcile,unreconciled:0 @@ -827,7 +827,7 @@ msgstr "Obliczenie daty płatności" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "J.C./Move name" -msgstr "" +msgstr "J.C./Zmień nazwę" #. module: account #: selection:account.entries.report,month:0 @@ -1093,7 +1093,7 @@ msgstr "Zyski i straty (konta wydatków)" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "-" -msgstr "" +msgstr "-" #. module: account #: view:account.analytic.account:0 @@ -1108,7 +1108,7 @@ msgstr "Generuj zapisy przed:" #. module: account #: selection:account.bank.accounts.wizard,account_type:0 msgid "Bank" -msgstr "" +msgstr "Bank" #. module: account #: field:account.period,date_start:0 diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index a9fa5332f9b..455f86d8d0d 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-09 14:44+0000\n" -"Last-Translator: Raphaël Valyi - http://www.akretion.com \n" +"PO-Revision-Date: 2011-01-11 14:26+0000\n" +"Last-Translator: Thiago Medeiros \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:17+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account @@ -2522,7 +2522,7 @@ msgstr "" #. module: account #: report:account.journal.period.print:0 msgid "Label" -msgstr "" +msgstr "Rótulo" #. module: account #: view:account.tax:0 @@ -2718,7 +2718,7 @@ msgstr "O balanço esperado (%.2f) é diferente do calculado. (%.2f)" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 msgid "Payment entries are the second input of the reconciliation." -msgstr "" +msgstr "Entradas de pagamento são a segunda entrada da reconciliação." #. module: account #: report:account.move.voucher:0 @@ -2745,6 +2745,9 @@ msgid "" "The optional quantity expressed by this line, eg: number of product sold. " "The quantity is not a legal requirement but is very useful for some reports." msgstr "" +"A quantidade opicional expressa por esta linha, ex: número de produtos " +"vendidos. A quantidade não é uma exigência legal, mas é muito útil para " +"alguns relatórios." #. module: account #: view:account.payment.term.line:0 @@ -2773,6 +2776,8 @@ msgstr "Deixe em branco para usar a data do prazo de validação (fatura)" msgid "" "used in statement reconciliation domain, but shouldn't be used elswhere." msgstr "" +"utilizados no domínio da reconciliação de extratos, mas não deve ser usado " +"em outros lugares." #. module: account #: field:account.invoice.tax,base_amount:0 @@ -2791,6 +2796,9 @@ msgid "" "between the creation date or the creation date of the entries plus the " "partner payment terms." msgstr "" +"A data de vencimento dos lançamentos gerados para este modelo. Você pode " +"escolher entre a data de criação ou a data de criação dos lançamentos mais " +"as condições de pagamento do parceiro." #. module: account #: model:ir.ui.menu,name:account.menu_finance_accounting @@ -2801,7 +2809,7 @@ msgstr "Conta financeira" #: view:account.pl.report:0 #: model:ir.ui.menu,name:account.menu_account_pl_report msgid "Profit And Loss" -msgstr "" +msgstr "Lucros e Perdas" #. module: account #: view:account.fiscal.position:0 @@ -2867,12 +2875,12 @@ msgstr "O usuário responsável por este diário" #. module: account #: view:account.period:0 msgid "Search Period" -msgstr "" +msgstr "Pesquisar Período" #. module: account #: view:account.change.currency:0 msgid "Invoice Currency" -msgstr "" +msgstr "Moeda da Fatura" #. module: account #: field:account.payment.term,line_ids:0 @@ -2922,7 +2930,7 @@ msgstr "Nome da linha" #. module: account #: view:account.fiscalyear:0 msgid "Search Fiscalyear" -msgstr "" +msgstr "Pesquisar Ano Fiscal" #. module: account #: selection:account.tax,applicable_type:0 @@ -2988,7 +2996,7 @@ msgstr "Modelo de código de taxa" #. module: account #: view:account.subscription:0 msgid "Starts on" -msgstr "" +msgstr "Inicia em" #. module: account #: model:ir.model,name:account.model_account_partner_ledger @@ -2998,7 +3006,7 @@ msgstr "" #. module: account #: help:account.journal.column,sequence:0 msgid "Gives the sequence order to journal column." -msgstr "" +msgstr "Dá a ordem da sequencia da a coluna do diário." #. module: account #: view:account.tax.template:0 @@ -3011,6 +3019,7 @@ msgstr "Declaração da taxa" #: help:account.bank.accounts.wizard,currency_id:0 msgid "Forces all moves for this account to have this secondary currency." msgstr "" +"Força todos os movimentos dessa conta para ter esta moeda secundária." #. module: account #: model:ir.actions.act_window,help:account.action_validate_account_move_line @@ -3018,6 +3027,9 @@ msgid "" "This wizard will validate all journal entries of a particular journal and " "period. Once journal entries are validated, you can not update them anymore." msgstr "" +"Este assistente vai validar todas as entradas de diário de um diário e " +"período particular. Uma vez que os lançamentos do diário estão validados, " +"você não pode atualizá-los mais." #. module: account #: model:ir.actions.act_window,name:account.action_account_chart_template_form @@ -3033,7 +3045,7 @@ msgstr "Gerar plano de contas de um modelo de plano" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile msgid "Account Unreconcile Reconcile" -msgstr "" +msgstr "Reconciliar Conta Desconciliada" #. module: account #: help:account.account.type,close_method:0 @@ -3089,7 +3101,7 @@ msgstr "Diários" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 msgid "Remaining Partners" -msgstr "" +msgstr "Parceiros Restantes" #. module: account #: view:account.subscription:0 @@ -3156,6 +3168,8 @@ msgid "" "The amount expressed in the related account currency if not equal to the " "company one." msgstr "" +"O montante expresso na moeda da conta relacionada, se não igual ao de uma " +"empresa." #. module: account #: report:account.move.voucher:0 @@ -3212,7 +3226,7 @@ msgstr "Ano" #. module: account #: report:account.move.voucher:0 msgid "Authorised Signatory" -msgstr "" +msgstr "Signatário Autorizado" #. module: account #: view:validate.account.move.lines:0 @@ -3257,7 +3271,7 @@ msgstr "Valor do Imposto" #. module: account #: view:account.installer:0 msgid "Your bank and cash accounts" -msgstr "" +msgstr "Seu banco e contas de balanço" #. module: account #: view:account.move:0 @@ -3291,6 +3305,8 @@ msgid "" "You cannot change the type of account from '%s' to '%s' type as it contains " "account entries!" msgstr "" +"Você não pode alterar o tipo de conta '% s' para '% s', já que contém " +"anotações em conta!" #. module: account #: report:account.general.ledger:0 @@ -3330,7 +3346,7 @@ msgstr "Criar conta" #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "" +msgstr "Relatório de vendas por tipo de conta" #. module: account #: selection:account.account.type,close_method:0 @@ -3490,7 +3506,7 @@ msgstr "Orçamentos" #: selection:account.report.general.ledger,filter:0 #: selection:account.vat.declaration,filter:0 msgid "No Filters" -msgstr "" +msgstr "Nenhum filtro" #. module: account #: selection:account.analytic.journal,type:0 @@ -3617,7 +3633,7 @@ msgstr "" #. module: account #: view:account.fiscal.position:0 msgid "Mapping" -msgstr "" +msgstr "Mapeamento" #. module: account #: field:account.account,name:0 @@ -3676,7 +3692,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "General Accounting" -msgstr "" +msgstr "Contabilidade Geral" #. module: account #: report:account.overdue:0 @@ -3697,7 +3713,7 @@ msgstr "" #: view:account.installer.modules:0 #: view:wizard.multi.charts.accounts:0 msgid "title" -msgstr "" +msgstr "título" #. module: account #: view:account.invoice:0 @@ -3714,7 +3730,7 @@ msgstr "" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "" +msgstr "Mostrar Parceiros" #. module: account #: view:account.invoice:0 @@ -3737,7 +3753,7 @@ msgstr "" #. module: account #: view:account.invoice.confirm:0 msgid "Confirm Invoices" -msgstr "" +msgstr "Confirmar faturas" #. module: account #: selection:account.account,currency_mode:0 @@ -3801,7 +3817,7 @@ msgstr "Saldo Analítico" #: code:addons/account/report/account_profit_loss.py:124 #, python-format msgid "Net Loss" -msgstr "" +msgstr "Prejuízo Líquido" #. module: account #: help:account.account,active:0 diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index 7b23f64bda4..7e887b00224 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2010-12-28 19:06+0000\n" -"Last-Translator: Francois Degrave (OpenERP) \n" +"PO-Revision-Date: 2011-01-11 11:32+0000\n" +"Last-Translator: Engin BAHADIR \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 msgid "System payment" -msgstr "" +msgstr "Sistem ödemesi" #. module: account #: view:account.journal:0 @@ -45,12 +45,12 @@ msgstr "" #. module: account #: view:account.move.reconcile:0 msgid "Journal Entry Reconcile" -msgstr "Journal Entry Reconcile" +msgstr "Yevmiye Kaydını Mutabakatla" #. module: account #: field:account.installer.modules,account_voucher:0 msgid "Voucher Management" -msgstr "Senet Yöneticisi" +msgstr "Çek Yönetimi" #. module: account #: view:account.account:0 @@ -85,7 +85,7 @@ msgstr "Hesap para birimi" #. module: account #: view:account.tax:0 msgid "Children Definition" -msgstr "Children Definition" +msgstr "Alt Tanım" #. module: account #: model:ir.model,name:account.model_report_aged_receivable @@ -95,7 +95,7 @@ msgstr "Bugüne kadarki Yaşlandırılmış Alacak" #. module: account #: field:account.partner.ledger,reconcil:0 msgid "Include Reconciled Entries" -msgstr "Include Reconciled Entries" +msgstr "Mutabakatlı girişler dahil" #. module: account #: view:account.pl.report:0 @@ -103,11 +103,13 @@ msgid "" "The Profit and Loss report gives you an overview of your company profit and " "loss in a single document" msgstr "" +"Kar / Zarar raporu, tek sayfada şirketinizin kar ve zarar durumu ile ilgili " +"bilgi sunar." #. module: account #: model:process.transition,name:account.process_transition_invoiceimport0 msgid "Import from invoice or payment" -msgstr "Import from invoice or payment" +msgstr "Fatura ya da ödemeden içe aktar" #. module: account #: model:ir.model,name:account.model_wizard_multi_charts_accounts @@ -131,7 +133,7 @@ msgstr "" #. module: account #: report:account.tax.code.entries:0 msgid "Accounting Entries-" -msgstr "Accounting Entries-" +msgstr "Muhasebe Girdileri-" #. module: account #: code:addons/account/account.py:1291 @@ -143,7 +145,7 @@ msgstr "You can not delete posted movement: \"%s\"!" #: report:account.invoice:0 #: field:account.invoice.line,origin:0 msgid "Origin" -msgstr "Kaynak" +msgstr "Menşei" #. module: account #: view:account.account:0 @@ -163,7 +165,7 @@ msgstr "Reconcile" #: field:account.move.line,ref:0 #: field:account.subscription,ref:0 msgid "Reference" -msgstr "Referans" +msgstr "Kaynak" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -187,7 +189,7 @@ msgstr "Uyarı!" #: field:account.fiscal.position.account,account_src_id:0 #: field:account.fiscal.position.account.template,account_src_id:0 msgid "Account Source" -msgstr "hesap kaynağı" +msgstr "Hesap Kaynağı" #. module: account #: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal @@ -197,7 +199,7 @@ msgstr "Bütün Analiz girişleri" #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard msgid "Invoices Created Within Past 15 Days" -msgstr "Invoices Created Within Past 15 Days" +msgstr "Son 15 günde yaratılmış faturalar" #. module: account #: selection:account.account.type,sign:0 @@ -208,7 +210,7 @@ msgstr "Negatif" #: code:addons/account/wizard/account_move_journal.py:95 #, python-format msgid "Journal: %s" -msgstr "" +msgstr "Yevmiye: %s" #. module: account #: help:account.analytic.journal,type:0 @@ -239,8 +241,8 @@ msgid "" "No period defined for this date: %s !\n" "Please create a fiscal year." msgstr "" -"No period defined for this date: %s !\n" -"Please create a fiscal year." +"Bu tarih için dönem tanımlanmadı: ( %s )\n" +"Lütfen mali yıl yaratınız." #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_select @@ -270,7 +272,7 @@ msgstr "" #: code:addons/account/invoice.py:1228 #, python-format msgid "Invoice '%s' is paid partially: %s%s of %s%s (%s%s remaining)" -msgstr "Invoice '%s' is paid partially: %s%s of %s%s (%s%s remaining)" +msgstr "'%s' faturası parçalı öndendi: (Ödenen %s%s Toplam %s%s Kalan %s%s)" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 @@ -286,12 +288,12 @@ msgstr "Belgian Reports" #: code:addons/account/account_move_line.py:1102 #, python-format msgid "You can not add/modify entries in a closed journal." -msgstr "You can not add/modify entries in a closed journal." +msgstr "Kapanmış bir yevmiyeye ekleme yapamaz ya da değiştiremezsiniz." #. module: account #: view:account.bank.statement:0 msgid "Calculated Balance" -msgstr "Calculated Balance" +msgstr "Hesaplanan bakiye" #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry @@ -313,7 +315,7 @@ msgstr "Allow write off" #. module: account #: view:account.analytic.chart:0 msgid "Select the Period for Analysis" -msgstr "Select the Period for Analysis" +msgstr "Analiz için dönem seçin" #. module: account #: view:account.move.line:0 @@ -324,7 +326,7 @@ msgstr "St." #: code:addons/account/invoice.py:547 #, python-format msgid "Invoice line account company does not match with invoice company." -msgstr "Invoice line account company does not match with invoice company." +msgstr "Fatura kalemindeki hesap şirketi ile fatura şirketi eşleşmiyor." #. module: account #: field:account.journal.column,field:0 @@ -349,23 +351,27 @@ msgid "" "You can create one in the menu: \n" "Configuration/Financial Accounting/Accounts/Journals." msgstr "" +"Bu şirket için %s tipinde bir hesap yevmiyesi bulunamadı.\n" +"\n" +"Ayarlar/Finansal Muhasebe/Hesaplar/Yevmiyeler menüsünden\n" +"bir tane yaratabilirsiniz." #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "Account Unreconcile" +msgstr "Cari Muatabakatı Kaldır" #. module: account #: view:product.product:0 #: view:product.template:0 msgid "Purchase Properties" -msgstr "Alış Özellikleri" +msgstr "Satınalma Özellikleri" #. module: account #: view:account.installer:0 #: view:account.installer.modules:0 msgid "Configure" -msgstr "" +msgstr "Yapılandır" #. module: account #: selection:account.entries.report,month:0 @@ -403,7 +409,7 @@ msgstr "Oluşturma Tarihi" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "Satın Alma İadesi" +msgstr "Satınalma İadesi" #. module: account #: selection:account.journal,type:0 @@ -447,14 +453,14 @@ msgstr "Pozitif" #. module: account #: view:account.move.line.unreconcile.select:0 msgid "Open For Unreconciliation" -msgstr "Open For Unreconciliation" +msgstr "Mutabakatı kaldırmak için aç" #. module: account #: field:account.fiscal.position.template,chart_template_id:0 #: field:account.tax.template,chart_template_id:0 #: field:wizard.multi.charts.accounts,chart_template_id:0 msgid "Chart Template" -msgstr "Kart Şablonu" +msgstr "Hesap Planı Şablonu" #. module: account #: help:account.model.line,amount_currency:0 @@ -523,12 +529,12 @@ msgstr "Seçili faturaları onayla" #. module: account #: field:account.addtmpl.wizard,cparent_id:0 msgid "Parent target" -msgstr "Parent target" +msgstr "Hedef Cari" #. module: account #: field:account.bank.statement,account_id:0 msgid "Account used in this journal" -msgstr "" +msgstr "Cari bu yevmiyede kullanıldı" #. module: account #: help:account.aged.trial.balance,chart_account_id:0 @@ -547,17 +553,17 @@ msgstr "" #: help:account.report.general.ledger,chart_account_id:0 #: help:account.vat.declaration,chart_account_id:0 msgid "Select Charts of Accounts" -msgstr "Select Charts of Accounts" +msgstr "Muhasebe Hesap Planı seçiniz" #. module: account #: view:product.product:0 msgid "Purchase Taxes" -msgstr "Alış Vergisi" +msgstr "Satınalma Vergileri" #. module: account #: model:ir.model,name:account.model_account_invoice_refund msgid "Invoice Refund" -msgstr "Fatura İadesi" +msgstr "İade Faturası" #. module: account #: report:account.overdue:0 @@ -567,13 +573,13 @@ msgstr "Li." #. module: account #: field:account.automatic.reconcile,unreconciled:0 msgid "Not reconciled transactions" -msgstr "Not reconciled transactions" +msgstr "Hareketler için mutabakat yapılmadı" #. module: account #: code:addons/account/account_cash_statement.py:348 #, python-format msgid "CashBox Balance is not matching with Calculated Balance !" -msgstr "CashBox Balance is not matching with Calculated Balance !" +msgstr "Kasa Bakiyesi ile Hesaplanan Bakiye eşleşmiyor !" #. module: account #: view:account.fiscal.position:0 diff --git a/addons/account_accountant/i18n/ru.po b/addons/account_accountant/i18n/ru.po index f9e31a6c977..3e3cb9bc222 100644 --- a/addons/account_accountant/i18n/ru.po +++ b/addons/account_accountant/i18n/ru.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-03 17:56+0000\n" +"PO-Revision-Date: 2011-01-12 04:04+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:36+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_accountant diff --git a/addons/account_analytic_analysis/i18n/es_EC.po b/addons/account_analytic_analysis/i18n/es_EC.po index faa1669d050..eee2df60f9e 100644 --- a/addons/account_analytic_analysis/i18n/es_EC.po +++ b/addons/account_analytic_analysis/i18n/es_EC.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2010-12-08 04:00+0000\n" +"PO-Revision-Date: 2011-01-11 15:37+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:10+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_analysis @@ -59,6 +59,13 @@ msgid "" "You can also view the report of account analytic summary\n" "user-wise as well as month wise.\n" msgstr "" +"\n" +"Este módulo modifica la vista de cuenta analítica para mostrar\n" +"datos importantes para el director de proyectos en empresas de servicios.\n" +"Añade menú para mostrar información relevante para cada director.\n" +"\n" +"También puede ver el informe del resumen contable analítico\n" +"a nivel de usuario, así como a nivel mensual.\n" #. module: account_analytic_analysis #: field:account.analytic.account,last_invoice_date:0 @@ -78,7 +85,7 @@ msgstr "Tasa de margen real (%)" #. module: account_analytic_analysis #: field:account.analytic.account,ca_theorical:0 msgid "Theoretical Revenue" -msgstr "" +msgstr "Ingresos teóricos" #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_invoiced_date:0 @@ -121,7 +128,7 @@ msgstr "Horas restantes" #. module: account_analytic_analysis #: field:account.analytic.account,theorical_margin:0 msgid "Theoretical Margin" -msgstr "" +msgstr "Márgen teórico" #. module: account_analytic_analysis #: help:account.analytic.account,ca_theorical:0 @@ -203,6 +210,8 @@ msgid "" "Error! The currency has to be the same as the currency of the selected " "company" msgstr "" +"¡Error! La divisa tiene que ser la misma que la establecida en la compañía " +"seleccionada" #. module: account_analytic_analysis #: help:account.analytic.account,ca_invoiced:0 diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index 2d36180861c..a40b6edeb89 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-04 20:06+0000\n" -"Last-Translator: Emerson \n" +"PO-Revision-Date: 2011-01-11 14:45+0000\n" +"Last-Translator: Guilherme Santos \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:10+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_analysis @@ -57,6 +57,14 @@ msgid "" "You can also view the report of account analytic summary\n" "user-wise as well as month wise.\n" msgstr "" +"\n" +"Este módulo serve para modificar a visualização da conta analítica para " +"mostrar\n" +"dados importantes para o gerente de projetos de empresas de serviços.\n" +"Adiciona um menu para mostrar informações relevantes para cada gerente.\n" +"\n" +"Você pode ainda visualizar o relatório de resumo de conta analítica\n" +"modo usuário como também modo mensal.\n" #. module: account_analytic_analysis #: field:account.analytic.account,last_invoice_date:0 diff --git a/addons/account_analytic_plans/i18n/es_EC.po b/addons/account_analytic_plans/i18n/es_EC.po index 040a3d2caa0..88f6e6b3571 100644 --- a/addons/account_analytic_plans/i18n/es_EC.po +++ b/addons/account_analytic_plans/i18n/es_EC.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2010-09-17 17:35+0000\n" -"Last-Translator: Juan Eduardo Riva \n" +"PO-Revision-Date: 2011-01-11 15:42+0000\n" +"Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:11+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_plans @@ -21,6 +21,7 @@ msgstr "" msgid "" "This distribution model has been saved.You will be able to reuse it later." msgstr "" +"Este modelo de distribución ha sido guardado. Lo podrá reutilizar más tarde." #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,plan_id:0 @@ -72,7 +73,7 @@ msgstr "Línea de plan analítico" #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:60 #, python-format msgid "User Error" -msgstr "" +msgstr "Error del usuario" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance @@ -82,12 +83,12 @@ msgstr "Instancia de plan analítico" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 msgid "Ok" -msgstr "" +msgstr "Ok" #. module: account_analytic_plans #: constraint:account.move.line:0 msgid "You can not create move line on closed account." -msgstr "" +msgstr "Usted no puede crear la línea de avanzar en cuenta cerrada." #. module: account_analytic_plans #: field:account.analytic.plan.instance,plan_id:0 @@ -117,7 +118,7 @@ msgstr "Código" #. module: account_analytic_plans #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "" +msgstr "¡Valor crédito o débito erróneo en apunte contable!" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account6_ids:0 @@ -127,12 +128,12 @@ msgstr "Id cuenta6" #. module: account_analytic_plans #: model:ir.ui.menu,name:account_analytic_plans.menu_account_analytic_multi_plan_action msgid "Multi Plans" -msgstr "" +msgstr "Multi planes" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "Detalle de Extracto" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,analytic_account_id:0 @@ -142,23 +143,25 @@ msgstr "Cuenta analítica" #. module: account_analytic_plans #: sql_constraint:account.journal:0 msgid "The code of the journal must be unique per company !" -msgstr "" +msgstr "¡El código del diario debe ser único por compañía!" #. module: account_analytic_plans #: field:account.crossovered.analytic,ref:0 msgid "Analytic Account Reference" -msgstr "" +msgstr "Referencia cuenta analítica" #. module: account_analytic_plans #: constraint:account.move.line:0 msgid "" "You can not create move line on receivable/payable account without partner" msgstr "" +"Usted no puede crear la línea de pasar por cobrar / cuentas por pagar sin " +"empresa relacionada" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_sale_order_line msgid "Sales Order Line" -msgstr "" +msgstr "Línea pedido de venta" #. module: account_analytic_plans #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:47 @@ -186,13 +189,13 @@ msgstr "Porcentaje" #: code:addons/account_analytic_plans/account_analytic_plans.py:201 #, python-format msgid "A model having this name and code already exists !" -msgstr "" +msgstr "¡Ya existe un modelo con este nombre y código!" #. module: account_analytic_plans #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "No analytic plan defined !" -msgstr "" +msgstr "¡No se ha definido un plan analítico!" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,rate:0 @@ -209,7 +212,7 @@ msgstr "Planes analíticos" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Perc(%)" -msgstr "" +msgstr "Porc. (%)" #. module: account_analytic_plans #: field:account.analytic.plan.line,max_required:0 @@ -232,16 +235,18 @@ msgid "" "The amount of the voucher must be the same amount as the one on the " "statement line" msgstr "" +"El importe del recibo debe ser el mismo importe que el de la línea del " +"extracto" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Detalle de Factura" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Currency" -msgstr "" +msgstr "Moneda" #. module: account_analytic_plans #: field:account.crossovered.analytic,date1:0 @@ -251,7 +256,7 @@ msgstr "Fecha inicial" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Company" -msgstr "" +msgstr "Compañía" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account5_ids:0 @@ -278,7 +283,7 @@ msgstr "Hasta fecha" #: code:addons/account_analytic_plans/account_analytic_plans.py:462 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" -msgstr "" +msgstr "¡Debe definir un diario analítico en el diario '%s'!" #. module: account_analytic_plans #: field:account.crossovered.analytic,empty_line:0 @@ -288,7 +293,7 @@ msgstr "No mostrar líneas vacías" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.action_analytic_plan_create_model msgid "analytic.plan.create.model.action" -msgstr "" +msgstr "Crear Plan de Costos" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -332,6 +337,39 @@ msgid "" "of distribution models.\n" " " msgstr "" +"Este módulo permite utilizar varios planes analíticos, de acuerdo con el " +"diario general,\n" +"para crear múltiples líneas analíticas cuando la factura o los asientos\n" +"sean confirmados.\n" +"\n" +"Por ejemplo, puede definir la siguiente estructura de analítica:\n" +" Proyectos\n" +" Proyecto 1\n" +" Subproyecto 1,1\n" +" Subproyecto 1,2\n" +" Proyecto 2\n" +" Comerciales\n" +" Eduardo\n" +" Marta\n" +"\n" +"Aquí, tenemos dos planes: Proyectos y Comerciales. Una línea de factura " +"debe\n" +"ser capaz de escribir las entradas analíticas en los 2 planes: Subproyecto " +"1.1 y\n" +"Eduardo. La cantidad también se puede dividir. El siguiente ejemplo es para\n" +"una factura que implica a los dos subproyectos y asignada a un comercial:\n" +"\n" +"Plan1:\n" +" Subproyecto 1.1: 50%\n" +" Subproyecto 1.2: 50%\n" +"Plan2:\n" +" Eduardo: 100%\n" +"\n" +"Así, cuando esta línea de la factura sea confirmada, generará 3 líneas " +"analíticas para un asiento contable.\n" +"El plan analítico valida el porcentaje mínimo y máximo en el momento de " +"creación de los modelos de distribución.\n" +" " #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -351,7 +389,7 @@ msgstr "Asientos por defecto" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "Lineas de Asientos Contables" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account1_ids:0 @@ -361,7 +399,7 @@ msgstr "Id cuenta1" #. module: account_analytic_plans #: constraint:account.move.line:0 msgid "Company must be same for its related account and period." -msgstr "" +msgstr "La compañía debe ser la misma para la cuenta y periodo relacionados." #. module: account_analytic_plans #: field:account.analytic.plan.line,min_required:0 @@ -379,12 +417,12 @@ msgstr "Cuenta principal de este plan." #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "Error" -msgstr "" +msgstr "Error" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 msgid "Save This Distribution as a Model" -msgstr "" +msgstr "Guardar esta distribución como un modelo" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -395,24 +433,24 @@ msgstr "Cantidad" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:38 #, python-format msgid "Please put a name and a code before saving the model !" -msgstr "" +msgstr "¡Introduzca un nombre y un código antes de guardar el modelo!" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_crossovered_analytic msgid "Print Crossovered Analytic" -msgstr "" +msgstr "Imprimir analítica cruzada" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:321 #: code:addons/account_analytic_plans/account_analytic_plans.py:462 #, python-format msgid "No Analytic Journal !" -msgstr "" +msgstr "No hay diario de costos !" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement msgid "Bank Statement" -msgstr "" +msgstr "Extracto Bancario" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account3_ids:0 @@ -422,7 +460,7 @@ msgstr "Id cuenta3" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Factura" #. module: account_analytic_plans #: view:account.crossovered.analytic:0 @@ -444,7 +482,7 @@ msgstr "Líneas de distribución analítica" #: code:addons/account_analytic_plans/account_analytic_plans.py:214 #, python-format msgid "The Total Should be Between %s and %s" -msgstr "" +msgstr "El total debería estar entre %s y %s" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -469,7 +507,7 @@ msgstr "Código de distribución" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "%" -msgstr "" +msgstr "%" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -490,12 +528,12 @@ msgstr "Distribución analítica" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_journal msgid "Journal" -msgstr "" +msgstr "Diario" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_analytic_plan_create_model msgid "analytic.plan.create.model" -msgstr "" +msgstr "Crear Modelo de Plan" #. module: account_analytic_plans #: field:account.crossovered.analytic,date2:0 @@ -515,18 +553,18 @@ msgstr "Secuencia" #. module: account_analytic_plans #: sql_constraint:account.journal:0 msgid "The name of the journal must be unique per company !" -msgstr "" +msgstr "¡El nombre del diaro debe ser único por compañía!" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:214 #, python-format msgid "Value Error" -msgstr "" +msgstr "Valor erróneo" #. module: account_analytic_plans #: constraint:account.move.line:0 msgid "You can not create move line on view account." -msgstr "" +msgstr "No puede crear una línea de movimiento en una cuenta de tipo vista." #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/account_anglo_saxon/i18n/it.po b/addons/account_anglo_saxon/i18n/it.po index 1b8afda33be..fa3dfc2518a 100644 --- a/addons/account_anglo_saxon/i18n/it.po +++ b/addons/account_anglo_saxon/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/nl.po b/addons/account_anglo_saxon/i18n/nl.po index 0a05d53e590..cf4841219dd 100644 --- a/addons/account_anglo_saxon/i18n/nl.po +++ b/addons/account_anglo_saxon/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-05 15:44+0000\n" -"Last-Translator: Jan Verlaan (Veritos) \n" +"PO-Revision-Date: 2011-01-12 03:25+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:31+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_anglo_saxon diff --git a/addons/account_budget/i18n/sv.po b/addons/account_budget/i18n/sv.po index 394c2151d44..289ff9aaaff 100644 --- a/addons/account_budget/i18n/sv.po +++ b/addons/account_budget/i18n/sv.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-09 00:38+0000\n" -"Last-Translator: Magnus Brandt (mba), Aspirix AB \n" +"PO-Revision-Date: 2011-01-11 11:02+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:18+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_budget diff --git a/addons/account_invoice_layout/i18n/it.po b/addons/account_invoice_layout/i18n/it.po index ac2e1025b0c..a0be0e60466 100644 --- a/addons/account_invoice_layout/i18n/it.po +++ b/addons/account_invoice_layout/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/vi.po b/addons/account_invoice_layout/i18n/vi.po index e181f3924c4..40464f2736c 100644 --- a/addons/account_invoice_layout/i18n/vi.po +++ b/addons/account_invoice_layout/i18n/vi.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2010-08-02 14:41+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2011-01-11 08:40+0000\n" +"Last-Translator: Phong Nguyen \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:12+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_invoice_layout @@ -202,28 +202,28 @@ msgstr "" #: report:account.invoice.layout:0 #: report:notify_account.invoice:0 msgid "Refund" -msgstr "" +msgstr "Hoàn tiền" #. module: account_invoice_layout #: report:account.invoice.layout:0 #: report:notify_account.invoice:0 msgid "Fax :" -msgstr "" +msgstr "Fax :" #. module: account_invoice_layout #: report:account.invoice.layout:0 msgid "Total:" -msgstr "" +msgstr "Tổng cộng:" #. module: account_invoice_layout #: view:account.invoice.special.msg:0 msgid "Select Message" -msgstr "" +msgstr "Lựa chọn thông điệp." #. module: account_invoice_layout #: view:notify.message:0 msgid "Messages" -msgstr "" +msgstr "Các thông điệp" #. module: account_invoice_layout #: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1 @@ -240,7 +240,7 @@ msgstr "" #: report:account.invoice.layout:0 #: report:notify_account.invoice:0 msgid "Amount" -msgstr "" +msgstr "Số tiền" #. module: account_invoice_layout #: model:notify.message,msg:account_invoice_layout.demo_message1 diff --git a/addons/account_payment/i18n/fr.po b/addons/account_payment/i18n/fr.po index f1e0911e7f9..f3edcd34c27 100644 --- a/addons/account_payment/i18n/fr.po +++ b/addons/account_payment/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-05 20:49+0000\n" +"PO-Revision-Date: 2011-01-12 03:48+0000\n" "Last-Translator: Quentin THEURET \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:11+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_payment diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po index d752590436e..14e5a9d46b2 100644 --- a/addons/account_voucher/i18n/es.po +++ b/addons/account_voucher/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-10 12:34+0000\n" -"Last-Translator: Borja López Soilán \n" +"PO-Revision-Date: 2011-01-11 20:45+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher @@ -40,7 +40,7 @@ msgstr "Abrir asientos diario cliente" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Voucher Date" -msgstr "" +msgstr "Fecha comprobante" #. module: account_voucher #: report:voucher.print:0 @@ -330,7 +330,7 @@ msgstr "Importe (en palabras):" #: view:sale.receipt.report:0 #: field:sale.receipt.report,nbr:0 msgid "# of Voucher Lines" -msgstr "" +msgstr "Nº de líneas de comprobantes" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -606,7 +606,7 @@ msgstr "Pagar tarde o agrupar fondos" #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesman" -msgstr "" +msgstr "Comercial" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1034,7 +1034,7 @@ msgstr "Entrada contable" #. module: account_voucher #: field:sale.receipt.report,state:0 msgid "Voucher State" -msgstr "" +msgstr "Estado comprobante" #. module: account_voucher #: help:account.voucher,date:0 diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po index 1a19bffdc22..6edece4eae1 100644 --- a/addons/account_voucher/i18n/fr.po +++ b/addons/account_voucher/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-08 10:46+0000\n" -"Last-Translator: lolivier \n" +"PO-Revision-Date: 2011-01-11 07:39+0000\n" +"Last-Translator: Aline (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher @@ -1026,7 +1026,7 @@ msgstr "Type par défaut" #: model:ir.model,name:account_voucher.model_account_statement_from_invoice #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines msgid "Entries by Statement from Invoices" -msgstr "" +msgstr "Pièces de relevés des factures" #. module: account_voucher #: field:account.voucher,move_id:0 diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index da36b03555d..5bd7ed9e465 100644 --- a/addons/account_voucher/i18n/tr.po +++ b/addons/account_voucher/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2010-09-09 06:59+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2011-01-11 11:45+0000\n" +"Last-Translator: Engin BAHADIR \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher @@ -30,17 +30,17 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Ref" -msgstr "" +msgstr "Ödeme Referansı" #. module: account_voucher #: view:account.voucher:0 msgid "Open Customer Journal Entries" -msgstr "" +msgstr "Açık Müşteri Yevmiye Girdileri" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Voucher Date" -msgstr "" +msgstr "Çek Tarihi" #. module: account_voucher #: report:voucher.print:0 @@ -51,23 +51,23 @@ msgstr "" #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Group By..." -msgstr "" +msgstr "Gruplama" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:607 #, python-format msgid "Cannot delete Voucher(s) which are already opened or paid !" -msgstr "" +msgstr "Açık ya da ödenmiş çekler silinemez !" #. module: account_voucher #: view:account.voucher:0 msgid "Supplier" -msgstr "" +msgstr "Tedarikçi" #. module: account_voucher #: model:ir.actions.report.xml,name:account_voucher.report_account_voucher_print msgid "Voucher Print" -msgstr "" +msgstr "Çek Yazdır" #. module: account_voucher #: model:ir.module.module,description:account_voucher.module_meta_information @@ -100,7 +100,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice_lines #, python-format msgid "Import Entries" -msgstr "" +msgstr "Girdileri İçe aktar" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_voucher_unreconcile @@ -110,7 +110,7 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "March" -msgstr "" +msgstr "Mart" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_sale_receipt @@ -124,7 +124,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Pay Bill" -msgstr "" +msgstr "Fatura Öde" #. module: account_voucher #: field:account.voucher,company_id:0 @@ -132,7 +132,7 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,company_id:0 msgid "Company" -msgstr "Firma" +msgstr "Şirket" #. module: account_voucher #: view:account.voucher:0 @@ -142,56 +142,56 @@ msgstr "Taslak olarak Ayarla" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "" +msgstr "Hareket referans numarası" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_view_account_voucher_unreconcile msgid "Unreconcile entries" -msgstr "" +msgstr "Mutabakatsız Girdiler" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Statistics" -msgstr "" +msgstr "Çek İstatistikleri" #. module: account_voucher #: view:account.voucher:0 msgid "Validate" -msgstr "" +msgstr "Doğrula" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,day:0 msgid "Day" -msgstr "" +msgstr "Gün" #. module: account_voucher #: view:account.voucher:0 msgid "Search Vouchers" -msgstr "" +msgstr "Çek Arama" #. module: account_voucher #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Purchase" -msgstr "" +msgstr "Satınalma" #. module: account_voucher #: field:account.voucher,account_id:0 #: field:account.voucher.line,account_id:0 #: field:sale.receipt.report,account_id:0 msgid "Account" -msgstr "Hesap" +msgstr "Cari" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 msgid "Debits" -msgstr "" +msgstr "Borçlar" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Ok" -msgstr "" +msgstr "Tamam" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_sale_receipt_report_all @@ -207,17 +207,17 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,date_due:0 msgid "Due Date" -msgstr "" +msgstr "Vade Tarihi" #. module: account_voucher #: constraint:account.move.line:0 msgid "You can not create move line on closed account." -msgstr "" +msgstr "Kapanmış bir hesap için hareket işlemleri yapılamaz." #. module: account_voucher #: field:account.voucher,narration:0 msgid "Notes" -msgstr "" +msgstr "Notlar" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -233,82 +233,82 @@ msgstr "" #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Sale" -msgstr "" +msgstr "Satış" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "" +msgstr "Yevmiye Öğesi" #. module: account_voucher #: field:account.voucher,reference:0 msgid "Ref #" -msgstr "" +msgstr "Referans #" #. module: account_voucher #: field:account.voucher.line,amount:0 #: report:voucher.print:0 msgid "Amount" -msgstr "Miktar" +msgstr "Toplam" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Options" -msgstr "" +msgstr "Ödeme Seçenekleri" #. module: account_voucher #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "" +msgstr "Muhasebe hesabındaki borç / alacak değeri hatalı !" #. module: account_voucher #: view:account.voucher:0 msgid "Other Information" -msgstr "" +msgstr "Diğer Bilgiler" #. module: account_voucher #: selection:account.voucher,state:0 #: selection:sale.receipt.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "İptal Edilmiş" #. module: account_voucher #: field:account.statement.from.invoice,date:0 msgid "Date payment" -msgstr "" +msgstr "Ödeme Tarihi" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "Banka Ekstresi Kalemi" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Supplier Vouchers" -msgstr "" +msgstr "Tedarikçi Çekleri" #. module: account_voucher #: view:account.voucher:0 #: view:account.voucher.unreconcile:0 msgid "Unreconcile" -msgstr "" +msgstr "Mutabakatı Kaldır" #. module: account_voucher #: field:account.voucher,tax_id:0 msgid "Tax" -msgstr "" +msgstr "Vergi" #. module: account_voucher #: report:voucher.print:0 msgid "Amount (in words) :" -msgstr "Tutar (Yaziyla) :" +msgstr "Tutar (Yazıyla) :" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,nbr:0 msgid "# of Voucher Lines" -msgstr "" +msgstr "# Çek Kalemi" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -320,6 +320,7 @@ msgstr "Analiz Hesabı" msgid "" "You can not create move line on receivable/payable account without partner" msgstr "" +"Bir cari belirtmeden borç/alacak hesabı için hareket işlemi yapamazsınız." #. module: account_voucher #: help:account.voucher,state:0 @@ -337,28 +338,28 @@ msgstr "" #. module: account_voucher #: view:account.statement.from.invoice:0 msgid "Go" -msgstr "" +msgstr "Devam" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "" +msgstr "Ödeme Tutarı" #. module: account_voucher #: view:account.bank.statement:0 msgid "Import Invoices" -msgstr "" +msgstr "Faturaları İçe aktar" #. module: account_voucher #: report:voucher.print:0 msgid "Account :" -msgstr "" +msgstr "Cari Hesap :" #. module: account_voucher #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Receipt" -msgstr "" +msgstr "Alındı Makbuzu" #. module: account_voucher #: report:voucher.print:0 @@ -368,17 +369,17 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Write-Off Amount" -msgstr "" +msgstr "Amortisman Tutarı" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Lines" -msgstr "" +msgstr "Satış Kalemleri" #. module: account_voucher #: report:voucher.print:0 msgid "Date:" -msgstr "" +msgstr "Tarih:" #. module: account_voucher #: view:account.voucher:0 @@ -402,39 +403,39 @@ msgstr "Muhasebe Fiş Kayıtları" #: view:sale.receipt.report:0 #: field:sale.receipt.report,type:0 msgid "Type" -msgstr "Tipi" +msgstr "Tip" #. module: account_voucher #: field:account.voucher.unreconcile,remove:0 msgid "Want to remove accounting entries too ?" -msgstr "" +msgstr "Hesap girdilerini de silmek ister misiniz?" #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_journal_voucher_open msgid "Voucher Entries" -msgstr "Fiş Kayıtları" +msgstr "Çek Kayıtları" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:656 #, python-format msgid "Error !" -msgstr "" +msgstr "Hata !" #. module: account_voucher #: view:account.voucher:0 msgid "Supplier Voucher" -msgstr "" +msgstr "Tedarikçi Çeki" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list msgid "Vouchers Entries" -msgstr "" +msgstr "Çek Kayıtları" #. module: account_voucher #: field:account.voucher,name:0 msgid "Memo" -msgstr "" +msgstr "Not" #. module: account_voucher #: view:account.voucher:0 @@ -447,56 +448,56 @@ msgstr "" #: code:addons/account_voucher/account_voucher.py:607 #, python-format msgid "Invalid action !" -msgstr "" +msgstr "Geçersiz İşlem !" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "" +msgstr "Fatura Bilgileri" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "July" -msgstr "" +msgstr "Temmuz" #. module: account_voucher #: view:account.voucher.unreconcile:0 msgid "Unreconciliation" -msgstr "" +msgstr "Mutabakatsız" #. module: account_voucher #: field:account.voucher,tax_amount:0 msgid "Tax Amount" -msgstr "" +msgstr "Vergi Tutarı" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,due_delay:0 msgid "Avg. Due Delay" -msgstr "" +msgstr "Ort. Gecikme Vadesi" #. module: account_voucher #: view:account.invoice:0 #: code:addons/account_voucher/invoice.py:32 #, python-format msgid "Pay Invoice" -msgstr "" +msgstr "Fatura Ödemesi" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:753 #, python-format msgid "No Account Base Code and Account Tax Code!" -msgstr "" +msgstr "Hesap kodu ve Vergi kodu yok !" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Information" -msgstr "" +msgstr "Ödeme Bilgileri" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Entry" -msgstr "" +msgstr "Çek Kaydı" #. module: account_voucher #: view:account.voucher:0 @@ -505,52 +506,52 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,partner_id:0 msgid "Partner" -msgstr "Ortak" +msgstr "Cari" #. module: account_voucher #: field:account.voucher,payment_option:0 msgid "Payment Difference" -msgstr "" +msgstr "Ödeme Farkı" #. module: account_voucher #: constraint:account.bank.statement.line:0 msgid "" "The amount of the voucher must be the same amount as the one on the " "statement line" -msgstr "" +msgstr "Çek tutarı banka ekstresi tutarı ile aynı olmalı" #. module: account_voucher #: view:account.voucher:0 msgid "To Review" -msgstr "" +msgstr "İncelenecek" #. module: account_voucher #: view:account.voucher:0 msgid "Expense Lines" -msgstr "" +msgstr "Gider Kalemleri" #. module: account_voucher #: field:account.statement.from.invoice,line_ids:0 #: field:account.statement.from.invoice.lines,line_ids:0 msgid "Invoices" -msgstr "" +msgstr "Faturalar" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "December" -msgstr "" +msgstr "Aralık" #. module: account_voucher #: field:account.voucher,line_ids:0 #: model:ir.model,name:account_voucher.model_account_voucher_line msgid "Voucher Lines" -msgstr "Fiş Kalemleri" +msgstr "Çek Kalemleri" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,month:0 msgid "Month" -msgstr "" +msgstr "Ay" #. module: account_voucher #: field:account.voucher,currency_id:0 @@ -561,7 +562,7 @@ msgstr "Para Birimi" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Payable and Receivables" -msgstr "" +msgstr "Borçlar / Alacaklar" #. module: account_voucher #: selection:account.voucher,pay_now:0 @@ -573,13 +574,13 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesman" -msgstr "" +msgstr "Satış Temsilcisi" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,delay_to_pay:0 msgid "Avg. Delay To Pay" -msgstr "" +msgstr "Ort. Ödeme Gecikmesi" #. module: account_voucher #: view:account.voucher:0 @@ -593,12 +594,12 @@ msgstr "Taslak" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Write-Off account" -msgstr "" +msgstr "Amortisman Hesabı" #. module: account_voucher #: report:voucher.print:0 msgid "Currency:" -msgstr "" +msgstr "Döviz Kuru:" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/analytic_journal_billing_rate/i18n/es.po b/addons/analytic_journal_billing_rate/i18n/es.po index 3430223b64a..f3a7834cbb9 100644 --- a/addons/analytic_journal_billing_rate/i18n/es.po +++ b/addons/analytic_journal_billing_rate/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-10 11:47+0000\n" +"PO-Revision-Date: 2011-01-11 10:47+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: analytic_journal_billing_rate diff --git a/addons/analytic_user_function/i18n/mn.po b/addons/analytic_user_function/i18n/mn.po index ea9d030c7cf..16c65abe5c4 100644 --- a/addons/analytic_user_function/i18n/mn.po +++ b/addons/analytic_user_function/i18n/mn.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: analytic_user_function diff --git a/addons/auction/i18n/de.po b/addons/auction/i18n/de.po index 97ac8c69a66..510b7afe5b3 100644 --- a/addons/auction/i18n/de.po +++ b/addons/auction/i18n/de.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction diff --git a/addons/auction/i18n/es.po b/addons/auction/i18n/es.po index c3bcf0e9345..b10d7a6b03b 100644 --- a/addons/auction/i18n/es.po +++ b/addons/auction/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2010-12-29 13:13+0000\n" +"PO-Revision-Date: 2011-01-11 07:26+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:16+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -24,7 +24,7 @@ msgstr "Informe" #. module: auction #: model:ir.model,name:auction.model_auction_taken msgid "Auction taken" -msgstr "" +msgstr "Subasta realizada" #. module: auction #: view:auction.lots:0 @@ -60,7 +60,7 @@ msgstr " " #. module: auction #: view:auction.lots.auction.move:0 msgid "Warning, Erase The Object Adjudication Price and Its Buyer!" -msgstr "" +msgstr "Aviso, ¡borra el precio de adjudicación de objetos y su comprador!" #. module: auction #: help:auction.pay.buy,statement_id1:0 @@ -108,6 +108,8 @@ msgstr "Núm. de objetos" msgid "" "When state of Seller Invoice is 'Paid', this field is selected as True." msgstr "" +"Cuando el estado de factura del vendedor es 'Pagado', este campo está " +"seleccionado como Verdadero." #. module: auction #: report:auction.total.rml:0 @@ -212,6 +214,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the auction " "lot category without removing it." msgstr "" +"Si el campo activo se establece a Falso, le permitirá ocultar la categoría " +"del lote subastado sin eliminarlo." #. module: auction #: view:auction.lots:0 @@ -236,7 +240,7 @@ msgstr "" #. module: auction #: help:auction.lots,costs:0 msgid "Deposit cost" -msgstr "" +msgstr "Coste depósito" #. module: auction #: selection:auction.lots,state:0 @@ -248,12 +252,12 @@ msgstr "No vendido" #. module: auction #: view:auction.deposit:0 msgid "Search Auction deposit" -msgstr "" +msgstr "Buscar depósito de subasta" #. module: auction #: help:auction.lots,lot_num:0 msgid "List number in depositer inventory" -msgstr "" +msgstr "Número de lista en el inventario depositante" #. module: auction #: report:auction.total.rml:0 @@ -483,7 +487,7 @@ msgstr "Fecha inicio de la subasta" #. module: auction #: model:ir.model,name:auction.model_auction_lots_auction_move msgid "Auction Move" -msgstr "" +msgstr "Movimiento subasta" #. module: auction #: help:auction.dates,buyer_costs:0 @@ -949,7 +953,7 @@ msgstr "Núm." #. module: auction #: model:ir.actions.report.xml,name:auction.v_report_barcode_lot msgid "Barcode batch" -msgstr "" +msgstr "Lote código de barras" #. module: auction #: report:report.auction.buyer.result:0 @@ -995,7 +999,7 @@ msgstr "Margen neto" #. module: auction #: help:auction.lots,lot_local:0 msgid "Auction Location" -msgstr "" +msgstr "Ubicación de la subasta" #. module: auction #: view:auction.dates:0 @@ -1718,7 +1722,7 @@ msgstr "Lotes abiertos" #. module: auction #: model:ir.actions.act_window,name:auction.act_auction_lot_open_deposit msgid "Deposit slip" -msgstr "" +msgstr "Ficha de depósito" #. module: auction #: model:ir.model,name:auction.model_auction_lots_enable diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po index e55feabe56e..e1ab0fc64ab 100644 --- a/addons/audittrail/i18n/nl.po +++ b/addons/audittrail/i18n/nl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:56+0000\n" -"PO-Revision-Date: 2011-01-06 08:32+0000\n" -"Last-Translator: Douwe Wullink (Dypalio) \n" +"PO-Revision-Date: 2011-01-11 18:42+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-08 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: audittrail diff --git a/addons/base_calendar/i18n/fr.po b/addons/base_calendar/i18n/fr.po index 5f4617926d8..65dc99bc08e 100644 --- a/addons/base_calendar/i18n/fr.po +++ b/addons/base_calendar/i18n/fr.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-06 21:06+0000\n" +"PO-Revision-Date: 2011-01-11 17:06+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-08 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_calendar diff --git a/addons/base_contact/i18n/de.po b/addons/base_contact/i18n/de.po index 1bab3174bcf..a6441dd483b 100644 --- a/addons/base_contact/i18n/de.po +++ b/addons/base_contact/i18n/de.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:58+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_contact diff --git a/addons/base_contact/i18n/fr.po b/addons/base_contact/i18n/fr.po index 7e01caea996..397dc4f54d0 100644 --- a/addons/base_contact/i18n/fr.po +++ b/addons/base_contact/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-07 10:44+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2011-01-11 17:39+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-08 04:58+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_contact diff --git a/addons/base_iban/i18n/es.po b/addons/base_iban/i18n/es.po index a1109d35264..452f5f0c44f 100644 --- a/addons/base_iban/i18n/es.po +++ b/addons/base_iban/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 14:01+0000\n" +"PO-Revision-Date: 2011-01-11 17:50+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_iban diff --git a/addons/base_report_creator/i18n/zh_CN.po b/addons/base_report_creator/i18n/zh_CN.po index 4827b51f135..e5705d0f75b 100644 --- a/addons/base_report_creator/i18n/zh_CN.po +++ b/addons/base_report_creator/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-02 11:01+0000\n" +"PO-Revision-Date: 2011-01-11 17:47+0000\n" "Last-Translator: ZhangCheng \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:20+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_report_creator diff --git a/addons/base_report_designer/i18n/de.po b/addons/base_report_designer/i18n/de.po index 6a1097ff91a..dd394b6bb10 100644 --- a/addons/base_report_designer/i18n/de.po +++ b/addons/base_report_designer/i18n/de.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_report_designer diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index f659886f26d..132b051dcf6 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-02 15:23+0000\n" +"PO-Revision-Date: 2011-01-11 09:18+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_vat diff --git a/addons/caldav/i18n/pt_BR.po b/addons/caldav/i18n/pt_BR.po new file mode 100644 index 00000000000..f04c64bbf76 --- /dev/null +++ b/addons/caldav/i18n/pt_BR.po @@ -0,0 +1,567 @@ +# Brazilian Portuguese translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"PO-Revision-Date: 2011-01-11 15:32+0000\n" +"Last-Translator: Guilherme Santos \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: caldav +#: view:basic.calendar:0 +msgid "Value Mapping" +msgstr "" + +#. module: caldav +#: field:basic.calendar.alias,name:0 +msgid "Filename" +msgstr "Nome do Arquivo" + +#. module: caldav +#: model:ir.model,name:caldav.model_calendar_event_export +msgid "Event Export" +msgstr "Exportar Evento" + +#. module: caldav +#: view:calendar.event.subscribe:0 +msgid "Provide path for Remote Calendar" +msgstr "Forneça o caminho para o Calendário Remoto" + +#. module: caldav +#: model:ir.actions.act_window,name:caldav.action_calendar_event_import_values +msgid "Import .ics File" +msgstr "Importar Arquivo .ics" + +#. module: caldav +#: view:calendar.event.export:0 +msgid "_Close" +msgstr "_Fechar" + +#. module: caldav +#: selection:basic.calendar.attributes,type:0 +#: selection:basic.calendar.lines,name:0 +msgid "Attendee" +msgstr "Participante" + +#. module: caldav +#: sql_constraint:basic.calendar.fields:0 +msgid "Can not map a field more than once" +msgstr "Não é possível mapear um campo mais de uma vez" + +#. module: caldav +#: selection:basic.calendar,type:0 +#: selection:basic.calendar.attributes,type:0 +#: selection:basic.calendar.lines,name:0 +msgid "TODO" +msgstr "À Fazer" + +#. module: caldav +#: field:basic.calendar.lines,object_id:0 +msgid "Object" +msgstr "Objeto" + +#. module: caldav +#: selection:basic.calendar.fields,fn:0 +msgid "Expression as constant" +msgstr "Expressão tão constante" + +#. module: caldav +#: view:calendar.event.import:0 +#: view:calendar.event.subscribe:0 +msgid "Ok" +msgstr "" + +#. module: caldav +#: code:addons/caldav/calendar.py:861 +#, python-format +msgid "Please provide proper configuration of \"%s\" in Calendar Lines" +msgstr "" +"Por favor, forneça a configuração apropriada de \"%s\" nas Linhas do " +"Calendário" + +#. module: caldav +#: field:calendar.event.export,name:0 +msgid "File name" +msgstr "Nome do arquivo" + +#. module: caldav +#: code:addons/caldav/wizard/calendar_event_subscribe.py:59 +#, python-format +msgid "Error!" +msgstr "Erro!" + +#. module: caldav +#: code:addons/caldav/calendar.py:772 +#: code:addons/caldav/calendar.py:861 +#: code:addons/caldav/wizard/calendar_event_import.py:63 +#, python-format +msgid "Warning !" +msgstr "Atenção!" + +#. module: caldav +#: view:calendar.event.export:0 +msgid "Export ICS" +msgstr "Exportar ICS" + +#. module: caldav +#: selection:basic.calendar.fields,fn:0 +msgid "Use the field" +msgstr "Usar o campo" + +#. module: caldav +#: code:addons/caldav/calendar.py:772 +#, python-format +msgid "Can not create line \"%s\" more than once" +msgstr "Não é possível criar a linha \"%s\" mais de uma vez" + +#. module: caldav +#: view:basic.calendar:0 +#: field:basic.calendar,line_ids:0 +#: model:ir.model,name:caldav.model_basic_calendar_lines +msgid "Calendar Lines" +msgstr "Linhas do Calendário" + +#. module: caldav +#: model:ir.model,name:caldav.model_calendar_event_subscribe +msgid "Event subscribe" +msgstr "Inscrever-se no Evento" + +#. module: caldav +#: view:calendar.event.import:0 +msgid "Import ICS" +msgstr "Importar ICS" + +#. module: caldav +#: view:calendar.event.import:0 +#: view:calendar.event.subscribe:0 +msgid "_Cancel" +msgstr "_Cancelar" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_event +msgid "basic.calendar.event" +msgstr "" + +#. module: caldav +#: view:basic.calendar:0 +#: selection:basic.calendar,type:0 +#: selection:basic.calendar.attributes,type:0 +#: selection:basic.calendar.lines,name:0 +msgid "Event" +msgstr "Evento" + +#. module: caldav +#: field:document.directory,calendar_collection:0 +msgid "Calendar Collection" +msgstr "Coleção do Calendário" + +#. module: caldav +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "Erro! Você não pode criar diretórios recursivos." + +#. module: caldav +#: field:basic.calendar,type:0 +#: field:basic.calendar.attributes,type:0 +#: field:basic.calendar.fields,type_id:0 +#: field:basic.calendar.lines,name:0 +msgid "Type" +msgstr "Tipo" + +#. module: caldav +#: help:calendar.event.export,name:0 +msgid "Save in .ics format" +msgstr "Salvar em formato .ics" + +#. module: caldav +#: code:addons/caldav/calendar.py:1275 +#, python-format +msgid "Error !" +msgstr "Erro!" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_attributes +msgid "Calendar attributes" +msgstr "Atributos do Calendário" + +#. module: caldav +#: model:ir.module.module,description:caldav.module_meta_information +msgid "" +"\n" +" This module Contains basic functionality for caldav system like: \n" +" - Webdav server that provides remote access to calendar\n" +" - Synchronisation of calendar using WebDAV\n" +" - Customize calendar event and todo attribute with any of OpenERP model\n" +" - Provides iCal Import/Export functionality\n" +"\n" +" To access Calendars using CalDAV clients, point them to:\n" +" " +"http://HOSTNAME:PORT/webdav/DATABASE_NAME/calendars/users/USERNAME/c\n" +"\n" +" To access OpenERP Calendar using WebCal to remote site use the URL " +"like:\n" +" " +"http://HOSTNAME:PORT/webdav/DATABASE_NAME/Calendars/CALENDAR_NAME.ics\n" +"\n" +" Where,\n" +" HOSTNAME: Host on which OpenERP server(With webdav) is running\n" +" PORT : Port on which OpenERP server is running (By Default : 8069)\n" +" DATABASE_NAME: Name of database on which OpenERP Calendar is " +"created\n" +" CALENDAR_NAME: Name of calendar to access\n" +msgstr "" +"\n" +" Este módulo contém funcionalidades básicas para sistema CalDAV, como: \n" +" - Servidor WebDAV para acesso remoto ao calendário\n" +" - Sincronização do calendário usando WebDAV\n" +" - Evento customizado e atributo à fazer com qualquer modelo do OpenERP\n" +" - Fornece funcionalidade Importar/Exportar iCal\n" +"\n" +" Para acessar Calendários usando clientes CalDAV, use:\n" +" " +"http://HOSTNAME:PORT/webdav/DATABASE_NAME/calendars/users/USERNAME/c\n" +"\n" +" Para acessar o Calendário OpenERP usando WebCal para um site remoto, use " +"a URL como:\n" +" " +"http://HOSTNAME:PORT/webdav/DATABASE_NAME/Calendars/CALENDAR_NAME.ics\n" +"\n" +" Onde,\n" +" HOSTNAME: Host onde o servidor OpenERP(com webdav) está rodando\n" +" PORT :Porta onde o servidor OpenERP está rodando (Por padrão : " +"8069)\n" +" DATABASE_NAME: Nome do banco de dados onde o Calendário OpenERP foi " +"criado\n" +" CALENDAR_NAME: Nome do calendário para acesso\n" + +#. module: caldav +#: field:basic.calendar,create_date:0 +msgid "Created Date" +msgstr "Data de Criação" + +#. module: caldav +#: view:basic.calendar:0 +msgid "Attributes Mapping" +msgstr "Mapeamento dos Atributos" + +#. module: caldav +#: model:ir.model,name:caldav.model_document_directory +msgid "Directory" +msgstr "Diretório" + +#. module: caldav +#: field:calendar.event.subscribe,url_path:0 +msgid "Provide path for remote calendar" +msgstr "Forneça do caminho para o calendário remoto" + +#. module: caldav +#: field:basic.calendar.lines,domain:0 +msgid "Domain" +msgstr "Domínio" + +#. module: caldav +#: field:basic.calendar,user_id:0 +msgid "Owner" +msgstr "Proprietário" + +#. module: caldav +#: view:basic.calendar:0 +#: field:basic.calendar.alias,cal_line_id:0 +#: field:basic.calendar.lines,calendar_id:0 +#: model:ir.ui.menu,name:caldav.menu_calendar +msgid "Calendar" +msgstr "Calendário" + +#. module: caldav +#: view:basic.calendar:0 +msgid "Todo" +msgstr "À Fazer" + +#. module: caldav +#: code:addons/caldav/wizard/calendar_event_import.py:63 +#, python-format +msgid "Invalid format of the ics, file can not be imported" +msgstr "Formato inválido para ics, arquivo não pode ser importado" + +#. module: caldav +#: field:basic.calendar.fields,field_id:0 +msgid "OpenObject Field" +msgstr "Campo OpenObject" + +#. module: caldav +#: field:basic.calendar.alias,res_id:0 +msgid "Res. ID" +msgstr "" + +#. module: caldav +#: view:calendar.event.subscribe:0 +msgid "Message..." +msgstr "Menssagem..." + +#. module: caldav +#: view:basic.calendar:0 +#: field:basic.calendar,has_webcal:0 +msgid "WebCal" +msgstr "" + +#. module: caldav +#: view:document.directory:0 +#: model:ir.actions.act_window,name:caldav.action_calendar_collection_form +#: model:ir.ui.menu,name:caldav.menu_calendar_collection +msgid "Calendar Collections" +msgstr "" + +#. module: caldav +#: code:addons/caldav/calendar.py:798 +#: sql_constraint:basic.calendar.alias:0 +#, python-format +msgid "The same filename cannot apply to two records!" +msgstr "O mesmo arquivo não pode ser aplicado para dois registros!" + +#. module: caldav +#: sql_constraint:document.directory:0 +msgid "Directory cannot be parent of itself!" +msgstr "Diretório não pode ser pai de si mesmo!" + +#. module: caldav +#: view:basic.calendar:0 +#: field:document.directory,calendar_ids:0 +#: model:ir.actions.act_window,name:caldav.action_caldav_form +#: model:ir.ui.menu,name:caldav.menu_caldav_directories +msgid "Calendars" +msgstr "Calendários" + +#. module: caldav +#: field:basic.calendar,collection_id:0 +msgid "Collection" +msgstr "Coleção" + +#. module: caldav +#: field:basic.calendar,write_date:0 +msgid "Write Date" +msgstr "" + +#. module: caldav +#: sql_constraint:document.directory:0 +msgid "The directory name must be unique !" +msgstr "O nome do diretório deve ser único!" + +#. module: caldav +#: code:addons/caldav/wizard/calendar_event_subscribe.py:59 +#, python-format +msgid "Please provide Proper URL !" +msgstr "Por favor, forneça a URL correta!" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_timezone +msgid "basic.calendar.timezone" +msgstr "" + +#. module: caldav +#: field:basic.calendar.fields,expr:0 +msgid "Expression" +msgstr "Expressão" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_attendee +msgid "basic.calendar.attendee" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_alias +msgid "basic.calendar.alias" +msgstr "" + +#. module: caldav +#: view:calendar.event.import:0 +#: field:calendar.event.import,file_path:0 +msgid "Select ICS file" +msgstr "Selecionar arquivo ICS" + +#. module: caldav +#: field:basic.calendar.lines,mapping_ids:0 +msgid "Fields Mapping" +msgstr "Mapeamento de Campos" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar +msgid "basic.calendar" +msgstr "" + +#. module: caldav +#: view:basic.calendar:0 +msgid "Other Info" +msgstr "Outras Informações" + +#. module: caldav +#: view:calendar.event.subscribe:0 +msgid "_Subscribe" +msgstr "_Inscrever-se" + +#. module: caldav +#: help:basic.calendar,has_webcal:0 +msgid "" +"Also export a .ics entry next to the calendar folder, with WebCal " +"content." +msgstr "" + +#. module: caldav +#: field:basic.calendar.fields,fn:0 +msgid "Function" +msgstr "Função" + +#. module: caldav +#: view:basic.calendar:0 +#: field:basic.calendar,description:0 +msgid "Description" +msgstr "Descrição" + +#. module: caldav +#: help:basic.calendar.alias,cal_line_id:0 +msgid "The calendar/line this mapping applies to" +msgstr "O calendário/linha deste mapeamento se aplica para" + +#. module: caldav +#: field:basic.calendar.fields,mapping:0 +msgid "Mapping" +msgstr "Mapeamento" + +#. module: caldav +#: code:addons/caldav/wizard/calendar_event_import.py:86 +#, python-format +msgid "Import Sucessful" +msgstr "Importação bem sucedida" + +#. module: caldav +#: view:calendar.event.import:0 +msgid "_Import" +msgstr "_Importar" + +#. module: caldav +#: model:ir.model,name:caldav.model_calendar_event_import +msgid "Event Import" +msgstr "Importar Evento" + +#. module: caldav +#: selection:basic.calendar.fields,fn:0 +msgid "Interval in hours" +msgstr "Intervalo em horas" + +#. module: caldav +#: view:calendar.event.subscribe:0 +msgid "Subscribe to Remote Calendar" +msgstr "Inscrever-se para o Calendário Remoto" + +#. module: caldav +#: help:basic.calendar,calendar_color:0 +msgid "For supporting clients, the color of the calendar entries" +msgstr "" + +#. module: caldav +#: field:basic.calendar,name:0 +#: field:basic.calendar.attributes,name:0 +#: field:basic.calendar.fields,name:0 +msgid "Name" +msgstr "Nome" + +#. module: caldav +#: selection:basic.calendar.attributes,type:0 +#: selection:basic.calendar.lines,name:0 +msgid "Alarm" +msgstr "Alarme" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_alarm +msgid "basic.calendar.alarm" +msgstr "" + +#. module: caldav +#: code:addons/caldav/calendar.py:1275 +#, python-format +msgid "Attendee must have an Email Id" +msgstr "Participante deve ter um ID de E-mail" + +#. module: caldav +#: model:ir.actions.act_window,name:caldav.action_calendar_event_export_values +msgid "Export .ics File" +msgstr "Exportar Arquivo .ics" + +#. module: caldav +#: code:addons/caldav/calendar.py:41 +#, python-format +msgid "vobject Import Error!" +msgstr "Erro de importação vobject" + +#. module: caldav +#: view:basic.calendar:0 +msgid "MY" +msgstr "MEU" + +#. module: caldav +#: field:calendar.event.export,file_path:0 +msgid "Save ICS file" +msgstr "Salvar arquivo ICS" + +#. module: caldav +#: field:basic.calendar,calendar_order:0 +msgid "Order" +msgstr "Ordem" + +#. module: caldav +#: model:ir.module.module,shortdesc:caldav.module_meta_information +msgid "Share Calendar using CalDAV" +msgstr "Compartilhar Calendário usando CalDAV" + +#. module: caldav +#: field:basic.calendar,calendar_color:0 +msgid "Color" +msgstr "Cor" + +#. module: caldav +#: code:addons/caldav/calendar.py:41 +#, python-format +msgid "" +"Please install python-vobject from http://vobject.skyhouseconsulting.com/" +msgstr "" +"Por favor instale python-vobject de http://vobject.skyhouseconsulting.com/" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_fields +msgid "Calendar fields" +msgstr "Campos do Calendário" + +#. module: caldav +#: view:calendar.event.import:0 +msgid "Import Message" +msgstr "Importar Menssagem" + +#. module: caldav +#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe +#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe_values +msgid "Subscribe" +msgstr "Inscrever-se" + +#. module: caldav +#: sql_constraint:document.directory:0 +msgid "Directory must have a parent or a storage" +msgstr "" + +#. module: caldav +#: model:ir.model,name:caldav.model_basic_calendar_todo +msgid "basic.calendar.todo" +msgstr "" + +#. module: caldav +#: help:basic.calendar,calendar_order:0 +msgid "For supporting clients, the order of this folder among the calendars" +msgstr "" diff --git a/addons/crm/i18n/es.po b/addons/crm/i18n/es.po index 1eb934a8990..5f27f5503d4 100644 --- a/addons/crm/i18n/es.po +++ b/addons/crm/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 13:36+0000\n" -"Last-Translator: Borja López Soilán \n" +"PO-Revision-Date: 2011-01-11 21:02+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:58+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm @@ -1830,6 +1830,10 @@ msgid "" "sent/to be sent to your colleagues/partners. You can not only invite OpenERP " "users, but also external parties, such as a customer." msgstr "" +"Con invitaciones a reuniones puede crear y gesionar las invitaciones de " +"reuniones enviadas / por enviar a sus compañeros de trabajo / empresas. La " +"invitación no debe ser únicamente para usuarios de OpenERP, puede ser " +"igualmente para terceros externos, como un cliente." #. module: crm #: selection:crm.meeting,week_list:0 @@ -2563,7 +2567,7 @@ msgstr "Hecho" #. module: crm #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "" +msgstr "Repetir cada (días/semana/mes/año)" #. module: crm #: field:crm.segmentation,som_interval_max:0 @@ -2613,7 +2617,7 @@ msgstr "Asistencia/Ayuda" #. module: crm #: field:crm.meeting,recurrency:0 msgid "Recurrent" -msgstr "" +msgstr "Recurrente" #. module: crm #: code:addons/crm/crm.py:397 @@ -2740,7 +2744,7 @@ msgstr "Nº de e-mails" #. module: crm #: view:crm.meeting:0 msgid "Repeat interval" -msgstr "" +msgstr "intervalo de repetición" #. module: crm #: view:crm.lead.report:0 @@ -2752,7 +2756,7 @@ msgstr "Retraso de apertura" #. module: crm #: view:crm.meeting:0 msgid "Recurrency period" -msgstr "" +msgstr "Periodo de recurrencia" #. module: crm #: field:crm.meeting,week_list:0 diff --git a/addons/crm/i18n/es_EC.po b/addons/crm/i18n/es_EC.po new file mode 100644 index 00000000000..61c2ebc127c --- /dev/null +++ b/addons/crm/i18n/es_EC.po @@ -0,0 +1,3795 @@ +# Spanish (Ecuador) translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-03 16:57+0000\n" +"PO-Revision-Date: 2011-01-11 15:46+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Spanish (Ecuador) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: crm +#: view:crm.lead.report:0 +msgid "# Leads" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: selection:crm.lead,type:0 +#: selection:crm.lead.report,type:0 +msgid "Lead" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor3 +msgid "Need Services" +msgstr "" + +#. module: crm +#: selection:crm.meeting,rrule_type:0 +msgid "Monthly" +msgstr "" + +#. module: crm +#: view:crm.opportunity2phonecall:0 +msgid "Schedule a PhoneCall" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_case_stage +msgid "Stage of case" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Visibility" +msgstr "" + +#. module: crm +#: field:crm.lead,title:0 +msgid "Title" +msgstr "" + +#. module: crm +#: field:crm.meeting,show_as:0 +msgid "Show as" +msgstr "" + +#. module: crm +#: field:crm.meeting,day:0 +#: selection:crm.meeting,select1:0 +msgid "Date of month" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.phonecall:0 +msgid "Today" +msgstr "" + +#. module: crm +#: view:crm.merge.opportunity:0 +msgid "Select Opportunities" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: view:crm.phonecall2opportunity:0 +#: view:crm.phonecall2phonecall:0 +#: view:crm.send.mail:0 +msgid " " +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: field:crm.phonecall.report,delay_close:0 +msgid "Delay to close" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Previous Stage" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_add_note.py:26 +#, python-format +msgid "Can not add note!" +msgstr "" + +#. module: crm +#: field:crm.case.stage,name:0 +msgid "Stage Name" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: field:crm.lead.report,day:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,day:0 +msgid "Day" +msgstr "" + +#. module: crm +#: sql_constraint:crm.case.section:0 +msgid "The code of the sales team must be unique !" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:93 +#, python-format +msgid "Lead '%s' has been converted to an opportunity." +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:228 +#, python-format +msgid "The lead '%s' has been closed." +msgstr "" + +#. module: crm +#: selection:crm.meeting,freq:0 +msgid "No Repeat" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:133 +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:258 +#: code:addons/crm/wizard/crm_lead_to_partner.py:55 +#: code:addons/crm/wizard/crm_phonecall_to_partner.py:52 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: crm +#: selection:crm.meeting,rrule_type:0 +msgid "Yearly" +msgstr "" + +#. module: crm +#: field:crm.segmentation.line,name:0 +msgid "Rule Name" +msgstr "" + +#. module: crm +#: view:crm.case.resource.type:0 +#: view:crm.lead:0 +#: field:crm.lead,type_id:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,type_id:0 +#: model:ir.model,name:crm.model_crm_case_resource_type +msgid "Campaign" +msgstr "" + +#. module: crm +#: selection:crm.lead2opportunity.partner,action:0 +msgid "Do not create a partner" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Search Opportunities" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_merge_opportunities.py:46 +#, python-format +msgid "" +"Opportunity must have Partner assigned before merging with other Opportunity." +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_merge_opportunities.py:46 +#: code:addons/crm/wizard/crm_merge_opportunities.py:53 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_send_email.py:72 +#: code:addons/crm/wizard/crm_send_email.py:169 +#: code:addons/crm/wizard/crm_send_email.py:270 +#, python-format +msgid "Can not send mail!" +msgstr "" + +#. module: crm +#: field:crm.lead,partner_id:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,partner_id:0 +#: field:crm.lead2opportunity,partner_id:0 +#: field:crm.lead2opportunity.partner,partner_id:0 +#: field:crm.lead2partner,partner_id:0 +#: view:crm.meeting:0 +#: field:crm.meeting,partner_id:0 +#: field:crm.partner2opportunity,partner_id:0 +#: view:crm.phonecall:0 +#: field:crm.phonecall,partner_id:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,partner_id:0 +#: field:crm.phonecall2opportunity,partner_id:0 +#: field:crm.phonecall2partner,partner_id:0 +#: model:ir.model,name:crm.model_res_partner +#: model:process.node,name:crm.process_node_partner0 +msgid "Partner" +msgstr "" + +#. module: crm +#: field:crm.meeting,organizer:0 +#: field:crm.meeting,organizer_id:0 +msgid "Organizer" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +#: view:crm.phonecall2phonecall:0 +#: model:ir.actions.act_window,name:crm.phonecall_to_phonecall_act +#: view:res.partner:0 +msgid "Schedule Other Call" +msgstr "" + +#. module: crm +#: help:crm.meeting,edit_all:0 +msgid "Edit all Occurrences of recurrent Meeting." +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_opportunity_to_phonecall.py:134 +#: code:addons/crm/wizard/crm_phonecall_to_phonecall.py:89 +#: model:crm.case.categ,name:crm.categ_meet3 +#: view:crm.phonecall:0 +#: model:ir.ui.menu,name:crm.menu_crm_config_phonecall +#: view:res.partner:0 +#, python-format +msgid "Phone Call" +msgstr "" + +#. module: crm +#: field:crm.lead,optout:0 +msgid "Opt-Out" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_opportunity.py:108 +#, python-format +msgid "The opportunity '%s' has been marked as lost." +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.action_report_crm_lead +msgid "" +"Leads Analysis allows you to check different CRM related information. Check " +"for treatment delays, number of responses given and emails sent. You can " +"sort out your leads analysis by different groups to get accurate grained " +"analysis." +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Send New Email" +msgstr "" + +#. module: crm +#: field:crm.segmentation,segmentation_line:0 +msgid "Criteria" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Excluded Answers :" +msgstr "" + +#. module: crm +#: field:crm.case.stage,section_ids:0 +msgid "Sections" +msgstr "" + +#. module: crm +#: view:crm.merge.opportunity:0 +msgid "_Merge" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: model:ir.actions.act_window,name:crm.action_report_crm_lead +#: model:ir.ui.menu,name:crm.menu_report_crm_leads_tree +msgid "Leads Analysis" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.action:0 +msgid "" +"If you select Merge with existing Opportunity, the lead details(with the " +"communication history) will be merged with existing Opportunity of Selected " +"partner." +msgstr "" + +#. module: crm +#: selection:crm.meeting,class:0 +msgid "Public" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.crm_case_resource_type_act +#: model:ir.ui.menu,name:crm.menu_crm_case_resource_type_act +msgid "Campaigns" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.crm_lead_categ_action +#: model:ir.ui.menu,name:crm.menu_crm_case_phonecall-act +#: model:ir.ui.menu,name:crm.menu_crm_lead_categ +msgid "Categories" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Dates" +msgstr "" + +#. module: crm +#: help:crm.lead,optout:0 +msgid "" +"If opt-out is checked, this contact has refused to receive emails or " +"unsubscribed to a campaign." +msgstr "" + +#. module: crm +#: model:process.transition,name:crm.process_transition_leadpartner0 +msgid "Prospect Partner" +msgstr "" + +#. module: crm +#: field:crm.lead,contact_name:0 +msgid "Contact Name" +msgstr "" + +#. module: crm +#: selection:crm.lead2opportunity.partner,action:0 +#: selection:crm.lead2partner,action:0 +#: selection:crm.phonecall2partner,action:0 +msgid "Link to an existing partner" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.meeting:0 +#: field:crm.phonecall,partner_contact:0 +msgid "Contact" +msgstr "" + +#. module: crm +#: view:crm.installer:0 +msgid "Enhance your core CRM Application with additional functionalities." +msgstr "" + +#. module: crm +#: field:crm.case.stage,on_change:0 +msgid "Change Probability Automatically" +msgstr "" + +#. module: crm +#: field:base.action.rule,regex_history:0 +msgid "Regular Expression on Case History" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:209 +#, python-format +msgid "The lead '%s' has been opened." +msgstr "" + +#. module: crm +#: model:process.transition,name:crm.process_transition_opportunitymeeting0 +msgid "Opportunity Meeting" +msgstr "" + +#. module: crm +#: help:crm.lead.report,delay_close:0 +#: help:crm.phonecall.report,delay_close:0 +msgid "Number of Days to close the case" +msgstr "" + +#. module: crm +#: model:process.node,note:crm.process_node_opportunities0 +msgid "When a real project/opportunity is detected" +msgstr "" + +#. module: crm +#: field:crm.installer,crm_fundraising:0 +msgid "Fundraising" +msgstr "" + +#. module: crm +#: view:res.partner:0 +#: field:res.partner,opportunity_ids:0 +msgid "Leads and Opportunities" +msgstr "" + +#. module: crm +#: view:crm.send.mail:0 +msgid "_Send" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Communication" +msgstr "" + +#. module: crm +#: field:crm.case.section,change_responsible:0 +msgid "Change Responsible" +msgstr "" + +#. module: crm +#: field:crm.merge.opportunity,state:0 +msgid "Set State To" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0 +msgid "" +"Outbound Calls list all the calls to be done by your sales team. A salesman " +"can record the information about the call in the form view. This information " +"will be stored in the partner form to trace every contact you have with a " +"customer. You can also import a .CSV file with a list of calls to be done by " +"your sales team." +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_lead2opportunity_action +msgid "Convert/Merge Opportunity" +msgstr "" + +#. module: crm +#: field:crm.lead,write_date:0 +msgid "Update Date" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.action:0 +#: field:crm.lead2opportunity.action,name:0 +msgid "Select Action" +msgstr "" + +#. module: crm +#: field:base.action.rule,trg_categ_id:0 +#: view:crm.lead:0 +#: field:crm.lead,categ_id:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,categ_id:0 +#: field:crm.opportunity2phonecall,categ_id:0 +#: field:crm.phonecall,categ_id:0 +#: field:crm.phonecall.report,categ_id:0 +#: field:crm.phonecall2phonecall,categ_id:0 +msgid "Category" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "#Opportunities" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_oppor2 +msgid "Campaign 1" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_oppor1 +msgid "Campaign 2" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Privacy" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "Opportunity Analysis" +msgstr "" + +#. module: crm +#: help:crm.meeting,location:0 +msgid "Location of Event" +msgstr "" + +#. module: crm +#: field:crm.meeting,rrule:0 +msgid "Recurrent Rule" +msgstr "" + +#. module: crm +#: help:crm.installer,fetchmail:0 +msgid "Allows you to receive E-Mails from POP/IMAP server." +msgstr "" + +#. module: crm +#: model:process.transition,note:crm.process_transition_opportunitymeeting0 +msgid "Normal or phone meeting for opportunity" +msgstr "" + +#. module: crm +#: model:process.node,note:crm.process_node_leads0 +msgid "Very first contact with new prospect" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:278 +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:195 +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:229 +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:297 +#: view:crm.lead2opportunity:0 +#: view:crm.partner2opportunity:0 +#: model:ir.actions.act_window,name:crm.action_crm_lead2opportunity +#: model:ir.actions.act_window,name:crm.action_view_crm_partner2opportunity +#: model:ir.actions.act_window,name:crm.crm_partner2opportunity +#, python-format +msgid "Create Opportunity" +msgstr "" + +#. module: crm +#: view:crm.installer:0 +msgid "Configure" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:378 +#: view:crm.lead:0 +#: view:res.partner:0 +#, python-format +msgid "Escalate" +msgstr "" + +#. module: crm +#: model:ir.module.module,shortdesc:crm.module_meta_information +msgid "Customer & Supplier Relationship Management" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "June" +msgstr "" + +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Not Running" +msgstr "" + +#. module: crm +#: view:crm.send.mail:0 +#: model:ir.actions.act_window,name:crm.action_crm_reply_mail +msgid "Reply to last Mail" +msgstr "" + +#. module: crm +#: field:crm.lead,email:0 +msgid "E-Mail" +msgstr "" + +#. module: crm +#: field:crm.installer,wiki_sale_faq:0 +msgid "Sale FAQ" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_send_mail_attachment +msgid "crm.send.mail.attachment" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "October" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Included Answers :" +msgstr "" + +#. module: crm +#: help:crm.meeting,email_from:0 +#: help:crm.phonecall,email_from:0 +msgid "These people will receive email." +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: field:crm.meeting,name:0 +msgid "Summary" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "State of Mind Computation" +msgstr "" + +#. module: crm +#: help:crm.case.section,change_responsible:0 +msgid "" +"Thick this box if you want that on escalation, the responsible of this sale " +"team automatically becomes responsible of the lead/opportunity escaladed" +msgstr "" + +#. module: crm +#: help:crm.installer,outlook:0 +#: help:crm.installer,thunderbird:0 +msgid "" +"Allows you to link your e-mail to OpenERP's documents. You can attach it to " +"any existing one in OpenERP or create a new one." +msgstr "" + +#. module: crm +#: view:crm.case.categ:0 +msgid "Case Category" +msgstr "" + +#. module: crm +#: help:crm.segmentation,som_interval_default:0 +msgid "" +"Default state of mind for period preceeding the 'Max Interval' computation. " +"This is the starting state of mind by default if the partner has no event." +msgstr "" + +#. module: crm +#: constraint:base.action.rule:0 +msgid "Error: The mail is not well formated" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Profiling Options" +msgstr "" + +#. module: crm +#: view:crm.phonecall.report:0 +msgid "#Phone calls" +msgstr "" + +#. module: crm +#: help:crm.segmentation,categ_id:0 +msgid "" +"The partner category that will be added to partners that match the " +"segmentation criterions after computation." +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Communication history" +msgstr "" + +#. module: crm +#: help:crm.phonecall,canal_id:0 +msgid "" +"The channels represent the different communication " +"modes available with the customer. With each commercial opportunity, you can " +"indicate the canall which is this opportunity source." +msgstr "" + +#. module: crm +#: code:addons/crm/crm_meeting.py:93 +#, python-format +msgid "The meeting '%s' has been confirmed." +msgstr "" + +#. module: crm +#: field:crm.case.section,user_id:0 +msgid "Responsible User" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_phonecall_to_partner.py:53 +#, python-format +msgid "A partner is already defined on this phonecall." +msgstr "" + +#. module: crm +#: help:crm.case.section,reply_to:0 +msgid "" +"The email address put in the 'Reply-To' of all emails sent by OpenERP about " +"cases in this sales team" +msgstr "" + +#. module: crm +#: view:res.users:0 +msgid "Current Activity" +msgstr "" + +#. module: crm +#: help:crm.meeting,exrule:0 +msgid "" +"Defines a rule or repeating pattern of time to exclude from the recurring " +"rule." +msgstr "" + +#. module: crm +#: field:crm.case.section,resource_calendar_id:0 +msgid "Working Time" +msgstr "" + +#. module: crm +#: view:crm.segmentation.line:0 +msgid "Partner Segmentation Lines" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.meeting:0 +msgid "Details" +msgstr "" + +#. module: crm +#: help:crm.installer,crm_caldav:0 +msgid "" +"Helps you to synchronize the meetings with other calendar clients and " +"mobiles." +msgstr "" + +#. module: crm +#: selection:crm.meeting,freq:0 +msgid "Years" +msgstr "" + +#. module: crm +#: help:crm.installer,crm_claim:0 +msgid "" +"Manages the suppliers and customers claims, including your corrective or " +"preventive actions." +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Leads Form" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +#: model:ir.model,name:crm.model_crm_segmentation +msgid "Partner Segmentation" +msgstr "" + +#. module: crm +#: field:crm.lead.report,probable_revenue:0 +msgid "Probable Revenue" +msgstr "" + +#. module: crm +#: help:crm.segmentation,name:0 +msgid "The name of the segmentation." +msgstr "" + +#. module: crm +#: field:crm.case.stage,probability:0 +#: field:crm.lead,probability:0 +msgid "Probability (%)" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Leads Generation" +msgstr "" + +#. module: crm +#: view:board.board:0 +#: model:ir.ui.menu,name:crm.menu_board_statistics_dash +msgid "Statistics Dashboard" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:86 +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:96 +#: code:addons/crm/wizard/crm_partner_to_opportunity.py:101 +#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:117 +#: view:crm.lead:0 +#: selection:crm.lead,type:0 +#: selection:crm.lead.report,type:0 +#: field:crm.lead2opportunity,name:0 +#: field:crm.meeting,opportunity_id:0 +#: field:crm.phonecall,opportunity_id:0 +#, python-format +msgid "Opportunity" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_lead7 +msgid "Television" +msgstr "" + +#. module: crm +#: field:crm.installer,crm_caldav:0 +msgid "Calendar Synchronizing" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Stop Process" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +msgid "Search Phonecalls" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.partner:0 +#: view:crm.lead2partner:0 +#: view:crm.phonecall2partner:0 +msgid "Continue" +msgstr "" + +#. module: crm +#: field:crm.segmentation,som_interval:0 +msgid "Days per Periode" +msgstr "" + +#. module: crm +#: field:crm.meeting,byday:0 +msgid "By day" +msgstr "" + +#. module: crm +#: field:base.action.rule,act_section_id:0 +msgid "Set Team to" +msgstr "" + +#. module: crm +#: view:calendar.attendee:0 +#: field:calendar.attendee,categ_id:0 +msgid "Event Type" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_installer +msgid "crm.installer" +msgstr "" + +#. module: crm +#: field:crm.segmentation,exclusif:0 +msgid "Exclusive" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_opportunity.py:91 +#, python-format +msgid "The opportunity '%s' has been won." +msgstr "" + +#. module: crm +#: help:crm.meeting,alarm_id:0 +msgid "Set an alarm at this time, before the event occurs" +msgstr "" + +#. module: crm +#: model:ir.module.module,description:crm.module_meta_information +msgid "" +"The generic OpenERP Customer Relationship Management\n" +"system enables a group of people to intelligently and efficiently manage\n" +"leads, opportunities, meeting, phonecall etc.\n" +"It manages key tasks such as communication, identification, prioritization,\n" +"assignment, resolution and notification.\n" +"\n" +"OpenERP ensures that all cases are successfully tracked by users, customers " +"and\n" +"suppliers. It can automatically send reminders, escalate the request, " +"trigger\n" +"specific methods and lots of other actions based on your own enterprise " +"rules.\n" +"\n" +"The greatest thing about this system is that users don't need to do " +"anything\n" +"special. They can just send email to the request tracker. OpenERP will take\n" +"care of thanking them for their message, automatically routing it to the\n" +"appropriate staff, and make sure all future correspondence gets to the " +"right\n" +"place.\n" +"\n" +"The CRM module has a email gateway for the synchronisation interface\n" +"between mails and OpenERP. \n" +"Create dashboard for CRM that includes:\n" +" * My Leads (list)\n" +" * Leads by Stage (graph)\n" +" * My Meetings (list)\n" +" * Sales Pipeline by Stage (graph)\n" +" * My Cases (list)\n" +" * Jobs Tracking (graph)\n" +msgstr "" + +#. module: crm +#: field:crm.lead.report,create_date:0 +#: field:crm.phonecall.report,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: crm +#: field:crm.lead,ref2:0 +msgid "Reference 2" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "" + +#. module: crm +#: view:crm.case.stage:0 +#: field:crm.case.stage,requirements:0 +msgid "Requirements" +msgstr "" + +#. module: crm +#: help:crm.meeting,exdate:0 +msgid "" +"This property defines the list of date/time exceptions for a recurring " +"calendar component." +msgstr "" + +#. module: crm +#: view:crm.phonecall2opportunity:0 +msgid "Convert To Opportunity " +msgstr "" + +#. module: crm +#: help:crm.case.stage,sequence:0 +msgid "Gives the sequence order when displaying a list of case stages." +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.merge.opportunity,opportunity_ids:0 +#: model:ir.actions.act_window,name:crm.crm_case_category_act_oppor11 +#: model:ir.ui.menu,name:crm.menu_crm_case_opp +#: model:process.node,name:crm.process_node_opportunities0 +msgid "Opportunities" +msgstr "" + +#. module: crm +#: field:crm.segmentation,categ_id:0 +msgid "Partner Category" +msgstr "" + +#. module: crm +#: view:crm.add.note:0 +#: model:ir.actions.act_window,name:crm.action_crm_add_note +msgid "Add Note" +msgstr "" + +#. module: crm +#: field:crm.lead,is_supplier_add:0 +msgid "Supplier" +msgstr "" + +#. module: crm +#: help:crm.send.mail,reply_to:0 +msgid "Reply-to of the Sales team defined on this case" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Mark Won" +msgstr "" + +#. module: crm +#: selection:crm.segmentation.line,expr_name:0 +msgid "Purchase Amount" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Mark Lost" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "March" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:230 +#, python-format +msgid "The opportunity '%s' has been closed." +msgstr "" + +#. module: crm +#: field:crm.lead,day_open:0 +msgid "Days to Open" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Show time as" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:264 +#: view:crm.phonecall2partner:0 +#, python-format +msgid "Create Partner" +msgstr "" + +#. module: crm +#: selection:crm.segmentation.line,expr_operator:0 +msgid "<" +msgstr "" + +#. module: crm +#: field:crm.lead,mobile:0 +#: field:crm.phonecall,partner_mobile:0 +msgid "Mobile" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_merge_opportunities.py:53 +#, python-format +msgid "" +"There are no other 'Open' or 'Pending' Opportunities for the partner '%s'." +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Next Stage" +msgstr "" + +#. module: crm +#: view:board.board:0 +msgid "My Meetings" +msgstr "" + +#. module: crm +#: field:crm.lead,ref:0 +msgid "Reference" +msgstr "" + +#. module: crm +#: field:crm.lead,optin:0 +msgid "Opt-In" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_opportunity.py:208 +#: code:addons/crm/crm_phonecall.py:184 +#: code:addons/crm/wizard/crm_phonecall_to_meeting.py:55 +#: code:addons/crm/wizard/crm_phonecall_to_meeting.py:137 +#: view:crm.meeting:0 +#: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_meeting_new +#: model:ir.actions.act_window,name:crm.crm_case_categ_meet +#: model:ir.ui.menu,name:crm.menu_crm_case_categ_meet +#: model:ir.ui.menu,name:crm.menu_meeting_sale +#: view:res.partner:0 +#: field:res.partner,meeting_ids:0 +#, python-format +msgid "Meetings" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Choose day where repeat the meeting" +msgstr "" + +#. module: crm +#: field:crm.lead,date_action_next:0 +#: field:crm.lead,title_action:0 +#: field:crm.meeting,date_action_next:0 +#: field:crm.phonecall,date_action_next:0 +msgid "Next Action" +msgstr "" + +#. module: crm +#: field:crm.meeting,end_date:0 +msgid "Repeat Until" +msgstr "" + +#. module: crm +#: field:crm.meeting,date_deadline:0 +msgid "Deadline" +msgstr "" + +#. module: crm +#: help:crm.meeting,active:0 +msgid "" +"If the active field is set to true, it will allow you to hide the " +"event alarm information without removing it." +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:57 +#, python-format +msgid "Closed/Cancelled Phone Call Could not convert into Opportunity" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Partner Segmentations" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: field:crm.meeting,user_id:0 +#: view:crm.phonecall:0 +#: field:crm.phonecall,user_id:0 +#: view:res.partner:0 +msgid "Responsible" +msgstr "" + +#. module: crm +#: view:res.partner:0 +msgid "Previous" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Statistics" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: field:crm.send.mail,email_from:0 +msgid "From" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.action:0 +#: view:res.partner:0 +msgid "Next" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Stage:" +msgstr "" + +#. module: crm +#: model:crm.case.stage,name:crm.stage_lead5 +#: model:crm.case.stage,name:crm.stage_opportunity5 +#: view:crm.lead:0 +msgid "Won" +msgstr "" + +#. module: crm +#: field:crm.lead.report,delay_expected:0 +msgid "Overpassed Deadline" +msgstr "" + +#. module: crm +#: model:crm.case.section,name:crm.section_sales_department +msgid "Sales Department" +msgstr "" + +#. module: crm +#: field:crm.send.mail,html:0 +msgid "HTML formatting?" +msgstr "" + +#. module: crm +#: field:crm.case.stage,type:0 +#: field:crm.lead,type:0 +#: field:crm.lead.report,type:0 +#: view:crm.meeting:0 +#: view:crm.phonecall:0 +#: view:crm.phonecall.report:0 +#: view:res.partner:0 +msgid "Type" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Compute Segmentation" +msgstr "" + +#. module: crm +#: selection:crm.lead,priority:0 +#: selection:crm.lead.report,priority:0 +#: selection:crm.phonecall,priority:0 +#: selection:crm.phonecall.report,priority:0 +msgid "Lowest" +msgstr "" + +#. module: crm +#: view:crm.add.note:0 +#: view:crm.send.mail:0 +#: field:crm.send.mail.attachment,binary:0 +msgid "Attachment" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "August" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,create_date:0 +#: field:crm.lead.report,creation_date:0 +#: field:crm.meeting,create_date:0 +#: field:crm.phonecall,create_date:0 +#: field:crm.phonecall.report,creation_date:0 +msgid "Creation Date" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor5 +msgid "Need a Website Design" +msgstr "" + +#. module: crm +#: field:crm.meeting,recurrent_uid:0 +msgid "Recurrent ID" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.meeting:0 +#: field:crm.send.mail,subject:0 +#: view:res.partner:0 +msgid "Subject" +msgstr "" + +#. module: crm +#: field:crm.meeting,tu:0 +msgid "Tue" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:300 +#: view:crm.case.stage:0 +#: view:crm.lead:0 +#: field:crm.lead,stage_id:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,stage_id:0 +#, python-format +msgid "Stage" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "History Information" +msgstr "" + +#. module: crm +#: field:base.action.rule,act_mail_to_partner:0 +msgid "Mail to Partner" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Mailings" +msgstr "" + +#. module: crm +#: field:crm.meeting,class:0 +msgid "Mark as" +msgstr "" + +#. module: crm +#: field:crm.meeting,count:0 +msgid "Repeat" +msgstr "" + +#. module: crm +#: help:crm.meeting,rrule_type:0 +msgid "Let the event automatically repeat at that interval" +msgstr "" + +#. module: crm +#: view:base.action.rule:0 +msgid "Condition Case Fields" +msgstr "" + +#. module: crm +#: view:crm.case.section:0 +#: field:crm.case.section,stage_ids:0 +#: view:crm.case.stage:0 +#: model:ir.actions.act_window,name:crm.crm_case_stage_act +#: model:ir.actions.act_window,name:crm.crm_lead_stage_act +#: model:ir.actions.act_window,name:crm.crm_opportunity_stage_act +#: model:ir.ui.menu,name:crm.menu_crm_lead_stage_act +#: model:ir.ui.menu,name:crm.menu_crm_opportunity_stage_act +msgid "Stages" +msgstr "" + +#. module: crm +#: field:crm.lead,planned_revenue:0 +#: field:crm.lead2opportunity,planned_revenue:0 +#: field:crm.partner2opportunity,planned_revenue:0 +#: field:crm.phonecall2opportunity,planned_revenue:0 +msgid "Expected Revenue" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action +msgid "" +"Create specific phone call categories to better define the type of calls " +"tracked in the system." +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "September" +msgstr "" + +#. module: crm +#: field:crm.segmentation,partner_id:0 +msgid "Max Partner ID processed" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.action_report_crm_phonecall +#: model:ir.ui.menu,name:crm.menu_report_crm_phonecalls_tree +msgid "Phone Calls Analysis" +msgstr "" + +#. module: crm +#: field:crm.lead.report,opening_date:0 +#: field:crm.phonecall.report,opening_date:0 +msgid "Opening Date" +msgstr "" + +#. module: crm +#: help:crm.phonecall,duration:0 +msgid "Duration in Minutes" +msgstr "" + +#. module: crm +#: help:crm.installer,crm_helpdesk:0 +msgid "Manages a Helpdesk service." +msgstr "" + +#. module: crm +#: field:crm.partner2opportunity,name:0 +msgid "Opportunity Name" +msgstr "" + +#. module: crm +#: help:crm.case.section,active:0 +msgid "" +"If the active field is set to true, it will allow you to hide the sales team " +"without removing it." +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: view:crm.phonecall.report:0 +msgid " Year " +msgstr "" + +#. module: crm +#: field:crm.meeting,edit_all:0 +msgid "Edit All" +msgstr "" + +#. module: crm +#: field:crm.meeting,fr:0 +msgid "Fri" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_lead +msgid "crm.lead" +msgstr "" + +#. module: crm +#: field:crm.meeting,write_date:0 +msgid "Write Date" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "End of recurrency" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Reminder" +msgstr "" + +#. module: crm +#: help:crm.segmentation,sales_purchase_active:0 +msgid "" +"Check if you want to use this tab as part of the segmentation rule. If not " +"checked, the criteria beneath will be ignored" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.partner:0 +#: view:crm.lead2partner:0 +#: view:crm.phonecall:0 +#: view:crm.phonecall2partner:0 +#: model:ir.actions.act_window,name:crm.action_crm_lead2partner +#: model:ir.actions.act_window,name:crm.action_crm_phonecall2partner +#: view:res.partner:0 +msgid "Create a Partner" +msgstr "" + +#. module: crm +#: field:crm.segmentation,state:0 +msgid "Execution Status" +msgstr "" + +#. module: crm +#: selection:crm.meeting,week_list:0 +msgid "Monday" +msgstr "" + +#. module: crm +#: field:crm.lead,day_close:0 +msgid "Days to Close" +msgstr "" + +#. module: crm +#: field:crm.add.note,attachment_ids:0 +#: field:crm.case.section,complete_name:0 +#: field:crm.send.mail,attachment_ids:0 +msgid "unknown" +msgstr "" + +#. module: crm +#: field:crm.lead,id:0 +#: field:crm.meeting,id:0 +#: field:crm.phonecall,id:0 +msgid "ID" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_partner2opportunity +msgid "Partner To Opportunity" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: field:crm.meeting,date:0 +#: field:crm.opportunity2phonecall,date:0 +#: view:crm.phonecall:0 +#: field:crm.phonecall,date:0 +#: field:crm.phonecall2phonecall,date:0 +#: view:res.partner:0 +msgid "Date" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.lead.report:0 +#: view:crm.meeting:0 +#: view:crm.phonecall.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: crm +#: field:crm.phonecall2opportunity,name:0 +msgid "Opportunity Summary" +msgstr "" + +#. module: crm +#: view:crm.phonecall.report:0 +msgid "Search" +msgstr "" + +#. module: crm +#: view:board.board:0 +msgid "Opportunities by Categories" +msgstr "" + +#. module: crm +#: field:crm.meeting,interval:0 +msgid "Interval" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Choose day in the month where repeat the meeting" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Segmentation Description" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:res.partner:0 +msgid "History" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act +msgid "" +"Create specific partner categories which you can assign to your partners to " +"better manage your interactions with them. The segmentation tool is able to " +"assign categories to partners according to criteria you set." +msgstr "" + +#. module: crm +#: field:crm.case.section,code:0 +msgid "Code" +msgstr "" + +#. module: crm +#: field:crm.case.section,child_ids:0 +msgid "Child Teams" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,state:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,state:0 +#: view:crm.meeting:0 +#: field:crm.meeting,state:0 +#: field:crm.phonecall,state:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,state:0 +msgid "State" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_lead1 +msgid "Telesales" +msgstr "" + +#. module: crm +#: field:crm.meeting,freq:0 +msgid "Frequency" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "References" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:392 +#: view:crm.lead:0 +#: view:crm.lead2opportunity:0 +#: view:crm.lead2opportunity.action:0 +#: view:crm.lead2opportunity.partner:0 +#: view:crm.lead2partner:0 +#: view:crm.phonecall:0 +#: view:crm.phonecall2partner:0 +#: view:res.partner:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_res_users +msgid "res.users" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_merge_opportunity +msgid "Merge two Opportunities" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.meeting:0 +#: view:crm.phonecall:0 +msgid "Current" +msgstr "" + +#. module: crm +#: field:crm.meeting,exrule:0 +msgid "Exception Rule" +msgstr "" + +#. module: crm +#: help:base.action.rule,act_mail_to_partner:0 +msgid "Check this if you want the rule to send an email to the partner." +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.crm_phonecall_categ_action +msgid "Phonecall Categories" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Invite People" +msgstr "" + +#. module: crm +#: constraint:crm.case.section:0 +msgid "Error ! You cannot create recursive Sales team." +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Search Meetings" +msgstr "" + +#. module: crm +#: selection:crm.segmentation.line,expr_name:0 +msgid "Sale Amount" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_send_email.py:141 +#, python-format +msgid "Unable to send mail. Please check SMTP is configured properly." +msgstr "" + +#. module: crm +#: selection:crm.segmentation.line,expr_operator:0 +msgid "=" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Search Leads" +msgstr "" + +#. module: crm +#: selection:crm.meeting,state:0 +msgid "Unconfirmed" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.action_report_crm_opportunity +msgid "" +"Opportunities Analysis gives you an instant access to your opportunities " +"with information such as the expected revenue, planned cost, missed " +"deadlines or the number of interactions per opportunity. This report is " +"mainly used by the sales manager in order to do the periodic review with the " +"teams of the sales pipeline." +msgstr "" + +#. module: crm +#: field:crm.case.categ,name:0 +#: field:crm.installer,name:0 +#: field:crm.lead,name:0 +#: field:crm.segmentation,name:0 +#: field:crm.send.mail.attachment,name:0 +msgid "Name" +msgstr "" + +#. module: crm +#: field:crm.meeting,alarm_id:0 +#: field:crm.meeting,base_calendar_alarm_id:0 +msgid "Alarm" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_lead_stage_act +msgid "" +"Add specific stages to leads and opportunities allowing your sales to better " +"organise their sales pipeline. Stages will allow them to easily track how a " +"specific lead or opportunity is positioned in the sales cycle." +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: view:crm.phonecall.report:0 +msgid "My Case(s)" +msgstr "" + +#. module: crm +#: field:crm.lead,birthdate:0 +msgid "Birthdate" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "The" +msgstr "" + +#. module: crm +#: field:crm.send.mail.attachment,wizard_id:0 +msgid "Wizard" +msgstr "" + +#. module: crm +#: help:crm.lead,section_id:0 +msgid "" +"Sales team to which this case belongs to. Defines responsible user and e-" +"mail address for the mail gateway." +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.phonecall:0 +msgid "Creation" +msgstr "" + +#. module: crm +#: selection:crm.lead,priority:0 +#: selection:crm.lead.report,priority:0 +#: selection:crm.phonecall,priority:0 +#: selection:crm.phonecall.report,priority:0 +msgid "High" +msgstr "" + +#. module: crm +#: model:process.node,note:crm.process_node_partner0 +msgid "Convert to prospect to business partner" +msgstr "" + +#. module: crm +#: view:crm.phonecall2opportunity:0 +msgid "_Convert" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.action_view_attendee_form +msgid "" +"With Meeting Invitations you can create and manage the meeting invitations " +"sent/to be sent to your colleagues/partners. You can not only invite OpenERP " +"users, but also external parties, such as a customer." +msgstr "" + +#. module: crm +#: selection:crm.meeting,week_list:0 +msgid "Saturday" +msgstr "" + +#. module: crm +#: selection:crm.meeting,byday:0 +msgid "Fifth" +msgstr "" + +#. module: crm +#: view:crm.phonecall2phonecall:0 +msgid "_Schedule" +msgstr "" + +#. module: crm +#: field:crm.lead.report,delay_close:0 +msgid "Delay to Close" +msgstr "" + +#. module: crm +#: field:crm.meeting,we:0 +msgid "Wed" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor6 +msgid "Potential Reseller" +msgstr "" + +#. module: crm +#: field:crm.lead.report,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.lead.report:0 +#: view:crm.meeting:0 +#: view:crm.phonecall:0 +#: view:crm.phonecall.report:0 +msgid "Group By..." +msgstr "" + +#. module: crm +#: help:crm.lead,partner_id:0 +msgid "Optional linked partner, usually after conversion of the lead" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Invitation details" +msgstr "" + +#. module: crm +#: field:crm.case.section,parent_id:0 +msgid "Parent Team" +msgstr "" + +#. module: crm +#: field:crm.lead,date_action:0 +msgid "Next Action Date" +msgstr "" + +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" + +#. module: crm +#: selection:crm.meeting,freq:0 +msgid "Hours" +msgstr "" + +#. module: crm +#: field:crm.lead,zip:0 +msgid "Zip" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:213 +#, python-format +msgid "The case '%s' has been opened." +msgstr "" + +#. module: crm +#: view:crm.installer:0 +msgid "title" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_phone1 +#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_incoming0 +#: model:ir.ui.menu,name:crm.menu_crm_case_phone_inbound +msgid "Inbound" +msgstr "" + +#. module: crm +#: help:crm.case.stage,probability:0 +msgid "" +"This percentage depicts the default/average probability of the Case for this " +"stage to be a success" +msgstr "" + +#. module: crm +#: view:crm.phonecall.report:0 +#: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_phonecall_new +msgid "Phone calls" +msgstr "" + +#. module: crm +#: selection:crm.meeting,show_as:0 +msgid "Free" +msgstr "" + +#. module: crm +#: view:crm.installer:0 +msgid "Synchronization" +msgstr "" + +#. module: crm +#: field:crm.case.section,allow_unlink:0 +msgid "Allow Delete" +msgstr "" + +#. module: crm +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "" + +#. module: crm +#: selection:crm.lead,priority:0 +#: selection:crm.lead.report,priority:0 +#: selection:crm.phonecall,priority:0 +#: selection:crm.phonecall.report,priority:0 +msgid "Highest" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0 +msgid "" +"The Inbound Calls tool allows you to log your inbound calls on the fly. Each " +"call you get will appear on the partner form to trace every contact you have " +"with a partner. From the phone call form, you can trigger a request for " +"another call, a meeting or an opportunity." +msgstr "" + +#. module: crm +#: help:crm.meeting,recurrency:0 +msgid "Recurrent Meeting" +msgstr "" + +#. module: crm +#: view:crm.case.section:0 +#: view:crm.lead:0 +#: field:crm.lead,description:0 +msgid "Notes" +msgstr "" + +#. module: crm +#: selection:crm.meeting,freq:0 +msgid "Days" +msgstr "" + +#. module: crm +#: field:crm.segmentation.line,expr_value:0 +msgid "Value" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.lead.report:0 +msgid "Opportunity by Categories" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,partner_name:0 +msgid "Customer Name" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_categ_meet +msgid "" +"The meeting calendar is shared between the sales teams and fully integrated " +"with other applications such as the employee holidays or the business " +"opportunities. You can also synchronize meetings with your mobile phone " +"using the caldav interface." +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_phonecall2opportunity +msgid "Phonecall To Opportunity" +msgstr "" + +#. module: crm +#: field:crm.case.section,reply_to:0 +msgid "Reply-To" +msgstr "" + +#. module: crm +#: view:crm.case.section:0 +msgid "Select stages for this Sales Team" +msgstr "" + +#. module: crm +#: view:board.board:0 +msgid "Opportunities by Stage" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Recurrency Option" +msgstr "" + +#. module: crm +#: model:process.transition,note:crm.process_transition_leadpartner0 +msgid "Prospect is converting to business partner" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity:0 +#: view:crm.partner2opportunity:0 +#: model:ir.actions.act_window,name:crm.phonecall2opportunity_act +msgid "Convert To Opportunity" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +#: view:crm.phonecall.report:0 +#: view:res.partner:0 +msgid "Held" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.phonecall:0 +#: view:res.partner:0 +msgid "Reset to Draft" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Extra Info" +msgstr "" + +#. module: crm +#: view:crm.merge.opportunity:0 +#: model:ir.actions.act_window,name:crm.action_merge_opportunities +#: model:ir.actions.act_window,name:crm.merge_opportunity_act +msgid "Merge Opportunities" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_lead5 +msgid "Google Adwords" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_phonecall +msgid "crm.phonecall" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_lead3 +msgid "Mail Campaign 2" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_lead2 +msgid "Mail Campaign 1" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Create" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:492 +#, python-format +msgid "Send" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,priority:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,priority:0 +#: field:crm.phonecall,priority:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,priority:0 +msgid "Priority" +msgstr "" + +#. module: crm +#: field:crm.segmentation,sales_purchase_active:0 +msgid "Use The Sales Purchase Rules" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_lead2opportunity_partner +msgid "Lead To Opportunity Partner" +msgstr "" + +#. module: crm +#: field:crm.meeting,location:0 +msgid "Location" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Reply" +msgstr "" + +#. module: crm +#: selection:crm.meeting,freq:0 +msgid "Weeks" +msgstr "" + +#. module: crm +#: model:process.node,note:crm.process_node_meeting0 +msgid "Schedule a normal or phone meeting" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:375 +#, python-format +msgid "Error !" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_meeting_categ_action +msgid "" +"Create different meeting categories to better organize and classify your " +"meetings." +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_segmentation_line +msgid "Segmentation line" +msgstr "" + +#. module: crm +#: view:crm.opportunity2phonecall:0 +#: view:crm.phonecall2phonecall:0 +msgid "Planned Date" +msgstr "" + +#. module: crm +#: field:crm.meeting,base_calendar_url:0 +msgid "Caldav URL" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Expected Revenues" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_lead6 +msgid "Google Adwords 2" +msgstr "" + +#. module: crm +#: help:crm.lead,type:0 +#: help:crm.lead.report,type:0 +msgid "Type is used to separate Leads and Opportunities" +msgstr "" + +#. module: crm +#: view:crm.phonecall2partner:0 +msgid "Are you sure you want to create a partner based on this Phonecall ?" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "July" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_section_act +msgid "" +"Define a Sales Team to organize your different salesmen or sales departments " +"into separate teams. Each team will work in its own list of opportunities, " +"sales orders, etc. Each user can set a default team in his user preferences. " +"The opportunities and sales order displayed, will automatically be filtered " +"according to his team." +msgstr "" + +#. module: crm +#: help:crm.meeting,count:0 +msgid "Repeat x times" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.crm_case_section_act +#: model:ir.model,name:crm.model_crm_case_section +#: model:ir.ui.menu,name:crm.menu_crm_case_section_act +msgid "Sales Teams" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_lead2partner +msgid "Lead to Partner" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +#: field:crm.segmentation.line,segmentation_id:0 +#: model:ir.actions.act_window,name:crm.crm_segmentation-act +msgid "Segmentation" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Team" +msgstr "" + +#. module: crm +#: field:crm.installer,outlook:0 +msgid "MS-Outlook" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +#: view:crm.phonecall.report:0 +#: view:res.partner:0 +msgid "Not Held" +msgstr "" + +#. module: crm +#: field:crm.lead.report,probability:0 +msgid "Probability" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: field:crm.lead.report,month:0 +#: field:crm.meeting,month_list:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,month:0 +msgid "Month" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: model:ir.actions.act_window,name:crm.crm_case_category_act_leads_all +#: model:ir.ui.menu,name:crm.menu_crm_case_categ0_act_leads +#: model:process.node,name:crm.process_node_leads0 +msgid "Leads" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all +msgid "" +"Leads allow you to manage and keep track of all initial contacts with a " +"prospect or partner showing interest in your products or services. A lead is " +"usually the first step in your sales cycle. Once qualified, a lead may be " +"converted into a business opportunity, while creating the related partner " +"for further detailed tracking of any linked activities. You can import a " +"database of prospects, keep track of your business cards or integrate your " +"website's contact form with the OpenERP Leads. Leads can be connected to the " +"email gateway: new emails may create leads, each of them automatically gets " +"the history of the conversation with the prospect." +msgstr "" + +#. module: crm +#: selection:crm.lead2opportunity.partner,action:0 +#: selection:crm.lead2partner,action:0 +#: selection:crm.phonecall2partner,action:0 +msgid "Create a new partner" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: view:res.partner:0 +msgid "Start Date" +msgstr "" + +#. module: crm +#: selection:crm.phonecall,state:0 +#: view:crm.phonecall.report:0 +msgid "Todo" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Delegate" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Decline" +msgstr "" + +#. module: crm +#: help:crm.lead,optin:0 +msgid "If opt-in is checked, this contact has accepted to receive emails." +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Reset to Unconfirmed" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_add_note.py:40 +#: view:crm.add.note:0 +#, python-format +msgid "Note" +msgstr "" + +#. module: crm +#: constraint:res.users:0 +msgid "The chosen company is not in the allowed companies for this user" +msgstr "" + +#. module: crm +#: selection:crm.lead,priority:0 +#: selection:crm.lead.report,priority:0 +#: selection:crm.phonecall,priority:0 +#: selection:crm.phonecall.report,priority:0 +msgid "Low" +msgstr "" + +#. module: crm +#: selection:crm.add.note,state:0 +#: field:crm.lead,date_closed:0 +#: selection:crm.lead,state:0 +#: view:crm.lead.report:0 +#: selection:crm.lead.report,state:0 +#: field:crm.meeting,date_closed:0 +#: selection:crm.merge.opportunity,state:0 +#: field:crm.phonecall,date_closed:0 +#: selection:crm.phonecall.report,state:0 +#: selection:crm.send.mail,state:0 +msgid "Closed" +msgstr "" + +#. module: crm +#: view:crm.installer:0 +msgid "Plug-In" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_meet2 +msgid "Internal Meeting" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:411 +#: selection:crm.add.note,state:0 +#: view:crm.lead:0 +#: selection:crm.lead,state:0 +#: view:crm.lead.report:0 +#: selection:crm.lead.report,state:0 +#: selection:crm.merge.opportunity,state:0 +#: selection:crm.phonecall,state:0 +#: selection:crm.phonecall.report,state:0 +#: selection:crm.send.mail,state:0 +#, python-format +msgid "Pending" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_meet1 +msgid "Customer Meeting" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,email_cc:0 +msgid "Global CC" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +#: model:ir.actions.act_window,name:crm.crm_case_categ_phone0 +#: model:ir.ui.menu,name:crm.menu_crm_case_phone +#: view:res.partner:0 +msgid "Phone Calls" +msgstr "" + +#. module: crm +#: help:crm.lead.report,delay_open:0 +#: help:crm.phonecall.report,delay_open:0 +msgid "Number of Days to open the case" +msgstr "" + +#. module: crm +#: field:crm.lead,phone:0 +#: field:crm.phonecall,partner_phone:0 +msgid "Phone" +msgstr "" + +#. module: crm +#: field:crm.case.section,active:0 +#: field:crm.lead,active:0 +#: view:crm.lead.report:0 +#: field:crm.meeting,active:0 +#: field:crm.phonecall,active:0 +msgid "Active" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:306 +#, python-format +msgid "The stage of opportunity '%s' has been changed to '%s'." +msgstr "" + +#. module: crm +#: selection:crm.segmentation.line,operator:0 +msgid "Mandatory Expression" +msgstr "" + +#. module: crm +#: selection:crm.segmentation.line,expr_operator:0 +msgid ">" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Uncertain" +msgstr "" + +#. module: crm +#: field:crm.send.mail,email_cc:0 +msgid "CC" +msgstr "" + +#. module: crm +#: view:crm.send.mail:0 +#: model:ir.actions.act_window,name:crm.action_crm_send_mail +msgid "Send Mail" +msgstr "" + +#. module: crm +#: selection:crm.meeting,freq:0 +msgid "Months" +msgstr "" + +#. module: crm +#: help:crm.installer,wiki_sale_faq:0 +msgid "" +"Helps you manage wiki pages for Frequently Asked Questions on Sales " +"Application." +msgstr "" + +#. module: crm +#: help:crm.installer,crm_fundraising:0 +msgid "This may help associations in their fundraising process and tracking." +msgstr "" + +#. module: crm +#: field:crm.lead2opportunity.partner,action:0 +#: field:crm.lead2partner,action:0 +#: field:crm.phonecall2partner,action:0 +msgid "Action" +msgstr "" + +#. module: crm +#: field:crm.installer,crm_claim:0 +msgid "Claims" +msgstr "" + +#. module: crm +#: field:crm.segmentation,som_interval_decrease:0 +msgid "Decrease (0>1)" +msgstr "" + +#. module: crm +#: view:crm.add.note:0 +#: view:crm.lead:0 +#: view:crm.send.mail:0 +msgid "Attachments" +msgstr "" + +#. module: crm +#: selection:crm.meeting,rrule_type:0 +msgid "Weekly" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: model:ir.actions.act_window,name:crm.action_report_crm_opportunity +#: model:ir.ui.menu,name:crm.menu_report_crm_opportunities_tree +msgid "Opportunities Analysis" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Misc" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor8 +#: view:crm.meeting:0 +msgid "Other" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: selection:crm.meeting,state:0 +#: selection:crm.phonecall,state:0 +msgid "Done" +msgstr "" + +#. module: crm +#: help:crm.meeting,interval:0 +msgid "Repeat every (Days/Week/Month/Year)" +msgstr "" + +#. module: crm +#: field:crm.segmentation,som_interval_max:0 +msgid "Max Interval" +msgstr "" + +#. module: crm +#: view:crm.opportunity2phonecall:0 +msgid "_Schedule Call" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:326 +#: selection:crm.add.note,state:0 +#: view:crm.lead:0 +#: selection:crm.lead,state:0 +#: selection:crm.lead.report,state:0 +#: selection:crm.merge.opportunity,state:0 +#: view:crm.phonecall:0 +#: selection:crm.phonecall.report,state:0 +#: selection:crm.send.mail,state:0 +#: view:res.partner:0 +#, python-format +msgid "Open" +msgstr "" + +#. module: crm +#: selection:crm.meeting,week_list:0 +msgid "Tuesday" +msgstr "" + +#. module: crm +#: field:crm.lead,city:0 +msgid "City" +msgstr "" + +#. module: crm +#: selection:crm.meeting,show_as:0 +msgid "Busy" +msgstr "" + +#. module: crm +#: field:crm.installer,crm_helpdesk:0 +msgid "Helpdesk" +msgstr "" + +#. module: crm +#: field:crm.meeting,recurrency:0 +msgid "Recurrent" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:397 +#, python-format +msgid "The case '%s' has been cancelled." +msgstr "" + +#. module: crm +#: field:crm.installer,sale_crm:0 +msgid "Opportunity to Quotation" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_send_mail +msgid "Send new email" +msgstr "" + +#. module: crm +#: view:board.board:0 +#: model:ir.actions.act_window,name:crm.act_my_oppor +msgid "My Open Opportunities" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.open_board_statistical_dash +msgid "CRM - Statistics Dashboard" +msgstr "" + +#. module: crm +#: help:crm.meeting,rrule:0 +msgid "" +"Defines a rule or repeating pattern for recurring events\n" +"e.g.: Every other month on the last Sunday of the month for 10 occurrences: " +" FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=-1SU" +msgstr "" + +#. module: crm +#: field:crm.lead,job_id:0 +msgid "Main Job" +msgstr "" + +#. module: crm +#: field:base.action.rule,trg_max_history:0 +msgid "Maximum Communication History" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.partner:0 +#: view:crm.lead2partner:0 +msgid "Are you sure you want to create a partner based on this lead ?" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: field:crm.meeting,categ_id:0 +msgid "Meeting Type" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:312 +#, python-format +msgid "Merge with Existing Opportunity" +msgstr "" + +#. module: crm +#: help:crm.lead,state:0 +#: help:crm.phonecall,state:0 +msgid "" +"The state is set to 'Draft', when a case is created. " +" \n" +"If the case is in progress the state is set to 'Open'. " +" \n" +"When the case is over, the state is set to 'Done'. " +" \n" +"If the case needs to be reviewed then the state is set to 'Pending'." +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: view:res.partner:0 +msgid "End Date" +msgstr "" + +#. module: crm +#: selection:crm.meeting,byday:0 +msgid "Third" +msgstr "" + +#. module: crm +#: help:crm.segmentation,som_interval_max:0 +msgid "" +"The computation is made on all events that occured during this interval, the " +"past X periods." +msgstr "" + +#. module: crm +#: view:board.board:0 +msgid "My Win/Lost Ratio for the Last Year" +msgstr "" + +#. module: crm +#: field:crm.installer,thunderbird:0 +msgid "Thunderbird" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "# of Emails" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Repeat interval" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,delay_open:0 +msgid "Delay to open" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Recurrency period" +msgstr "" + +#. module: crm +#: field:crm.meeting,week_list:0 +msgid "Weekday" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Referrer" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_lead2opportunity +msgid "Lead To Opportunity" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_calendar_attendee +msgid "Attendee information" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Segmentation Test" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Continue Process" +msgstr "" + +#. module: crm +#: view:crm.installer:0 +msgid "Configure Your CRM Application" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_phonecall2partner +msgid "Phonecall to Partner" +msgstr "" + +#. module: crm +#: field:crm.opportunity2phonecall,user_id:0 +#: field:crm.phonecall2phonecall,user_id:0 +msgid "Assign To" +msgstr "" + +#. module: crm +#: field:crm.add.note,state:0 +#: field:crm.send.mail,state:0 +msgid "Set New State To" +msgstr "" + +#. module: crm +#: field:crm.lead,date_action_last:0 +#: field:crm.meeting,date_action_last:0 +#: field:crm.phonecall,date_action_last:0 +msgid "Last Action" +msgstr "" + +#. module: crm +#: field:crm.meeting,duration:0 +#: field:crm.phonecall,duration:0 +#: field:crm.phonecall.report,duration:0 +msgid "Duration" +msgstr "" + +#. module: crm +#: field:crm.send.mail,reply_to:0 +msgid "Reply To" +msgstr "" + +#. module: crm +#: view:board.board:0 +#: model:ir.actions.act_window,name:crm.open_board_crm +#: model:ir.ui.menu,name:crm.menu_board_crm +msgid "Sales Dashboard" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_lead_to_partner.py:56 +#, python-format +msgid "A partner is already defined on this lead." +msgstr "" + +#. module: crm +#: field:crm.lead.report,nbr:0 +#: field:crm.phonecall.report,nbr:0 +msgid "# of Cases" +msgstr "" + +#. module: crm +#: help:crm.meeting,section_id:0 +#: help:crm.phonecall,section_id:0 +msgid "Sales team to which Case belongs to." +msgstr "" + +#. module: crm +#: selection:crm.meeting,week_list:0 +msgid "Sunday" +msgstr "" + +#. module: crm +#: selection:crm.meeting,byday:0 +msgid "Fourth" +msgstr "" + +#. module: crm +#: selection:crm.add.note,state:0 +#: selection:crm.merge.opportunity,state:0 +#: selection:crm.send.mail,state:0 +msgid "Unchanged" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.crm_segmentation_tree-act +#: model:ir.ui.menu,name:crm.menu_crm_segmentation-act +msgid "Partners Segmentation" +msgstr "" + +#. module: crm +#: field:crm.lead,fax:0 +msgid "Fax" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_category_act_oppor11 +msgid "" +"With opportunities you can manage and keep track of your sales pipeline by " +"creating specific customer- or prospect-related sales documents to follow up " +"potential sales. Information such as expected revenue, opportunity stage, " +"expected closing date, communication history and much more can be stored. " +"Opportunities can be connected to the email gateway: new emails may create " +"opportunities, each of them automatically gets the history of the " +"conversation with the customer.\n" +"\n" +"You and your team(s) will be able to plan meetings and phone calls from " +"opportunities, convert them into quotations, manage related documents, track " +"all customer related activities, and much more." +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Assignment" +msgstr "" + +#. module: crm +#: field:crm.lead,company_id:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,company_id:0 +#: field:crm.phonecall,company_id:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,company_id:0 +msgid "Company" +msgstr "" + +#. module: crm +#: selection:crm.meeting,week_list:0 +msgid "Friday" +msgstr "" + +#. module: crm +#: field:crm.meeting,allday:0 +msgid "All Day" +msgstr "" + +#. module: crm +#: field:crm.lead.report,email:0 +msgid "# Emails" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.action_view_attendee_form +#: model:ir.ui.menu,name:crm.menu_attendee_invitations +msgid "Meeting Invitations" +msgstr "" + +#. module: crm +#: field:crm.case.categ,object_id:0 +msgid "Object Name" +msgstr "" + +#. module: crm +#: help:crm.lead,email_from:0 +msgid "E-mail address of the contact" +msgstr "" + +#. module: crm +#: field:crm.lead,referred:0 +msgid "Referred By" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: model:ir.model,name:crm.model_crm_add_note +msgid "Add Internal Note" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:304 +#, python-format +msgid "The stage of lead '%s' has been changed to '%s'." +msgstr "" + +#. module: crm +#: selection:crm.meeting,byday:0 +msgid "Last" +msgstr "" + +#. module: crm +#: field:crm.lead,message_ids:0 +#: field:crm.meeting,message_ids:0 +#: field:crm.phonecall,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: crm +#: help:crm.case.stage,on_change:0 +msgid "Change Probability on next and previous stages." +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:455 +#: code:addons/crm/crm.py:457 +#: code:addons/crm/crm_action_rule.py:66 +#: code:addons/crm/wizard/crm_send_email.py:141 +#, python-format +msgid "Error!" +msgstr "" + +#. module: crm +#: field:crm.opportunity2phonecall,name:0 +#: field:crm.phonecall2phonecall,name:0 +msgid "Call summary" +msgstr "" + +#. module: crm +#: selection:crm.add.note,state:0 +#: selection:crm.lead,state:0 +#: selection:crm.lead.report,state:0 +#: selection:crm.meeting,state:0 +#: selection:crm.merge.opportunity,state:0 +#: selection:crm.phonecall,state:0 +#: selection:crm.phonecall.report,state:0 +#: selection:crm.send.mail,state:0 +msgid "Cancelled" +msgstr "" + +#. module: crm +#: field:crm.add.note,body:0 +msgid "Note Body" +msgstr "" + +#. module: crm +#: view:board.board:0 +msgid "My Planned Revenues by Stage" +msgstr "" + +#. module: crm +#: field:crm.lead.report,date_closed:0 +#: field:crm.phonecall.report,date_closed:0 +msgid "Close Date" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: view:crm.phonecall.report:0 +msgid " Month " +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Links" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_lead_categ_action +msgid "" +"Create specific categories that fit your company's activities to better " +"classify and analyse your leads and opportunities. Such categories could for " +"instance reflect your product structure or the different types of sales you " +"do." +msgstr "" + +#. module: crm +#: help:crm.segmentation,som_interval_decrease:0 +msgid "" +"If the partner has not purchased (or bought) during a period, decrease the " +"state of mind by this factor. It's a multiplication" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.action_report_crm_phonecall +msgid "" +"From this report, you can analyse the performance of your sales team, based " +"on their phone calls. You can group or filter the information according to " +"several criteria and drill down the information, by adding more groups in " +"the report." +msgstr "" + +#. module: crm +#: view:crm.case.section:0 +msgid "Mailgateway" +msgstr "" + +#. module: crm +#: help:crm.lead,user_id:0 +msgid "By Default Salesman is Administrator when create New User" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "# Mails" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:57 +#, python-format +msgid "Warning" +msgstr "" + +#. module: crm +#: field:crm.phonecall,name:0 +#: view:res.partner:0 +msgid "Call Summary" +msgstr "" + +#. module: crm +#: field:crm.segmentation.line,expr_operator:0 +msgid "Operator" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Schedule/Log Call" +msgstr "" + +#. module: crm +#: field:crm.installer,fetchmail:0 +msgid "Fetch Emails" +msgstr "" + +#. module: crm +#: selection:crm.meeting,state:0 +msgid "Confirmed" +msgstr "" + +#. module: crm +#: help:crm.send.mail,email_cc:0 +msgid "" +"These addresses will receive a copy of this email. To modify the permanent " +"CC list, edit the global CC field of this case" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Confirm" +msgstr "" + +#. module: crm +#: field:crm.meeting,su:0 +msgid "Sun" +msgstr "" + +#. module: crm +#: field:crm.phonecall.report,section_id:0 +msgid "Section" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Total of Planned Revenue" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:375 +#, python-format +msgid "" +"You can not escalate, You are already at the top level regarding your sales-" +"team category." +msgstr "" + +#. module: crm +#: selection:crm.segmentation.line,operator:0 +msgid "Optional Expression" +msgstr "" + +#. module: crm +#: selection:crm.meeting,select1:0 +msgid "Day of month" +msgstr "" + +#. module: crm +#: field:crm.lead2opportunity,probability:0 +msgid "Success Rate (%)" +msgstr "" + +#. module: crm +#: model:crm.case.stage,name:crm.stage_lead1 +#: model:crm.case.stage,name:crm.stage_opportunity1 +msgid "New" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Mail TO" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,email_from:0 +#: field:crm.meeting,email_from:0 +#: field:crm.phonecall,email_from:0 +msgid "Email" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,channel_id:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,channel_id:0 +#: field:crm.phonecall,canal_id:0 +msgid "Channel" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.opportunity2phonecall_act +msgid "Schedule Call" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:133 +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:258 +#, python-format +msgid "Closed/Cancelled Leads Could not convert into Opportunity" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Profiling" +msgstr "" + +#. module: crm +#: help:crm.segmentation,exclusif:0 +msgid "" +"Check if the category is limited to partners that match the segmentation " +"criterions. \n" +"If checked, remove the category from partners that doesn't match " +"segmentation criterions" +msgstr "" + +#. module: crm +#: field:crm.meeting,exdate:0 +msgid "Exception Date/Times" +msgstr "" + +#. module: crm +#: selection:crm.meeting,class:0 +msgid "Confidential" +msgstr "" + +#. module: crm +#: help:crm.meeting,date_deadline:0 +msgid "" +"Deadline Date is automatically computed from Start " +"Date + Duration" +msgstr "" + +#. module: crm +#: field:crm.lead,state_id:0 +msgid "Fed. State" +msgstr "" + +#. module: crm +#: model:process.transition,note:crm.process_transition_leadopportunity0 +msgid "Creating business opportunities from Leads" +msgstr "" + +#. module: crm +#: help:crm.send.mail,html:0 +msgid "Select this if you want to send email with HTML formatting." +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor4 +msgid "Need Information" +msgstr "" + +#. module: crm +#: model:process.transition,name:crm.process_transition_leadopportunity0 +msgid "Prospect Opportunity" +msgstr "" + +#. module: crm +#: view:crm.installer:0 +#: model:ir.actions.act_window,name:crm.action_crm_installer +msgid "CRM Application Configuration" +msgstr "" + +#. module: crm +#: field:base.action.rule,act_categ_id:0 +msgid "Set Category to" +msgstr "" + +#. module: crm +#: view:crm.case.section:0 +msgid "Configuration" +msgstr "" + +#. module: crm +#: field:crm.meeting,th:0 +msgid "Thu" +msgstr "" + +#. module: crm +#: view:crm.add.note:0 +#: view:crm.merge.opportunity:0 +#: view:crm.opportunity2phonecall:0 +#: view:crm.partner2opportunity:0 +#: view:crm.phonecall2opportunity:0 +#: view:crm.phonecall2phonecall:0 +#: view:crm.send.mail:0 +msgid "_Cancel" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: view:crm.phonecall.report:0 +msgid " Month-1 " +msgstr "" + +#. module: crm +#: help:crm.installer,sale_crm:0 +msgid "This module relates sale from opportunity cases in the CRM." +msgstr "" + +#. module: crm +#: selection:crm.meeting,rrule_type:0 +msgid "Daily" +msgstr "" + +#. module: crm +#: model:crm.case.stage,name:crm.stage_lead2 +#: model:crm.case.stage,name:crm.stage_opportunity2 +msgid "Qualification" +msgstr "" + +#. module: crm +#: view:crm.case.stage:0 +msgid "Stage Definition" +msgstr "" + +#. module: crm +#: selection:crm.meeting,byday:0 +msgid "First" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "December" +msgstr "" + +#. module: crm +#: field:crm.installer,config_logo:0 +msgid "Image" +msgstr "" + +#. module: crm +#: view:base.action.rule:0 +msgid "Condition on Communication History" +msgstr "" + +#. module: crm +#: help:crm.segmentation,som_interval:0 +msgid "" +"A period is the average number of days between two cycle of sale or purchase " +"for this segmentation. \n" +"It's mainly used to detect if a partner has not purchased or buy for a too " +"long time, \n" +"so we suppose that his state of mind has decreased because he probably " +"bought goods to another supplier. \n" +"Use this functionality for recurring businesses." +msgstr "" + +#. module: crm +#: view:crm.send.mail:0 +msgid "_Send Reply" +msgstr "" + +#. module: crm +#: field:crm.meeting,vtimezone:0 +msgid "Timezone" +msgstr "" + +#. module: crm +#: field:crm.lead2opportunity.partner,msg:0 +#: field:crm.lead2partner,msg:0 +#: view:crm.send.mail:0 +msgid "Message" +msgstr "" + +#. module: crm +#: field:crm.meeting,sa:0 +msgid "Sat" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,user_id:0 +#: view:crm.lead.report:0 +#: view:crm.phonecall.report:0 +msgid "Salesman" +msgstr "" + +#. module: crm +#: field:crm.lead,date_deadline:0 +msgid "Expected Closing" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_opportunity2phonecall +msgid "Opportunity to Phonecall" +msgstr "" + +#. module: crm +#: help:crm.case.section,allow_unlink:0 +msgid "Allows to delete non draft cases" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Schedule Meeting" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Partner Name" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_phone2 +#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_outgoing0 +#: model:ir.ui.menu,name:crm.menu_crm_case_phone_outbound +msgid "Outbound" +msgstr "" + +#. module: crm +#: field:crm.lead,date_open:0 +#: field:crm.phonecall,date_open:0 +msgid "Opened" +msgstr "" + +#. module: crm +#: view:crm.case.section:0 +#: field:crm.case.section,member_ids:0 +msgid "Team Members" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,job_ids:0 +#: view:crm.meeting:0 +#: view:crm.phonecall:0 +#: view:res.partner:0 +msgid "Contacts" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor1 +msgid "Interest in Computer" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Invitation Detail" +msgstr "" + +#. module: crm +#: field:crm.segmentation,som_interval_default:0 +msgid "Default (0=None)" +msgstr "" + +#. module: crm +#: help:crm.lead,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" + +#. module: crm +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." +msgstr "" + +#. module: crm +#: field:crm.partner2opportunity,probability:0 +#: field:crm.phonecall2opportunity,probability:0 +msgid "Success Probability" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:426 +#: selection:crm.add.note,state:0 +#: selection:crm.lead,state:0 +#: selection:crm.lead.report,state:0 +#: selection:crm.merge.opportunity,state:0 +#: selection:crm.phonecall,state:0 +#: selection:crm.phonecall.report,state:0 +#: selection:crm.send.mail,state:0 +#, python-format +msgid "Draft" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.crm_case_section_act_tree +msgid "Cases by Sales Team" +msgstr "" + +#. module: crm +#: field:crm.meeting,attendee_ids:0 +msgid "Attendees" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: view:crm.phonecall:0 +#: model:ir.model,name:crm.model_crm_meeting +#: model:process.node,name:crm.process_node_meeting0 +#: model:res.request.link,name:crm.request_link_meeting +msgid "Meeting" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_case_categ +msgid "Category of Case" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.phonecall:0 +msgid "7 Days" +msgstr "" + +#. module: crm +#: view:board.board:0 +msgid "Planned Revenue by Stage and User" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_lead_report +msgid "CRM Lead Report" +msgstr "" + +#. module: crm +#: field:crm.installer,progress:0 +msgid "Configuration Progress" +msgstr "" + +#. module: crm +#: selection:crm.lead,priority:0 +#: selection:crm.lead.report,priority:0 +#: selection:crm.phonecall,priority:0 +#: selection:crm.phonecall.report,priority:0 +msgid "Normal" +msgstr "" + +#. module: crm +#: field:crm.lead,street2:0 +msgid "Street2" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.crm_meeting_categ_action +#: model:ir.ui.menu,name:crm.menu_crm_case_meeting-act +msgid "Meeting Categories" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.partner:0 +#: view:crm.lead2partner:0 +#: view:crm.phonecall2partner:0 +msgid "You may have to verify that this partner does not exist already." +msgstr "" + +#. module: crm +#: field:crm.lead.report,delay_open:0 +msgid "Delay to Open" +msgstr "" + +#. module: crm +#: field:crm.lead.report,user_id:0 +#: field:crm.phonecall.report,user_id:0 +msgid "User" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "November" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_action_rule.py:67 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "Opportunities By Stage" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_create_partner +msgid "Schedule Phone Call" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "January" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_opportunity_stage_act +msgid "" +"Create specific stages that will help your sales better organise their sales " +"pipeline by maintaining them to their sales opportunities. It will allow " +"them to easily track how is positioned a specific opportunity in the sales " +"cycle." +msgstr "" + +#. module: crm +#: model:process.process,name:crm.process_process_contractprocess0 +msgid "Contract" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_lead4 +msgid "Twitter Ads" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_add_note.py:26 +#: code:addons/crm/wizard/crm_send_email.py:72 +#: code:addons/crm/wizard/crm_send_email.py:169 +#: code:addons/crm/wizard/crm_send_email.py:270 +#, python-format +msgid "Error" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "Planned Revenues" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor7 +msgid "Need Consulting" +msgstr "" + +#. module: crm +#: constraint:crm.segmentation:0 +msgid "Error ! You can not create recursive profiles." +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:232 +#, python-format +msgid "The case '%s' has been closed." +msgstr "" + +#. module: crm +#: field:crm.lead,partner_address_id:0 +#: field:crm.meeting,partner_address_id:0 +#: field:crm.phonecall,partner_address_id:0 +msgid "Partner Contact" +msgstr "" + +#. module: crm +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID date" +msgstr "" + +#. module: crm +#: sql_constraint:res.users:0 +msgid "You can not have two users with the same login !" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_merge_opportunities.py:100 +#, python-format +msgid "Merged into Opportunity: %s" +msgstr "" + +#. module: crm +#: code:addons/crm/crm.py:347 +#: view:crm.lead:0 +#: view:res.partner:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: view:crm.phonecall:0 +#: view:res.partner:0 +msgid "Categorization" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_base_action_rule +msgid "Action Rules" +msgstr "" + +#. module: crm +#: field:crm.meeting,rrule_type:0 +msgid "Recurrency" +msgstr "" + +#. module: crm +#: field:crm.meeting,phonecall_id:0 +msgid "Phonecall" +msgstr "" + +#. module: crm +#: selection:crm.meeting,week_list:0 +msgid "Thursday" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +#: field:crm.send.mail,email_to:0 +msgid "To" +msgstr "" + +#. module: crm +#: selection:crm.meeting,class:0 +msgid "Private" +msgstr "" + +#. module: crm +#: field:crm.lead,function:0 +msgid "Function" +msgstr "" + +#. module: crm +#: view:crm.add.note:0 +msgid "_Add" +msgstr "" + +#. module: crm +#: selection:crm.segmentation.line,expr_name:0 +msgid "State of Mind" +msgstr "" + +#. module: crm +#: field:crm.case.section,note:0 +#: view:crm.meeting:0 +#: field:crm.meeting,description:0 +#: view:crm.phonecall:0 +#: field:crm.phonecall,description:0 +#: field:crm.segmentation,description:0 +#: view:res.partner:0 +msgid "Description" +msgstr "" + +#. module: crm +#: field:base.action.rule,trg_section_id:0 +#: field:crm.case.categ,section_id:0 +#: field:crm.case.resource.type,section_id:0 +#: view:crm.case.section:0 +#: field:crm.case.section,name:0 +#: field:crm.lead,section_id:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,section_id:0 +#: field:crm.meeting,section_id:0 +#: field:crm.opportunity2phonecall,section_id:0 +#: view:crm.phonecall:0 +#: field:crm.phonecall,section_id:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall2phonecall,section_id:0 +#: field:res.partner,section_id:0 +#: field:res.users,context_section_id:0 +msgid "Sales Team" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "May" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor2 +msgid "Interest in Accessories" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:211 +#, python-format +msgid "The opportunity '%s' has been opened." +msgstr "" + +#. module: crm +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" + +#. module: crm +#: field:crm.lead,street:0 +msgid "Street" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "Opportunities by User and Team" +msgstr "" + +#. module: crm +#: field:crm.case.section,working_hours:0 +msgid "Working Hours" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,is_customer_add:0 +msgid "Customer" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "February" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +#: model:ir.actions.act_window,name:crm.crm_case_categ_meet_create_partner +#: view:res.partner:0 +msgid "Schedule a Meeting" +msgstr "" + +#. module: crm +#: model:crm.case.stage,name:crm.stage_lead6 +#: model:crm.case.stage,name:crm.stage_opportunity6 +#: view:crm.lead:0 +msgid "Lost" +msgstr "" + +#. module: crm +#: field:crm.lead,country_id:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,country_id:0 +msgid "Country" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: selection:crm.lead2opportunity.action,name:0 +#: view:crm.phonecall:0 +#: view:res.partner:0 +msgid "Convert to Opportunity" +msgstr "" + +#. module: crm +#: selection:crm.meeting,week_list:0 +msgid "Wednesday" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,month:0 +#: selection:crm.meeting,month_list:0 +#: selection:crm.phonecall.report,month:0 +msgid "April" +msgstr "" + +#. module: crm +#: field:crm.case.resource.type,name:0 +msgid "Campaign Name" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_phonecall_report +msgid "Phone calls by user and section" +msgstr "" + +#. module: crm +#: selection:crm.lead2opportunity.action,name:0 +msgid "Merge with existing Opportunity" +msgstr "" + +#. module: crm +#: field:crm.meeting,select1:0 +msgid "Option" +msgstr "" + +#. module: crm +#: model:crm.case.stage,name:crm.stage_lead4 +#: model:crm.case.stage,name:crm.stage_opportunity4 +msgid "Negotiation" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Exp.Closing" +msgstr "" + +#. module: crm +#: field:crm.case.stage,sequence:0 +#: field:crm.meeting,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: crm +#: field:crm.send.mail,body:0 +msgid "Message Body" +msgstr "" + +#. module: crm +#: view:crm.meeting:0 +msgid "Accept" +msgstr "" + +#. module: crm +#: field:crm.segmentation.line,expr_name:0 +msgid "Control Variable" +msgstr "" + +#. module: crm +#: selection:crm.meeting,byday:0 +msgid "Second" +msgstr "" + +#. module: crm +#: model:crm.case.stage,name:crm.stage_lead3 +#: model:crm.case.stage,name:crm.stage_opportunity3 +msgid "Proposition" +msgstr "" + +#. module: crm +#: field:res.partner,phonecall_ids:0 +msgid "Phonecalls" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: field:crm.lead.report,name:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,name:0 +msgid "Year" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_lead8 +msgid "Newsletter" +msgstr "" diff --git a/addons/crm/i18n/fr.po b/addons/crm/i18n/fr.po index e3ef5db8fca..c68832ecf31 100644 --- a/addons/crm/i18n/fr.po +++ b/addons/crm/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-08 08:15+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 07:35+0000\n" +"Last-Translator: Aline (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:52+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm @@ -2334,6 +2334,17 @@ msgid "" "email gateway: new emails may create leads, each of them automatically gets " "the history of the conversation with the prospect." msgstr "" +"Les \"Pistes\" permettent de gérer et de suivre tous les contacts initiaux " +"avec un prospect ou un partenaire montrant un intérêt pour vos produits ou " +"services. Une piste est généralement le premier pas dans le cycle de ventes. " +"Une fois qualifiée, une piste peut être convertie en opportunité, créant en " +"même temps le partenaire concerné afin de faire un suivi détaillé de toutes " +"les activités associées. On peut importer une base de données de prospects, " +"mémoriser des cartes de visite ou remplir le formulaire de contact de votre " +"site avec les \"Pistes OpenERP\". Les \"Pistes\" peuvent être connectées à " +"la passerelle de courrier électronique : les nouveaux emails peuvent générer " +"des Pistes, chacune d'elles héritant automatiquement de tout l'historique du " +"dialogue avec le prospect." #. module: crm #: selection:crm.lead2opportunity.partner,action:0 diff --git a/addons/crm/i18n/nl.po b/addons/crm/i18n/nl.po index 39ff41286ea..8aac6ceae79 100644 --- a/addons/crm/i18n/nl.po +++ b/addons/crm/i18n/nl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 08:44+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 07:59+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:49+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm @@ -241,7 +241,7 @@ msgstr "Plan ander telefoongesprek" #. module: crm #: help:crm.meeting,edit_all:0 msgid "Edit all Occurrences of recurrent Meeting." -msgstr "" +msgstr "Wijzig de reeks herhalende afspraken." #. module: crm #: code:addons/crm/wizard/crm_opportunity_to_phonecall.py:134 @@ -380,7 +380,7 @@ msgstr "Contactpersoon" #. module: crm #: view:crm.installer:0 msgid "Enhance your core CRM Application with additional functionalities." -msgstr "" +msgstr "Verbeter uw basis CRM applicatie met aanvullende functionaliteiten." #. module: crm #: field:crm.case.stage,on_change:0 @@ -454,6 +454,11 @@ msgid "" "customer. You can also import a .CSV file with a list of calls to be done by " "your sales team." msgstr "" +"Uitgaande gesprekken toont de nog te voeren gesprekken door uw verkoopteam. " +"Een verkoper kan de informatie overhet gesprek vastleggen in de formulier " +"weergave. Deze informatie wordt opgeslagen in het relatieformulier om alle " +"contacten met uw klant te kunnen volgen. U kunt ook een .CSV bestand " +"importeren met een lijst van telefoontjes voor uw verkoopteam." #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_action @@ -551,7 +556,7 @@ msgstr "Maak verkoopkans" #. module: crm #: view:crm.installer:0 msgid "Configure" -msgstr "" +msgstr "Configureren" #. module: crm #: code:addons/crm/crm.py:378 @@ -666,7 +671,7 @@ msgstr "" #. module: crm #: constraint:base.action.rule:0 msgid "Error: The mail is not well formated" -msgstr "" +msgstr "Fout: De mail is niet juist geformatteerd" #. module: crm #: view:crm.segmentation:0 @@ -746,7 +751,7 @@ msgstr "" #. module: crm #: field:crm.case.section,resource_calendar_id:0 msgid "Working Time" -msgstr "" +msgstr "Gewerkte tijd" #. module: crm #: view:crm.segmentation.line:0 @@ -1141,7 +1146,7 @@ msgstr "Afspraken" #. module: crm #: view:crm.meeting:0 msgid "Choose day where repeat the meeting" -msgstr "" +msgstr "Dag kiezen waarop de afspraak herhaalt" #. module: crm #: field:crm.lead,date_action_next:0 @@ -1167,6 +1172,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" +"Als dit veld niet is ingevuld, kunt u de alarm informatie verbergen zonder " +"te verwijderen." #. module: crm #: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:57 @@ -1344,7 +1351,7 @@ msgstr "Markeren als" #. module: crm #: field:crm.meeting,count:0 msgid "Repeat" -msgstr "" +msgstr "Herhalen" #. module: crm #: help:crm.meeting,rrule_type:0 @@ -1382,6 +1389,8 @@ msgid "" "Create specific phone call categories to better define the type of calls " "tracked in the system." msgstr "" +"Specifieke telefoongesprek categorieën maken om de soorten gesprekken beter " +"te volgen in het systeem." #. module: crm #: selection:crm.lead.report,month:0 @@ -1460,7 +1469,7 @@ msgstr "Schrijfdatum" #. module: crm #: view:crm.meeting:0 msgid "End of recurrency" -msgstr "" +msgstr "Einde herhaling" #. module: crm #: view:crm.meeting:0 @@ -1554,7 +1563,7 @@ msgstr "Zoeken" #. module: crm #: view:board.board:0 msgid "Opportunities by Categories" -msgstr "" +msgstr "Verkoopkansen per categorie" #. module: crm #: field:crm.meeting,interval:0 @@ -1564,7 +1573,7 @@ msgstr "Interval" #. module: crm #: view:crm.meeting:0 msgid "Choose day in the month where repeat the meeting" -msgstr "" +msgstr "Dag van de maand kiezen waarop afspraak wordt herhaald" #. module: crm #: view:crm.segmentation:0 @@ -1584,6 +1593,9 @@ msgid "" "better manage your interactions with them. The segmentation tool is able to " "assign categories to partners according to criteria you set." msgstr "" +"Specifieke relatie categorieën maken die u aan relaties kunt toewijzen om uw " +"interacties met hen beter te beheren. De segmentatie tool kan categorieën " +"toewijzen volgens door u ingestelde criteria." #. module: crm #: field:crm.case.section,code:0 @@ -1749,6 +1761,9 @@ msgid "" "organise their sales pipeline. Stages will allow them to easily track how a " "specific lead or opportunity is positioned in the sales cycle." msgstr "" +"Specifieke stadia toevoegen aan leads en verkoopkansen waarmee uw verkoop de " +"pijplijn beter kan organiseren. Stadia laat ze beter volgen waar een " +"verkoopkans zich bevindt in de verkoopcyclus." #. module: crm #: view:crm.lead.report:0 @@ -1811,6 +1826,9 @@ msgid "" "sent/to be sent to your colleagues/partners. You can not only invite OpenERP " "users, but also external parties, such as a customer." msgstr "" +"Met afspraak uitnodigingen kunt u uitnodigingen maken en beheren die u " +"stuurt/gaat sturen naar uw collega's/relaties. U kunt niet alleen OpenERP " +"gebruikers uitnodigen maar ook externe partijen zoals een klant." #. module: crm #: selection:crm.meeting,week_list:0 @@ -1960,11 +1978,15 @@ msgid "" "with a partner. From the phone call form, you can trigger a request for " "another call, a meeting or an opportunity." msgstr "" +"De inkomende gesprekken tool laat u snel inkomende gesprekken vastleggen. " +"Elk gesprek verschijnt op het relatieformulier zodat u elk contact met de " +"relatie kunt volgen. Vanuit het gesprek formulier kunt u een aanvraag voor " +"een nieuw gesprek, afspraak of verkoopkans indienen." #. module: crm #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "" +msgstr "Terugkerende afspraak" #. module: crm #: view:crm.case.section:0 @@ -2026,12 +2048,12 @@ msgstr "Selecteer stadia voor dit verkoopteam" #. module: crm #: view:board.board:0 msgid "Opportunities by Stage" -msgstr "" +msgstr "Verkoopkansen per stadium" #. module: crm #: view:crm.meeting:0 msgid "Recurrency Option" -msgstr "" +msgstr "Herhaaloptie" #. module: crm #: model:process.transition,note:crm.process_transition_leadpartner0 @@ -2213,11 +2235,16 @@ msgid "" "The opportunities and sales order displayed, will automatically be filtered " "according to his team." msgstr "" +"Definieer een verkoopteam om uw verschillende verkopers of verkoopafdelingen " +"in afzonderlijke verkoopteams te organiseren. Elk team werkt met zijn eigen " +"lijst van verkoopkansen, verkooporders etc. Elke gebruiker kan een standaard " +"team in zijn voorkeuren instellen. De getoonde verkoopkansen en " +"verkooporders worden automatisch gefilterd volgens zijn team." #. module: crm #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "" +msgstr "Aantal keer herhalen" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act @@ -2290,6 +2317,15 @@ msgid "" "email gateway: new emails may create leads, each of them automatically gets " "the history of the conversation with the prospect." msgstr "" +"Leads laat u alle initiële contacten met een prospect of relatie beheren en " +"volgen die interesse toont in uw producten of diensten. Een lead is meestal " +"de eerste stap in een verkoopcyclus. Eenmaal gekwalificeerd mag een lead " +"worden omgezet in een verkoopkans terwijl een relatie wordt gemaakt voor het " +"verder volgen van gerelateerde activiteiten. U kunt een prospect database " +"importeren, visitekaartjes bijhouden of het contactformulier van uw website " +"integreren met de OpenERP leads. Leads kunnen worden gekoppeld met de email " +"gateway: nieuwe emails kunnen leads maken; elk van hen krijgen automatisch " +"de conversatiegeschiedenis met de prospect." #. module: crm #: selection:crm.lead2opportunity.partner,action:0 @@ -2342,7 +2378,7 @@ msgstr "Opmerking" #. module: crm #: constraint:res.users:0 msgid "The chosen company is not in the allowed companies for this user" -msgstr "" +msgstr "Het gekozen bedrijf is geen toegestaan bedrijf voor deze gebruiker" #. module: crm #: selection:crm.lead,priority:0 @@ -2540,7 +2576,7 @@ msgstr "Klaar" #. module: crm #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "" +msgstr "Elke (Dag/Week/Maand/Jaar) herhalen" #. module: crm #: field:crm.segmentation,som_interval_max:0 @@ -2590,7 +2626,7 @@ msgstr "Helpdesk" #. module: crm #: field:crm.meeting,recurrency:0 msgid "Recurrent" -msgstr "" +msgstr "Terugkerend" #. module: crm #: code:addons/crm/crm.py:397 @@ -2716,7 +2752,7 @@ msgstr "# Emails" #. module: crm #: view:crm.meeting:0 msgid "Repeat interval" -msgstr "" +msgstr "Herhalingsinterval" #. module: crm #: view:crm.lead.report:0 @@ -2728,7 +2764,7 @@ msgstr "Vertraging tot openen" #. module: crm #: view:crm.meeting:0 msgid "Recurrency period" -msgstr "" +msgstr "Periode herhaling" #. module: crm #: field:crm.meeting,week_list:0 @@ -2763,7 +2799,7 @@ msgstr "Vervolg proces" #. module: crm #: view:crm.installer:0 msgid "Configure Your CRM Application" -msgstr "" +msgstr "Uw CRM applicatie configureren" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall2partner @@ -2869,6 +2905,17 @@ msgid "" "opportunities, convert them into quotations, manage related documents, track " "all customer related activities, and much more." msgstr "" +"Met verkoopkansen kunt u uw verkoop pijplijn bijhouden door specifieke klant-" +" or prospect gerelateerde documenten te maken om potentiële verkoop op te " +"volgen. Informatie zoals verwachte omzet, verkoopstadium, verwachte " +"afsluitdatum, communicatie geschiedenis en nog veel meer kan worden " +"vastgelegd. Verkoopkansen kan worden gekoppeld met de email gateway: nieuw " +"emails kunnen verkoopkansen maken, elk automatisch met de conversatie " +"geschiedenis met de klant.\n" +"\n" +"U en uw team(s) kunnen afspraken en telefoongesprekken plannen vanuit " +"verkoopkansen, ze omzetten in offertes, gerelateerde documenten beheren, " +"alle activiteiten volgen en nog veel meer." #. module: crm #: view:crm.meeting:0 @@ -3012,6 +3059,10 @@ msgid "" "instance reflect your product structure or the different types of sales you " "do." msgstr "" +"Specifieke categorieën maken die passen bij de activiteiten van uw bedrijf " +"om uw leads en verkoopkansen beter te klassificeren en analyseren. Zulke " +"categorieën kunnen bijvoorbeeld uw product structuur of de verschillende " +"soorten verkopen die u doet weerspiegelen." #. module: crm #: help:crm.segmentation,som_interval_decrease:0 @@ -3454,7 +3505,7 @@ msgstr "" #. module: crm #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Fout ! U kunt geen recursieve aangesloten leden maken." #. module: crm #: field:crm.partner2opportunity,probability:0 @@ -3595,6 +3646,9 @@ msgid "" "them to easily track how is positioned a specific opportunity in the sales " "cycle." msgstr "" +"Specifieke stadia maken die uw verkoop helpen om haar verkoop pijplijn beter " +"te organiseren door ze bij te houden bij de verkoopkansen. Ze kunnen er " +"eenvoudig mee volgen waar een verkoopkans zich bevindt in de verkoopcyclus." #. module: crm #: model:process.process,name:crm.process_process_contractprocess0 @@ -3628,7 +3682,7 @@ msgstr "Heeft dienstverlening nodig" #. module: crm #: constraint:crm.segmentation:0 msgid "Error ! You can not create recursive profiles." -msgstr "" +msgstr "Fout! U kunt geen recursieve profielen maken." #. module: crm #: code:addons/crm/crm_lead.py:232 @@ -3651,7 +3705,7 @@ msgstr "Herhaling ID datum" #. module: crm #: sql_constraint:res.users:0 msgid "You can not have two users with the same login !" -msgstr "" +msgstr "U kunt niet twee gebruikers hebben met dezelfde gebruikersnaam !" #. module: crm #: code:addons/crm/wizard/crm_merge_opportunities.py:100 diff --git a/addons/crm_caldav/i18n/es.po b/addons/crm_caldav/i18n/es.po index 9e2a214cd0b..a785f1ed48a 100644 --- a/addons/crm_caldav/i18n/es.po +++ b/addons/crm_caldav/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 12:21+0000\n" -"Last-Translator: Borja López Soilán \n" +"PO-Revision-Date: 2011-01-11 21:03+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_caldav @@ -34,6 +34,9 @@ msgid "" " New Features in Meeting:\n" " * Share meeting with other calendar clients like sunbird\n" msgstr "" +"\n" +" Nuevas funcionalidades en Reunión:\n" +" * Compartir reunión con otros clientes de calendario como sunbird\n" #~ msgid "Extened Module to Add CalDav future on Meeting" #~ msgstr "Módulo extendido para añadir CalDav en las reuniones" diff --git a/addons/crm_caldav/i18n/hu.po b/addons/crm_caldav/i18n/hu.po index ca2835ab022..0076eba9d0c 100644 --- a/addons/crm_caldav/i18n/hu.po +++ b/addons/crm_caldav/i18n/hu.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-09 22:16+0000\n" +"PO-Revision-Date: 2011-01-11 17:08+0000\n" "Last-Translator: NOVOTRADE RENDSZERHÁZ \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:19+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_caldav @@ -25,7 +25,7 @@ msgstr "Találkozó" #. module: crm_caldav #: model:ir.module.module,shortdesc:crm_caldav.module_meta_information msgid "Extended Module to Add CalDav feature on Meeting" -msgstr "" +msgstr "Bővített Modul, CalDav funkciót biztosít a Találkozók szervezéséhez" #. module: crm_caldav #: model:ir.module.module,description:crm_caldav.module_meta_information diff --git a/addons/crm_caldav/i18n/pt_BR.po b/addons/crm_caldav/i18n/pt_BR.po index d4073aebba1..0d3ad89693b 100644 --- a/addons/crm_caldav/i18n/pt_BR.po +++ b/addons/crm_caldav/i18n/pt_BR.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 09:46+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 15:36+0000\n" +"Last-Translator: Guilherme Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:37+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_caldav @@ -25,7 +25,7 @@ msgstr "Reunião" #. module: crm_caldav #: model:ir.module.module,shortdesc:crm_caldav.module_meta_information msgid "Extended Module to Add CalDav feature on Meeting" -msgstr "" +msgstr "Módulo de extensão para adicionar funcionalidades nas Reuniões" #. module: crm_caldav #: model:ir.module.module,description:crm_caldav.module_meta_information @@ -34,6 +34,10 @@ msgid "" " New Features in Meeting:\n" " * Share meeting with other calendar clients like sunbird\n" msgstr "" +"\n" +" Novas Funcionalidades nas Reuniões:\n" +" * Compartilhe reuniões com outros clientes de calendários como " +"sunbird\n" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/crm_claim/i18n/nl.po b/addons/crm_claim/i18n/nl.po index da87aeda543..9fcf6b31fe2 100644 --- a/addons/crm_claim/i18n/nl.po +++ b/addons/crm_claim/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 08:47+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 08:21+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:35+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_claim @@ -31,12 +31,12 @@ msgstr "Groepeer op.." #. module: crm_claim #: view:crm.claim:0 msgid "Responsibilities" -msgstr "" +msgstr "Verantwoordelijkheden" #. module: crm_claim #: field:crm.claim,date_action_next:0 msgid "Next Action Date" -msgstr "" +msgstr "Volgende actie datum" #. module: crm_claim #: selection:crm.claim.report,month:0 @@ -51,7 +51,7 @@ msgstr "Vertraging tot sluiting" #. module: crm_claim #: field:crm.claim,resolution:0 msgid "Resolution" -msgstr "" +msgstr "Oplossing" #. module: crm_claim #: field:crm.claim,company_id:0 @@ -110,7 +110,7 @@ msgstr "" #. module: crm_claim #: view:crm.claim:0 msgid "Claim Description" -msgstr "" +msgstr "Klachtomschrijving" #. module: crm_claim #: field:crm.claim,message_ids:0 @@ -197,12 +197,12 @@ msgstr "Afdeling" #. module: crm_claim #: view:crm.claim:0 msgid "Root Causes" -msgstr "" +msgstr "Basis oorzaken" #. module: crm_claim #: field:crm.claim,user_fault:0 msgid "Trouble Responsible" -msgstr "" +msgstr "Verantwoordelijke gebruiker" #. module: crm_claim #: field:crm.claim,priority:0 @@ -246,7 +246,7 @@ msgstr "Aanmaakdatum" #. module: crm_claim #: field:crm.claim,name:0 msgid "Claim Subject" -msgstr "" +msgstr "Klant onderwerp" #. module: crm_claim #: model:ir.actions.act_window,help:crm_claim.action_report_crm_claim @@ -561,7 +561,7 @@ msgstr "Bijlagen" #. module: crm_claim #: model:ir.model,name:crm_claim.model_crm_case_stage msgid "Stage of case" -msgstr "" +msgstr "Stadium dossier" #. module: crm_claim #: view:crm.claim:0 @@ -580,7 +580,7 @@ msgstr "Klaar" #. module: crm_claim #: view:crm.claim:0 msgid "Claim Reporter" -msgstr "" +msgstr "Klacht indiener" #. module: crm_claim #: view:crm.claim:0 @@ -635,7 +635,7 @@ msgstr "Beantwoorden" #. module: crm_claim #: field:crm.claim,cause:0 msgid "Root Cause" -msgstr "" +msgstr "Basis oorzaak" #. module: crm_claim #: view:crm.claim:0 @@ -666,7 +666,7 @@ msgstr "Mei" #. module: crm_claim #: view:crm.claim:0 msgid "Resolution Actions" -msgstr "" +msgstr "Acties tot oplossing" #. module: crm_claim #: model:ir.actions.act_window,name:crm_claim.act_claim_partner @@ -682,11 +682,16 @@ msgid "" "history for a claim (emails sent, intervention type and so on). Claims may " "automatically be linked to an email address using the mail gateway module." msgstr "" +"Klachten van uw klanten vastleggen en volgen. Klachten kunnen worden " +"gekoppeld aan een verkooporder of partij. U kunt emails sturen met bijlagen " +"en de volledige geschiedenis bijhouden van de klacht (verstuurde emails, " +"ingreep soorten etc.). Klachten kunnen automatisch worden gekoppeld aan een " +"emailadres met gebruik van de email gateway module." #. module: crm_claim #: view:crm.claim:0 msgid "Follow Up" -msgstr "" +msgstr "Opvolging" #. module: crm_claim #: help:crm.claim,state:0 @@ -735,7 +740,7 @@ msgstr "ID" #. module: crm_claim #: view:crm.claim:0 msgid "Actions" -msgstr "" +msgstr "Acties" #. module: crm_claim #: selection:crm.claim,priority:0 diff --git a/addons/crm_fundraising/i18n/es.po b/addons/crm_fundraising/i18n/es.po index 4b1e78aaf5e..7d94786812e 100644 --- a/addons/crm_fundraising/i18n/es.po +++ b/addons/crm_fundraising/i18n/es.po @@ -8,14 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-27 09:19+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" +"PO-Revision-Date: 2011-01-11 07:59+0000\n" +"Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:34+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_fundraising @@ -555,7 +554,7 @@ msgstr "Documentos adjuntos" #. module: crm_fundraising #: model:ir.model,name:crm_fundraising.model_crm_case_stage msgid "Stage of case" -msgstr "" +msgstr "Etapa del caso" #. module: crm_fundraising #: view:crm.fundraising:0 @@ -602,6 +601,10 @@ msgid "" "Raising allows you to track all your fund raising activities. In the search " "list, filter by funds description, email, history and probability of success." msgstr "" +"Si necesita reunir dinero para su organización o una campaña, Recaudación de " +"Fondos le permite registrar todas sus actividades de recaudación. En la " +"lista de búsqueda, filtre los fondos por descripción, correo electrónico, " +"historial y probabilidad de éxito." #. module: crm_fundraising #: view:crm.fundraising:0 diff --git a/addons/crm_fundraising/i18n/fr.po b/addons/crm_fundraising/i18n/fr.po index ed6851a4e2b..a5821e96dd9 100644 --- a/addons/crm_fundraising/i18n/fr.po +++ b/addons/crm_fundraising/i18n/fr.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-05 20:48+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-11 07:41+0000\n" +"Last-Translator: Aline (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:34+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_fundraising @@ -600,6 +599,10 @@ msgid "" "Raising allows you to track all your fund raising activities. In the search " "list, filter by funds description, email, history and probability of success." msgstr "" +"Si vous avez besoin de collecter de l'argent pour votre organisation ou une " +"campagne, le module Levée de Fonds permet de suivre ce type d'activité. Dans " +"la vue liste, filtrez par description, email, historique et probabilité de " +"succès." #. module: crm_fundraising #: view:crm.fundraising:0 diff --git a/addons/crm_fundraising/i18n/nl.po b/addons/crm_fundraising/i18n/nl.po index 281f02926a6..b5f2e787525 100644 --- a/addons/crm_fundraising/i18n/nl.po +++ b/addons/crm_fundraising/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 09:43+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 08:25+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:34+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_fundraising @@ -267,7 +267,7 @@ msgstr "E-mail werknemer" #. module: crm_fundraising #: view:crm.fundraising.report:0 msgid " Month-1 " -msgstr "" +msgstr " Maand-1 " #. module: crm_fundraising #: selection:crm.fundraising,state:0 @@ -555,7 +555,7 @@ msgstr "Bijlagen" #. module: crm_fundraising #: model:ir.model,name:crm_fundraising.model_crm_case_stage msgid "Stage of case" -msgstr "" +msgstr "Stadium dossier" #. module: crm_fundraising #: view:crm.fundraising:0 @@ -602,6 +602,9 @@ msgid "" "Raising allows you to track all your fund raising activities. In the search " "list, filter by funds description, email, history and probability of success." msgstr "" +"Als u geld voor uw organisatie of campagne moet verzamelen, laat " +"Fondsenwerving u alle wervingsactiviteiten volgen. In de zoeklijst filtert u " +"op fonds omschrijving, email, geschiedenis en slagingskans." #. module: crm_fundraising #: view:crm.fundraising:0 diff --git a/addons/crm_helpdesk/i18n/nl.po b/addons/crm_helpdesk/i18n/nl.po index d430e051309..9b424e7748b 100644 --- a/addons/crm_helpdesk/i18n/nl.po +++ b/addons/crm_helpdesk/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 07:12+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 08:30+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:36+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_helpdesk @@ -251,7 +251,7 @@ msgstr "Data" #. module: crm_helpdesk #: view:crm.helpdesk.report:0 msgid " Month-1 " -msgstr "" +msgstr " Maand-1 " #. module: crm_helpdesk #: view:crm.helpdesk.report:0 @@ -662,6 +662,8 @@ msgid "" "Create and manage helpdesk categories to better manage and classify your " "support requests." msgstr "" +"Helpdesk categorieën maken en beheren om uw support aanvragen beter te " +"classificeren en beheren." #. module: crm_helpdesk #: selection:crm.helpdesk,priority:0 @@ -691,6 +693,12 @@ msgid "" "gateway: new emails may create issues, each of them automatically gets the " "history of the conversation with the customer." msgstr "" +"Helpdesk en support laat u incidenten volgen. Selecteer een klant, voeg " +"notities toe en categoriseer incidenten met relaties indien nodig. U kunt " +"ook een prioriteit niveau toekennen. Gebruik het OpenERP problemen systeem " +"om uw support activiteiten en beheren. Problemen kunnen worden gekoppeld aan " +"de email gateway: neiuwe emails kunnen problemen maken, elk daarvan krijgt " +"automatisch de conversatie geschiedenis met de klant." #. module: crm_helpdesk #: view:crm.helpdesk.report:0 diff --git a/addons/crm_partner_assign/i18n/nl.po b/addons/crm_partner_assign/i18n/nl.po index e7fd945f883..238d4bda4ec 100644 --- a/addons/crm_partner_assign/i18n/nl.po +++ b/addons/crm_partner_assign/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 08:46+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 08:33+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:37+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_partner_assign @@ -156,6 +156,11 @@ msgid "" "based on geolocalization.\n" " " msgstr "" +"\n" +"Dit is de door OpenERP SA gebruikte module die klanten doorverwijst naar " +"haar partners,\n" +"gebaseerd op geolocalisatie.\n" +" " #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,state:0 @@ -208,7 +213,7 @@ msgstr "Van" #: field:res.partner,grade_id:0 #: view:res.partner.grade:0 msgid "Partner Grade" -msgstr "" +msgstr "Partner klasse" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -302,7 +307,7 @@ msgstr "Stadium" #: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:271 #, python-format msgid "Fwd" -msgstr "" +msgstr "Doorsturen" #. module: crm_partner_assign #: view:res.partner:0 @@ -359,7 +364,7 @@ msgstr "Vertraging tot openen" #: view:crm.lead.report.assign:0 #: field:crm.lead.report.assign,grade_id:0 msgid "Grade" -msgstr "" +msgstr "Klasse" #. module: crm_partner_assign #: selection:crm.lead.report.assign,month:0 @@ -411,7 +416,7 @@ msgstr "Relatie Geo-lokalisatie" #. module: crm_partner_assign #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Fout ! U kunt geen recursieve aangesloten leden maken." #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,state:0 @@ -558,7 +563,7 @@ msgstr "Laatste 30 Dagen" #. module: crm_partner_assign #: field:res.partner.grade,name:0 msgid "Grade Name" -msgstr "" +msgstr "Klassenaam" #. module: crm_partner_assign #: help:crm.lead,date_assign:0 diff --git a/addons/crm_profiling/i18n/es.po b/addons/crm_profiling/i18n/es.po index 707cc33c880..c2d3bf50bfd 100644 --- a/addons/crm_profiling/i18n/es.po +++ b/addons/crm_profiling/i18n/es.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-24 21:12+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" +"PO-Revision-Date: 2011-01-11 07:29+0000\n" +"Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:21+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_profiling @@ -68,6 +67,10 @@ msgid "" "segmentation tool allows you to automatically assign a partner to a category " "according to his answers to the different questionnaires." msgstr "" +"Puede crear cuestionarios temáticos específicos para guiar a su(s) equipo(s) " +"en el ciclo de ventas, ayudándoles a hacer las preguntas correctas. La " +"herramienta de segmentación le permite asignar automáticamente un cliente a " +"una categoría de acuerdo a sus respuestas a los diferentes cuestionarios ." #. module: crm_profiling #: field:crm_profiling.answer,question_id:0 diff --git a/addons/crm_profiling/i18n/nl.po b/addons/crm_profiling/i18n/nl.po index 03ab084d84e..f7d7d692c4d 100644 --- a/addons/crm_profiling/i18n/nl.po +++ b/addons/crm_profiling/i18n/nl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 08:48+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 08:41+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:21+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_profiling @@ -41,6 +41,22 @@ msgid "" "since it's the same which has been renamed.\n" " " msgstr "" +"\n" +" Deze module laat gebruikers segmentatie binnen relaties uitvoeren.\n" +" Het gebruikt de profiel criteria van de vorige segmentatie module en " +"verbetert het. Dankzij het nieuwe concept van enquête kunt u nu vragen " +"hergroeperen in een enquête en het direct gebruiken bij een relatie.\n" +"\n" +" Het is ook samengevoegd met de vorigeCRM & SRM segmentatie omdat ze " +"overlapten.\n" +"\n" +" De bijbehorende menu items staan in \"CRM & SRM\\Configuratie\\" +"Segmentatie\"\n" +"\n" +"\n" +" * Let op: deze module is niet compatibel met de module segmentatie, " +"omdat het dezelfde is die is hernoemd.\n" +" " #. module: crm_profiling #: model:ir.actions.act_window,help:crm_profiling.open_questionnaires @@ -50,6 +66,11 @@ msgid "" "segmentation tool allows you to automatically assign a partner to a category " "according to his answers to the different questionnaires." msgstr "" +"U kunt specifieke onderwerp gerelateerde enquetes maken om uw team(s) te " +"ondersteunen in de verkoopcyclus door ze te helpen de juiste vragen te " +"stellen. De segmentatie tool laat u automatisch een relatie aan een " +"categorie toewijzen op basis van zijn antwoorden in de verschillende " +"enquêtes." #. module: crm_profiling #: field:crm_profiling.answer,question_id:0 @@ -66,7 +87,7 @@ msgstr "Open vragenlijst" #. module: crm_profiling #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Fout ! U kunt geen recursieve aangesloten leden maken." #. module: crm_profiling #: view:crm.segmentation:0 diff --git a/addons/decimal_precision/i18n/fr.po b/addons/decimal_precision/i18n/fr.po index 6fac0f096d9..e03dee51adc 100644 --- a/addons/decimal_precision/i18n/fr.po +++ b/addons/decimal_precision/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-01 13:17+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 12:45+0000\n" +"Last-Translator: Numérigraphe \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:32+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: decimal_precision @@ -43,11 +43,11 @@ msgid "" "The decimal precision is configured per company.\n" msgstr "" "\n" -"Ce module autorise la configuration du nombre de décimale pour les " -"différents cas\n" -"d'usage: comptabilité, ventes, achats ...\n" +"Ce module permet de déterminer la précision nécessaire pour les prix dans " +"les différents cas\n" +"où ils sont utilisés: comptabilité, ventes, achats ...\n" "\n" -"La précision du nombre de décimal est confgurable par société.\n" +"Ce nombre de décimales est configurable par société.\n" #. module: decimal_precision #: field:decimal.precision,name:0 diff --git a/addons/decimal_precision/i18n/nl.po b/addons/decimal_precision/i18n/nl.po index 823bc4fe0ed..02beb60a649 100644 --- a/addons/decimal_precision/i18n/nl.po +++ b/addons/decimal_precision/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 07:48+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 08:43+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:32+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: decimal_precision @@ -58,7 +58,7 @@ msgstr "Gebruik" #. module: decimal_precision #: sql_constraint:decimal.precision:0 msgid "Only one value can be defined for each given usage!" -msgstr "" +msgstr "Slechts één waarde kan worden gedefinieerd voor een gegeven gebruik!" #. module: decimal_precision #: model:ir.module.module,shortdesc:decimal_precision.module_meta_information diff --git a/addons/delivery/i18n/es.po b/addons/delivery/i18n/es.po index 21d59175e66..9b97e4c1511 100644 --- a/addons/delivery/i18n/es.po +++ b/addons/delivery/i18n/es.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-27 09:23+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" +"PO-Revision-Date: 2011-01-11 21:08+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:43+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: delivery @@ -68,7 +67,7 @@ msgstr "Volumen" #. module: delivery #: sql_constraint:sale.order:0 msgid "Order Reference must be unique !" -msgstr "" +msgstr "¡La referencia del pedido debe ser única!" #. module: delivery #: field:delivery.grid,line_ids:0 @@ -121,6 +120,10 @@ msgid "" "can define several price lists for one delivery method, per country or a " "zone in a specific country defined by a postal code range." msgstr "" +"La lista de precios por entrega le permite calcular el coste y precio de " +"venta de la entrega en funvión del peso de los productos y de otros " +"criterios. Puede definir varios precios por un método de entrega, por país, " +"o por zona de un páis específico, definido por un rango de códigos postales." #. module: delivery #: selection:delivery.grid.line,price_type:0 @@ -167,6 +170,10 @@ msgid "" "Each delivery method can be assigned to a price list which computes the " "price of the delivery according to the products sold or delivered." msgstr "" +"Cree y gestione los métodos de entrega que necesite para su actividad de " +"ventas. Cada método de entrega puede ser asignado a una lista de precios que " +"calcula el precio de la entrega en función de los productos vendidos o " +"entregados." #. module: delivery #: code:addons/delivery/stock.py:98 diff --git a/addons/delivery/i18n/nl.po b/addons/delivery/i18n/nl.po index 3b5bdf3f392..a7e74201909 100644 --- a/addons/delivery/i18n/nl.po +++ b/addons/delivery/i18n/nl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 07:20+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 08:50+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:43+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: delivery @@ -39,7 +39,7 @@ msgstr "Netto gewicht" #. module: delivery #: view:stock.picking:0 msgid "Delivery Order" -msgstr "" +msgstr "Leveringsopdracht" #. module: delivery #: code:addons/delivery/delivery.py:141 @@ -67,7 +67,7 @@ msgstr "Volume" #. module: delivery #: sql_constraint:sale.order:0 msgid "Order Reference must be unique !" -msgstr "" +msgstr "Order referentie moet uniek zijn!" #. module: delivery #: field:delivery.grid,line_ids:0 @@ -119,6 +119,10 @@ msgid "" "can define several price lists for one delivery method, per country or a " "zone in a specific country defined by a postal code range." msgstr "" +"De verzend prijslijst laat u de kosten en verkoopprijs berekenen van de " +"levering op basis van het gewicht van de producten en andere criteria. U " +"kunt verschillende prijslijsten definiëren voor een verzendwijze, per land " +"of een zone in een land op basis van een postcode gebied." #. module: delivery #: selection:delivery.grid.line,price_type:0 @@ -165,6 +169,9 @@ msgid "" "Each delivery method can be assigned to a price list which computes the " "price of the delivery according to the products sold or delivered." msgstr "" +"Verzendwijzes maken en beheren die u nodig heeft voor uw verkoop " +"activiteiten. Elke verzendwijze kan een prijslijst toegewezen krijgen die de " +"prijs van de levering berekent volgens de verkochte en te leveren producten." #. module: delivery #: code:addons/delivery/stock.py:98 @@ -195,7 +202,7 @@ msgstr "Relatie" #. module: delivery #: model:ir.model,name:delivery.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "Verkoop orders" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid @@ -251,6 +258,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "grid without removing it." msgstr "" +"Als het actief veld uit staat, kunt u het afleverrooster verbergen zonder te " +"verwijderen." #. module: delivery #: field:delivery.grid,zip_to:0 @@ -292,6 +301,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "carrier without removing it." msgstr "" +"Als het actief veld uit staat, kunt u de expediteur verbergen zonder te " +"verwijderen." #. module: delivery #: code:addons/delivery/wizard/delivery_sale_order.py:95 @@ -325,6 +336,7 @@ msgstr "Partij" #: constraint:stock.move:0 msgid "You try to assign a lot which is not from the same product" msgstr "" +"U probeert een partij toe te wijzen die niet van hetzelfde product is." #. module: delivery #: field:delivery.carrier,active:0 @@ -400,12 +412,12 @@ msgstr "Verkopen & Inkopen" #. module: delivery #: selection:delivery.grid.line,operator:0 msgid "<=" -msgstr "" +msgstr "<=" #. module: delivery #: constraint:stock.move:0 msgid "You must assign a production lot for this product" -msgstr "" +msgstr "U moet een productie partij toewijzen voor dit product" #. module: delivery #: view:delivery.sale.order:0 diff --git a/addons/delivery/i18n/pt_BR.po b/addons/delivery/i18n/pt_BR.po index 280982a0979..92dc3ece8eb 100644 --- a/addons/delivery/i18n/pt_BR.po +++ b/addons/delivery/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-03 07:23+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 15:57+0000\n" +"Last-Translator: Guilherme Santos \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:43+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: delivery @@ -39,7 +39,7 @@ msgstr "Peso líquido" #. module: delivery #: view:stock.picking:0 msgid "Delivery Order" -msgstr "" +msgstr "Ordem de Entrega" #. module: delivery #: code:addons/delivery/delivery.py:141 @@ -67,7 +67,7 @@ msgstr "Volume" #. module: delivery #: sql_constraint:sale.order:0 msgid "Order Reference must be unique !" -msgstr "" +msgstr "Referência da Ordem deve ser única!" #. module: delivery #: field:delivery.grid,line_ids:0 @@ -87,12 +87,12 @@ msgstr "Propriedades de entregas" #. module: delivery #: model:ir.actions.act_window,name:delivery.action_picking_tree4 msgid "Picking to be invoiced" -msgstr "" +msgstr "Picking à ser faturado" #. module: delivery #: help:delivery.grid,sequence:0 msgid "Gives the sequence order when displaying a list of delivery grid." -msgstr "" +msgstr "Dá a ordem de seqüência ao exibir uma lista de entrega." #. module: delivery #: view:delivery.grid:0 @@ -162,6 +162,10 @@ msgid "" "Each delivery method can be assigned to a price list which computes the " "price of the delivery according to the products sold or delivered." msgstr "" +"Criar e gerenciar os métodos de entrega que você precisa para suas " +"atividades de vendas. Cada método de entrega pode ser atribuída a uma lista " +"de preços que calcula o preço da entrega de acordo com os produtos vendidos " +"ou entregues." #. module: delivery #: code:addons/delivery/stock.py:98 @@ -192,7 +196,7 @@ msgstr "Parceiro" #. module: delivery #: model:ir.model,name:delivery.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "Ordem de Venda" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid @@ -224,6 +228,12 @@ msgid "" "\n" " " msgstr "" +"Permite que você adicione métodos de entrega nas ordens de vendas e picking\n" +" Você pode definir a transportadora e grade de preços de entrega.\n" +" Quando criar Notas Fiscais de uma Ordem de Separação, OpenERP será " +"capaz de adicionar e somar a linha de frete.\n" +"\n" +" " #. module: delivery #: view:delivery.grid.line:0 @@ -241,6 +251,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "grid without removing it." msgstr "" +"Se o campo ativo é definido como Falso, ele permitirá que você oculte a " +"grade de entrega sem removê-la." #. module: delivery #: field:delivery.grid,zip_to:0 @@ -282,12 +294,14 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "carrier without removing it." msgstr "" +"Se o campo ativo é definido como Falso, ele permitirá que você oculte a " +"transportadora sem removê-la." #. module: delivery #: code:addons/delivery/wizard/delivery_sale_order.py:95 #, python-format msgid "No grid available !" -msgstr "" +msgstr "Sem grade disponível!" #. module: delivery #: selection:delivery.grid.line,operator:0 @@ -299,7 +313,7 @@ msgstr ">=" #: code:addons/delivery/wizard/delivery_sale_order.py:98 #, python-format msgid "Order not in draft state !" -msgstr "" +msgstr "Ordem não está como rascunho!" #. module: delivery #: constraint:res.partner:0 @@ -314,7 +328,7 @@ msgstr "Lote" #. module: delivery #: constraint:stock.move:0 msgid "You try to assign a lot which is not from the same product" -msgstr "" +msgstr "Você tentou atribuir um lote que não é do mesmo produto" #. module: delivery #: field:delivery.carrier,active:0 @@ -352,6 +366,8 @@ msgstr "Variável" #: help:res.partner,property_delivery_carrier:0 msgid "This delivery method will be used when invoicing from picking." msgstr "" +"Este método de entrega será usado quando criar notas fiscais a partir de uma " +"separação(picking)." #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -373,6 +389,8 @@ msgstr "CEP Origem" msgid "" "Complete this field if you plan to invoice the shipping based on picking." msgstr "" +"Complete este campo se você pretende faturar o frete baseado em " +"separações(picking)." #. module: delivery #: field:delivery.carrier,partner_id:0 @@ -387,12 +405,12 @@ msgstr "Vendas & Compras" #. module: delivery #: selection:delivery.grid.line,operator:0 msgid "<=" -msgstr "" +msgstr "<=" #. module: delivery #: constraint:stock.move:0 msgid "You must assign a production lot for this product" -msgstr "" +msgstr "Você deve atribuir um lote de produção para este produto." #. module: delivery #: view:delivery.sale.order:0 @@ -427,7 +445,7 @@ msgstr "Preço" #: code:addons/delivery/wizard/delivery_sale_order.py:95 #, python-format msgid "No grid matching for this carrier !" -msgstr "" +msgstr "Sem grade correspondentes para esta transportadora!" #. module: delivery #: model:ir.ui.menu,name:delivery.menu_delivery @@ -449,7 +467,7 @@ msgstr "=" #: code:addons/delivery/stock.py:99 #, python-format msgid "The carrier %s (id: %d) has no delivery grid!" -msgstr "" +msgstr "A transportadora %s (id: %d) não possui grade de entrega!" #. module: delivery #: field:delivery.grid.line,name:0 @@ -469,7 +487,7 @@ msgstr "Transportadora" #. module: delivery #: view:delivery.sale.order:0 msgid "_Apply" -msgstr "" +msgstr "_Aplicar" #. module: delivery #: field:sale.order,id:0 @@ -482,6 +500,7 @@ msgstr "ID" #, python-format msgid "The order state have to be draft to add delivery lines." msgstr "" +"O Status da ordem deve estar como rascunho para adicionar linhas de entrega." #. module: delivery #: model:ir.module.module,shortdesc:delivery.module_meta_information diff --git a/addons/document/i18n/ar.po b/addons/document/i18n/ar.po index c7cf33c3899..851123b73ad 100644 --- a/addons/document/i18n/ar.po +++ b/addons/document/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document diff --git a/addons/document/i18n/hu.po b/addons/document/i18n/hu.po index 981bf0f0e1e..3655a1cce12 100644 --- a/addons/document/i18n/hu.po +++ b/addons/document/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2009-09-08 13:22+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2011-01-11 17:07+0000\n" +"Last-Translator: NOVOTRADE RENDSZERHÁZ \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document @@ -116,7 +116,7 @@ msgstr "" #. module: document #: model:ir.ui.menu,name:document.menu_document_management_configuration msgid "Document Management" -msgstr "" +msgstr "Dokumentumok" #. module: document #: help:document.directory.dctx,expr:0 @@ -147,7 +147,7 @@ msgstr "" #: view:ir.attachment:0 #: field:ir.attachment,index_content:0 msgid "Indexed Content" -msgstr "" +msgstr "Kereshető tartalom" #. module: document #: help:document.directory,resource_find_all:0 @@ -425,7 +425,7 @@ msgstr "" #: field:document.storage,write_date:0 #: field:ir.attachment,write_date:0 msgid "Date Modified" -msgstr "" +msgstr "Módosítás dátuma" #. module: document #: model:ir.model,name:document.model_report_document_file @@ -506,7 +506,7 @@ msgstr "" #: field:report.document.user,user_id:0 #: field:report.document.wall,user_id:0 msgid "Owner" -msgstr "" +msgstr "Tulajdonos" #. module: document #: view:document.directory:0 @@ -523,7 +523,7 @@ msgstr "" #: field:document.storage,create_date:0 #: field:report.document.user,create_date:0 msgid "Date Created" -msgstr "" +msgstr "Létrehozás dátuma" #. module: document #: help:document.directory.content,include_name:0 @@ -546,7 +546,7 @@ msgstr "" #. module: document #: view:ir.attachment:0 msgid "Attachment" -msgstr "" +msgstr "Melléklet" #. module: document #: field:ir.actions.report.xml,model_id:0 @@ -568,7 +568,7 @@ msgstr "" #. module: document #: view:document.directory:0 msgid "Security" -msgstr "" +msgstr "Biztonság" #. module: document #: help:document.directory,ressource_id:0 @@ -621,7 +621,7 @@ msgstr "" #: view:ir.attachment:0 #: field:ir.attachment,db_datas:0 msgid "Data" -msgstr "" +msgstr "Adat" #. module: document #: help:document.directory,ressource_parent_type_id:0 @@ -651,7 +651,7 @@ msgstr "" #. module: document #: selection:document.storage,type:0 msgid "Database" -msgstr "" +msgstr "Adatbázis" #. module: document #: help:document.configuration,project:0 @@ -676,7 +676,7 @@ msgstr "" #. module: document #: view:ir.attachment:0 msgid "Attached To" -msgstr "" +msgstr "Csatolva ehhez" #. module: document #: model:ir.ui.menu,name:document.menu_reports_document @@ -707,7 +707,7 @@ msgstr "" #: field:document.directory,create_uid:0 #: field:document.storage,create_uid:0 msgid "Creator" -msgstr "" +msgstr "Létrehozta" #. module: document #: view:board.board:0 diff --git a/addons/document/i18n/nl.po b/addons/document/i18n/nl.po index 80ea7fb5888..230d4f8abea 100644 --- a/addons/document/i18n/nl.po +++ b/addons/document/i18n/nl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 09:45+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 08:54+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document @@ -97,7 +97,7 @@ msgstr "Maart" #. module: document #: view:document.configuration:0 msgid "title" -msgstr "" +msgstr "titel" #. module: document #: view:document.directory:0 @@ -221,7 +221,7 @@ msgstr "Wijzigingsdatum" #. module: document #: view:document.configuration:0 msgid "Knowledge Application Configuration" -msgstr "" +msgstr "Kennis applicatie configuratie" #. module: document #: view:ir.attachment:0 @@ -277,7 +277,7 @@ msgstr "Opslag" #. module: document #: view:document.configuration:0 msgid "Configure Resource Directory" -msgstr "" +msgstr "Resource map configureren" #. module: document #: field:ir.attachment,file_size:0 @@ -710,7 +710,7 @@ msgstr "Geïntegreerd documentbeheersysteem" #. module: document #: view:document.configuration:0 msgid "Choose the following Resouces to auto directory configuration." -msgstr "" +msgstr "Kies de volgende resources voor auto map configuratie." #. module: document #: view:ir.attachment:0 @@ -779,7 +779,7 @@ msgstr "Bestandsnaam" #. module: document #: view:document.configuration:0 msgid "res_config_contents" -msgstr "" +msgstr "res_config_contents" #. module: document #: field:document.directory,ressource_id:0 diff --git a/addons/document_ftp/i18n/nl.po b/addons/document_ftp/i18n/nl.po index e97d8d38b9e..dc21444bcef 100644 --- a/addons/document_ftp/i18n/nl.po +++ b/addons/document_ftp/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 08:37+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 08:58+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:37+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document_ftp @@ -31,6 +31,11 @@ msgid "" "format is HOST:PORT and the default host (localhost) is only suitable for " "access from the server machine itself.." msgstr "" +"Geeft het netwerkadres aan waarop uw OpenERP server te vinden zou moeten " +"zijn voor eindgebruikers. Dit hangt af van netwerk topologie en configuratie " +"en zal alleen de link beïnvloeden die wordt getoond aan de gebruikers. Het " +"formaat HOST:PORT en standaard host (localhost) zijn allen geschikt voor " +"toegang vanaf de server machine zelf." #. module: document_ftp #: field:document.ftp.configuration,progress:0 @@ -50,7 +55,7 @@ msgstr "Afbeelding" #. module: document_ftp #: field:document.ftp.configuration,host:0 msgid "Address" -msgstr "" +msgstr "Adres" #. module: document_ftp #: field:document.ftp.browse,url:0 @@ -104,7 +109,7 @@ msgstr "_Annuleren" #. module: document_ftp #: view:document.ftp.configuration:0 msgid "Configure FTP Server" -msgstr "" +msgstr "FTP Server configureren" #. module: document_ftp #: model:ir.module.module,shortdesc:document_ftp.module_meta_information @@ -124,7 +129,7 @@ msgstr "Document FTP bladeren" #. module: document_ftp #: view:document.ftp.configuration:0 msgid "Knowledge Application Configuration" -msgstr "" +msgstr "Kennis applicatie configuratie" #. module: document_ftp #: model:ir.actions.act_window,name:document_ftp.action_ftp_browse diff --git a/addons/document_ics/i18n/nl.po b/addons/document_ics/i18n/nl.po index 5cefd672147..c66d357c51a 100644 --- a/addons/document_ics/i18n/nl.po +++ b/addons/document_ics/i18n/nl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 07:01+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 09:03+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document_ics @@ -90,6 +90,8 @@ msgstr "Afsprakenagenda" msgid "" "OpenERP can create and pre-configure a series of integrated calendar for you." msgstr "" +"OpenERP kan een reeks geïntegreerde aganda's voor u maken en voor-" +"configureren." #. module: document_ics #: help:document.ics.crm.wizard,helpdesk:0 @@ -194,6 +196,8 @@ msgid "" " Will allow you to synchronise your Open ERP calendars with your phone, " "outlook, Sunbird, ical, ..." msgstr "" +" Laat u de OpenERP agenda's synchroniseren met uw telefoon, outlook, " +"Sunbird, iCal, etc." #. module: document_ics #: field:document.directory.ics.fields,field_id:0 @@ -295,7 +299,7 @@ msgstr "categorieën" #. module: document_ics #: view:document.ics.crm.wizard:0 msgid "Configure" -msgstr "" +msgstr "Configureren" #. module: document_ics #: selection:document.directory.ics.fields,fn:0 diff --git a/addons/document_webdav/i18n/es.po b/addons/document_webdav/i18n/es.po index 1b7d9f8e690..b080ba70f4f 100644 --- a/addons/document_webdav/i18n/es.po +++ b/addons/document_webdav/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-23 23:51+0000\n" -"Last-Translator: Raimon Esteve (Zikzakmedia) \n" +"PO-Revision-Date: 2011-01-11 07:21+0000\n" +"Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:30+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document_webdav @@ -32,7 +32,7 @@ msgstr "¡Error! No puede crear directorios recursivos." #: view:document.webdav.dir.property:0 #: view:document.webdav.file.property:0 msgid "Search Document properties" -msgstr "" +msgstr "Buscar propiedades del documento" #. module: document_webdav #: view:document.webdav.dir.property:0 diff --git a/addons/document_webdav/i18n/nl.po b/addons/document_webdav/i18n/nl.po index b9fe65b5281..d362918eb26 100644 --- a/addons/document_webdav/i18n/nl.po +++ b/addons/document_webdav/i18n/nl.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-01 07:18+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 12:39+0000\n" +"Last-Translator: Douwe Wullink (Dypalio) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:30+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 #: field:document.webdav.file.property,create_date:0 msgid "Date Created" -msgstr "" +msgstr "Datum gemaakt" #. module: document_webdav #: constraint:document.directory:0 @@ -32,7 +32,7 @@ msgstr "Fout ! U kunt geen recursieve mappen maken." #: view:document.webdav.dir.property:0 #: view:document.webdav.file.property:0 msgid "Search Document properties" -msgstr "" +msgstr "Document eigenschappen zoeken" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -50,7 +50,7 @@ msgstr "DAV eigenschappen" #. module: document_webdav #: model:ir.model,name:document_webdav.model_document_webdav_file_property msgid "document.webdav.file.property" -msgstr "" +msgstr "document.webdav.file.property" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -66,19 +66,19 @@ msgstr "Deze eigenschappen worden toegevoegd bij WebDAV aanvragen" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_file_props msgid "DAV properties for documents" -msgstr "" +msgstr "DAV eigenschappen voor documenten" #. module: document_webdav #: code:addons/document_webdav/webdav.py:37 #, python-format msgid "PyWebDAV Import Error!" -msgstr "" +msgstr "PyWebDAV import fout!" #. module: document_webdav #: view:document.webdav.file.property:0 #: field:document.webdav.file.property,file_id:0 msgid "Document" -msgstr "" +msgstr "Document" #. module: document_webdav #: model:ir.module.module,description:document_webdav.module_meta_information @@ -101,6 +101,24 @@ msgid "" " ; levels \"debug\" and \"debug_rpc\" respectively, you can leave\n" " ; these options on\n" msgstr "" +" Met deze module wordt de WebDAV server voor documenten geactiveerd.\n" +" U kunt nu met een compatibele browser door uw bijlagen in OpenObject " +"bladeren.\n" +"\n" +" Na installatie kan de webDAV server worden bestuurd vanuit de " +"[webdav] sectie in de server configuratie.\n" +" Server configuratie parameters:\n" +" [webdav]\n" +" ; enable = True ; Serve webdav via de http(s) servers\n" +" ; vdir = webdav ; de map van waaruit webdav wordt geserved\n" +" ; deze standaard waarde betekent dat webdav bereikbaar is\n" +" ; via \"http://localhost:8069/webdav/\n" +" ; verbose = True ; Aanzetten uitegreide berichten van webdav\n" +" ; debug = True ; Aanzetten van de debugging berichten van webdav\n" +" ; omdat de berichten worden gestuurd naar de python logging, met\n" +" ; niveaus \"debug\" en \"debug_rpc\" respectievelijk, kunt u deze " +"opties\n" +" ; aan laten staan\n" #. module: document_webdav #: sql_constraint:document.directory:0 @@ -130,6 +148,9 @@ msgid "" "http://code.google.com/p/pywebdav/downloads/detail?name=PyWebDAV-" "0.9.4.tar.gz&can=2&q=/" msgstr "" +"Installeer aub PyWebDAV vanaf " +"http://code.google.com/p/pywebdav/downloads/detail?name=PyWebDAV-" +"0.9.4.tar.gz&can=2&q=/" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_dir_props @@ -170,7 +191,7 @@ msgstr "Map" #: field:document.webdav.dir.property,write_uid:0 #: field:document.webdav.file.property,write_uid:0 msgid "Last Modification User" -msgstr "" +msgstr "Gebruiker laatste wijziging" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -181,13 +202,13 @@ msgstr "Map" #: field:document.webdav.dir.property,write_date:0 #: field:document.webdav.file.property,write_date:0 msgid "Date Modified" -msgstr "" +msgstr "Datum gewijzigd" #. module: document_webdav #: field:document.webdav.dir.property,create_uid:0 #: field:document.webdav.file.property,create_uid:0 msgid "Creator" -msgstr "" +msgstr "Gemaakt door" #. module: document_webdav #: model:ir.module.module,shortdesc:document_webdav.module_meta_information diff --git a/addons/email_template/i18n/fr.po b/addons/email_template/i18n/fr.po index 3dc37d28ac9..7f54f839b43 100644 --- a/addons/email_template/i18n/fr.po +++ b/addons/email_template/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-08 08:20+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 14:32+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: email_template @@ -1006,6 +1007,10 @@ msgid "" "profile fields, so that a partner name or other partner related information " "may be inserted automatically." msgstr "" +"Un modèle d'email est un email qui sera envoyé en relation avec une campagne " +"marketing. Vous pouvez le personnaliser selon des champs de profils de " +"clients spécifiques, ainsi le nom du partenaire ou d'autres informations du " +"partenaire peuvent être insérées automatiquement." #. module: email_template #: field:email.template,allowed_groups:0 diff --git a/addons/event/i18n/fr.po b/addons/event/i18n/fr.po index aea1905e69f..80110e6b4f5 100644 --- a/addons/event/i18n/fr.po +++ b/addons/event/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 13:32+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2011-01-11 14:34+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: event @@ -509,6 +510,10 @@ msgid "" "particular dates the state is set to 'Confirmed'. If the event is over, the " "state is set to 'Done'.If event is cancelled the state is set to 'Cancelled'." msgstr "" +"À la création de l'événement, l'état est \"Brouillon\". Lors de la " +"confirmation pour une date définie, l'état passe à \"Confirmé\". Lorsque " +"l'événement est terminé, l'état passe à \"Terminé\". Pour un événement " +"annulé l'état passe à \"Annulé\"." #. module: event #: view:event.event:0 diff --git a/addons/event_project/i18n/it.po b/addons/event_project/i18n/it.po index 2f141207b39..6cc60bc6c82 100644 --- a/addons/event_project/i18n/it.po +++ b/addons/event_project/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-09 17:54+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2011-01-12 01:00+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:18+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: event_project diff --git a/addons/fetchmail/i18n/pt.po b/addons/fetchmail/i18n/pt.po index e17e9124ec8..54c1811a36e 100644 --- a/addons/fetchmail/i18n/pt.po +++ b/addons/fetchmail/i18n/pt.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: fetchmail diff --git a/addons/google_map/i18n/fr.po b/addons/google_map/i18n/fr.po index 623a9c1d2c8..eddeb426a98 100644 --- a/addons/google_map/i18n/fr.po +++ b/addons/google_map/i18n/fr.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-05 21:18+0000\n" +"PO-Revision-Date: 2011-01-11 05:46+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:37+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: google_map diff --git a/addons/google_map/i18n/sl.po b/addons/google_map/i18n/sl.po index 83483c2fd95..e9757e7313b 100644 --- a/addons/google_map/i18n/sl.po +++ b/addons/google_map/i18n/sl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-08 13:42+0000\n" -"Last-Translator: rok \n" +"PO-Revision-Date: 2011-01-12 02:05+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:51+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: google_map diff --git a/addons/hr/i18n/fr.po b/addons/hr/i18n/fr.po index 2674ad9e653..5abf0e0dfd7 100644 --- a/addons/hr/i18n/fr.po +++ b/addons/hr/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-08 08:27+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 14:36+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr @@ -237,7 +238,7 @@ msgstr "Féminin" msgid "" "Tracks and helps employees encode and validate timesheets and attendances." msgstr "" -"Suivi et aide les employés à saisir et valider les feuilles de temps et les " +"Suit et aide les employés à saisir et valider les feuilles de temps et les " "présences." #. module: hr diff --git a/addons/hr/i18n/hu.po b/addons/hr/i18n/hu.po index 82652613174..ed539810427 100644 --- a/addons/hr/i18n/hu.po +++ b/addons/hr/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2009-09-08 14:32+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2011-01-11 17:10+0000\n" +"Last-Translator: NOVOTRADE RENDSZERHÁZ \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:20+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr @@ -49,7 +49,7 @@ msgstr "" #: model:ir.ui.menu,name:hr.menu_hr_management #: model:ir.ui.menu,name:hr.menu_hr_root msgid "Human Resources" -msgstr "" +msgstr "Humán erőforrás" #. module: hr #: view:hr.employee:0 diff --git a/addons/hr/i18n/zh_CN.po b/addons/hr/i18n/zh_CN.po index c8731ea40eb..a5b3155470e 100644 --- a/addons/hr/i18n/zh_CN.po +++ b/addons/hr/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-06 06:34+0000\n" +"PO-Revision-Date: 2011-01-12 01:20+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-08 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr @@ -35,7 +35,7 @@ msgstr "错误:你不能建立递归部门" #. module: hr #: model:process.transition,name:hr.process_transition_contactofemployee0 msgid "Link the employee to information" -msgstr "" +msgstr "连接员工到信息" #. module: hr #: field:hr.employee,sinid:0 @@ -122,7 +122,7 @@ msgstr "假期" #. module: hr #: help:hr.installer,hr_holidays:0 msgid "Tracks employee leaves, allocation requests and planning." -msgstr "" +msgstr "跟踪员工离职、调配申请与计划。" #. module: hr #: model:ir.model,name:hr.model_hr_employee_marital_status @@ -139,7 +139,7 @@ msgstr "" #. module: hr #: model:process.transition,name:hr.process_transition_employeeuser0 msgid "Link a user to an employee" -msgstr "" +msgstr "链接一个用户信息到一个员工信息" #. module: hr #: field:hr.installer,hr_contract:0 @@ -201,12 +201,12 @@ msgstr "" #: view:hr.job:0 #: selection:hr.job,state:0 msgid "In Recruitement" -msgstr "" +msgstr "招聘中" #. module: hr #: field:hr.employee,identification_id:0 msgid "Identification No" -msgstr "" +msgstr "身份证号" #. module: hr #: field:hr.job,no_of_employee:0 @@ -308,7 +308,7 @@ msgstr "报表" #. module: hr #: model:ir.model,name:hr.model_ir_actions_act_window msgid "ir.actions.act_window" -msgstr "" +msgstr "ir.actions.act_window" #. module: hr #: model:ir.actions.act_window,name:hr.open_board_hr @@ -338,7 +338,7 @@ msgstr "设置" msgid "" "You can enhance the base HR Application by installing few HR-related " "functionalities." -msgstr "" +msgstr "您可以安装一些人事相关模块来增强基本的人事管理应用程序。" #. module: hr #: view:hr.employee:0 @@ -436,7 +436,7 @@ msgstr "hr.department" #. module: hr #: help:hr.employee,parent_id:0 msgid "It is linked with manager of Department" -msgstr "" +msgstr "此处链接到部门经理信息" #. module: hr #: field:hr.installer,hr_recruitment:0 @@ -551,13 +551,19 @@ msgid "" " * HR Jobs\n" " " msgstr "" +"\n" +" 人力资源管理模块,您可以管理:\n" +" * 员工信息与员工级次:您可以定义您的员工信息并包含登录用户及显示级次。\n" +" * 部门信息\n" +" * 职位信息\n" +" " #. module: hr #: model:process.transition,note:hr.process_transition_contactofemployee0 msgid "" "In the Employee form, there are different kind of information like Contact " "information." -msgstr "" +msgstr "员工信息表单里有多种不同的信息如联系人信息。" #. module: hr #: help:hr.job,expected_employees:0 @@ -583,7 +589,7 @@ msgstr "两个用户不能使用相同的用户名!" #: view:hr.job:0 #: field:hr.job,state:0 msgid "State" -msgstr "" +msgstr "状态" #. module: hr #: field:hr.employee,marital:0 @@ -639,7 +645,7 @@ msgstr "当前活动" msgid "" "Tracks and manages employee expenses, and can automatically re-invoice " "clients if the expenses are project-related." -msgstr "" +msgstr "跟踪与管理员工开支,如果相关会计项目可用的情况下可以自动重新开发票给客户" #. module: hr #: view:hr.job:0 @@ -676,7 +682,7 @@ msgstr "说明" #. module: hr #: help:hr.installer,hr_contract:0 msgid "Extends employee profiles to help manage their contracts." -msgstr "" +msgstr "扩展员工档案帮助您管理员工的联系信息。" #. module: hr #: field:hr.installer,hr_payroll:0 @@ -697,12 +703,12 @@ msgstr "职位名称" #: view:hr.job:0 #: selection:hr.job,state:0 msgid "In Position" -msgstr "" +msgstr "在职" #. module: hr #: field:hr.employee,mobile_phone:0 msgid "Mobile" -msgstr "" +msgstr "手机" #. module: hr #: view:hr.department:0 @@ -798,7 +804,7 @@ msgstr "" #. module: hr #: view:hr.installer:0 msgid "Configure Your Human Resources Application" -msgstr "" +msgstr "配置您的人力资源管理应用" #. module: hr #: field:hr.installer,hr_expense:0 diff --git a/addons/hr_attendance/i18n/es.po b/addons/hr_attendance/i18n/es.po index d2ec319d86e..b2a9dda3868 100644 --- a/addons/hr_attendance/i18n/es.po +++ b/addons/hr_attendance/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 14:05+0000\n" +"PO-Revision-Date: 2011-01-11 08:02+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_attendance @@ -78,6 +78,10 @@ msgid "" "Sign in/Sign out actions. You can also link this feature to an attendance " "device using OpenERP's web service features." msgstr "" +"La funcionalidad de Seguimiento de Tiempos le permite gestionar las " +"asistencias de los empleados a través de las acciones de Ficha/Salida. " +"También puede enlazar esta funcionalidad con un dispositivo de registro de " +"asistencia usando las capacidades del servicio web de OpenERP." #. module: hr_attendance #: view:hr.action.reason:0 diff --git a/addons/hr_contract/i18n/fr.po b/addons/hr_contract/i18n/fr.po index d28007f7bfc..f074ae33f23 100644 --- a/addons/hr_contract/i18n/fr.po +++ b/addons/hr_contract/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-08 08:57+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 14:37+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_contract @@ -163,6 +164,14 @@ msgid "" " You can assign several contracts per employee.\n" " " msgstr "" +"\n" +" Ajouter toutes les informations sur le formulaire de l'employé pour " +"gérer les contrats :\n" +" * État civil,\n" +" * Numéro de sécurité sociale,\n" +" * Date et lieu de naissance, ...\n" +" Vous pouvez assigner plusieurs contrats par employé.\n" +" " #. module: hr_contract #: view:hr.contract:0 diff --git a/addons/hr_evaluation/i18n/es.po b/addons/hr_evaluation/i18n/es.po index 17f708565e6..a3abb83f409 100644 --- a/addons/hr_evaluation/i18n/es.po +++ b/addons/hr_evaluation/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 12:23+0000\n" +"PO-Revision-Date: 2011-01-12 03:59+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/fr.po b/addons/hr_evaluation/i18n/fr.po index db3af3080d4..e28f95cb8ac 100644 --- a/addons/hr_evaluation/i18n/fr.po +++ b/addons/hr_evaluation/i18n/fr.po @@ -8,13 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-08 12:46+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 14:38+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_evaluation @@ -787,6 +788,9 @@ msgid "" "employee's evaluation plan. Each user receives automatic emails and requests " "to evaluate their colleagues periodically." msgstr "" +"Les demandes d'entrevue sont générées automatiquement par OpenERP selon le " +"plan d'évaluation de l'employé. Chaque utilisateur reçoit périodiquement et " +"automatiquement des emails et des demandes pour évaluer ses collègues." #. module: hr_evaluation #: view:hr_evaluation.plan:0 diff --git a/addons/hr_expense/i18n/fr.po b/addons/hr_expense/i18n/fr.po index c4b5ab55ce4..6cbf029a42c 100644 --- a/addons/hr_expense/i18n/fr.po +++ b/addons/hr_expense/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-08 12:47+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 14:38+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_expense @@ -275,6 +276,8 @@ msgid "" "Please configure Default Expense account for Product purchase, " "`property_account_expense_categ`" msgstr "" +"Veuillez configurer le compte de frais par défaut pour l'achat du produit, " +"\"property_account_expense_categ\"" #. module: hr_expense #: report:hr.expense:0 diff --git a/addons/hr_holidays/i18n/es.po b/addons/hr_holidays/i18n/es.po index 6c478ecb3aa..17ec13f50f0 100644 --- a/addons/hr_holidays/i18n/es.po +++ b/addons/hr_holidays/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-09 00:14+0000\n" +"PO-Revision-Date: 2011-01-11 21:13+0000\n" "Last-Translator: Carlos @ smile.fr \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:18+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_holidays @@ -122,6 +122,11 @@ msgid "" "the employee. You can define several allowance types (paid holidays, " "sickness, etc.) and manage allowances per type." msgstr "" +"Las solicitudes de ausencias pueden ser creadas por los empleados y " +"validadas por los responsables. Una vez la solicitud de ausencia es " +"validada, aparecerá automáticamente en la agenda del empleado. Puede definir " +"varios tipos de permisos (vacaciones pagadas, enfermedad, etc.) y gestionar " +"los permisos por tipo." #. module: hr_holidays #: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary @@ -145,6 +150,8 @@ msgstr "Rechazar" msgid "" "You cannot validate leaves for employee %s: too few remaining days (%s)." msgstr "" +"No puede validar las ausencias para el empleado %s: muy pocos días restantes " +"(%s)" #. module: hr_holidays #: view:board.board:0 @@ -432,6 +439,8 @@ msgid "" "If you set a meeting type, OpenERP will create a meeting in the calendar " "once a leave is validated." msgstr "" +"Si define un tipo de reunión, OpenERP creará una reunión en el calendario " +"una vez la ausencia sea validada." #. module: hr_holidays #: field:hr.holidays,linked_request_ids:0 @@ -541,7 +550,7 @@ msgstr "Activo" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_view_holiday_status_manager_board msgid "Leaves To Validate" -msgstr "" +msgstr "Ausencias por validar" #. module: hr_holidays #: view:hr.holidays:0 @@ -597,7 +606,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Misc" -msgstr "" +msgstr "Misc." #. module: hr_holidays #: view:hr.holidays:0 @@ -698,7 +707,7 @@ msgstr "" #: code:addons/hr_holidays/hr_holidays.py:186 #, python-format msgid "You cannot delete a leave which is not in draft state !" -msgstr "" +msgstr "¡No puede eliminar una ausencia que no esté en el estado borrador!" #. module: hr_holidays #: view:hr.holidays:0 diff --git a/addons/hr_payroll/i18n/es.po b/addons/hr_payroll/i18n/es.po index 185d238c351..deb0e123c38 100644 --- a/addons/hr_payroll/i18n/es.po +++ b/addons/hr_payroll/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 11:53+0000\n" +"PO-Revision-Date: 2011-01-11 07:48+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_payroll @@ -478,7 +478,7 @@ msgstr "Valor de función" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_contibution_register_line msgid "Contribution Register Line" -msgstr "" +msgstr "Línea de registro de contribución" #. module: hr_payroll #: report:salary.structure:0 @@ -691,7 +691,7 @@ msgstr "Cuenta bancaria" #. module: hr_payroll #: view:hr.contibution.register:0 msgid "Contribution Lines" -msgstr "" +msgstr "Líneas de contribución" #. module: hr_payroll #: report:hr.payroll.register.sheet:0 @@ -765,7 +765,7 @@ msgstr "Detalle salario empleado" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_payslip_line_line msgid "Function Line" -msgstr "" +msgstr "Línea de función" #. module: hr_payroll #: view:hr.payroll.advice:0 @@ -869,7 +869,7 @@ msgstr "Básico" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_hr_passport_tree msgid "All Passports" -msgstr "" +msgstr "Todos los pasaportes" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_hr_payroll_year_salary @@ -886,7 +886,7 @@ msgstr "Nombre del empleado" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_passport msgid "Passport Detail" -msgstr "" +msgstr "Detalle pasaporte" #. module: hr_payroll #: selection:hr.payslip.line,amount_type:0 @@ -1382,7 +1382,7 @@ msgstr ")" #. module: hr_payroll #: view:hr.contibution.register:0 msgid "Contribution Registers" -msgstr "" +msgstr "Registros de contribución" #. module: hr_payroll #: model:ir.ui.menu,name:hr_payroll.menu_hr_payroll_reporting @@ -1432,7 +1432,7 @@ msgstr "" #. module: hr_payroll #: report:payslip.pdf:0 msgid "Number of Leaves" -msgstr "" +msgstr "Número de hojas" #. module: hr_payroll #: report:employees.salary:0 @@ -1478,7 +1478,7 @@ msgstr "Nombre" #. module: hr_payroll #: report:payslip.pdf:0 msgid "Leaved Deduction" -msgstr "" +msgstr "Hojas de deducción" #. module: hr_payroll #: view:hr.passport:0 @@ -1503,7 +1503,7 @@ msgstr "Cuenta bancaria" #. module: hr_payroll #: help:company.contribution,register_id:0 msgid "Contribution register based on company" -msgstr "" +msgstr "Registro de contribución basado en la empresa" #. module: hr_payroll #: help:hr.allounce.deduction.categoty,sequence:0 @@ -1588,7 +1588,7 @@ msgstr "Secuencia" #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payslip_form #: model:ir.ui.menu,name:hr_payroll.menu_department_tree msgid "Employee Payslip" -msgstr "" +msgstr "Nómina de los empleados" #. module: hr_payroll #: view:hr.payroll.advice:0 @@ -1609,12 +1609,12 @@ msgstr "Prima / Deducción" #. module: hr_payroll #: model:ir.actions.report.xml,name:hr_payroll.payroll_advice msgid "Bank Payment Advice" -msgstr "" +msgstr "Aviso de pago del banco" #. module: hr_payroll #: view:hr.payslip:0 msgid "Search Payslips" -msgstr "" +msgstr "Buscar nóminas" #. module: hr_payroll #: report:employees.salary:0 diff --git a/addons/hr_payroll_account/i18n/fr.po b/addons/hr_payroll_account/i18n/fr.po index 4eb76a88709..6eea5c3085a 100644 --- a/addons/hr_payroll_account/i18n/fr.po +++ b/addons/hr_payroll_account/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-08 19:40+0000\n" -"Last-Translator: lolivier \n" +"PO-Revision-Date: 2011-01-11 14:44+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_payroll_account @@ -46,7 +47,7 @@ msgstr "Compte analytique pour l'analyse du salaire" #: field:hr.payroll.register,journal_id:0 #: field:hr.payslip,journal_id:0 msgid "Expense Journal" -msgstr "" +msgstr "Journal de dépenses" #. module: hr_payroll_account #: field:hr.contibution.register.line,period_id:0 @@ -101,7 +102,7 @@ msgstr "" #: code:addons/hr_payroll_account/hr_payroll_account.py:432 #, python-format msgid "Please defined partner in bank account for %s !" -msgstr "" +msgstr "Veuillez définir le partenaire dans le compte bancaire pour %s !" #. module: hr_payroll_account #: view:hr.payslip:0 @@ -111,7 +112,7 @@ msgstr "Informations comptables" #. module: hr_payroll_account #: help:hr.employee,salary_account:0 msgid "Expense account when Salary Expense will be recorded" -msgstr "" +msgstr "Compte de dépenses où seront enregistrés les salaires" #. module: hr_payroll_account #: code:addons/hr_payroll_account/hr_payroll_account.py:429 @@ -128,6 +129,11 @@ msgid "" " * Comany Contribution Managemet\n" " " msgstr "" +"Système de paie générique intégré avec la comptabilité\n" +" * Saisie des paies\n" +" * Saisie des règlements\n" +" * Gestion des contributions de la société\n" +" " #. module: hr_payroll_account #: model:ir.module.module,shortdesc:hr_payroll_account.module_meta_information diff --git a/addons/hr_recruitment/i18n/fr.po b/addons/hr_recruitment/i18n/fr.po index b073e4eea15..b6b5162a51c 100644 --- a/addons/hr_recruitment/i18n/fr.po +++ b/addons/hr_recruitment/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-08 12:57+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 14:40+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_recruitment @@ -826,6 +827,17 @@ msgid "" "system to store and search in your CV base.\n" " " msgstr "" +"\n" +"Gère les fiches de poste et le processus de recrutement. Il est intégré avec " +"le module de sondage\n" +"pour vous permettre de définir des entrevues pour différents postes.\n" +"\n" +"Ce module est intégré avec la passerelle d'email pour suivre les emails " +"envoyés à \n" +"jobs@societe.com. Il est aussi intégré avec le système de gestion " +"documentaire\n" +"pour stocker et chercher dans votre base de CV.\n" +" " #. module: hr_recruitment #: view:hr.applicant:0 diff --git a/addons/hr_timesheet/i18n/fr.po b/addons/hr_timesheet/i18n/fr.po index 62460962060..61dd96e9c3f 100644 --- a/addons/hr_timesheet/i18n/fr.po +++ b/addons/hr_timesheet/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-08 12:58+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 14:41+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #~ msgid "Error: UOS must be in a different category than the UOM" @@ -278,6 +279,8 @@ msgid "" "Through Working Hours you can register your working hours by project every " "day." msgstr "" +"Via les heures de travail, vous pouvez répartir quotidiennement vos heures " +"travaillées par projet." #. module: hr_timesheet #: model:ir.module.module,description:hr_timesheet.module_meta_information diff --git a/addons/hr_timesheet_invoice/i18n/fr.po b/addons/hr_timesheet_invoice/i18n/fr.po index 9b05a4911b8..2da221a861f 100644 --- a/addons/hr_timesheet_invoice/i18n/fr.po +++ b/addons/hr_timesheet_invoice/i18n/fr.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 12:41+0000\n" +"PO-Revision-Date: 2011-01-11 14:42+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_timesheet_invoice @@ -372,6 +372,10 @@ msgid "" "costs in this analytic account: timesheets, expenses, ...You can configure " "an automatic invoice rate on analytic accounts." msgstr "" +"Remplissez ce champ si vous planifiez de générer automatiquement les " +"factures à partir des coûts dans ce compte analytique : feuilles de temps, " +"frais, ... Vous pouvez configurer un taux de facturation automatique dans " +"les comptes analytiques." #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 diff --git a/addons/hr_timesheet_sheet/i18n/es.po b/addons/hr_timesheet_sheet/i18n/es.po index cb6e8a22605..290761b5e8e 100644 --- a/addons/hr_timesheet_sheet/i18n/es.po +++ b/addons/hr_timesheet_sheet/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 13:59+0000\n" +"PO-Revision-Date: 2011-01-11 13:57+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_timesheet_sheet @@ -543,6 +543,10 @@ msgid "" "your employees. You can group them by specific selection criteria thanks to " "the search tool." msgstr "" +"Este informe realiza un análisis de las hojas de asistencia creadas por sus " +"recursos humanos en el sistema. Le permite tener una visión completa de las " +"entradas realizadas por sus empleados. Puede agruparlas por criterios " +"específicos de selección gracias a la herramienta de búsqueda." #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state:0 @@ -667,6 +671,9 @@ msgid "" "on a project (i.e. an analytic account) thus generating costs in the " "analytic account concerned." msgstr "" +"Consulte su hoja de asistencia durante un período determinado. También puede " +"imputar el tiempo dedicado a un proyecto (p. ej. una cuenta analítica), " +"generando por tanto costes en la cuenta analítica correspondiente." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -703,6 +710,8 @@ msgid "" "Allowed difference in hours between the sign in/out and the timesheet " "computation for one sheet. Set this to 0 if you do not want any control." msgstr "" +"Diferencia permitida, en horas, entre el fichaje/salida y el cómputo de hoja " +"de asistencia para una hoja. Póngalo a 0 si no desea ningún tipo de control." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -861,6 +870,7 @@ msgstr "Registrar salida" #, python-format msgid "Cannot delete Sheet(s) which have attendance entries encoded !" msgstr "" +"¡No se pueden eliminar hojas con registros de asistencia codificados!" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_tasktimesheet0 diff --git a/addons/idea/i18n/fr.po b/addons/idea/i18n/fr.po index 23bb2b16b02..55e820b32ac 100644 --- a/addons/idea/i18n/fr.po +++ b/addons/idea/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: idea diff --git a/addons/knowledge/i18n/ru.po b/addons/knowledge/i18n/ru.po index e6aa5b6fe51..0d284492cf4 100644 --- a/addons/knowledge/i18n/ru.po +++ b/addons/knowledge/i18n/ru.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-11-29 07:56+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 06:46+0000\n" +"Last-Translator: Alexander 'FONTER' Zinin \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:34+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: knowledge @@ -35,17 +35,17 @@ msgstr "" #. module: knowledge #: field:knowledge.installer,document_ftp:0 msgid "Shared Repositories (FTP)" -msgstr "" +msgstr "Общий репозиторий (FTP)" #. module: knowledge #: model:ir.module.module,shortdesc:knowledge.module_meta_information msgid "Knowledge Management System" -msgstr "" +msgstr "Система управления знаниями" #. module: knowledge #: field:knowledge.installer,wiki:0 msgid "Collaborative Content (Wiki)" -msgstr "" +msgstr "Совместное содержание (Wiki)" #. module: knowledge #: help:knowledge.installer,document_ftp:0 @@ -65,7 +65,7 @@ msgstr "" #. module: knowledge #: view:knowledge.installer:0 msgid "Configure" -msgstr "" +msgstr "Настройка" #. module: knowledge #: view:knowledge.installer:0 @@ -87,17 +87,17 @@ msgstr "Параметры" #. module: knowledge #: model:ir.actions.act_window,name:knowledge.action_knowledge_installer msgid "Knowledge Modules Installation" -msgstr "" +msgstr "Знания по установке модулей" #. module: knowledge #: field:knowledge.installer,wiki_quality_manual:0 msgid "Quality Manual" -msgstr "" +msgstr "Руководство по качеству" #. module: knowledge #: field:knowledge.installer,document_webdav:0 msgid "Shared Repositories (WebDAV)" -msgstr "" +msgstr "Общий репозиторий (WebDAV)" #. module: knowledge #: field:knowledge.installer,progress:0 @@ -119,7 +119,7 @@ msgstr "Внутренний FAQ" #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document2 msgid "Collaborative Content" -msgstr "" +msgstr "Совместное содержание" #. module: knowledge #: field:knowledge.installer,config_logo:0 diff --git a/addons/l10n_be/i18n/es.po b/addons/l10n_be/i18n/es.po index 26006cf273c..e8114e041fe 100644 --- a/addons/l10n_be/i18n/es.po +++ b/addons/l10n_be/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2010-12-28 08:32+0000\n" +"PO-Revision-Date: 2011-01-11 07:30+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:14+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_be @@ -25,7 +25,7 @@ msgstr "Prueba de archivo XML" #. module: l10n_be #: field:vat.listing.clients,name:0 msgid "Client Name" -msgstr "" +msgstr "Nombre del cliente" #. module: l10n_be #: view:partner.vat.list:0 @@ -48,7 +48,7 @@ msgstr "¡Error! No puede crear compañías recursivas." #: help:partner.vat,test_xml:0 #: help:partner.vat.intra,test_xml:0 msgid "Sets the XML output as test file" -msgstr "" +msgstr "Establece la salida XML como archivo pruebas" #. module: l10n_be #: code:addons/l10n_be/wizard/l10_be_partner_vat_listing.py:155 @@ -82,12 +82,12 @@ msgstr "Período" #: view:l1on_be.vat.declaration:0 #: view:partner.vat.intra:0 msgid "Save the File with '.xml' extension." -msgstr "" +msgstr "Guardar el archivo con extesión '.xml'" #. module: l10n_be #: view:partner.vat.intra:0 msgid "Save XML" -msgstr "" +msgstr "Guardar XML" #. module: l10n_be #: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:150 @@ -117,7 +117,7 @@ msgstr "" #: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:95 #, python-format msgid "The period code you entered is not valid." -msgstr "" +msgstr "El código del periodo que ingresó no es válido" #. module: l10n_be #: help:l1on_be.vat.declaration,ask_resitution:0 @@ -165,7 +165,7 @@ msgstr "Bélgica - Plan Contable mínimo Normalizado" #. module: l10n_be #: view:partner.vat.list:0 msgid "Select Fiscal Year" -msgstr "Seleccionar el año fiscal" +msgstr "Seleccionar ejercicio fiscal" #. module: l10n_be #: field:l1on_be.vat.declaration,ask_resitution:0 @@ -187,7 +187,7 @@ msgstr "Periodo de delcaración de IVA" #. module: l10n_be #: view:partner.vat.intra:0 msgid "Note: " -msgstr "" +msgstr "Nota " #. module: l10n_be #: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_1 @@ -281,7 +281,7 @@ msgstr "" #. module: l10n_be #: view:l1on_be.vat.declaration:0 msgid "Is Last Declaration" -msgstr "" +msgstr "Es la última declaración" #. module: l10n_be #: model:ir.model,name:l10n_be.model_partner_vat @@ -333,11 +333,13 @@ msgid "" "This identifies the representative of the sending company. This is a string " "of 14 characters" msgstr "" +"Esto indentifica el representante de la companía, Esta es una cadena de 14 " +"caracteres" #. module: l10n_be #: view:l1on_be.vat.declaration:0 msgid "Save xml" -msgstr "" +msgstr "Guardar XML" #. module: l10n_be #: field:partner.vat,mand_id:0 @@ -377,7 +379,7 @@ msgstr "Nombre de archivo" #: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:95 #, python-format msgid "Wrong Period Code" -msgstr "" +msgstr "Código del periodo incorrecto" #. module: l10n_be #: field:partner.vat,fyear:0 @@ -411,12 +413,14 @@ msgstr "Información General" msgid "" "You can remove clients/partners which you do not want to show in xml file" msgstr "" +"Puede eliminar clientes/empresas que no quiere mostrar en el archivo xml" #. module: l10n_be #: view:partner.vat.list:0 msgid "" "You can remove clients/partners which you do not want in exported xml file" msgstr "" +"Puede eliminar clientes/empresas que no quiere en el archivo xml exportado" #. module: l10n_be #: view:partner.vat.intra:0 @@ -426,7 +430,7 @@ msgstr "" #. module: l10n_be #: field:partner.vat.intra,period_code:0 msgid "Period Code" -msgstr "" +msgstr "Código del periodo" #. module: l10n_be #: field:l1on_be.vat.declaration,ask_payment:0 @@ -436,7 +440,7 @@ msgstr "" #. module: l10n_be #: view:partner.vat:0 msgid "View Client" -msgstr "" +msgstr "Ver cliente" #. module: l10n_be #: view:partner.vat:0 @@ -454,7 +458,7 @@ msgstr "Cerrar" #: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:125 #, python-format msgid "Please select at least one Period." -msgstr "" +msgstr "Por favor seleccione al menos un periodo" #. module: l10n_be #: model:ir.module.module,description:l10n_be.module_meta_information @@ -504,7 +508,7 @@ msgstr "Socio dentro del IVA" #. module: l10n_be #: field:partner.vat.intra,period_ids:0 msgid "Period (s)" -msgstr "" +msgstr "Periodo (s)" #~ msgid "Tiers" #~ msgstr "Niveles" diff --git a/addons/l10n_be/i18n/fr.po b/addons/l10n_be/i18n/fr.po index 73acc8beeb5..8dbe8c59c54 100644 --- a/addons/l10n_be/i18n/fr.po +++ b/addons/l10n_be/i18n/fr.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-07 22:33+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-11 21:55+0000\n" +"Last-Translator: lolivier \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-08 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_be @@ -26,7 +25,7 @@ msgstr "Tester le Fichier XML" #. module: l10n_be #: field:vat.listing.clients,name:0 msgid "Client Name" -msgstr "" +msgstr "Nom du client" #. module: l10n_be #: view:partner.vat.list:0 @@ -83,7 +82,7 @@ msgstr "Période" #: view:l1on_be.vat.declaration:0 #: view:partner.vat.intra:0 msgid "Save the File with '.xml' extension." -msgstr "" +msgstr "Sauvegarder le fichier avec l'extension \".xml\"" #. module: l10n_be #: view:partner.vat.intra:0 @@ -112,29 +111,29 @@ msgstr "Fichier crée" #: code:addons/l10n_be/wizard/l10n_be_account_vat_declaration.py:116 #, python-format msgid "Save XML For Vat declaration" -msgstr "" +msgstr "Sauvegarder le XML pour la déclaration de TVA" #. module: l10n_be #: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:95 #, python-format msgid "The period code you entered is not valid." -msgstr "" +msgstr "Le code de la période saisi n'est pas correct." #. module: l10n_be #: help:l1on_be.vat.declaration,ask_resitution:0 msgid "It indicates whether a resitution is to made or not?" -msgstr "" +msgstr "Cela indique si une restitution doit être effectuée ou non." #. module: l10n_be #: model:ir.actions.act_window,name:l10n_be.action_vat_declaration msgid "Vat Declaraion" -msgstr "" +msgstr "Déclaration de TVA" #. module: l10n_be #: view:partner.vat.intra:0 #: field:partner.vat.intra,no_vat:0 msgid "Partner With No VAT" -msgstr "" +msgstr "Partenaire sans numéro de TVA" #. module: l10n_be #: view:l1on_be.vat.declaration:0 @@ -156,7 +155,7 @@ msgstr "partner.vat.list" #. module: l10n_be #: model:ir.ui.menu,name:l10n_be.partner_vat_listing msgid "Annual Listing Of VAT-Subjected Customers" -msgstr "" +msgstr "Listing annuel des clients assujettis à la TVA" #. module: l10n_be #: model:ir.module.module,shortdesc:l10n_be.module_meta_information @@ -171,7 +170,7 @@ msgstr "Sélectionnez l'Année Fiscale" #. module: l10n_be #: field:l1on_be.vat.declaration,ask_resitution:0 msgid "Ask Restitution" -msgstr "" +msgstr "Demander une restitution" #. module: l10n_be #: model:ir.model,name:l10n_be.model_partner_vat_intra @@ -198,7 +197,7 @@ msgstr "Régime National" #. module: l10n_be #: view:vat.listing.clients:0 msgid "VAT listing" -msgstr "" +msgstr "Listing TVA" #. module: l10n_be #: view:partner.vat.intra:0 @@ -234,6 +233,8 @@ msgstr "" msgid "" "The Partner whose VAT number is not defined they doesn't include in XML File." msgstr "" +"Les partenaires pour lesquels un numéro de TVA n'est pas défini ne sont pas " +"repris dans le fichier XML." #. module: l10n_be #: field:vat.listing.clients,vat:0 @@ -268,6 +269,8 @@ msgstr "" msgid "" "Select here the period(s) you want to include in your intracom declaration" msgstr "" +"Sélectionnez ici la/les période(s) que vous souhaitez inclure dans votre " +"déclaration de TVA Intracommunautaire." #. module: l10n_be #: field:vat.listing.clients,amount:0 @@ -282,7 +285,7 @@ msgstr "vat.listing.clients" #. module: l10n_be #: view:l1on_be.vat.declaration:0 msgid "Is Last Declaration" -msgstr "" +msgstr "Est la dernière déclaration" #. module: l10n_be #: model:ir.model,name:l10n_be.model_partner_vat @@ -292,12 +295,12 @@ msgstr "partner.vat" #. module: l10n_be #: field:l1on_be.vat.declaration,client_nihil:0 msgid "Last Declaration of Enterprise" -msgstr "" +msgstr "Dernière déclaration de la société" #. module: l10n_be #: help:l1on_be.vat.declaration,ask_payment:0 msgid "It indicates whether a payment is to made or not?" -msgstr "" +msgstr "Indique si un paiement doit être effectué ou non." #. module: l10n_be #: code:addons/l10n_be/wizard/l10_be_partner_vat_listing.py:155 @@ -315,7 +318,7 @@ msgstr "Déclarations Belges" #. module: l10n_be #: model:ir.actions.act_window,name:l10n_be.action_vat_intra msgid "Partner Vat Intra" -msgstr "" +msgstr "Déclaration de TVA Intracommunautaire par Partenaire" #. module: l10n_be #: field:vat.listing.clients,turnover:0 @@ -338,7 +341,7 @@ msgstr "" #. module: l10n_be #: view:l1on_be.vat.declaration:0 msgid "Save xml" -msgstr "" +msgstr "Sauvegarder le xml" #. module: l10n_be #: field:partner.vat,mand_id:0 @@ -366,6 +369,15 @@ msgid "" " YYYY stands for the year (4 positions).\n" " " msgstr "" +"C'est ici que vous devez saisir le code de la période pour la déclaration de " +"TVA intracommunautaire en utilisant le format : ppyyyy\n" +" PP peut indiquer le mois : de \"01\" à \"12\".\n" +" PP peut indiquer un trimestre : \"31\", \"32\", \"33\", \"34\"\n" +" Où le premier chiffre (3) indique qu'il s'agit d'un trimestre,\n" +" Et le second chiffre (1 à 4) indique le numéro de trimestre.\n" +" PP pour un exercice complet : '00'.\n" +" YYYY indique l'année (codée sur 4 chiffres).\n" +" " #. module: l10n_be #: field:l1on_be.vat.declaration,name:0 @@ -378,7 +390,7 @@ msgstr "Nom du fichier" #: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:95 #, python-format msgid "Wrong Period Code" -msgstr "" +msgstr "Code de période incorrect" #. module: l10n_be #: field:partner.vat,fyear:0 @@ -388,7 +400,7 @@ msgstr "Année Fiscale" #. module: l10n_be #: model:ir.model,name:l10n_be.model_l1on_be_vat_declaration msgid "Vat Declaration" -msgstr "" +msgstr "Déclaration de TVA" #. module: l10n_be #: view:partner.vat.intra:0 @@ -412,6 +424,8 @@ msgstr "Information Générale" msgid "" "You can remove clients/partners which you do not want to show in xml file" msgstr "" +"Vous pouvez enlever les clients/partenaires que vous ne voulez pas afficher " +"dans le fichier xml" #. module: l10n_be #: view:partner.vat.list:0 @@ -424,22 +438,22 @@ msgstr "" #. module: l10n_be #: view:partner.vat.intra:0 msgid "Create an XML file for Vat Intra" -msgstr "" +msgstr "Génère un fichier XML de déclaration de TVA Intracommunautaire." #. module: l10n_be #: field:partner.vat.intra,period_code:0 msgid "Period Code" -msgstr "" +msgstr "Code de la période" #. module: l10n_be #: field:l1on_be.vat.declaration,ask_payment:0 msgid "Ask Payment" -msgstr "" +msgstr "Demander le paiement" #. module: l10n_be #: view:partner.vat:0 msgid "View Client" -msgstr "" +msgstr "Voir le client" #. module: l10n_be #: view:partner.vat:0 @@ -457,7 +471,7 @@ msgstr "Fermer" #: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:125 #, python-format msgid "Please select at least one Period." -msgstr "" +msgstr "Sélectionnez au moins une période." #. module: l10n_be #: model:ir.module.module,description:l10n_be.module_meta_information @@ -507,7 +521,7 @@ msgstr "Numéro de TVA Intra du Partenaire" #. module: l10n_be #: field:partner.vat.intra,period_ids:0 msgid "Period (s)" -msgstr "" +msgstr "Période(s)" #~ msgid "Error ! You can not create recursive Tax Codes." #~ msgstr "Erreur ! Vous ne pouvez pas créer de codes de taxe récursifs" diff --git a/addons/l10n_de/i18n/es.po b/addons/l10n_de/i18n/es.po index 8a9180a1cc5..ba676580f50 100644 --- a/addons/l10n_de/i18n/es.po +++ b/addons/l10n_de/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.6\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-15 15:05+0000\n" -"PO-Revision-Date: 2011-01-10 11:51+0000\n" +"PO-Revision-Date: 2011-01-11 07:56+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_de @@ -26,40 +26,40 @@ msgstr "Clientes en el extranjero" #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_no_id_sale_skr03 #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_no_id_sale_skr04 msgid "Kunde EU (ohne USt-ID)" -msgstr "" +msgstr "Cliente particular intracomunitario (sin NIF)" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_purchase_skr03 #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_purchase_skr04 msgid "Lieferant Ausland" -msgstr "" +msgstr "Proveedor extranjero" #. module: l10n_de #: model:ir.module.module,shortdesc:l10n_de.module_meta_information msgid "Deutschland - SKR03 and SKR04" -msgstr "" +msgstr "Alemania - SKR03 y SKR04" #. module: l10n_de #: model:ir.module.module,description:l10n_de.module_meta_information msgid "" "Dieses Modul beinhaltet einen deutschen Kontenrahmen basierend auf dem " "SKR03." -msgstr "" +msgstr "Este módulo provee un plan contable alemán basado en la SKR03" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_vat_id_purchase_skr03 #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_vat_id_purchase_skr04 msgid "Lieferant EU Unternehmen (mit USt-ID)" -msgstr "" +msgstr "Proveedor intracomunitario (con NIF)" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_no_id_purchase_skr03 #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_no_id_purchase_skr04 msgid "Lieferant EU (ohne Ust-ID)" -msgstr "" +msgstr "Proveedor particular intracomunitario (sin NIF)" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_vat_id_sale_skr03 #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_eu_vat_id_sale_skr04 msgid "Kunde EU Unternehmen (mit USt-ID)" -msgstr "" +msgstr "Cliente intracomunitario (con NIF)" diff --git a/addons/l10n_ma/i18n/es.po b/addons/l10n_ma/i18n/es.po index ccd657dae2d..78e35226e49 100644 --- a/addons/l10n_ma/i18n/es.po +++ b/addons/l10n_ma/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:57+0000\n" -"PO-Revision-Date: 2011-01-10 13:51+0000\n" +"PO-Revision-Date: 2011-01-11 14:03+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_ma @@ -52,6 +52,11 @@ msgid "" "cumulatif...). L'intégration comptable a été validé avec l'aide du Cabinet " "d'expertise comptable Seddik au cours du troisième trimestre 2010" msgstr "" +"Este módulo instala la plantilla del plan de cuentas estándar de Marruecos, " +"y permite generar los estados contables de las normas marroquíes (Balance, " +"CPC (cuentas de productos y cargos), balance general a 6 columnas, Libro " +"major acumulativo...) La integración contable ha sido validada por el " +"gabinete de expertos contables Seddik en el tercer trimestre de 2010" #. module: l10n_ma #: field:l10n.ma.report,line_ids:0 diff --git a/addons/mail_gateway/i18n/pt.po b/addons/mail_gateway/i18n/pt.po index d3d64177252..1d6041daa8d 100644 --- a/addons/mail_gateway/i18n/pt.po +++ b/addons/mail_gateway/i18n/pt.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mail_gateway diff --git a/addons/marketing_campaign_crm_demo/i18n/de.po b/addons/marketing_campaign_crm_demo/i18n/de.po index 9900be0fc7d..de6f350748a 100644 --- a/addons/marketing_campaign_crm_demo/i18n/de.po +++ b/addons/marketing_campaign_crm_demo/i18n/de.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/es.po b/addons/marketing_campaign_crm_demo/i18n/es.po index 78664da460f..0d8a39d39ef 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es.po +++ b/addons/marketing_campaign_crm_demo/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 12:06+0000\n" +"PO-Revision-Date: 2011-01-11 13:59+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: marketing_campaign_crm_demo @@ -202,7 +202,7 @@ msgstr "Acción de simulacro" #. module: marketing_campaign_crm_demo #: model:ir.module.module,shortdesc:marketing_campaign_crm_demo.module_meta_information msgid "marketing_campaign_crm_demo" -msgstr "" +msgstr "marketing_campaign_crm_demo" #. module: marketing_campaign_crm_demo #: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_7 diff --git a/addons/membership/i18n/fr.po b/addons/membership/i18n/fr.po index 666d66d7bea..6bf24a54ee4 100644 --- a/addons/membership/i18n/fr.po +++ b/addons/membership/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-05 09:46+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2011-01-11 14:46+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:46+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: membership @@ -383,6 +384,20 @@ msgid "" "invoice and send propositions for membership renewal.\n" " " msgstr "" +"\n" +"Ce module vous permet de gérer toutes les opérations pour gérer les " +"adhésions.\n" +"Il supporte différents types de membres :\n" +"* Membre d'honneur\n" +"* Membre associé (ex : un groupe souscrit à une adhésion pour toutes les " +"filiales)\n" +"* Membre classique,\n" +"* Membre à tarif spécial, ...\n" +"\n" +"Il est intégré avec les ventes et la comptabilité pour vous permettre de " +"facturer \n" +"et d'envoyer les propositions de renouvellement d'adhésion automatiquement.\n" +" " #. module: membership #: model:ir.model,name:membership.model_account_invoice_line diff --git a/addons/mrp/i18n/de.po b/addons/mrp/i18n/de.po index 2821a9e05c2..0c91c391c64 100644 --- a/addons/mrp/i18n/de.po +++ b/addons/mrp/i18n/de.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp diff --git a/addons/mrp/i18n/es.po b/addons/mrp/i18n/es.po index faa0bd5553d..b166c15b200 100644 --- a/addons/mrp/i18n/es.po +++ b/addons/mrp/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 11:58+0000\n" -"Last-Translator: Borja López Soilán \n" +"PO-Revision-Date: 2011-01-11 21:25+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp @@ -1156,6 +1156,13 @@ msgid "" "materials have been defined, OpenERP is capable of automatically deciding on " "the manufacturing route depending on the needs of the company." msgstr "" +"Las órdenes de fabricación describen las operaciones que deben ser " +"realizadas y las materias primas necesarias para cada etapa de fabricación. " +"Utilice las especificaciones (listas de materiales o LdM) para obtener las " +"necesidades de materias primas y las órdenes de fabricación necesarias para " +"los productos finales. Una vez las listas de materiales hayan sido " +"definidas, OpenERP es capz de decidir automáticamente al ruta de fabricación " +"en función de las necesidades de la compañía." #. module: mrp #: constraint:mrp.production:0 @@ -1269,6 +1276,10 @@ msgid "" "They are attached to bills of materials that will define the required raw " "materials." msgstr "" +"Las rutas le permiten crear y gestionar las operaciones de fabricación a " +"realizar en sus centros de producción para fabricar un producto. Están " +"relacionadas con las listas de materiales que definirán las materias primas " +"necesarias." #. module: mrp #: field:report.workcenter.load,hour:0 @@ -1502,7 +1513,7 @@ msgstr "Producto consumido" #. module: mrp #: view:mrp.production:0 msgid "Pending" -msgstr "" +msgstr "Pendiente" #. module: mrp #: field:mrp.bom,active:0 @@ -2228,6 +2239,9 @@ msgid "" "master bills of materials. Use this menu to search in which BoM a specific " "component is used." msgstr "" +"Los componente de listas de materiales son componentes y sub-productos " +"utilizados para crear listas de materiales maestras. Utilice este menú para " +"buscar en qué LdM es utilizado un componente específico." #. module: mrp #: selection:mrp.production.order,month:0 diff --git a/addons/mrp/i18n/fr.po b/addons/mrp/i18n/fr.po index 3f13624d8d3..af660c5b0f4 100644 --- a/addons/mrp/i18n/fr.po +++ b/addons/mrp/i18n/fr.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 01:18+0000\n" +"PO-Revision-Date: 2011-01-11 21:35+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp @@ -49,6 +49,12 @@ msgid "" "raw materials (stock decrease) and the production of the finished products " "(stock increase) when the order is processed." msgstr "" +"Les ordres de production sont généralement proposé automatiquement par " +"OpenERP en fonction des nomenclatures et des règles d'approvisionnement, " +"mais vous pouvez également créer manuellement des ordres de production. " +"OpenERP s'occupe de la consommation des matières premières (diminution du " +"stock) et de la production des produits finis (augmentation du stock) " +"lorsque l'ordre est terminé." #. module: mrp #: help:mrp.production,location_src_id:0 @@ -501,6 +507,8 @@ msgid "" "Define specific property groups that can be assigned to the properties of " "your bill of materials." msgstr "" +"Définir des groupes de propriété spécifiques qui peuvent être affectés aux " +"propriétés de votre nomenclature." #. module: mrp #: model:process.transition,name:mrp.process_transition_bom0 @@ -702,6 +710,10 @@ msgid "" "operations and to plan future loads on work centers based on production " "plannification." msgstr "" +"La liste d'opérations (liste des postes de charge) pour produire le produit " +"fini. La gamme est principalement utilisée pour calculer les coûts des " +"postes de charge pendant les opérations et pour planifier leur charge future " +"à partir du planning de production." #. module: mrp #: help:mrp.workcenter,time_cycle:0 @@ -1065,6 +1077,8 @@ msgstr "Sur stock" msgid "" "Gives the sequence order when displaying a list of routing work centers." msgstr "" +"Indique l'ordre de séquence quand on affiche la liste des postes de charge " +"de la gamme." #. module: mrp #: report:bom.structure:0 @@ -1160,6 +1174,12 @@ msgid "" "materials have been defined, OpenERP is capable of automatically deciding on " "the manufacturing route depending on the needs of the company." msgstr "" +"Les ordres de fabrication décrivent les opérations à effectuer et les " +"matières premières à utiliser pour chaque étape de la production. On utilise " +"des spécifications (nomenclature) pour déterminer les besoins en matières " +"premières et les ordres de fabrication nécessaires pour les produits finis. " +"Une fois que les nomenclatures ont été définies, OpenERP peut décider " +"automatiquement de la gamme de fabrication selon les besoins de la société." #. module: mrp #: constraint:mrp.production:0 @@ -1209,6 +1229,43 @@ msgid "" " * List of procurement in exception\n" " " msgstr "" +"\n" +" Ceci est le module de base d'OpenERP pour gérer le processus de " +"fabrication.\n" +"\n" +" Fonctionnalités:\n" +" * Fabrication pour stock/ Fabrication à la commande (par ligne)\n" +" * Nomenclatures multi-niveaux, sans limitation\n" +" * Gammes multi-niveaux, sans limitation\n" +" * Gammes et postes de charge intégrés dans la comptabilité analytique\n" +" * Calcul de planification périodique / module \"Juste à temps\"\n" +" * Multi-point de vente, multi-entrepôt\n" +" * Différentes stratégies d'ordonnancement\n" +" * Méthode de calcul du coût par produit : prix standard, prix moyen\n" +" * Analyse facile des incidents ou des besoins\n" +" * Très flexible\n" +" * Permet de consulter les nomenclatures en intégralité,\n" +" y compris les nomenclatures filles et les nomenclatures fantômes\n" +" Il prend en charge l'intégration complète et la planification des biens " +"stockables,\n" +" et consommables, des services. Les services sont complètement intégrés " +"avec le reste\n" +" du logiciel. On peut, par exemple, mettre en place un service de sous-" +"traitance\n" +" dans une nomenclature pour commander automatiquement l'assemblage d'une " +"produit à réception de la commande client.\n" +"\n" +" Rapports fournis par ce module:\n" +" * Structure des nomenclatures et composants\n" +" * Prévision de la charge des postes\n" +" * Impression d'un ordre de fabrication\n" +" * Prévision des stock\n" +" Tableaux de bord fournis par ce module:\n" +" * Liste des prochains ordres de fabrication\n" +" * Liste des livraisons (expéditions à préparer)\n" +" * Graphique de la charge des postes\n" +" * Liste des approvisionnements ayant subit un incident\n" +" " #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_production_action4 @@ -1273,6 +1330,10 @@ msgid "" "They are attached to bills of materials that will define the required raw " "materials." msgstr "" +"Les gammes permettent de créer et de gérer les opérations de fabrication à " +"suivre au sein de vos postes de charge afin de produire les produit. Elles " +"sont rattachées aux nomenclatures qui définissent les matières premières " +"nécessaires." #. module: mrp #: field:report.workcenter.load,hour:0 @@ -1422,6 +1483,12 @@ msgid "" "product needs. You can either create a bill of materials to define specific " "production steps or define a single multi-level bill of materials." msgstr "" +"Les nomenclatures maîtresses permettent de créer et de gérer la liste des " +"matières premières nécessaires à fabriquer un produit fini. OpenERP utilise " +"ces nomenclatures pour proposer automatiquement des ordres de fabrication " +"selon les besoins en produit. On peut soit créer une nomenclature pour " +"définir des étapes de production spécifiques, soit définir une nomenclature " +"multi-niveaux unique." #. module: mrp #: model:process.transition,note:mrp.process_transition_stockrfq0 @@ -1679,6 +1746,9 @@ msgid "" "of one or more persons and/or machines that can be considered as a unit for " "capacity and planning forecasting." msgstr "" +"Les postes de charge permettent de créer et gérer des unités de fabrication " +"composés d'une ou plusieurs personnes et/ou machines, à considérer comme un " +"tout dans les prévisions de capacité et la planification." #. module: mrp #: view:mrp.production:0 @@ -1751,6 +1821,10 @@ msgid "" "operations and to plan future loads on work centers based on production " "planning." msgstr "" +"La liste des opérations (liste des postes de charge) pour produire le " +"produit fini. La gamme est principalement utilisée pour calculer les coûts " +"des postes de charge pendant les opérations et pour planifier leur charge " +"future en fonction du planning de production." #. module: mrp #: view:change.production.qty:0 @@ -1963,6 +2037,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the bills of " "material without removing it." msgstr "" +"Si le champ \"Actif\" est renseigné comme Faux, cela vous permettra de " +"cacher la nomenclature sans la supprimer." #. module: mrp #: field:mrp.bom,product_rounding:0 @@ -1981,6 +2057,8 @@ msgid "" "This reporting allows you to analyse your manufacturing activities and " "performance." msgstr "" +"Ce rapport permet d'analyser vos activités de fabrication et leur " +"performance." #. module: mrp #: selection:mrp.product.produce,mode:0 @@ -2001,6 +2079,12 @@ msgid "" "product, it will be sold and shipped as a set of components, instead of " "being produced." msgstr "" +"Si un sous-produit est utilisé par plusieurs produits, il peut être utile de " +"créer sa propre nomenclature. Néanmoins si vous ne voulez pas d'ordres de " +"production séparés pour ce sous-produit, sélectionnez \"Ensemble/Fantôme\" " +"comme type de nomenclature. Si une nomenclature fantôme est utilisée pour un " +"produit racine, il sera vendu et expédié comme un ensemble de composants, au " +"lieu d'être produit." #. module: mrp #: field:mrp.bom,method:0 @@ -2198,6 +2282,9 @@ msgid "" "master bills of materials. Use this menu to search in which BoM a specific " "component is used." msgstr "" +"Les composants des nomenclatures sont les composants et les sous-produits " +"utilisés pour générer les nomenclatures maîtresses. Utilisez ce menu pour " +"chercher dans quelle nomenclature un composant particulier est utilisé." #. module: mrp #: selection:mrp.production.order,month:0 @@ -2237,6 +2324,9 @@ msgid "" "Routing is indicated then,the third tab of a production order (workcenters) " "will be automatically pre-completed." msgstr "" +"La gamme indique tous les postes de charge utilisés, la durée et/ou le " +"nombre de cycles. Quand \"Gamme\" est indiqué, le troisième onglet des " +"ordres de fabrication (postes de charge) est automatiquement pré-rempli." #. module: mrp #: model:ir.model,name:mrp.model_mrp_bom_revision @@ -2305,6 +2395,12 @@ msgid "" "sales person creates a sales order, he can relate it to several properties " "and OpenERP will automatically select the BoM to use according the the needs." msgstr "" +"Dans OpenERP, les Propriétés sont utilisées pour sélectionner la bonne liste " +"de composants pour fabriquer un produit lorsque différentes façons de le " +"fabriquer ont été décrites. On peut attribuer plusieurs propriétés à chaque " +"liste de composants. Quand un membre du service commercial génère un bon de " +"commande, il peut le rarattacher à plusieurs propriétés et OpenERP " +"sélectionnera automatiquement la nomenclature à utiliser selon les besoins." #. module: mrp #: view:mrp.production.order:0 @@ -2435,7 +2531,7 @@ msgstr "Temps en heures pour le nettoyage." #. module: mrp #: model:process.transition,name:mrp.process_transition_purchaseprocure0 msgid "Automatic RFQ" -msgstr "" +msgstr "Demande de prix automatique" #. module: mrp #: model:process.transition,note:mrp.process_transition_servicemto0 @@ -2482,7 +2578,7 @@ msgstr "Séquence" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_view_resource_calendar_leaves_search_mrp msgid "Resource Leaves" -msgstr "" +msgstr "Congés de la ressource" #. module: mrp #: help:mrp.bom,sequence:0 diff --git a/addons/mrp_jit/i18n/fr.po b/addons/mrp_jit/i18n/fr.po index e4aee986ad9..0b5ba0b3c3b 100644 --- a/addons/mrp_jit/i18n/fr.po +++ b/addons/mrp_jit/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-11-30 16:31+0000\n" -"Last-Translator: Numérigraphe \n" +"PO-Revision-Date: 2011-01-11 14:48+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:29+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_jit @@ -46,6 +47,27 @@ msgid "" " \n" " " msgstr "" +"\n" +" Ce module calcule en \"Juste à Temps\" (Just In Time) les ordres " +"d'approvisionnement.\n" +"\n" +" Installer ce module évite le lancement périodique du planificateur des " +"approvisionnements\n" +" (il restera cependant nécessaire de lancer le planificateur de la règle " +"de l'approvisionnement minimum\n" +" ou par exemple le lancer quotidiennement.)\n" +" Tous les ordres d'approvisionnement seront traités immédiatement, ce " +"qui pourrait dans certains\n" +" cas avoir une petite influence sur les performances.\n" +"\n" +" Cela peut aussi gonfler les stocks, car les produits sont réservés dès\n" +" que possible et car l'intervalle de temps de l'ordonnanceur n'est plus " +"pris en compte.\n" +" Dans ce cas, on ne peut plus utiliser les priorités sur les " +"transferts.\n" +" \n" +" \n" +" " #~ msgid "The name of the module must be unique !" #~ msgstr "Le nom du module doit être unique !" diff --git a/addons/mrp_jit/i18n/hu.po b/addons/mrp_jit/i18n/hu.po index a2c438b6c3b..53206213a75 100644 --- a/addons/mrp_jit/i18n/hu.po +++ b/addons/mrp_jit/i18n/hu.po @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2009-04-10 14:08+0000\n" -"Last-Translator: <>\n" +"PO-Revision-Date: 2011-01-11 17:12+0000\n" +"Last-Translator: NOVOTRADE RENDSZERHÁZ \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:29+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information msgid "MRP JIT" -msgstr "" +msgstr "MRP JIT" #. module: mrp_jit #: model:ir.module.module,description:mrp_jit.module_meta_information diff --git a/addons/mrp_operations/i18n/es.po b/addons/mrp_operations/i18n/es.po index 15f2885747e..e3df783c830 100644 --- a/addons/mrp_operations/i18n/es.po +++ b/addons/mrp_operations/i18n/es.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-28 09:07+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" +"PO-Revision-Date: 2011-01-11 07:40+0000\n" +"Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:21+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_operations @@ -275,6 +274,11 @@ msgid "" "different impacts on the costs of manufacturing and planning depending on " "the available workload." msgstr "" +"Para fabricar o ensamblar productos, y usar materias primas y productos " +"acabados también debe controlar las operaciones de fabricación. Las " +"operaciones de fabricación a menudo se llaman órdenes de trabajo. Las " +"diferentes intervenciones tendrán diferentes impactos en los costes de " +"fabricación y la planificación en función de la carga de trabajo disponible." #. module: mrp_operations #: field:mrp_operations.operation,order_date:0 diff --git a/addons/mrp_operations/i18n/fr.po b/addons/mrp_operations/i18n/fr.po index bb1266f2c14..2f9c197d95b 100644 --- a/addons/mrp_operations/i18n/fr.po +++ b/addons/mrp_operations/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 18:06+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 14:51+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_operations @@ -471,6 +472,36 @@ msgid "" "\n" " " msgstr "" +"\n" +" Ce module ajoute un état, une date de démarrage et une date de fin dans " +"les lignes\n" +"d'opérations des ordres de production (dans l'onglet \"Poste de charge\")\n" +"États : brouillon, confirmée, terminée, annulée\n" +"Quand vous terminez/confirmez, annulez des ordres de production, cela " +"modifie l'état des lignes en fonction de l'état\n" +"Crée les menus :\n" +"Gestion de la production > Toutes les opérations\n" +"Gestion de la production > Toutes les opérations > Opérations à faire (état " +"= \"confirmée)\n" +"qui est une vue des lignes \"Postes de charge\" dans les ordres de " +"production,\n" +"en vue liste éditable\n" +"\n" +"Ajoute des boutons dans la vue formulaire de l'ordre de production sous " +"l'onglet 'Poste de charge' :\n" +"* Démarrer (passe l'état à \"Confirmée\"), rempli la date de démarrage\n" +"* Terminer (passe l'état à \"Terminée\"), rempli la date de fin\n" +"* Mettre en brouillon (passe l'état à \"Brouillon\")\n" +"* Annuler (passe l'état à \"Annulée\")\n" +"\n" +"Quand l'ordre de production devient \"Prêt à produire\", les opérations\n" +"deviennent \"Confirmée\". Quand l'ordre de production est terminé, toutes\n" +"les opérations deviennent terminées.\n" +"\n" +"Le champ \"Délai\" est le délai (date de fin - date de démarrage).\n" +"Donc vous pouvez comparer le délai théorique et le délai réel.\n" +"\n" +" " #. module: mrp_operations #: selection:mrp.workorder,month:0 diff --git a/addons/mrp_repair/i18n/es.po b/addons/mrp_repair/i18n/es.po index 59610e04fed..02b06727794 100644 --- a/addons/mrp_repair/i18n/es.po +++ b/addons/mrp_repair/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-29 10:33+0000\n" +"PO-Revision-Date: 2011-01-11 07:33+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_repair @@ -62,6 +62,12 @@ msgid "" "date on the production lot in order to know if whether the repair should be " "invoiced to the customer or not." msgstr "" +"Las órdenes de reparación le permiten organizar sus reparaciones del " +"producto. En una orden de reparación, puede detallar los componentes que " +"elimina, añade o sustituye y registrar el tiempo que consumido en las " +"diferentes operaciones. La orden de reparación utiliza la fecha de garantía " +"de el lote de producción para saber si la reparación debe ser facturada al " +"cliente o no." #. module: mrp_repair #: view:mrp.repair:0 diff --git a/addons/mrp_repair/i18n/fr.po b/addons/mrp_repair/i18n/fr.po index bdb36399a1c..90620208411 100644 --- a/addons/mrp_repair/i18n/fr.po +++ b/addons/mrp_repair/i18n/fr.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-21 01:46+0000\n" +"PO-Revision-Date: 2011-01-11 14:53+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_repair @@ -63,6 +63,12 @@ msgid "" "date on the production lot in order to know if whether the repair should be " "invoiced to the customer or not." msgstr "" +"Les ordres de réparation permettent d'organiser la réparation de vos " +"produits. Dans un ordre de réparation, on peut détailler les composants à " +"enlever, à ajouter ou à remplacer et enregistrer les temps passés sur les " +"différentes opérations. L'ordre de réparation utilise la date de garantie " +"présente sur le lot de production pour savoir si la réparation doit être " +"facturée au client ou non." #. module: mrp_repair #: view:mrp.repair:0 @@ -171,6 +177,15 @@ msgid "" " * Repair quotation report\n" " * Notes for the technician and for the final customer\n" msgstr "" +"\n" +" Le but est d'avoir un module complet pour gérer les réparations " +"de produits. Les sujets suivants sont couverts par ce module :\n" +" * Ajout/suppression de produits dans la réparation\n" +" * Impact sur les stocks\n" +" * Facturation (produits et/ou services)\n" +" * Concept de garantie\n" +" * Rapport de devis de réparation\n" +" * Notes pour le technicien et pour le client final\n" #. module: mrp_repair #: field:mrp.repair,amount_tax:0 diff --git a/addons/mrp_subproduct/i18n/fr.po b/addons/mrp_subproduct/i18n/fr.po index 0be7ccf1c2d..777c9cf1462 100644 --- a/addons/mrp_subproduct/i18n/fr.po +++ b/addons/mrp_subproduct/i18n/fr.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-21 06:54+0000\n" +"PO-Revision-Date: 2011-01-11 14:53+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_subproduct @@ -84,6 +84,15 @@ msgid "" " A + B + C -> D + E\n" " " msgstr "" +"\n" +"Ce module vous permet de produire divers produits à partir d'un seul ordre " +"de production.\n" +"Vous pouvez configurer des sous-produits dans la nomenclature.\n" +"Sans ce module :\n" +" A + B + C -> D\n" +"Avec ce module :\n" +" A + B + C -> D + E\n" +" " #. module: mrp_subproduct #: field:mrp.subproduct,product_uom:0 diff --git a/addons/multi_company/i18n/fr.po b/addons/multi_company/i18n/fr.po index 8b08ae49a2c..4ad44d6c33f 100644 --- a/addons/multi_company/i18n/fr.po +++ b/addons/multi_company/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-08 15:21+0000\n" +"PO-Revision-Date: 2011-01-11 16:49+0000\n" "Last-Translator: Quentin THEURET \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: multi_company diff --git a/addons/pad/i18n/de.po b/addons/pad/i18n/de.po index 7d275a48bac..df2cfa4fe25 100644 --- a/addons/pad/i18n/de.po +++ b/addons/pad/i18n/de.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: pad diff --git a/addons/pad/i18n/fr.po b/addons/pad/i18n/fr.po index 78432a5074e..23f2084998f 100644 --- a/addons/pad/i18n/fr.po +++ b/addons/pad/i18n/fr.po @@ -8,13 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-09 12:02+0000\n" -"Last-Translator: lolivier \n" +"PO-Revision-Date: 2011-01-11 14:55+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:19+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: pad @@ -60,6 +61,13 @@ msgid "" "(by default, pad.openerp.com)\n" " " msgstr "" +"\n" +"Ajoute le support amélioré des pièces jointes (Ether)pad dans le client web, " +"permet à\n" +"la société de personnaliser quelle installation de Pad doit être utilisée " +"pour y\n" +"relier les nouveaux pads (par défaut, pad.openerp.com)\n" +" " #. module: pad #: field:res.company,pad_index:0 diff --git a/addons/point_of_sale/i18n/es.po b/addons/point_of_sale/i18n/es.po index 9a7ad9cb711..e74d80ba97c 100644 --- a/addons/point_of_sale/i18n/es.po +++ b/addons/point_of_sale/i18n/es.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-29 08:32+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" +"PO-Revision-Date: 2011-01-11 21:41+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:48+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: point_of_sale @@ -146,7 +145,7 @@ msgstr "IVA" #. module: point_of_sale #: report:pos.invoice:0 msgid "Origin" -msgstr "" +msgstr "Origen" #. module: point_of_sale #: report:pos.invoice:0 @@ -841,7 +840,7 @@ msgstr "Fecha de apertura" #. module: point_of_sale #: report:pos.lines:0 msgid "Taxes :" -msgstr "" +msgstr "Impuestos :" #. module: point_of_sale #: field:report.transaction.pos,disc:0 @@ -921,7 +920,7 @@ msgstr "Fecha final" #. module: point_of_sale #: report:pos.invoice:0 msgid "Your Reference" -msgstr "" +msgstr "Su referencia" #. module: point_of_sale #: field:report.transaction.pos,no_trans:0 @@ -1627,7 +1626,7 @@ msgstr "El registro de caja debe estar abierto para poder efectuar un pago." #. module: point_of_sale #: report:pos.lines:0 msgid "Net Total :" -msgstr "" +msgstr "Total neto :" #. module: point_of_sale #: view:product.product:0 diff --git a/addons/point_of_sale/i18n/fr.po b/addons/point_of_sale/i18n/fr.po index e86cfe9ae44..5bd665ac231 100644 --- a/addons/point_of_sale/i18n/fr.po +++ b/addons/point_of_sale/i18n/fr.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-08 21:55+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-11 22:02+0000\n" +"Last-Translator: lolivier \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:52+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: point_of_sale @@ -2025,7 +2024,7 @@ msgstr "Non" #. module: point_of_sale #: field:pos.order.line,notice:0 msgid "Discount Notice" -msgstr "" +msgstr "Note de remise" #. module: point_of_sale #: view:pos.scan.product:0 diff --git a/addons/point_of_sale/i18n/it.po b/addons/point_of_sale/i18n/it.po index fd642b7cf19..a8688bbe52e 100644 --- a/addons/point_of_sale/i18n/it.po +++ b/addons/point_of_sale/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 20:02+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2011-01-11 19:49+0000\n" +"Last-Translator: scigghia \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:58+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: point_of_sale @@ -29,7 +29,7 @@ msgstr "Vendite per giorno" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_confirm msgid "Point of Sale Confirm" -msgstr "" +msgstr "Conferma Punto Vendita" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_discount @@ -45,7 +45,7 @@ msgstr "Imposta a Bozza" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 msgid "Product Nb." -msgstr "" +msgstr "Nr. Prodotto" #. module: point_of_sale #: model:ir.module.module,shortdesc:point_of_sale.module_meta_information @@ -60,12 +60,12 @@ msgstr "Oggi" #. module: point_of_sale #: view:pos.add.product:0 msgid "Add product :" -msgstr "Aggiungi Prodotto" +msgstr "Aggiungi Prodotto:" #. module: point_of_sale #: view:all.closed.cashbox.of.the.day:0 msgid "All Cashboxes Of the day :" -msgstr "" +msgstr "Tutti gli incassi del giorno:" #. module: point_of_sale #: view:pos.box.entries:0 @@ -150,7 +150,7 @@ msgstr "Origine" #. module: point_of_sale #: report:pos.invoice:0 msgid "Tax" -msgstr "Tassa" +msgstr "Imposta" #. module: point_of_sale #: view:report.transaction.pos:0 @@ -161,6 +161,7 @@ msgstr "Totale Transazione" #: help:account.journal,special_journal:0 msgid "Will put all the orders in waiting status till being accepted" msgstr "" +"Metterà tutti gli ordini in stato di attesa, finché non saranno accettati" #. module: point_of_sale #: report:account.statement:0 @@ -206,7 +207,7 @@ msgstr "Stato" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_payment msgid "Add payment" -msgstr "" +msgstr "Aggiungere pagamento" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_trans_pos_tree_month @@ -230,7 +231,7 @@ msgstr "Sconto (%)" #: field:pos.box.entries,ref:0 #: field:pos.box.out,ref:0 msgid "Ref" -msgstr "Rif." +msgstr "Rif" #. module: point_of_sale #: view:report.pos.order:0 @@ -269,7 +270,7 @@ msgstr "Tipo Prodotto" #: view:pos.order:0 #: view:pos.payment.report.date:0 msgid "Dates" -msgstr "" +msgstr "Date" #. module: point_of_sale #: field:res.company,company_discount:0 @@ -286,7 +287,7 @@ msgstr "Gestione registro di cassa" #: code:addons/point_of_sale/point_of_sale.py:1075 #, python-format msgid "No valid pricelist line found !" -msgstr "" +msgstr "Non è stata trovata nessuna riga valida nel listino!" #. module: point_of_sale #: report:pos.details:0 @@ -296,13 +297,13 @@ msgstr "" #: report:pos.payment.report.user:0 #: report:pos.user.product:0 msgid "[" -msgstr "" +msgstr "[" #. module: point_of_sale #: field:report.sales.by.margin.pos,total:0 #: field:report.sales.by.margin.pos.month,total:0 msgid "Margin" -msgstr "" +msgstr "Margine" #. module: point_of_sale #: field:pos.order.line,discount:0 @@ -317,7 +318,7 @@ msgstr "Quantità Totale" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_sales_by_user_pos_month msgid "Sales by user monthly" -msgstr "" +msgstr "Vendite mensili per utente" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:54 @@ -326,6 +327,8 @@ msgid "" "You can not open a Cashbox for \"%s\".\n" "Please close its related cash register." msgstr "" +"Non si può aprire il Registratore per \"%s\".\n" +"Chiudere il relativo registro di cassa." #. module: point_of_sale #: help:pos.order,user_salesman_id:0 @@ -335,18 +338,18 @@ msgstr "" #. module: point_of_sale #: field:product.product,income_pdt:0 msgid "Product for Input" -msgstr "" +msgstr "Prodotto per entrate" #. module: point_of_sale #: report:pos.details:0 #: report:pos.details_summary:0 msgid "Mode of Payment" -msgstr "" +msgstr "Modalità di pagamento" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_of_sale msgid "Daily Operations" -msgstr "" +msgstr "Operazioni giornaliere" #. module: point_of_sale #: view:account.bank.statement:0 @@ -356,24 +359,24 @@ msgstr "" #. module: point_of_sale #: view:pos.confirm:0 msgid "Are you sure you want to close your sales ?" -msgstr "" +msgstr "Si è sicuri di voler chiudere le proprie vendite?" #. module: point_of_sale #: selection:report.cash.register,month:0 #: selection:report.pos.order,month:0 msgid "August" -msgstr "" +msgstr "Agosto" #. module: point_of_sale #: selection:report.cash.register,month:0 #: selection:report.pos.order,month:0 msgid "June" -msgstr "" +msgstr "Giugno" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_sales_by_user_pos_month msgid "Sales by User Monthly" -msgstr "" +msgstr "Vendite mensili per utente" #. module: point_of_sale #: field:pos.order,date_payment:0 @@ -385,13 +388,13 @@ msgstr "Data di pagamento" #: report:account.statement:0 #: report:all.closed.cashbox.of.the.day:0 msgid "Closing Date" -msgstr "" +msgstr "Data chiusura" #. module: point_of_sale #: selection:report.cash.register,month:0 #: selection:report.pos.order,month:0 msgid "October" -msgstr "" +msgstr "Ottobre" #. module: point_of_sale #: field:account.bank.statement.line,am_out:0 @@ -407,7 +410,7 @@ msgstr "Riepilogo" #. module: point_of_sale #: view:pos.order:0 msgid "Quotations" -msgstr "" +msgstr "Quotazioni" #. module: point_of_sale #: field:report.pos.order,delay_payment:0 @@ -428,11 +431,12 @@ msgstr "Quantità" #: help:account.journal,auto_cash:0 msgid "This field authorize the automatic creation of the cashbox" msgstr "" +"Questo campo autorizza la creazione automatica del Registratore di Cassa" #. module: point_of_sale #: view:account.bank.statement:0 msgid "Period" -msgstr "" +msgstr "Periodo" #. module: point_of_sale #: report:pos.invoice:0 @@ -448,7 +452,7 @@ msgstr "Descrizione Riga" #. module: point_of_sale #: view:product.product:0 msgid "Codes" -msgstr "" +msgstr "Codici" #. module: point_of_sale #: view:pos.box.out:0 @@ -465,7 +469,7 @@ msgstr "" #: view:pos.sales.user.today:0 #: view:pos.sales.user.today.current_user:0 msgid "Print Report" -msgstr "" +msgstr "Stampa" #. module: point_of_sale #: report:pos.invoice:0 @@ -491,12 +495,12 @@ msgstr "" #: model:ir.model,name:point_of_sale.model_pos_add_product #, python-format msgid "Add Product" -msgstr "" +msgstr "Aggiungi prodotto" #. module: point_of_sale #: field:report.transaction.pos,invoice_am:0 msgid "Invoice Amount" -msgstr "" +msgstr "Importo Fattura" #. module: point_of_sale #: view:account.bank.statement:0 @@ -528,7 +532,7 @@ msgstr "Pagamento" #: report:account.statement:0 #: report:all.closed.cashbox.of.the.day:0 msgid "Ending Balance" -msgstr "" +msgstr "Bilancio finale" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.products_for_output_operations @@ -538,7 +542,7 @@ msgstr "" #. module: point_of_sale #: view:pos.payment.report.date:0 msgid "Sale by Date and User" -msgstr "" +msgstr "Vendite per data ed utente" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:69 @@ -558,12 +562,12 @@ msgstr "Modalità Tasse" #: code:addons/point_of_sale/wizard/pos_close_statement.py:48 #, python-format msgid "Cash registers are already closed." -msgstr "" +msgstr "I registri di cassa sono già chiusi." #. module: point_of_sale #: constraint:product.product:0 msgid "Error: Invalid ean code" -msgstr "" +msgstr "Errore: Codice EAN non valido" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_open_statement @@ -575,12 +579,12 @@ msgstr "" #. module: point_of_sale #: view:pos.add.product:0 msgid "Save & New" -msgstr "" +msgstr "Salva & Nuovo" #. module: point_of_sale #: report:pos.details:0 msgid "Sales total(Revenue)" -msgstr "" +msgstr "Vendite totali (Entrate)" #. module: point_of_sale #: report:pos.details:0 @@ -591,7 +595,7 @@ msgstr "Totale pagato" #. module: point_of_sale #: field:account.journal,check_dtls:0 msgid "Check Details" -msgstr "" +msgstr "Controllare i dettagli" #. module: point_of_sale #: report:pos.details:0 @@ -602,13 +606,13 @@ msgstr "Quantità Prodotto" #. module: point_of_sale #: field:pos.order,contract_number:0 msgid "Contract Number" -msgstr "" +msgstr "Numero contratto" #. module: point_of_sale #: selection:report.cash.register,month:0 #: selection:report.pos.order,month:0 msgid "March" -msgstr "" +msgstr "Marzo" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_users_product_re @@ -624,6 +628,8 @@ msgid "" "You have to select a pricelist in the sale form !\n" "Please set one before choosing a product." msgstr "" +"Si deve selezionare un listino nella maschera di vendita!\n" +"Selezionarne uno prima di scegliere un prodotto." #. module: point_of_sale #: view:pos.order:0 @@ -641,29 +647,29 @@ msgstr "" #. module: point_of_sale #: view:account.journal:0 msgid "Extended Configureation" -msgstr "" +msgstr "Configurazione estesa" #. module: point_of_sale #: report:account.statement:0 #: report:all.closed.cashbox.of.the.day:0 msgid "Starting Balance" -msgstr "" +msgstr "Bilancio di apertura" #. module: point_of_sale #: report:pos.payment.report.user:0 msgid "Payment By User" -msgstr "" +msgstr "Pagamenti per utente" #. module: point_of_sale #: field:pos.order,type_rec:0 msgid "Type of Receipt" -msgstr "" +msgstr "Tipo di ricevuta" #. module: point_of_sale #: view:report.pos.order:0 #: field:report.pos.order,nbr:0 msgid "# of Lines" -msgstr "" +msgstr "# di Righe" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_order_accepted @@ -709,7 +715,7 @@ msgstr "Data della creazione" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_sales_user_today msgid "Today's Sales" -msgstr "" +msgstr "Vendite di oggi" #. module: point_of_sale #: view:report.sales.by.margin.pos:0 @@ -737,7 +743,7 @@ msgstr "Fallita la creazione della linea !" #: field:report.sales.by.margin.pos,product_name:0 #: field:report.sales.by.margin.pos.month,product_name:0 msgid "Product Name" -msgstr "" +msgstr "Descrizione Prodotto" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:69 @@ -761,7 +767,7 @@ msgstr "Totale Fatturato" #: view:report.pos.order:0 #: field:report.pos.order,product_qty:0 msgid "# of Qty" -msgstr "" +msgstr "Qtà" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_return @@ -771,7 +777,7 @@ msgstr "" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_sales_by_margin_pos_month msgid "Sales by margin monthly" -msgstr "" +msgstr "Vendite per margine mensile" #. module: point_of_sale #: view:pos.order:0 @@ -780,7 +786,7 @@ msgstr "" #: field:report.sales.by.user.pos,date_order:0 #: field:report.sales.by.user.pos.month,date_order:0 msgid "Order Date" -msgstr "" +msgstr "Data ordine" #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 @@ -802,13 +808,13 @@ msgstr "" #. module: point_of_sale #: field:product.product,expense_pdt:0 msgid "Product for expenses" -msgstr "" +msgstr "Prodotto per spese" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_sales_user_today_current_user #: view:pos.sales.user.today.current_user:0 msgid "Sales for Current User" -msgstr "" +msgstr "Vendite dell'utente attuale" #. module: point_of_sale #: report:pos.invoice:0 @@ -819,18 +825,18 @@ msgstr "Commento Posizione Fiscale:" #: selection:report.cash.register,month:0 #: selection:report.pos.order,month:0 msgid "September" -msgstr "" +msgstr "Settembre" #. module: point_of_sale #: report:account.statement:0 #: report:all.closed.cashbox.of.the.day:0 msgid "Opening Date" -msgstr "" +msgstr "Data apertura" #. module: point_of_sale #: report:pos.lines:0 msgid "Taxes :" -msgstr "" +msgstr "Imposte:" #. module: point_of_sale #: field:report.transaction.pos,disc:0 @@ -850,7 +856,7 @@ msgstr "Righe Ordine Punto Vendita" #. module: point_of_sale #: view:pos.receipt:0 msgid "Receipt :" -msgstr "" +msgstr "Ricevuta:" #. module: point_of_sale #: field:account.bank.statement.line,pos_statement_id:0 @@ -867,12 +873,12 @@ msgstr "Data" #. module: point_of_sale #: view:report.pos.order:0 msgid "Extended Filters..." -msgstr "" +msgstr "Filtri estesi..." #. module: point_of_sale #: field:pos.order,num_sale:0 msgid "Internal Note" -msgstr "" +msgstr "Nota interna" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_res_company @@ -899,18 +905,18 @@ msgstr "" #: code:addons/point_of_sale/wizard/pos_get_sale.py:54 #, python-format msgid "You can't modify this order. It has already been paid" -msgstr "" +msgstr "Non si può modificare quest'ordine. È già stato pagato" #. module: point_of_sale #: field:pos.details,date_end:0 #: field:pos.sale.user,date_end:0 msgid "Date End" -msgstr "" +msgstr "Data Fine" #. module: point_of_sale #: report:pos.invoice:0 msgid "Your Reference" -msgstr "" +msgstr "Vostro riferimento" #. module: point_of_sale #: field:report.transaction.pos,no_trans:0 @@ -942,7 +948,7 @@ msgstr "Vendite (Cronologia)" #. module: point_of_sale #: view:product.product:0 msgid "Information" -msgstr "" +msgstr "Informazione" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_wizard_enter_jrnl @@ -2323,7 +2329,7 @@ msgstr "" #. module: point_of_sale #: view:pos.order:0 msgid "Search Sales Order" -msgstr "" +msgstr "Cerca ordini di vendita" #. module: point_of_sale #: field:pos.order,account_move:0 @@ -2337,7 +2343,7 @@ msgstr "Registrazione Contabile" #: view:pos.order:0 #, python-format msgid "Make Payment" -msgstr "" +msgstr "Pagamento" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_sales_user_today @@ -2351,7 +2357,7 @@ msgstr "" #: view:report.pos.order:0 #: field:report.pos.order,year:0 msgid "Year" -msgstr "" +msgstr "Anno" #~ msgid "," #~ msgstr "," diff --git a/addons/procurement/i18n/es.po b/addons/procurement/i18n/es.po index 97c27161260..bf1b7676b69 100644 --- a/addons/procurement/i18n/es.po +++ b/addons/procurement/i18n/es.po @@ -8,14 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-28 09:19+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" +"PO-Revision-Date: 2011-01-11 21:51+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:34+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: procurement @@ -307,6 +306,13 @@ msgid "" "operations to fullfil the need: purchase order proposition, manufacturing " "order, etc." msgstr "" +"Una orden de abastecimiento se utiliza para registrar una necesidad de un " +"producto específico en una ubicación específica. Una orden de abastecimiento " +"es generalmente creada automáticamente a partir de órdenes de venta, reglas " +"logísticas Pull o regals de stck mínimo. Cuando la orden de abastecimiento " +"es confirmada, crea automáticamente las operaciones necesarias para " +"satisafacer al necesidad: propuesta de orden de compra, orden de fabricaión, " +"etc." #. module: procurement #: field:make.procurement,date_planned:0 diff --git a/addons/procurement/i18n/fr.po b/addons/procurement/i18n/fr.po index b6813f0bacd..4af69c9dcf6 100644 --- a/addons/procurement/i18n/fr.po +++ b/addons/procurement/i18n/fr.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 19:13+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-11 22:14+0000\n" +"Last-Translator: lolivier \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: procurement @@ -239,7 +238,7 @@ msgstr "Ordres d'approvisionnement à traiter" #. module: procurement #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "Erreur ! Vous ne pouvez pas créer de sociétés récursives" +msgstr "Erreur ! Vous ne pouvez pas créer de sociétés récursives." #. module: procurement #: field:procurement.order,priority:0 diff --git a/addons/product/i18n/es.po b/addons/product/i18n/es.po index d7b2a42bfd9..5cf7fc740bf 100644 --- a/addons/product/i18n/es.po +++ b/addons/product/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 12:00+0000\n" -"Last-Translator: Borja López Soilán \n" +"PO-Revision-Date: 2011-01-11 21:56+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product @@ -1072,6 +1072,10 @@ msgid "" "be converted to each other. For example, in the unit of measure category " "\"Time\", you will have the following UoM: Hours, Days." msgstr "" +"Cree y gestione las categorías de unidades de medida que quiera utilizar en " +"su sistema. SI varias unidades de medida están en la misma categoría, pueden " +"ser convertidas entre ellas. Por ejemplo, en al unidad de medida \"Tiempo\", " +"tendrá las sigueinte UdM: horas, días." #. module: product #: selection:product.uom,uom_type:0 diff --git a/addons/product/i18n/fr.po b/addons/product/i18n/fr.po index f273b219b55..06396918d8a 100644 --- a/addons/product/i18n/fr.po +++ b/addons/product/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-09 16:55+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 21:47+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:17+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product @@ -460,6 +461,11 @@ msgid "" "information about your products related to procurement logistics, sales " "price, product category, suppliers and so on." msgstr "" +"Les produits peuvent être achetés et/ou vendus. Ils peuvent être des " +"matières premières, des produits stockables, des consommables ou des " +"services. Le formulaire du produit contient des informations détaillées à " +"propos de vos produits en lien avec les approvisionnements logistiques, les " +"prix de vente, les catégories de produit, les fournisseurs, etc." #. module: product #: view:product.pricelist:0 @@ -541,6 +547,8 @@ msgid "" "Choose here the Unit of Measure in which the prices and quantities are " "expressed below." msgstr "" +"Choisissez ici l'unité de mesure dans laquelle les prix et les quantités " +"sont exprimées ci-dessous." #. module: product #: field:product.price_list,qty4:0 @@ -566,13 +574,19 @@ msgid "" "each version has several rules. Example: the customer price of a product " "category will be based on the supplier price multiplied by 1.80." msgstr "" +"Une liste de prix contient des règles qui vont être évaluées dans le but de " +"calculer le prix d'achat ou de vente pour tous les partenaires auxquelles " +"cette liste de prix est assignée. Les listes de prix ont plusieurs versions " +"(2010, 2011, Promotion de Février 2010, etc.) et chaque version a plusieurs " +"règles. Exemple : le prix de vente d'une catégorie de produit est basé sur " +"le prix du fournisseur multiplié par 1,80." #. module: product #: help:product.product,active:0 msgid "" "If the active field is set to False, it will allow you to hide the product " "without removing it." -msgstr "" +msgstr "Décocher le champ \"Actif\" cache le produit sans le supprimer." #. module: product #: model:product.template,name:product.product_product_metalcleats0_product_template @@ -761,6 +775,9 @@ msgid "" "Product UoM if not empty, in the default unit of measure of the product " "otherwise." msgstr "" +"La quantité minimale pour acheter à ce fournisseur, exprimée dans l'unité de " +"mesure du fournisseur si elle n'est pas vide, ou dans l'unité de mesure par " +"défaut du produit sinon." #. module: product #: view:product.pricelist.item:0 @@ -773,6 +790,8 @@ msgid "" "This price will be considered as a price for the supplier UoM if any or the " "default Unit of Measure of the product otherwise" msgstr "" +"Le prix peut être considéré comme un prix pour l'UdM du fournisseur si elle " +"est définie ou pour l'unité de mesure par défaut sinon." #. module: product #: model:product.category,name:product.product_category_accessories @@ -946,6 +965,9 @@ msgid "" "You can define a conversion rate between several Units of Measure within the " "same category." msgstr "" +"Créer et gérer les unités de mesure que vous voulez que votre système " +"utilise. Vous pouvez définir un taux de conversion entre plusieurs unités de " +"mesure qui ont la même catégorie." #. module: product #: field:product.packaging,weight:0 @@ -1022,6 +1044,9 @@ msgid "" "manage new versions of a price list. Some examples of versions: 2010, 2011, " "Summer Promotion, etc." msgstr "" +"Il peut y avoir plus d'une version d'une liste de prix. Ici, vous pouvez " +"créer et gérer les nouvelles versions de listes de prix. Plusieurs exemples " +"de versions : 2010, 2011, Promotion d'été, etc." #. module: product #: selection:product.template,type:0 @@ -1089,6 +1114,11 @@ msgid "" "be converted to each other. For example, in the unit of measure category " "\"Time\", you will have the following UoM: Hours, Days." msgstr "" +"Créer et gérer les catégories d'unités de mesure que vous voulez que votre " +"système utilise. Si plusieurs unités de mesure appartiennent à la même " +"catégorie, elles peuvent être converties dans une autre. Par exemple, dans " +"la catégorie d'unité de mesure \"Temps\", vous avez les unités suivantes : " +"Heures, Jours." #. module: product #: selection:product.uom,uom_type:0 @@ -1157,6 +1187,12 @@ msgid "" "contains detailed information about your products related to procurement " "logistics, sales price, product category, suppliers and so on." msgstr "" +"Vous devez définir un produit pour tout ce que vous achetez ou vendez. Les " +"produits peuvent être des matières premières, des produits stockables, des " +"consommables ou des services. Le formulaire du produit contient des " +"informations détaillées à propos de vos produits en lien avec les " +"approvisionnements logistiques, les prix de vente, les catégories de " +"produit, les fournisseurs, etc." #. module: product #: model:product.uom,name:product.product_uom_kgm @@ -1268,6 +1304,27 @@ msgid "" " Print product labels with barcode.\n" " " msgstr "" +"\n" +" Ce module est le module de base pour la gestion des produits et des " +"listes de prix dans OpenERP.\n" +"\n" +" Les produits supportent les variantes, différentes méthodes de prix, des " +"informations\n" +" à propos des fournisseurs, les méthodes d'approvisionnement (en stock/à " +"la commande), différentes unités de mesure,\n" +" différents emballages et propriétés.\n" +"\n" +" Les listes de prix supportent :\n" +" * Le multi-niveaux de remise (par produit, par catégorie ou quantités)\n" +" * Le calcul des prix basé sur différents critères :\n" +" * Autre liste de prix,\n" +" * Prix d'achat,\n" +" * Prix de vente,\n" +" * Prix fournisseur, ...\n" +" Les préférences de listes de prix par produit et/ou partenaires.\n" +"\n" +" Impression des étiquettes de produit avec code-barres.\n" +" " #. module: product #: help:product.template,seller_delay:0 @@ -1396,6 +1453,9 @@ msgid "" "gives highest priority to lowest sequence and stops as soon as a matching " "item is found." msgstr "" +"Donne les commandes dans lesquelles les entrées de liste de prix sont " +"vérifiées. L'évaluation donne la plus grande priorité à la séquence la plus " +"petite et arrête dès qu'elle trouve une entrée qui correspond." #. module: product #: selection:product.template,type:0 @@ -1440,6 +1500,9 @@ msgid "" "category to get the list of all products linked to this category or to a " "child of this category." msgstr "" +"Ceci est la liste de tous les produits classés par catégorie. Vous pouvez " +"cliquer sur une catégorie pour obtenir une liste de tous les produits " +"attachés à cette catégorie ou obtenir tous les enfants de cette catégorie." #. module: product #: view:product.product:0 @@ -1458,6 +1521,8 @@ msgid "" "Conversion from Product UoM m to Default UoM PCE is not possible as they " "both belong to different Category!." msgstr "" +"La conversion de l'UdM vers l'UdM par défaut PCE est impossible car elles ne " +"sont pas de la même catégorie !" #. module: product #: field:product.pricelist.version,date_start:0 @@ -1497,6 +1562,7 @@ msgid "" "If the active field is set to False, it will allow you to hide the pricelist " "without removing it." msgstr "" +"Décocher le champ \"Actif\" pour cacher la liste de prix sans la supprimer." #. module: product #: field:product.product,qty_available:0 @@ -1666,6 +1732,9 @@ msgid "" "Set a category of product if this rule only apply to products of a category " "and his children. Keep empty for all products" msgstr "" +"Choisir une catégorie de produits si cette règle s'applique uniquement sur " +"les produits d'une catégorie et ses enfants. Laisser vide pour tous les " +"produits." #. module: product #: model:ir.model,name:product.model_product_product diff --git a/addons/product/i18n/hu.po b/addons/product/i18n/hu.po index 1700eefeba5..4faa3025e45 100644 --- a/addons/product/i18n/hu.po +++ b/addons/product/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-02 10:48+0000\n" +"PO-Revision-Date: 2011-01-11 17:16+0000\n" "Last-Translator: NOVOTRADE RENDSZERHÁZ \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:08+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product @@ -56,7 +56,7 @@ msgstr "Mainboard ASUStek A7V8X-X" #. module: product #: help:product.template,seller_qty:0 msgid "This is minimum quantity to purchase from Main Supplier." -msgstr "" +msgstr "Ez a minimum rendelési darabszám a fő beszállítónál." #. module: product #: model:product.uom,name:product.uom_day @@ -66,7 +66,7 @@ msgstr "Nap" #. module: product #: view:product.product:0 msgid "UoM" -msgstr "" +msgstr "ME" #. module: product #: model:product.template,name:product.product_product_pc2_product_template @@ -105,7 +105,7 @@ msgstr "" #. module: product #: selection:product.template,mes_type:0 msgid "Fixed" -msgstr "" +msgstr "Rögzített" #. module: product #: code:addons/product/pricelist.py:186 @@ -113,7 +113,7 @@ msgstr "" #: code:addons/product/pricelist.py:357 #, python-format msgid "Warning !" -msgstr "" +msgstr "Figyelem !" #. module: product #: model:ir.actions.report.xml,name:product.report_product_pricelist @@ -139,12 +139,13 @@ msgstr "Szabály neve" #: field:product.product,code:0 #: field:product.product,default_code:0 msgid "Reference" -msgstr "" +msgstr "Hivatkozás" #. module: product #: constraint:product.category:0 msgid "Error ! You can not create recursive categories." msgstr "" +"Hiba ! Rekurzív (körkörösen egymásra mutató) kategóriák nem hozhatóak létre." #. module: product #: help:pricelist.partnerinfo,min_quantity:0 @@ -169,6 +170,9 @@ msgid "" "Produce will generate production order or tasks, according to the product " "type. Purchase will trigger purchase orders when requested." msgstr "" +"A 'gyártás' a termék típusától függően gyártási rendelést vagy " +"projektfeladatokat készít. A 'vásárlás' beszerzési rendelést készít ha " +"szükség van a termékre." #. module: product #: selection:product.template,cost_method:0 @@ -331,7 +335,7 @@ msgstr "" #. module: product #: field:product.price_list,qty1:0 msgid "Quantity-1" -msgstr "" +msgstr "Mennyiség-1" #. module: product #: help:product.packaging,ul_qty:0 @@ -341,7 +345,7 @@ msgstr "" #. module: product #: field:product.packaging,qty:0 msgid "Quantity by Package" -msgstr "" +msgstr "Csomagolási mennyiség" #. module: product #: view:product.product:0 @@ -374,7 +378,7 @@ msgstr "Listaár" #. module: product #: field:product.price_list,qty5:0 msgid "Quantity-5" -msgstr "" +msgstr "Mennyiség-5" #. module: product #: model:product.category,name:product.product_category_10 @@ -467,7 +471,7 @@ msgstr "" #. module: product #: field:product.price_list,qty2:0 msgid "Quantity-2" -msgstr "" +msgstr "Mennyiség-2" #. module: product #: field:product.price_list,qty3:0 @@ -489,7 +493,7 @@ msgstr "" #. module: product #: field:product.price_list,qty4:0 msgid "Quantity-4" -msgstr "" +msgstr "Mennyiség-4" #. module: product #: view:res.partner:0 @@ -798,7 +802,7 @@ msgstr "" #: view:product.product:0 #: view:product.template:0 msgid "Procurement & Locations" -msgstr "" +msgstr "Beszerzés és tárhelyek" #. module: product #: model:product.template,name:product.product_product_kitchendesignproject0_product_template @@ -880,7 +884,7 @@ msgstr "" #. module: product #: field:product.packaging,weight:0 msgid "Total Package Weight" -msgstr "" +msgstr "Csomagolás össz súlya" #. module: product #: help:product.packaging,code:0 @@ -1002,7 +1006,7 @@ msgstr "" #. module: product #: field:product.pricelist.version,items_id:0 msgid "Price List Items" -msgstr "" +msgstr "Árlista tételek" #. module: product #: model:ir.actions.act_window,help:product.product_uom_categ_form_action diff --git a/addons/product/i18n/zh_CN.po b/addons/product/i18n/zh_CN.po index d217bbc9302..5ec3ff9115e 100644 --- a/addons/product/i18n/zh_CN.po +++ b/addons/product/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 09:07+0000\n" +"PO-Revision-Date: 2011-01-12 01:34+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product @@ -641,7 +641,7 @@ msgstr "在复制一个版本时它设为不生效. 这样旧版本日期是不 #. module: product #: model:product.template,name:product.product_product_kitshelfofcm0_product_template msgid "KIT Shelf of 100cm" -msgstr "" +msgstr "KIT 架 100cm" #. module: product #: field:product.supplierinfo,name:0 @@ -651,7 +651,7 @@ msgstr "供应商" #. module: product #: model:product.template,name:product.product_product_sidepanel0_product_template msgid "Side Panel" -msgstr "" +msgstr "侧边面板" #. module: product #: model:product.template,name:product.product_product_26_product_template @@ -694,7 +694,7 @@ msgid "" "The minimal quantity to purchase to this supplier, expressed in the supplier " "Product UoM if not empty, in the default unit of measure of the product " "otherwise." -msgstr "" +msgstr "该供应商的最小采购数量,如果供应商产品计量单位为空的话则使用产品默认的计量单位。" #. module: product #: view:product.pricelist.item:0 @@ -864,7 +864,7 @@ msgstr "产品分类" #. module: product #: view:product.uom:0 msgid " e.g: 1 * (reference unit) = ratio * (this unit)" -msgstr "" +msgstr " 例如: 1 * (参考单位) = 比率 * (本单位)" #. module: product #: model:ir.actions.act_window,help:product.product_uom_form_action @@ -872,7 +872,7 @@ msgid "" "Create and manage the units of measure you want to be used in your system. " "You can define a conversion rate between several Units of Measure within the " "same category." -msgstr "" +msgstr "创建与管理系统中的计量单位信息。您可以定义统一分类下单位之间的转换比率。" #. module: product #: field:product.packaging,weight:0 @@ -942,7 +942,7 @@ msgid "" "There can be more than one version of a pricelist. Here you can create and " "manage new versions of a price list. Some examples of versions: 2010, 2011, " "Summer Promotion, etc." -msgstr "" +msgstr "可以有多个版本的价格表。此处您可以创建与管理新的价格表版本。举几个价格表版本的例子:2010,2011,暑期档等等" #. module: product #: selection:product.template,type:0 @@ -1008,7 +1008,7 @@ msgid "" "your system. If several units of measure are in the same category, they can " "be converted to each other. For example, in the unit of measure category " "\"Time\", you will have the following UoM: Hours, Days." -msgstr "" +msgstr "创建与管理系统中的计量单位分类信息。统一分类的计量单位可以互相转换,比如,“时间”分类下的计量单位包含:小时、天等等" #. module: product #: selection:product.uom,uom_type:0 @@ -1077,6 +1077,7 @@ msgid "" "contains detailed information about your products related to procurement " "logistics, sales price, product category, suppliers and so on." msgstr "" +"您必须定义产品信息用于您的销售或采购。产品可以是原材料、可库存商品、消耗品或服务。产品表单包含产品相关的生产物流、售价、分类、供应商等等信息。" #. module: product #: model:product.uom,name:product.product_uom_kgm @@ -1112,7 +1113,7 @@ msgstr "" #: help:product.category,sequence:0 msgid "" "Gives the sequence order when displaying a list of product categories." -msgstr "" +msgstr "显示产品列表的顺序号" #. module: product #: field:product.uom,factor:0 @@ -1363,7 +1364,7 @@ msgstr "" #. module: product #: view:product.product:0 msgid "Group by..." -msgstr "" +msgstr "分组" #. module: product #: model:product.template,name:product.product_product_cpu_gen_product_template @@ -1376,7 +1377,7 @@ msgstr "通常处理器配置" msgid "" "Conversion from Product UoM m to Default UoM PCE is not possible as they " "both belong to different Category!." -msgstr "" +msgstr "转换产品计量单位到默认的“件”计量单位是不允许的,因为它们属于不同的分类。" #. module: product #: field:product.pricelist.version,date_start:0 @@ -1409,7 +1410,7 @@ msgstr "基础PC" msgid "" "If the active field is set to False, it will allow you to hide the pricelist " "without removing it." -msgstr "" +msgstr "如果“可用”字段没有选中,那么将隐藏此价格表而不是删除它。" #. module: product #: field:product.product,qty_available:0 @@ -1484,7 +1485,7 @@ msgstr "价格的上浮金额" #. module: product #: sql_constraint:product.uom:0 msgid "The conversion ratio for a unit of measure cannot be 0!" -msgstr "" +msgstr "计量单位的转换比率不能为 0!" #. module: product #: help:product.packaging,ean:0 @@ -1513,6 +1514,8 @@ msgid "" "How many times this UoM is smaller than the reference UoM in this category:\n" "1 * (reference unit) = ratio * (this unit)" msgstr "" +"本计量单位与参考计量单位小的倍数:\n" +"1 * (参考单位) = 比率 * (本单位)" #. module: product #: help:product.template,uom_id:0 @@ -1598,7 +1601,7 @@ msgstr "产品" #. module: product #: selection:product.template,supply_method:0 msgid "Produce" -msgstr "产品" +msgstr "生产" #. module: product #: selection:product.template,procure_method:0 @@ -1717,7 +1720,7 @@ msgstr "价格种类名称" #. module: product #: field:product.supplierinfo,product_uom:0 msgid "Supplier UoM" -msgstr "" +msgstr "供应商计量单位" #. module: product #: help:product.pricelist.version,date_start:0 @@ -1729,7 +1732,7 @@ msgstr "价格表版本生效的开始日期" msgid "" "Default Unit of Measure used for purchase orders. It must be in the same " "category than the default unit of measure." -msgstr "" +msgstr "采购单默认使用的计量单位。必须与默认计量单位位于相同分类中。" #. module: product #: model:product.template,description:product.product_product_cpu1_product_template @@ -1744,7 +1747,7 @@ msgstr "长度" #. module: product #: model:product.uom.categ,name:product.uom_categ_length msgid "Length / Distance" -msgstr "" +msgstr "长度或距离" #. module: product #: model:product.template,name:product.product_product_0_product_template @@ -1766,7 +1769,7 @@ msgstr "其他商品" #. module: product #: view:product.product:0 msgid "Characteristics" -msgstr "" +msgstr "特征" #. module: product #: field:product.template,sale_ok:0 @@ -1836,7 +1839,7 @@ msgstr "雇员" #. module: product #: model:product.template,name:product.product_product_shelfofcm0_product_template msgid "Shelf of 100cm" -msgstr "" +msgstr "100cm 架子" #. module: product #: model:ir.model,name:product.model_product_category @@ -1852,7 +1855,7 @@ msgstr "价格表名称" #. module: product #: field:product.supplierinfo,delay:0 msgid "Delivery Lead Time" -msgstr "" +msgstr "送货周期" #. module: product #: help:product.uom,active:0 @@ -1876,12 +1879,12 @@ msgstr "箱子" msgid "" "Create and manage your packaging dimensions and types you want to be " "maintained in your system." -msgstr "" +msgstr "创建与管理包装与包装类型信息。" #. module: product #: model:product.template,name:product.product_product_rearpanelarm1_product_template msgid "Rear Panel SHE200" -msgstr "" +msgstr "后面板 SHE200" #. module: product #: help:product.pricelist.type,key:0 @@ -1898,7 +1901,7 @@ msgstr "希捷 7200.8 80GB 硬盘" #. module: product #: help:product.supplierinfo,qty:0 msgid "This is a quantity which is converted into Default Uom." -msgstr "" +msgstr "转换到默认计量单位的数量" #. module: product #: field:product.packaging,ul:0 @@ -1933,12 +1936,12 @@ msgstr "鼠标" #. module: product #: field:product.uom,uom_type:0 msgid "UoM Type" -msgstr "" +msgstr "计量单位类型" #. module: product #: help:product.template,product_manager:0 msgid "This is use as task responsible" -msgstr "" +msgstr "作为任务负责人" #. module: product #: help:product.uom,rounding:0 @@ -1961,7 +1964,7 @@ msgstr "行" #. module: product #: model:product.template,name:product.product_product_rearpanelarm0_product_template msgid "Rear Panel SHE100" -msgstr "" +msgstr "后面板 SHE100" #. module: product #: model:product.template,name:product.product_product_23_product_template @@ -1990,6 +1993,8 @@ msgid "" "How many times this UoM is bigger than the reference UoM in this category:\n" "1 * (this unit) = ratio * (reference unit)" msgstr "" +"此计量单位大于参考单位的倍数:\n" +"1 * (此单位) = 比率 * (参考单位)" #. module: product #: model:product.template,name:product.product_product_shelf0_product_template @@ -1999,7 +2004,7 @@ msgstr "" #. module: product #: help:product.packaging,sequence:0 msgid "Gives the sequence order when displaying a list of packaging." -msgstr "" +msgstr "显示包装信息的顺序号" #. module: product #: field:product.pricelist.item,price_round:0 @@ -2016,7 +2021,7 @@ msgstr "最大的价格上浮金额" msgid "" "This supplier's product name will be used when printing a request for " "quotation. Keep empty to use the internal one." -msgstr "" +msgstr "此供应商产品名称用于打印询价单。为空则使用内部名称。" #. module: product #: selection:product.template,mes_type:0 @@ -2026,7 +2031,7 @@ msgstr "可变的" #. module: product #: field:product.template,rental:0 msgid "Can be Rent" -msgstr "" +msgstr "可出租" #. module: product #: model:product.price.type,name:product.standard_price @@ -2072,7 +2077,7 @@ msgstr "" #. module: product #: view:product.price_list:0 msgid "Close" -msgstr "" +msgstr "关闭" #. module: product #: model:ir.model,name:product.model_product_pricelist_item @@ -2103,7 +2108,7 @@ msgstr "延迟" #. module: product #: model:process.node,note:product.process_node_product0 msgid "Creation of the product" -msgstr "" +msgstr "产品创建" #. module: product #: help:product.template,type:0 @@ -2166,7 +2171,7 @@ msgstr "产品系列" #. module: product #: model:product.category,name:product.product_category_shelves0 msgid "Shelves" -msgstr "" +msgstr "架子" #. module: product #: code:addons/product/pricelist.py:514 @@ -2228,7 +2233,7 @@ msgstr "标价" #. module: product #: field:product.category,type:0 msgid "Category Type" -msgstr "" +msgstr "分类类型" #. module: product #: model:product.category,name:product.cat2 diff --git a/addons/product_margin/i18n/fr.po b/addons/product_margin/i18n/fr.po index 0370bddd926..cfcd892fc94 100644 --- a/addons/product_margin/i18n/fr.po +++ b/addons/product_margin/i18n/fr.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-20 20:28+0000\n" +"PO-Revision-Date: 2011-01-11 14:56+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:25+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product_margin @@ -107,6 +107,13 @@ msgid "" "and other interesting indicators based on invoices. The wizard to launch\n" "the report has several options to help you get the data you need.\n" msgstr "" +"\n" +"Ajoute un menu de reporting aux produits qui calcule les ventes, les achats, " +"les marges\n" +"et d'autres indicateurs intéressants basés sur les factures. L'assistant de " +"lancement\n" +"du rapport a plusieurs options pour vous aider à obtenir les informations " +"dont vous avez besoin.\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/profile_tools/i18n/fr.po b/addons/profile_tools/i18n/fr.po index bc60b95fd79..03a5efb5bb4 100644 --- a/addons/profile_tools/i18n/fr.po +++ b/addons/profile_tools/i18n/fr.po @@ -8,13 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 13:08+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2011-01-11 14:57+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: profile_tools @@ -59,6 +60,9 @@ msgid "" " module\n" " " msgstr "" +"Installe des outils pour les modules de repas, sondage, inscription\n" +" et audit\n" +" " #. module: profile_tools #: view:misc_tools.installer:0 @@ -91,6 +95,9 @@ msgid "" "choosing and your OpenERP Web Client by letting you easily link pads to " "OpenERP objects via OpenERP attachments." msgstr "" +"Ce module crée une plus forte intégration entre une instance de pad de votre " +"choix et votre client Web OpenERP en vous permettant d'associer facilement " +"des pads aux objets OpenERP avec les pièces jointes OpenERP." #. module: profile_tools #: field:misc_tools.installer,lunch:0 diff --git a/addons/project/i18n/es.po b/addons/project/i18n/es.po index 59d2b506f24..2e9c6cb06ec 100644 --- a/addons/project/i18n/es.po +++ b/addons/project/i18n/es.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-28 08:41+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" +"PO-Revision-Date: 2011-01-11 21:57+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:37+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project @@ -1276,6 +1275,8 @@ msgid "" "Error! The currency has to be the same as the currency of the selected " "company" msgstr "" +"¡Error! La divisa tiene que ser la misma que la establecida en la compañía " +"seleccionada" #. module: project #: code:addons/project/wizard/project_task_close.py:79 diff --git a/addons/project/i18n/fr.po b/addons/project/i18n/fr.po index b6f19f828d0..803a3d36f2c 100644 --- a/addons/project/i18n/fr.po +++ b/addons/project/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-11 03:52+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 21:50+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:56+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project @@ -446,7 +447,7 @@ msgstr "res.users" #. module: project #: model:project.task.type,name:project.project_tt_testing msgid "Testing" -msgstr "" +msgstr "En test" #. module: project #: help:project.task.delegate,planned_hours:0 @@ -521,6 +522,8 @@ msgstr " (copie)" msgid "" "Tracks and helps employees encode and validate timesheets and attendances." msgstr "" +"Suit et aide les employés à saisir et valider les feuilles de temps et les " +"présences." #. module: project #: view:report.project.task.user:0 @@ -567,7 +570,7 @@ msgstr "Modèle" #. module: project #: model:project.task.type,name:project.project_tt_specification msgid "Specification" -msgstr "" +msgstr "Spécification" #. module: project #: model:ir.actions.act_window,name:project.act_my_project @@ -582,7 +585,7 @@ msgstr "Erreur ! Vous ne pouvez pas créer de sociétés récursives." #. module: project #: view:project.task:0 msgid "Next" -msgstr "" +msgstr "Suivant" #. module: project #: model:process.transition,note:project.process_transition_draftopentask0 @@ -763,7 +766,7 @@ msgstr "Projets" #: view:report.project.task.user:0 #: field:report.project.task.user,type_id:0 msgid "Stage" -msgstr "" +msgstr "Étape" #. module: project #: model:ir.actions.act_window,help:project.open_task_type_form @@ -1028,7 +1031,7 @@ msgstr "Planning à long terme" #: view:project.project:0 #: view:project.task:0 msgid "Start Date" -msgstr "" +msgstr "Date de début" #. module: project #: help:project.project,priority:0 @@ -1074,7 +1077,7 @@ msgstr "Administration" #. module: project #: model:ir.model,name:project.model_project_task_reevaluate msgid "project.task.reevaluate" -msgstr "" +msgstr "project.task.reevaluate" #. module: project #: view:report.project.task.user:0 @@ -1321,7 +1324,7 @@ msgstr "Progression de la Configuration" #. module: project #: view:project.task.delegate:0 msgid "_Delegate" -msgstr "" +msgstr "_Déleguer" #. module: project #: code:addons/project/wizard/project_task_close.py:91 @@ -1344,7 +1347,7 @@ msgstr "Déléguer à" #. module: project #: view:res.partner:0 msgid "History" -msgstr "" +msgstr "Historique" #. module: project #: view:report.project.task.user:0 @@ -1359,7 +1362,7 @@ msgstr "Tache délégué" #. module: project #: field:project.installer,project_gtd:0 msgid "Getting Things Done" -msgstr "" +msgstr "Méthode \"Getting Things Done\"" #. module: project #: help:project.task.close,partner_warn:0 @@ -1645,7 +1648,7 @@ msgstr "Tâche Validée" #. module: project #: field:task.by.days,total_task:0 msgid "Total tasks" -msgstr "" +msgstr "Total des tâches" #. module: project #: view:board.board:0 @@ -1753,7 +1756,7 @@ msgstr "Avertir le client" #. module: project #: view:project.task:0 msgid "Edit" -msgstr "" +msgstr "Éditer" #. module: project #: model:process.node,note:project.process_node_opentask0 @@ -1779,7 +1782,7 @@ msgstr "Mes projets : heures prévues / heures totales" #. module: project #: model:ir.model,name:project.model_project_installer msgid "project.installer" -msgstr "" +msgstr "project.installer" #. module: project #: selection:report.project.task.user,month:0 @@ -1878,6 +1881,15 @@ msgid "" "to invoice the time spent on a project task, you can find project tasks to " "be invoiced in the billing section." msgstr "" +"Un projet contient des tâches ou des incidents qui seront effectués par vos " +"ressources auxquels ils sont assignés. Un projet peut avoir une structure " +"hiérarchique, comme être le fils d'un projet parent.Ceci vous permet de " +"concevoir des structures de projet large avec différentes phases qui " +"s'étalent pendant toute la durée d'un cycle. Chaque utilisateur peut " +"s'attribuer un projet par défaut dans ces préférences pour automatiquement " +"filtrer les tâches et les problèmes sur lesquels ils travaillent. Si vous " +"choisissez de facturer le temps passé sur une tâche d'un projet, vous pouvez " +"trouver les tâches de projet à facturer dans la section facturation." #. module: project #: field:project.project,total_hours:0 @@ -1912,12 +1924,12 @@ msgstr "" #. module: project #: view:project.project:0 msgid "Manager" -msgstr "" +msgstr "Responsable" #. module: project #: field:project.task,create_date:0 msgid "Create Date" -msgstr "" +msgstr "Date de création" #. module: project #: code:addons/project/project.py:609 @@ -1928,7 +1940,7 @@ msgstr "La tâche '%s' est annulée." #. module: project #: view:project.task.close:0 msgid "_Send" -msgstr "" +msgstr "_Envoyer" #. module: project #: field:project.task.work,name:0 @@ -1938,7 +1950,7 @@ msgstr "Résumé des tâches" #. module: project #: view:project.project:0 msgid "Scheduling" -msgstr "" +msgstr "Planification" #. module: project #: view:project.installer:0 diff --git a/addons/project_caldav/i18n/fr.po b/addons/project_caldav/i18n/fr.po index deb297eb427..a28a574f41c 100644 --- a/addons/project_caldav/i18n/fr.po +++ b/addons/project_caldav/i18n/fr.po @@ -8,13 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 10:58+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 21:51+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_caldav @@ -327,7 +328,7 @@ msgstr "Rappel" #. module: project_caldav #: model:ir.module.module,description:project_caldav.module_meta_information msgid " Synchronize between Project task and Caldav Vtodo." -msgstr "" +msgstr " Synchroniser entre la tâche du projet et la Vtodo Caldav." #. module: project_caldav #: view:project.task:0 @@ -387,7 +388,7 @@ msgstr "mercredi" #. module: project_caldav #: view:project.task:0 msgid "Repeat Times" -msgstr "" +msgstr "Répétitions" #. module: project_caldav #: view:project.task:0 @@ -488,7 +489,7 @@ msgstr "Assigner une tâche" #. module: project_caldav #: view:project.task:0 msgid "Recurrency Rule" -msgstr "" +msgstr "Règle de récurrence" #. module: project_caldav #: selection:project.task,month_list:0 @@ -555,7 +556,7 @@ msgstr "Durée" #. module: project_caldav #: selection:project.task,week_list:0 msgid "Saturday" -msgstr "" +msgstr "Samedi" #. module: project_caldav #: selection:project.task,byday:0 diff --git a/addons/project_gtd/i18n/fr.po b/addons/project_gtd/i18n/fr.po index 6a187ed9437..ab93d6c86b4 100644 --- a/addons/project_gtd/i18n/fr.po +++ b/addons/project_gtd/i18n/fr.po @@ -7,19 +7,20 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 14:29+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 21:52+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_gtd #: help:project.task,timebox_id:0 msgid "Time-laps during which task has to be treated" -msgstr "" +msgstr "Délai dans lequel la tâche doit être traitée" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_gtd_timebox @@ -29,17 +30,17 @@ msgstr "project.gtd.timebox" #. module: project_gtd #: view:project.task:0 msgid "Reactivate" -msgstr "" +msgstr "Réactiver" #. module: project_gtd #: help:project.gtd.timebox,sequence:0 msgid "Gives the sequence order when displaying a list of timebox." -msgstr "" +msgstr "Donnes l'ordre d'affichage de la liste des boîtes de temps." #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_travel msgid "Travel" -msgstr "" +msgstr "Voyage" #. module: project_gtd #: view:project.timebox.empty:0 @@ -56,7 +57,7 @@ msgstr "Pas de TimeBox enfant pour celle ci !" #: code:addons/project_gtd/project_gtd.py:112 #, python-format msgid "GTD" -msgstr "" +msgstr "GTD" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_lt @@ -66,12 +67,12 @@ msgstr "Long terme" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_timebox_empty msgid "Project Timebox Empty" -msgstr "" +msgstr "Zone de temps du projet vide" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_daily msgid "Today" -msgstr "" +msgstr "Aujourd'hui" #. module: project_gtd #: view:project.gtd.timebox:0 @@ -100,7 +101,7 @@ msgstr "Erreur !" #. module: project_gtd #: constraint:project.task:0 msgid "Error ! You cannot create recursive tasks." -msgstr "" +msgstr "Erreur ! Vous ne pouvez pas créer de tâches récursives." #. module: project_gtd #: view:project.timebox.fill.plan:0 @@ -120,31 +121,35 @@ msgid "" "defines a period of time in order to categorize your tasks: today, this " "week, this month, long term." msgstr "" +"Les zones de temps sont définies dans la méthodologie \"Getting Things " +"Done\". Une zone de temps définit une période de temps dans le but de " +"classer vos tâches dans des catégories : aujourd'hui, cette semaine, ce " +"mois, long terme." #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_weekly msgid "This Week" -msgstr "" +msgstr "Cette semaine" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_monthly msgid "This Month" -msgstr "" +msgstr "Ce mois" #. module: project_gtd #: field:project.gtd.timebox,icon:0 msgid "Icon" -msgstr "" +msgstr "Icône" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_timebox_fill_plan msgid "Project Timebox Fill" -msgstr "" +msgstr "Remplir les zones de temps du projet" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_task msgid "Task" -msgstr "" +msgstr "Tâche" #. module: project_gtd #: view:project.timebox.fill.plan:0 @@ -154,7 +159,7 @@ msgstr "Ajouter une Timebox" #. module: project_gtd #: field:project.timebox.empty,name:0 msgid "Name" -msgstr "" +msgstr "Nom" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree @@ -165,7 +170,7 @@ msgstr "Contextes" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_car msgid "Car" -msgstr "" +msgstr "Voiture" #. module: project_gtd #: model:ir.module.module,description:project_gtd.module_meta_information @@ -211,12 +216,12 @@ msgstr "Contexte" #. module: project_gtd #: view:project.task:0 msgid "Next" -msgstr "" +msgstr "Suivant" #. module: project_gtd #: view:project.timebox.empty:0 msgid "_Ok" -msgstr "" +msgstr "_Ok" #. module: project_gtd #: code:addons/project_gtd/project_gtd.py:110 @@ -227,7 +232,7 @@ msgstr "Obtenir les choses terminés" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_office msgid "Office" -msgstr "" +msgstr "Bureau" #. module: project_gtd #: field:project.gtd.context,sequence:0 @@ -238,7 +243,7 @@ msgstr "Séquence" #. module: project_gtd #: help:project.gtd.context,sequence:0 msgid "Gives the sequence order when displaying a list of contexts." -msgstr "" +msgstr "Donne l'ordre d'affichage de la liste des contextes." #. module: project_gtd #: view:project.gtd.timebox:0 @@ -254,7 +259,7 @@ msgstr "Sélection des tâches" #: code:addons/project_gtd/project_gtd.py:111 #, python-format msgid "Inbox" -msgstr "" +msgstr "Boîte de réception" #. module: project_gtd #: field:project.timebox.fill.plan,timebox_id:0 @@ -264,12 +269,12 @@ msgstr "Obtenir de la timebox" #. module: project_gtd #: help:project.task,context_id:0 msgid "The context place where user has to treat task" -msgstr "" +msgstr "Le contexte dans lequel l'utilisateur doit traiter la tâche" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_home msgid "Home" -msgstr "" +msgstr "Domicile" #. module: project_gtd #: model:ir.actions.act_window,help:project_gtd.open_gtd_context_tree @@ -278,11 +283,15 @@ msgid "" "you to categorize your tasks according to the context in which they have to " "be done: at the office, at home, when I take my car, etc." msgstr "" +"Les contextes sont définis dans la méthodologie \"Getting Things Done\". Ils " +"vous permettent catégoriser les tâches en fonction du contexte dans lequel " +"vous devez les faire : au bureau, à la maison, quand je prend ma voiture, " +"etc." #. module: project_gtd #: view:project.task:0 msgid "Previous" -msgstr "" +msgstr "Précédent" #~ msgid "Visible Columns" #~ msgstr "Colonnes visibles" diff --git a/addons/project_issue/i18n/fr.po b/addons/project_issue/i18n/fr.po index fe448ff2958..0119a7a309b 100644 --- a/addons/project_issue/i18n/fr.po +++ b/addons/project_issue/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 20:48+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 22:24+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_issue @@ -30,7 +31,7 @@ msgstr "Regrouper par..." #. module: project_issue #: field:project.issue,working_hours_open:0 msgid "Working Hours to Open the Issue" -msgstr "" +msgstr "Heures de travail pour ouvrir l'incident" #. module: project_issue #: constraint:project.project:0 @@ -69,7 +70,7 @@ msgstr "Société" #. module: project_issue #: field:project.issue,email_cc:0 msgid "Watchers Emails" -msgstr "" +msgstr "Emails des observateurs" #. module: project_issue #: view:project.issue.report:0 @@ -84,7 +85,7 @@ msgstr "project.issue.version" #. module: project_issue #: field:project.issue,day_open:0 msgid "Days to Open" -msgstr "" +msgstr "Jours pour ouvrir" #. module: project_issue #: code:addons/project_issue/project_issue.py:360 @@ -193,6 +194,8 @@ msgid "" "If any issue is escalated from the current Project, it will be listed under " "the project selected here." msgstr "" +"Si un incident est escaladé pour le projet actuel, il sera listé sous le " +"projet sélectionné ici." #. module: project_issue #: view:project.issue:0 @@ -207,6 +210,10 @@ msgid "" "analyse the time required to open or close an issue, the number of email to " "exchange and the time spent on average by issues." msgstr "" +"Ce rapport sur les incidents du projet vous permet d'analyser la qualité du " +"support ou du service après-vente. Vous pouvez suivre les incidents par âge. " +"Vous pouvez analyser le temps requis pour ouvrir ou fermer un incident, le " +"nombre d'emails à échanger et le temps passé en moyenne par incident." #. module: project_issue #: view:project.issue:0 @@ -286,7 +293,7 @@ msgstr "Incidents en attente" #. module: project_issue #: view:project.issue.report:0 msgid "Open Working Hours" -msgstr "" +msgstr "Ouvrir les heures de travail" #. module: project_issue #: model:ir.actions.act_window,name:project_issue.project_issue_categ_action @@ -380,7 +387,7 @@ msgstr "Versions" #. module: project_issue #: view:project.issue.report:0 msgid "My Open Project Issue" -msgstr "" +msgstr "Mes incidents ouverts" #. module: project_issue #: model:ir.actions.act_window,name:project_issue.action_view_my_project_issue_tree @@ -409,6 +416,9 @@ msgid "" "customer. With each commercial opportunity, you can indicate the canall " "which is this opportunity source." msgstr "" +"Les canaux représentent les différents modes de communication disponibles " +"avec les clients. Sur chaque opportunité commerciale, vous pouvez indiquer " +"le canal qui est à la source de l'opportunité." #. module: project_issue #: model:ir.actions.act_window,help:project_issue.project_issue_version_action @@ -417,6 +427,11 @@ msgid "" "development project, to handle claims in after-sales services, etc. Define " "here the different versions of your products on which you can work on issues." msgstr "" +"Vous pouvez utiliser le gestionnaire d'incidents dans OpenERP pour prendre " +"en charge les bogues dans le projet de développement logiciel, pour prendre " +"en compte les réclamations dans les services après-vente, etc. Définissez " +"ici les différentes versions de vos produits sur lesquels vous pouvez " +"travailler pour les incidents." #. module: project_issue #: code:addons/project_issue/project_issue.py:283 @@ -442,7 +457,7 @@ msgstr "Décembre" #. module: project_issue #: view:project.issue:0 msgid "Issue Tracker Tree" -msgstr "" +msgstr "Arbre du gestionnaire d'incidents" #. module: project_issue #: help:project.issue,assigned_to:0 @@ -627,7 +642,7 @@ msgstr "Janvier" #. module: project_issue #: view:project.issue:0 msgid "Feature Tracker Tree" -msgstr "" +msgstr "Liste du gestionnaire de fonctionnalités." #. module: project_issue #: model:crm.case.categ,name:project_issue.bug_categ @@ -670,7 +685,7 @@ msgstr "Assigné à" #. module: project_issue #: field:project.project,reply_to:0 msgid "Reply-To Email Address" -msgstr "" +msgstr "Adresse email de réponse" #. module: project_issue #: selection:project.issue,priority:0 @@ -771,6 +786,11 @@ msgid "" "issue (analysis, development, done). With the mailgateway module, issues can " "be integrated through an email address (example: support@mycompany.com)" msgstr "" +"Les incidents comme les bogues système, les plaintes de clients, et les " +"matériels défectueux sont collectés ici. Vous pouvez définir les étapes " +"assignées quand vous résolvez l'incident (analyse, développement, clôture). " +"Avec le module de passerelle d'email, les incidents peuvent être intégrés " +"dans une adresse email (exemple : support@mycompany.com)" #. module: project_issue #: view:project.issue:0 @@ -795,7 +815,7 @@ msgstr "Incident" #. module: project_issue #: view:project.issue:0 msgid "Feature Tracker Search" -msgstr "" +msgstr "Chercher un gestionnaire de fonctionnalités" #. module: project_issue #: view:project.issue:0 @@ -870,7 +890,7 @@ msgstr "Description de la fonctionnalité" #. module: project_issue #: field:project.project,project_escalation_id:0 msgid "Project Escalation" -msgstr "" +msgstr "Escalade de projet" #. module: project_issue #: help:project.issue,section_id:0 @@ -878,6 +898,8 @@ msgid "" "Sales team to which Case belongs to. Define " "Responsible user and Email account for mail gateway." msgstr "" +"Les équipes de vente pour lesquelles un cas appartient. Définissez un " +"responsable et un compte de courriel pour la passerelle de courriel." #. module: project_issue #: view:project.issue.report:0 diff --git a/addons/project_issue_sheet/i18n/fr.po b/addons/project_issue_sheet/i18n/fr.po index 82ed92cab80..eef8459d206 100644 --- a/addons/project_issue_sheet/i18n/fr.po +++ b/addons/project_issue_sheet/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-09 14:49+0000\n" -"Last-Translator: lolivier \n" +"PO-Revision-Date: 2011-01-11 14:57+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:19+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_issue_sheet @@ -37,7 +38,7 @@ msgstr "Ligne analytique" #. module: project_issue_sheet #: model:ir.model,name:project_issue_sheet.model_project_issue msgid "Project Issue" -msgstr "" +msgstr "Incident de projet" #. module: project_issue_sheet #: model:ir.model,name:project_issue_sheet.model_hr_analytic_timesheet @@ -79,4 +80,4 @@ msgstr "" #. module: project_issue_sheet #: field:hr.analytic.timesheet,issue_id:0 msgid "Issue" -msgstr "" +msgstr "Incident" diff --git a/addons/project_long_term/i18n/es.po b/addons/project_long_term/i18n/es.po index 02864f319b0..d8b4bac7c33 100644 --- a/addons/project_long_term/i18n/es.po +++ b/addons/project_long_term/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-31 10:23+0000\n" -"Last-Translator: Borja López Soilán \n" +"PO-Revision-Date: 2011-01-11 22:11+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_long_term @@ -143,12 +143,15 @@ msgid "" "Resources should be allocated to your phases and Members should be assigned " "to your Project!" msgstr "" +"Los recursos deben de ser asignados a tus fases y los miembros a tu proyecto." #. module: project_long_term #: help:project.phase,date_end:0 msgid "" " It's computed by the scheduler according to the start date and the duration." msgstr "" +" Es calculado por el planificador en fucnión de la fecha de inicio y la " +"duración" #. module: project_long_term #: model:ir.model,name:project_long_term.model_project_project @@ -177,7 +180,7 @@ msgstr "Cancelado" #: code:addons/project_long_term/project_long_term.py:426 #, python-format msgid "No tasks to compute for Project '%s'." -msgstr "" +msgstr "No existen tareas para calcular en este proyecto '%s'" #. module: project_long_term #: help:project.resource.allocation,date_end:0 @@ -301,11 +304,13 @@ msgstr "Fechas" msgid "" "Availability of this resource for this project phase in percentage (=50%)" msgstr "" +"La disponibilidad de este recurso para esta fase de proyecto en porcentaje " +"(=50%)" #. module: project_long_term #: help:project.phase,constraint_date_start:0 msgid "force the phase to start after this date" -msgstr "" +msgstr "Forzar que la fase epiece después de esta fecha" #. module: project_long_term #: field:project.phase,task_ids:0 @@ -325,7 +330,7 @@ msgstr "_Aceptar" #. module: project_long_term #: view:project.phase:0 msgid "Schedule and Display info" -msgstr "" +msgstr "Planificar y mostrar información" #. module: project_long_term #: view:project.phase:0 @@ -335,7 +340,7 @@ msgstr "Mes" #. module: project_long_term #: constraint:project.phase:0 msgid "Phase start-date must be lower than phase end-date." -msgstr "" +msgstr "La fecha-inicio de la fase debe ser anterior a la fecha-fin." #. module: project_long_term #: model:ir.model,name:project_long_term.model_project_schedule_tasks @@ -367,7 +372,7 @@ msgstr "Asignación de recursos" #. module: project_long_term #: help:project.phase,constraint_date_end:0 msgid "force the phase to finish before this date" -msgstr "" +msgstr "Forzar que la fase termine antes de esta fecha" #. module: project_long_term #: view:project.phase:0 @@ -397,6 +402,8 @@ msgid "" "It's computed by the scheduler according the project date or the end date of " "the previous phase." msgstr "" +"Es calculado por el planificador en función de la fecha inicio o fecha fin " +"de la fase anterior" #. module: project_long_term #: view:project.phase:0 @@ -406,18 +413,18 @@ msgstr "Detalles tarea" #. module: project_long_term #: help:project.project,resource_calendar_id:0 msgid "Timetable working hours to adjust the gantt diagram report" -msgstr "" +msgstr "Horario de trabajo para ajustar el informe del diagrama de Gantt" #. module: project_long_term #: model:ir.model,name:project_long_term.model_project_compute_tasks msgid "Project Compute Tasks" -msgstr "" +msgstr "Calcular tareas proyecto" #. module: project_long_term #: code:addons/project_long_term/project_long_term.py:244 #, python-format msgid "No responsible person assigned !" -msgstr "" +msgstr "¡No hay un reponsable asignado!" #. module: project_long_term #: code:addons/project_long_term/project_long_term.py:489 @@ -429,7 +436,7 @@ msgstr "Error" #: code:addons/project_long_term/project_long_term.py:244 #, python-format msgid "You must assign a responsible person for phase '%s' !" -msgstr "" +msgstr "¡Debe asignar un reponsable por fase '%s'!" #. module: project_long_term #: view:project.phase:0 @@ -439,7 +446,7 @@ msgstr "Restricciones" #. module: project_long_term #: help:project.phase,sequence:0 msgid "Gives the sequence order when displaying a list of phases." -msgstr "" +msgstr "Indica el orden cuando se muestra la lista de fases" #. module: project_long_term #: model:ir.actions.act_window,name:project_long_term.act_project_phase @@ -449,7 +456,7 @@ msgstr "" #: view:project.phase:0 #: field:project.project,phase_ids:0 msgid "Project Phases" -msgstr "" +msgstr "Fases proyecto" #. module: project_long_term #: view:project.phase:0 @@ -498,7 +505,7 @@ msgstr "Comenzar fase" #: code:addons/project_long_term/wizard/project_compute_phases.py:50 #, python-format msgid "Please Specify Project to be schedule" -msgstr "" +msgstr "Por favor seleccione el proyecto a planificar" #. module: project_long_term #: view:project.phase:0 @@ -509,12 +516,12 @@ msgstr "Total horas" #. module: project_long_term #: view:project.schedule.tasks:0 msgid "Task Scheduling completed successfully." -msgstr "" +msgstr "Planificación de tareas completada satisfactoriamente." #. module: project_long_term #: view:project.compute.tasks:0 msgid "Compute Scheduling of Task for specified project." -msgstr "" +msgstr "Calcular planificación de tareas para un proyecto específico" #. module: project_long_term #: view:project.resource.allocation:0 @@ -551,7 +558,7 @@ msgstr "Nombre" #. module: project_long_term #: view:project.phase:0 msgid "Tasks Details" -msgstr "" +msgstr "Detalles tareas" #. module: project_long_term #: model:ir.ui.menu,name:project_long_term.menu_view_resource_calendar @@ -572,7 +579,7 @@ msgstr "Planificación" #: code:addons/project_long_term/project_long_term.py:329 #, python-format msgid "No tasks to compute for Phase '%s'." -msgstr "" +msgstr "No existen tareas para el cálculo para la fase '%s'." #. module: project_long_term #: model:ir.model,name:project_long_term.model_project_phase diff --git a/addons/project_long_term/i18n/fr.po b/addons/project_long_term/i18n/fr.po index 1df309a8c2a..a2f6af52a29 100644 --- a/addons/project_long_term/i18n/fr.po +++ b/addons/project_long_term/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 11:00+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 14:57+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_long_term @@ -434,6 +435,8 @@ msgid "" "It's computed by the scheduler according the project date or the end date of " "the previous phase." msgstr "" +"Ceci est calculé par l'ordonnanceur en fonction de la date du projet ou de " +"la date de fin de la tâche précédente." #. module: project_long_term #: view:project.phase:0 diff --git a/addons/project_mailgate/i18n/fr.po b/addons/project_mailgate/i18n/fr.po index df1aaee1558..2237fd681d6 100644 --- a/addons/project_mailgate/i18n/fr.po +++ b/addons/project_mailgate/i18n/fr.po @@ -8,13 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 10:58+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 14:59+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_mailgate @@ -38,6 +39,13 @@ msgid "" "Moreover, it keeps track of all further communications and task states.\n" " " msgstr "" +"Ce module est un interface de synchronisation des emails avec la gestion de " +"projet d'OpenERP.\n" +"\n" +"Il permet la création de tâches sur l'arrivée de nouveaux emails dans le " +"serveur de messagerie configuré.\n" +"De plus, il conserve les échanges ultérieurs et l'état des tâches.\n" +" " #. module: project_mailgate #: view:project.task:0 diff --git a/addons/project_messages/i18n/de.po b/addons/project_messages/i18n/de.po index 85139bf88ef..073d9c8544c 100644 --- a/addons/project_messages/i18n/de.po +++ b/addons/project_messages/i18n/de.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_messages diff --git a/addons/project_messages/i18n/fr.po b/addons/project_messages/i18n/fr.po index 8c409b6e74c..523f17eea5e 100644 --- a/addons/project_messages/i18n/fr.po +++ b/addons/project_messages/i18n/fr.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-06 22:39+0000\n" +"PO-Revision-Date: 2011-01-11 15:00+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-08 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_messages @@ -81,6 +81,9 @@ msgid "" "communication between project members. The messages are stored in the system " "and can be used for post analysis." msgstr "" +"Un système de messagerie interne au projet permet une communication efficace " +"et traçable entre les membres du projet. Les messages sont stockés dans le " +"système et peuvent être utilisés pour une analyse ultérieure." #. module: project_messages #: model:ir.module.module,description:project_messages.module_meta_information diff --git a/addons/project_mrp/i18n/fr.po b/addons/project_mrp/i18n/fr.po index 6bd81a3806c..bcade5afa93 100644 --- a/addons/project_mrp/i18n/fr.po +++ b/addons/project_mrp/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-08 15:59+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 15:00+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_mrp @@ -29,7 +30,7 @@ msgstr "Tâche d'approvisionnement" #. module: project_mrp #: model:ir.module.module,shortdesc:project_mrp.module_meta_information msgid "Procurement and Project Management integration" -msgstr "" +msgstr "Intégration de l'approvisionnement avec la gestion de projet" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_createtask0 diff --git a/addons/project_planning/i18n/fr.po b/addons/project_planning/i18n/fr.po index 132dbe411c8..e61d19f4302 100644 --- a/addons/project_planning/i18n/fr.po +++ b/addons/project_planning/i18n/fr.po @@ -8,13 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 20:57+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 15:07+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_planning @@ -89,11 +90,15 @@ msgid "" "material), OpenERP allows you to encode and then automatically compute tasks " "and phases scheduling, track resource allocation and availability." msgstr "" +"Avec son système global de planification des ressources de la société " +"(personnes et matériels), OpenERP vous permet de saisir et ensuite de " +"calculer automatiquement les tâches et les phases planifiées, de suivre " +"l'allocation des ressources et leur disponibilité." #. module: project_planning #: report:report_account_analytic.planning.print:0 msgid "Total planned tasks" -msgstr "" +msgstr "Total des tâches planifiées" #. module: project_planning #: field:report_account_analytic.planning.stat,account_id:0 @@ -315,7 +320,7 @@ msgstr "[" #. module: project_planning #: report:report_account_analytic.planning.print:0 msgid "From :" -msgstr "" +msgstr "De :" #. module: project_planning #: field:report_account_analytic.planning,planning_user_ids:0 @@ -441,6 +446,23 @@ msgid "" "At the end of the month, the planning manager can also check if the encoded " "timesheets are respecting the planned time on each analytic account.\n" msgstr "" +"\n" +"Ce module vous aide à gérer vos plannings.\n" +"\n" +"Ce module est basé sur les comptes analytiques et est totalement intégré " +"avec\n" +"* l'enregistrement des feuilles de présence\n" +"* la gestion des congés\n" +"* la gestion de projets\n" +"\n" +"Donc, chaque manager de département peut connaitre si quelqu'un de son " +"équipe a du temps libre pour un certain planning (en prenant en " +"considération les congés validés) ou si il doit encore enregistrer des " +"tâches.\n" +"\n" +"À la fin du mois, le manager du planning peut également vérifier si les " +"feuilles de temps enregistrées respectent les temps planifiés sur chaque " +"compte analytique.\n" #. module: project_planning #: model:ir.model,name:project_planning.model_res_company diff --git a/addons/project_scrum/i18n/es.po b/addons/project_scrum/i18n/es.po index b5e5d69354b..f694bbd6f99 100644 --- a/addons/project_scrum/i18n/es.po +++ b/addons/project_scrum/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-08 23:44+0000\n" -"Last-Translator: Carlos @ smile.fr \n" +"PO-Revision-Date: 2011-01-11 08:03+0000\n" +"Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:15+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_scrum @@ -34,7 +34,7 @@ msgstr "Nombre de reunión" #. module: project_scrum #: model:process.transition,note:project_scrum.process_transition_backlogtask0 msgid "From backlog create task." -msgstr "Desde backlog crear tarea." +msgstr "Desde elemento de la pila crear tarea." #. module: project_scrum #: view:project.scrum.product.backlog:0 @@ -83,6 +83,11 @@ msgid "" "which the team implements a list of product backlogs. The sprint review is " "organized when the team presents its work to the customer and product owner." msgstr "" +"La metodología ágil scrum se usa en proyectos de desarrollo de software. En " +"esta metodología, un sprint es un corto periodo de tiempo (p.ej. un mes) " +"durante la cual el equipo implementa un montón de elementos de la pila de " +"producto. Se organiza la revisión del sprint cuando el equipo presenta su " +"trabajo al cliente y el dueño del producto." #. module: project_scrum #: view:project.scrum.meeting:0 @@ -94,7 +99,7 @@ msgstr "Agrupar por..." #. module: project_scrum #: model:process.node,note:project_scrum.process_node_productbacklog0 msgid "Create task from backlogs" -msgstr "Crear tarea desde backlogs" +msgstr "Crear tarea desde elementos de la pila" #. module: project_scrum #: model:ir.module.module,shortdesc:project_scrum.module_meta_information @@ -130,12 +135,12 @@ msgstr "" #: view:project.scrum.meeting:0 #: view:project.scrum.sprint:0 msgid "Are your Sprint Backlog estimate accurate ?" -msgstr "¿Es exacta su estimación del sprint backlog?" +msgstr "¿Son exactas sus estimaciones de la pila de sprint?" #. module: project_scrum #: view:project.scrum.sprint:0 msgid "Retrospective" -msgstr "Retrospectivo" +msgstr "Retrospectiva" #. module: project_scrum #: view:project.scrum.meeting:0 @@ -150,7 +155,7 @@ msgstr "¡Error! No se pueden crear tareas recursivas." #. module: project_scrum #: model:ir.actions.act_window,name:project_scrum.dblc_proj msgid "View project's backlog" -msgstr "Vista backlogs del proyecto" +msgstr "Ver pila del proyecto" #. module: project_scrum #: view:project.scrum.product.backlog:0 @@ -161,13 +166,13 @@ msgstr "Cambiar a borrador" #. module: project_scrum #: model:ir.model,name:project_scrum.model_project_scrum_backlog_merge msgid "Merge Product Backlogs" -msgstr "Fusionar pilas de producto" +msgstr "Fusionar elementos de pila de producto" #. module: project_scrum #: model:ir.actions.act_window,name:project_scrum.action_scrum_backlog_merge #: view:project.scrum.backlog.merge:0 msgid "Merge Backlogs" -msgstr "Fusionar pilas" +msgstr "Fusionar elementos de pila" #. module: project_scrum #: code:addons/project_scrum/wizard/project_scrum_email.py:53 @@ -243,7 +248,7 @@ msgstr "Reunión scrum de %s" #: field:project.task,product_backlog_id:0 #, python-format msgid "Product Backlog" -msgstr "Backlog del producto" +msgstr "Pila del producto" #. module: project_scrum #: model:ir.model,name:project_scrum.model_project_project @@ -288,7 +293,7 @@ msgstr "Info. del sprint" #. module: project_scrum #: field:project.scrum.sprint,date_stop:0 msgid "Ending Date" -msgstr "Fecha final" +msgstr "Fecha de fin" #. module: project_scrum #: view:project.scrum.meeting:0 @@ -666,6 +671,8 @@ msgstr "Borrador" msgid "" "Related product backlog that contains this task. Used in SCRUM methodology" msgstr "" +"Pila de producto relacionada que contiene esta tarea. Usado en la " +"metodología SCRUM" #. module: project_scrum #: view:project.scrum.meeting:0 @@ -898,6 +905,11 @@ msgid "" "can be planified in a development sprint and may be split into several " "tasks. The product backlog is managed by the product owner of the project." msgstr "" +"La metodología ágil scrum se usa en proyectos de desarrollo de software. La " +"Cartera/Pila de Producto es la lista de funcionalidades a implementar. Un " +"elemento de la pila de producto puede ser planificada en un sprint de " +"desarrollo y se puede dividir en varias tareas. La pila de producto es " +"gestionada por el dueño del producto del proyecto." #. module: project_scrum #: model:process.transition,name:project_scrum.process_transition_backlogtask0 diff --git a/addons/project_timesheet/i18n/fr.po b/addons/project_timesheet/i18n/fr.po index 2e4fc76851c..ac82b94cb32 100644 --- a/addons/project_timesheet/i18n/fr.po +++ b/addons/project_timesheet/i18n/fr.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-07 23:02+0000\n" +"PO-Revision-Date: 2011-01-11 15:01+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-09 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_timesheet @@ -112,7 +112,7 @@ msgstr "Partenaire" #: code:addons/project_timesheet/project_timesheet.py:229 #, python-format msgid "Cannot delete Partner which is Assigned to project !" -msgstr "" +msgstr "Impossible de supprimer un partenaire assigné à un projet !" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 diff --git a/addons/purchase/i18n/es.po b/addons/purchase/i18n/es.po index e1935e8975d..4b8954cdd80 100644 --- a/addons/purchase/i18n/es.po +++ b/addons/purchase/i18n/es.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-29 08:29+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" +"PO-Revision-Date: 2011-01-11 22:19+0000\n" +"Last-Translator: Carlos @ smile.fr \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:44+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase @@ -82,7 +81,7 @@ msgstr "Desde albarán" #. module: purchase #: view:purchase.order:0 msgid "Not Invoiced" -msgstr "" +msgstr "No facturado" #. module: purchase #: field:purchase.order,dest_address_id:0 @@ -116,6 +115,9 @@ msgid "" "products, etc. For each purchase order, you can track the products received, " "and control the supplier invoices." msgstr "" +"Utilice este menú para buscar en sus pedidos de compra por referencia, " +"proveedor, producto, etc. Para cada pedido de compra, puede obtener los " +"productos recibidos, y controlar las facturas de los proveedores." #. module: purchase #: code:addons/purchase/purchase.py:722 @@ -132,7 +134,7 @@ msgstr "Facturas de proveedor" #. module: purchase #: sql_constraint:purchase.order:0 msgid "Order Reference must be unique !" -msgstr "" +msgstr "¡La referencia del pedido debe ser única!" #. module: purchase #: model:process.transition,name:purchase.process_transition_packinginvoice0 @@ -255,7 +257,7 @@ msgstr "Aprobado" #. module: purchase #: view:purchase.report:0 msgid "Reference UOM" -msgstr "" +msgstr "Referecnia UdM" #. module: purchase #: view:purchase.order:0 @@ -265,7 +267,7 @@ msgstr "Origen" #. module: purchase #: field:purchase.report,product_uom:0 msgid "Reference UoM" -msgstr "" +msgstr "Referencia UdM" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_purchase_line_product_tree @@ -770,6 +772,10 @@ msgid "" "according to your settings. Once you receive a supplier invoice, you can " "match it with the draft invoice and validate it." msgstr "" +"Use este menú para controlar las facturas a recibir de su proveedor. OpenERP " +"pregenera facturas borrador a aprtir de sus órdenes de compra o recepciones, " +"en fución de los parámetros. En cuanto reciba la factura del proveedor, " +"puede verificarla con la factura borrador y validarla." #. module: purchase #: model:process.node,name:purchase.process_node_draftpurchaseorder0 @@ -879,7 +885,7 @@ msgstr "Petición de compra" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_purchase_uom_categ_form_action msgid "Units of Measure Categories" -msgstr "" +msgstr "Categorías de unidades de medida" #. module: purchase #: view:purchase.report:0 @@ -1259,7 +1265,7 @@ msgstr "Valor productos" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_purchase_product_pricelist_type msgid "Pricelists Types" -msgstr "" +msgstr "Tipos de listas de precios" #. module: purchase #: view:purchase.order:0 @@ -1281,7 +1287,7 @@ msgstr "Historia" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_product_by_category_purchase_form msgid "Products by Category" -msgstr "" +msgstr "Productos por categoría" #. module: purchase #: view:purchase.report:0 @@ -1554,6 +1560,9 @@ msgid "" "suppliers. You can track all your interactions with them through the History " "tab: emails, orders, meetings, etc." msgstr "" +"Acceda a los registros de sus proveedores y mantenga una buena relación con " +"ellos. Puede mantener el registro de todas sus interacciones con ellos " +"gracias a la pestaña histórico: emails, reuniones, etc." #. module: purchase #: view:purchase.order:0 @@ -1617,7 +1626,7 @@ msgstr "Febrero" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_product_category_config_purchase msgid "Products Categories" -msgstr "" +msgstr "Categorías de productos" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_purchase_order_report_all @@ -1869,7 +1878,7 @@ msgstr "Movimientos de stock" #: model:ir.ui.menu,name:purchase.menu_purchase_unit_measure_purchase #: model:ir.ui.menu,name:purchase.menu_purchase_uom_form_action msgid "Units of Measure" -msgstr "" +msgstr "Unidades de medida" #. module: purchase #: view:purchase.report:0 diff --git a/addons/purchase/i18n/fr.po b/addons/purchase/i18n/fr.po index 45871cfcb35..cf30f494feb 100644 --- a/addons/purchase/i18n/fr.po +++ b/addons/purchase/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 21:08+0000\n" +"PO-Revision-Date: 2011-01-11 10:33+0000\n" "Last-Translator: Quentin THEURET \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase @@ -849,6 +849,11 @@ msgid "" "supplier invoice yet. Once you are ready to receive a supplier invoice, you " "can generate a draft supplier invoice based on the lines from this menu." msgstr "" +"Si vous positionnez le contrôle facture de la commande d'achat comme " +"\"Manuel\", vous pourrez suivre toutes les lignes de la commande pour " +"lesquelles vous n'avez pas encore reçu de facture du fournisseur. Lorsque " +"vous recevez une facture fournisseur, vous pouvez générer une facture " +"d'achat brouillon basée sur les lignes de ce menu." #. module: purchase #: model:process.node,name:purchase.process_node_invoiceafterpacking0 @@ -883,7 +888,7 @@ msgstr "Appel d'offres" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_purchase_uom_categ_form_action msgid "Units of Measure Categories" -msgstr "" +msgstr "Catégories des unités de mesure" #. module: purchase #: view:purchase.report:0 @@ -906,7 +911,7 @@ msgstr "Besoin" #: view:purchase.order:0 #: field:purchase.order,invoice_ids:0 msgid "Invoices" -msgstr "" +msgstr "Factures" #. module: purchase #: model:process.node,note:purchase.process_node_purchaseorder0 @@ -980,7 +985,7 @@ msgstr "Gestion des achats" #: model:process.node,note:purchase.process_node_invoiceafterpacking0 #: model:process.node,note:purchase.process_node_invoicecontrol0 msgid "To be reviewed by the accountant." -msgstr "" +msgstr "À vérifier par le comptable." #. module: purchase #: model:ir.actions.act_window,name:purchase.purchase_line_form_action2 @@ -1036,7 +1041,7 @@ msgstr "Ligne de commande" #. module: purchase #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Erreur ! Vous ne pouvez pas créer de membres associés récursifs." #. module: purchase #: view:purchase.order:0 @@ -1094,7 +1099,7 @@ msgstr "Expéditions à facturer" #. module: purchase #: view:purchase.installer:0 msgid "Configure" -msgstr "" +msgstr "Configurer" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_qty_per_product @@ -1106,6 +1111,7 @@ msgstr "Qté par produit" #: constraint:stock.move:0 msgid "You try to assign a lot which is not from the same product" msgstr "" +"Vous essayez d'attribuer un lot qui ne correspond pas au même produit" #. module: purchase #: help:purchase.order,date_order:0 @@ -1208,6 +1214,16 @@ msgid "" "\n" " " msgstr "" +"\n" +" Le module des achats gère les achats de produits aux fournisseurs.\n" +" Une facture fournisseur est générée à partir des ordres d'achat " +"introduits.\n" +" Le tableau de bord du gestionnaire des achats comprend :\n" +" * les achats en cours\n" +" * les demandes d'achats en cours\n" +" * un graphe des quantités et montants par moi \n" +"\n" +" " #. module: purchase #: code:addons/purchase/purchase.py:685 @@ -1235,7 +1251,7 @@ msgstr "Annuler cde fourn." #. module: purchase #: constraint:stock.move:0 msgid "You must assign a production lot for this product" -msgstr "" +msgstr "Vous devez affecter un lot de fabrication à ce produit." #. module: purchase #: model:process.transition,note:purchase.process_transition_createpackinglist0 @@ -1262,7 +1278,7 @@ msgstr "" #: view:purchase.order:0 #: view:purchase.report:0 msgid "Quotations" -msgstr "" +msgstr "Devis" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_po_per_month_tree @@ -1341,6 +1357,8 @@ msgstr "Version par Défaut de la liste de Prix d'Achat" msgid "" "Extend your Purchases Management Application with additional functionalities." msgstr "" +"Ajoute des fonctionnalités additionnelles à votre application de gestion des " +"achats." #. module: purchase #: model:ir.actions.act_window,name:purchase.action_purchase_install_module @@ -1415,7 +1433,7 @@ msgstr "Créer la facture des lignes de commande d'achat" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_action_picking_tree4 msgid "Incoming Shipments" -msgstr "" +msgstr "Livraisons entrantes" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_purchase_order_by_user_all @@ -1496,7 +1514,7 @@ msgstr "Livraison et facturation" #. module: purchase #: field:purchase.order.line,date_planned:0 msgid "Scheduled Date" -msgstr "" +msgstr "Date prévue" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_product_in_config_purchase @@ -1549,6 +1567,9 @@ msgid "" "suppliers. You can track all your interactions with them through the History " "tab: emails, orders, meetings, etc." msgstr "" +"Accédez aux informations sur vos achats et maintenez une bonne relation avec " +"vos fournisseurs. Vous pouvez suivre tous les évènements via l'onglet " +"Historique : courriels, commandes, rendez-vous et réunions, etc." #. module: purchase #: view:purchase.order:0 @@ -1864,7 +1885,7 @@ msgstr "Mouvements de stock" #: model:ir.ui.menu,name:purchase.menu_purchase_unit_measure_purchase #: model:ir.ui.menu,name:purchase.menu_purchase_uom_form_action msgid "Units of Measure" -msgstr "" +msgstr "Unités de mesure" #. module: purchase #: view:purchase.report:0 @@ -1877,6 +1898,8 @@ msgid "" "unique number of the purchase order,computed automatically when the purchase " "order is created" msgstr "" +"Numéro unique de la commande d'achat, généré automatiquement à la création " +"de l'ordre d'achat" #. module: purchase #: model:ir.actions.act_window,name:purchase.open_board_purchase diff --git a/addons/purchase_analytic_plans/i18n/de.po b/addons/purchase_analytic_plans/i18n/de.po index 11ab6310b32..42071391734 100644 --- a/addons/purchase_analytic_plans/i18n/de.po +++ b/addons/purchase_analytic_plans/i18n/de.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_requisition/i18n/es.po b/addons/purchase_requisition/i18n/es.po index 984e8ec8e3f..dd1ba7f8209 100644 --- a/addons/purchase_requisition/i18n/es.po +++ b/addons/purchase_requisition/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-31 10:19+0000\n" +"PO-Revision-Date: 2011-01-11 07:32+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:38+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase_requisition @@ -70,7 +70,7 @@ msgstr "Tipo demanda" #. module: purchase_requisition #: report:purchase.requisition:0 msgid "Product Detail" -msgstr "" +msgstr "Detalle del producto" #. module: purchase_requisition #: report:purchase.requisition:0 @@ -211,7 +211,7 @@ msgstr "" #. module: purchase_requisition #: field:purchase.requisition,line_ids:0 msgid "Products to Purchase" -msgstr "" +msgstr "Productos para comprar" #. module: purchase_requisition #: field:purchase.requisition,date_end:0 diff --git a/addons/purchase_requisition/i18n/fr.po b/addons/purchase_requisition/i18n/fr.po index 09a92d6e11e..c733dac3903 100644 --- a/addons/purchase_requisition/i18n/fr.po +++ b/addons/purchase_requisition/i18n/fr.po @@ -8,13 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 11:04+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 15:05+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase_requisition @@ -162,6 +163,12 @@ msgid "" " This new object will regroup and will allow you to easily keep track and " "order all your purchase orders.\n" msgstr "" +"\n" +" Ce module vous permet de gérer les demandes d'achat.\n" +" Quand un bon de commande est créé, vous avez maintenant l'opportunité de " +"sauvegarder la demande associée.\n" +" Ce nouvel objet va regrouper et va vous permettre de garder facilement " +"une trace et effectuer toutes vos bons de commande.\n" #. module: purchase_requisition #: field:purchase.requisition.partner,partner_address_id:0 @@ -187,6 +194,11 @@ msgid "" "negotiation, once you have reviewed all the supplier's offers, you can " "validate some and cancel others." msgstr "" +"Une demande d'achat est une étape avant la demande de devis. Dans une " +"demande d'achat (ou appel d'offre), vous pouvez enregistrer les produits que " +"vous avez besoin d'acheter et automatiser la création des demandes de devis " +"à vos fournisseurs. Après la négociation, quand vous avez toutes les offres " +"de vos fournisseurs, vous pouvez en valider certaines et en annuler d'autres." #. module: purchase_requisition #: field:purchase.requisition.line,product_qty:0 diff --git a/addons/report_designer/i18n/it.po b/addons/report_designer/i18n/it.po index 8fbcf73a9cf..8536354fca9 100644 --- a/addons/report_designer/i18n/it.po +++ b/addons/report_designer/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_designer diff --git a/addons/report_webkit/i18n/fr.po b/addons/report_webkit/i18n/fr.po index 5232d63f666..ce35f7fb0d6 100644 --- a/addons/report_webkit/i18n/fr.po +++ b/addons/report_webkit/i18n/fr.po @@ -8,24 +8,24 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-09 15:35+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2011-01-11 11:04+0000\n" +"Last-Translator: Quentin THEURET \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:19+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_webkit #: field:ir.actions.report.xml,webkit_header:0 msgid "WebKit Header" -msgstr "" +msgstr "En-tête WebKit" #. module: report_webkit #: view:ir.actions.report.xml:0 msgid "Webkit Template (used if Report File is not found)" -msgstr "" +msgstr "Modèle WebKit (utilisé si le rapport n'est pas trouvé)" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -36,22 +36,22 @@ msgstr "" #: model:ir.actions.act_window,name:report_webkit.action_header_img #: model:ir.ui.menu,name:report_webkit.menu_header_img msgid "Header IMG" -msgstr "" +msgstr "En-tête IMG" #. module: report_webkit #: field:res.company,lib_path:0 msgid "Webkit Executable Path" -msgstr "" +msgstr "Chemin de l'exécutable Webkit" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "Ledger 28 431.8 x 279.4 mm" -msgstr "" +msgstr "Format livre 28 431,8 x 279.4 mm" #. module: report_webkit #: help:ir.header_img,type:0 msgid "Image type(png,gif,jpeg)" -msgstr "" +msgstr "Type d'image (png, gif, jpeg)" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -62,23 +62,23 @@ msgstr "" #: field:ir.header_img,company_id:0 #: field:ir.header_webkit,company_id:0 msgid "Company" -msgstr "" +msgstr "Société" #. module: report_webkit #: code:addons/report_webkit/webkit_report.py:84 #, python-format msgid "path to Wkhtmltopdf is not absolute" -msgstr "" +msgstr "Le chemin vers Wkhtmltopdf n'est pas absolu" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "DLE 26 110 x 220 mm" -msgstr "" +msgstr "DLE 26 110 x 220 mm" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "B7 21 88 x 125 mm" -msgstr "" +msgstr "B7 21 88 x 125 mm" #. module: report_webkit #: code:addons/report_webkit/webkit_report.py:290 @@ -87,12 +87,12 @@ msgstr "" #: code:addons/report_webkit/webkit_report.py:338 #, python-format msgid "Webkit render" -msgstr "" +msgstr "Rendu Webkit" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "Folio 27 210 x 330 mm" -msgstr "" +msgstr "Folio 27 210 x 330 mm" #. module: report_webkit #: code:addons/report_webkit/webkit_report.py:67 @@ -105,11 +105,18 @@ msgid "" "http://code.google.com/p/wkhtmltopdf/downloads/list and set the'+\n" " ' path to the executable on the Company form." msgstr "" +"Veuillez installer l'exécutable sur votre système'+\n" +" ' (sudo apt-get install wkhtmltopdf) ou " +"téléchargez-le ici:'+\n" +" ' " +"http://code.google.com/p/wkhtmltopdf/downloads/list et indiquez le'+\n" +" ' chemin vers l'exécutable sur le formulaire de " +"la société.." #. module: report_webkit #: help:ir.header_img,name:0 msgid "Name of Image" -msgstr "" +msgstr "Nom de l'image" #. module: report_webkit #: code:addons/report_webkit/webkit_report.py:78 @@ -119,68 +126,71 @@ msgid "" " 'Given path is not executable or path is " "wrong" msgstr "" +"Chemin de Wkhtmltopdf indiqué dans la société est erroné'+\n" +" 'Le chemin renseigné n'est pas exécutable ou " +"le chemin est erroné" #. module: report_webkit #: code:addons/report_webkit/webkit_report.py:151 #, python-format msgid "Webkit raise an error" -msgstr "" +msgstr "Webkit a retourné une erreur" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "Legal 3 8.5 x 14 inches, 215.9 x 355.6 mm" -msgstr "" +msgstr "Legal 3 8.5 x 14 inches, 215.9 x 355.6 mm" #. module: report_webkit #: model:ir.model,name:report_webkit.model_ir_header_webkit msgid "ir.header_webkit" -msgstr "" +msgstr "ir.header_webkit" #. module: report_webkit #: model:ir.actions.act_window,name:report_webkit.action_header_webkit #: model:ir.ui.menu,name:report_webkit.menu_header_webkit msgid "Header HTML" -msgstr "" +msgstr "En-tête HTML" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "A4 0 210 x 297 mm, 8.26 x 11.69 inches" -msgstr "" +msgstr "A4 0 210 x 297 mm, 8.26 x 11.69 pouces" #. module: report_webkit #: view:report.webkit.actions:0 msgid "_Cancel" -msgstr "" +msgstr "_Annuler" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "B2 17 500 x 707 mm" -msgstr "" +msgstr "B2 17 500 x 707 mm" #. module: report_webkit #: model:ir.model,name:report_webkit.model_ir_header_img msgid "ir.header_img" -msgstr "" +msgstr "ir.header_img" #. module: report_webkit #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "Erreur ! Vous ne pouvez pas créer de sociétés récursives." #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "A0 5 841 x 1189 mm" -msgstr "" +msgstr "A0 5 841 x 1189 mm" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "C5E 24 163 x 229 mm" -msgstr "" +msgstr "C5E 24 163 x 229 mm" #. module: report_webkit #: field:ir.header_img,type:0 msgid "Type" -msgstr "" +msgstr "Type" #. module: report_webkit #: code:addons/report_webkit/wizard/report_webkit_actions.py:134 @@ -191,33 +201,34 @@ msgstr "" #. module: report_webkit #: field:res.company,header_image:0 msgid "Available Images" -msgstr "" +msgstr "Images disponibles" #. module: report_webkit #: field:ir.header_webkit,html:0 msgid "webkit header" -msgstr "" +msgstr "en-tête webkit" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "B1 15 707 x 1000 mm" -msgstr "" +msgstr "B1 15 707 x 1000 mm" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "A1 6 594 x 841 mm" -msgstr "" +msgstr "A1 6 594 x 841 mm" #. module: report_webkit #: help:ir.actions.report.xml,webkit_header:0 msgid "The header linked to the report" -msgstr "" +msgstr "L'en-tête liée au rapport" #. module: report_webkit #: code:addons/report_webkit/webkit_report.py:66 #, python-format msgid "Wkhtmltopdf library path is not set in company" msgstr "" +"Le chemin vers la libraire Wkhtmltopdf n'est pas renseigné dans la société" #. module: report_webkit #: model:ir.module.module,description:report_webkit.module_meta_information @@ -267,48 +278,48 @@ msgstr "" #: view:ir.actions.report.xml:0 #: view:res.company:0 msgid "Webkit" -msgstr "" +msgstr "Webkit" #. module: report_webkit #: help:ir.header_webkit,format:0 msgid "Select Proper Paper size" -msgstr "" +msgstr "Sélectionnez le format de papier correct" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "B5 1 176 x 250 mm, 6.93 x 9.84 inches" -msgstr "" +msgstr "B5 1 176 x 250 mm, 6.93 x 9.84 pouces" #. module: report_webkit #: view:ir.header_webkit:0 msgid "Content and styling" -msgstr "" +msgstr "Contenu et style" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "A7 11 74 x 105 mm" -msgstr "" +msgstr "A7 11 74 x 105 mm" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "A6 10 105 x 148 mm" -msgstr "" +msgstr "A6 10 105 x 148 mm" #. module: report_webkit #: help:ir.actions.report.xml,report_webkit_data:0 msgid "This template will be used if the main report file is not found" -msgstr "" +msgstr "Ce modèle sera utilisé si le rapport principal n'est pas trouvé" #. module: report_webkit #: field:ir.header_webkit,margin_top:0 msgid "Top Margin (mm)" -msgstr "" +msgstr "Marge supérieure (mm)" #. module: report_webkit #: code:addons/report_webkit/webkit_report.py:246 #, python-format msgid "Please set a header in company settings" -msgstr "" +msgstr "Veuillez indiquer une en-tête dans les paramètres de la société" #. module: report_webkit #: view:report.webkit.actions:0 @@ -325,7 +336,7 @@ msgstr "" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "B3 18 353 x 500 mm" -msgstr "" +msgstr "B3 18 353 x 500 mm" #. module: report_webkit #: help:ir.actions.report.xml,webkit_debug:0 @@ -335,7 +346,7 @@ msgstr "" #. module: report_webkit #: field:ir.header_img,img:0 msgid "Image" -msgstr "" +msgstr "Image" #. module: report_webkit #: field:res.company,header_webkit:0 @@ -392,7 +403,7 @@ msgstr "" #. module: report_webkit #: model:ir.model,name:report_webkit.model_res_company msgid "Companies" -msgstr "" +msgstr "Sociétés" #. module: report_webkit #: field:ir.header_webkit,margin_bottom:0 @@ -417,7 +428,7 @@ msgstr "" #. module: report_webkit #: field:ir.header_webkit,orientation:0 msgid "Orientation" -msgstr "" +msgstr "Orientation" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -489,7 +500,7 @@ msgstr "" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "B0 14 1000 x 1414 mm" -msgstr "" +msgstr "B0 14 1000 x 1414 mm" #. module: report_webkit #: field:ir.actions.report.xml,report_webkit_data:0 @@ -505,7 +516,7 @@ msgstr "" #: field:ir.header_img,name:0 #: field:ir.header_webkit,name:0 msgid "Name" -msgstr "" +msgstr "Nom" #. module: report_webkit #: selection:ir.header_webkit,format:0 @@ -557,4 +568,4 @@ msgstr "" #. module: report_webkit #: model:ir.model,name:report_webkit.model_ir_actions_report_xml msgid "ir.actions.report.xml" -msgstr "" +msgstr "ir.actions.report.xml" diff --git a/addons/sale/i18n/fr.po b/addons/sale/i18n/fr.po index 5052693fb80..ab64f912f3b 100644 --- a/addons/sale/i18n/fr.po +++ b/addons/sale/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 13:26+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2011-01-11 19:22+0000\n" +"Last-Translator: Quentin THEURET \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 04:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale @@ -79,7 +79,7 @@ msgstr "" #. module: sale #: help:sale.order,partner_shipping_id:0 msgid "Shipping address for current sales order." -msgstr "" +msgstr "Adresse d'expédition pour le bon de commande actuel." #. module: sale #: field:sale.advance.payment.inv,qtty:0 @@ -102,7 +102,7 @@ msgstr "Annuler la commande" #. module: sale #: view:sale.config.picking_policy:0 msgid "Configure Sales Order Logistics" -msgstr "" +msgstr "Paramétrez la logistique des ventes" #. module: sale #: code:addons/sale/sale.py:603 @@ -129,7 +129,7 @@ msgstr "TVA" #. module: sale #: model:process.node,note:sale.process_node_saleorderprocurement0 msgid "Drives procurement orders for every sales order line." -msgstr "" +msgstr "Génère des ordres d'approvisionnements pour chaque ligne de commande" #. module: sale #: selection:sale.config.picking_policy,picking_policy:0 @@ -273,7 +273,7 @@ msgstr "" #. module: sale #: model:ir.model,name:sale.model_sale_make_invoice msgid "Sales Make Invoice" -msgstr "" +msgstr "Vente : Facturer" #. module: sale #: view:sale.order:0 @@ -367,7 +367,7 @@ msgstr "Configurer" #. module: sale #: constraint:stock.move:0 msgid "You try to assign a lot which is not from the same product" -msgstr "" +msgstr "Vous essayez d'affecter un lot qui n'est pas pour ce produit." #. module: sale #: selection:sale.report,month:0 @@ -460,6 +460,8 @@ msgid "" "The salesman confirms the quotation. The state of the sales order becomes " "'In progress' or 'Manual in progress'." msgstr "" +"Le vendeur confirme le devis. L'état du bon de commande devient \"En cours\" " +"ou \"Manuel, en cours\"" #. module: sale #: code:addons/sale/sale.py:971 @@ -473,7 +475,7 @@ msgstr "" #: code:addons/sale/sale.py:1042 #, python-format msgid "(n/a)" -msgstr "" +msgstr "(n/a)" #. module: sale #: help:sale.advance.payment.inv,product_id:0 @@ -515,6 +517,7 @@ msgstr "Adresse de facturation pour le bon de commandes actuel" #: view:sale.installer:0 msgid "Enhance your core Sales Application with additional functionalities." msgstr "" +"Complétez l'application \"Ventes\" avec de nouvelles fonctionnalités." #. module: sale #: field:sale.order,invoiced_rate:0 @@ -1227,7 +1230,7 @@ msgstr "À vérifier par le comptable." #: view:sale.report:0 #: field:sale.report,uom_name:0 msgid "Reference UoM" -msgstr "" +msgstr "UdM référence" #. module: sale #: model:ir.model,name:sale.model_sale_order_line_make_invoice @@ -1345,7 +1348,7 @@ msgstr "Bon de préparation et de livraison" #. module: sale #: field:sale.order,origin:0 msgid "Source Document" -msgstr "" +msgstr "Document d'origine" #. module: sale #: view:sale.order.line:0 @@ -1521,7 +1524,7 @@ msgstr "" #: model:ir.actions.act_window,name:sale.open_board_sales_manager #: model:ir.ui.menu,name:sale.menu_board_sales_manager msgid "Sales Dashboard" -msgstr "" +msgstr "Tableaux de bord des ventes" #. module: sale #: code:addons/sale/sale.py:1165 @@ -1545,7 +1548,7 @@ msgstr "À facturer" #. module: sale #: help:sale.order,date_confirm:0 msgid "Date on which sales order is confirmed." -msgstr "" +msgstr "Date à laquelle le bon de commande est confirmé." #. module: sale #: field:sale.order,company_id:0 @@ -1684,7 +1687,7 @@ msgstr "Confirmer" #. module: sale #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "Erreur ! Vous ne pouvez pas créer de sociétés récursives." #. module: sale #: view:board.board:0 @@ -1707,7 +1710,7 @@ msgstr "Lignes de ventes" #. module: sale #: field:sale.order.line,delay:0 msgid "Delivery Lead Time" -msgstr "" +msgstr "Délai de livraison" #. module: sale #: view:res.company:0 @@ -1821,7 +1824,7 @@ msgstr "Facture Anticipée" #: code:addons/sale/sale.py:591 #, python-format msgid "The sales order '%s' has been cancelled." -msgstr "" +msgstr "Le bon de commande \"%sé a été annulé." #. module: sale #: selection:sale.order.line,state:0 @@ -1906,6 +1909,8 @@ msgstr "Votre facture a été créée avec succès !" #, python-format msgid "You must first cancel all invoices attached to this sales order." msgstr "" +"Vous devez d'abord annuler toutes les factures en rapport avec ce bon de " +"commande." #. module: sale #: selection:sale.report,month:0 @@ -1997,7 +2002,7 @@ msgstr "Pas assez de stock !" #. module: sale #: constraint:stock.move:0 msgid "You must assign a production lot for this product" -msgstr "" +msgstr "Vous devez affecter un lot de fabrication à ce produit." #. module: sale #: field:sale.order.line,sequence:0 @@ -2017,7 +2022,7 @@ msgstr "" #. module: sale #: help:sale.order,invoiced:0 msgid "It indicates that an invoice has been paid." -msgstr "" +msgstr "Cela indique que la facture a été payée." #. module: sale #: report:sale.order:0 diff --git a/addons/sale/i18n/it.po b/addons/sale/i18n/it.po index 0db3e66d533..01275158b8c 100644 --- a/addons/sale/i18n/it.po +++ b/addons/sale/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-06 19:42+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2011-01-11 05:17+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-08 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale diff --git a/addons/sale/i18n/pt_BR.po b/addons/sale/i18n/pt_BR.po index c27eb55650c..fae9ae92ead 100644 --- a/addons/sale/i18n/pt_BR.po +++ b/addons/sale/i18n/pt_BR.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-14 21:34+0000\n" -"Last-Translator: Christophe (OpenERP) \n" +"PO-Revision-Date: 2011-01-11 17:04+0000\n" +"Last-Translator: Emerson \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:07+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale #: view:board.board:0 #: model:ir.actions.act_window,name:sale.action_sales_by_salesman msgid "Sales by Salesman in last 90 days" -msgstr "" +msgstr "Vendas por Vendedor nos últimos 90 dias" #. module: sale #: help:sale.installer,delivery:0 @@ -40,7 +40,7 @@ msgstr "" #. module: sale #: help:sale.order,partner_shipping_id:0 msgid "Shipping address for current sales order." -msgstr "" +msgstr "Endereço de entrega para o pedido de venda atual." #. module: sale #: field:sale.advance.payment.inv,qtty:0 @@ -63,13 +63,13 @@ msgstr "Cancelar Pedido" #. module: sale #: view:sale.config.picking_policy:0 msgid "Configure Sales Order Logistics" -msgstr "" +msgstr "Configura a Logística do Pedido de Vendas" #. module: sale #: code:addons/sale/sale.py:603 #, python-format msgid "The quotation '%s' has been converted to a sales order." -msgstr "" +msgstr "A cotação '%s' foi convertida em um pedido de venda." #. module: sale #: selection:sale.order,order_policy:0 @@ -197,7 +197,7 @@ msgstr "Quantidades Pedidas" #. module: sale #: view:sale.report:0 msgid "Sales by Salesman" -msgstr "" +msgstr "Vendas por Vendedor" #. module: sale #: field:sale.order.line,move_ids:0 @@ -265,7 +265,7 @@ msgstr "Empacotamento" #. module: sale #: model:process.transition,name:sale.process_transition_saleinvoice0 msgid "From a sales order" -msgstr "" +msgstr "A partir de pedido de venda" #. module: sale #: field:sale.shop,name:0 @@ -321,12 +321,12 @@ msgstr "" #. module: sale #: view:sale.installer:0 msgid "Configure" -msgstr "" +msgstr "Configurar" #. module: sale #: constraint:stock.move:0 msgid "You try to assign a lot which is not from the same product" -msgstr "" +msgstr "Você tentou atribuir um lote que não é do mesmo produto" #. module: sale #: code:addons/sale/sale.py:620 @@ -343,7 +343,7 @@ msgstr "Junho" #: code:addons/sale/sale.py:584 #, python-format msgid "Could not cancel this sales order !" -msgstr "" +msgstr "Este pedido de venda não pode ser cancelado !" #. module: sale #: model:ir.model,name:sale.model_sale_report @@ -353,7 +353,7 @@ msgstr "Estatísticas de Ordem de Vendas" #. module: sale #: help:sale.order,project_id:0 msgid "The analytic account related to a sales order." -msgstr "" +msgstr "Conta analítica relacionada ao pedido de venda." #. module: sale #: selection:sale.report,month:0 @@ -371,7 +371,7 @@ msgstr "Cotações" #. module: sale #: help:sale.order,pricelist_id:0 msgid "Pricelist for current sales order." -msgstr "" +msgstr "Lista de preços para o pedido de venda atual." #. module: sale #: selection:sale.config.picking_policy,step:0 @@ -425,18 +425,22 @@ msgid "" "The salesman confirms the quotation. The state of the sales order becomes " "'In progress' or 'Manual in progress'." msgstr "" +"O vendedor confirma a cotação. O status do pedido de vendas se torna 'em " +"progresso' ou 'Manual em progresso'." #. module: sale #: code:addons/sale/sale.py:971 #, python-format msgid "You must first cancel stock moves attached to this sales order line." msgstr "" +"Primeiramente você precisa cancelar o movimento de estoque relacionado a " +"esta linha de pedido de venda." #. module: sale #: code:addons/sale/sale.py:1042 #, python-format msgid "(n/a)" -msgstr "" +msgstr "(n/a)" #. module: sale #: help:sale.advance.payment.inv,product_id:0 @@ -459,6 +463,8 @@ msgid "" "You cannot make an advance on a sales order " "that is defined as 'Automatic Invoice after delivery'." msgstr "" +"Você não pode fazer um adiantamento para um pedido de venda que estiver " +"definido como 'Faturamento Automático após entrega'." #. module: sale #: view:sale.order:0 @@ -471,12 +477,13 @@ msgstr "Anotações" #. module: sale #: help:sale.order,partner_invoice_id:0 msgid "Invoice address for current sales order." -msgstr "" +msgstr "Endereço de fatura para o pedido de venda atual." #. module: sale #: view:sale.installer:0 msgid "Enhance your core Sales Application with additional functionalities." msgstr "" +"Melhora o núcleo do Sistema de Vendas com funcionalidades adicionais." #. module: sale #: field:sale.order,invoiced_rate:0 @@ -502,7 +509,7 @@ msgstr "Parceiro designado" #. module: sale #: sql_constraint:sale.order:0 msgid "Order Reference must be unique !" -msgstr "" +msgstr "Referência de Pedido deve ser única !" #. module: sale #: selection:sale.report,month:0 @@ -512,7 +519,7 @@ msgstr "Março" #. module: sale #: help:sale.order,amount_total:0 msgid "The total amount." -msgstr "" +msgstr "Montante total." #. module: sale #: field:sale.order.line,price_subtotal:0 @@ -530,6 +537,8 @@ msgid "" "For every sales order line, a procurement order is created to supply the " "sold product." msgstr "" +"Para cada linha do pedido de venda, um pedido de aquisição é criado para " +"suprir o produto vendido." #. module: sale #: help:sale.order,incoterm:0 @@ -568,12 +577,12 @@ msgstr "" #: model:ir.model,name:sale.model_sale_order_line #: field:stock.move,sale_line_id:0 msgid "Sales Order Line" -msgstr "" +msgstr "Linha de Pedido de Vendas" #. module: sale #: view:sale.config.picking_policy:0 msgid "Setup your sales workflow and default values." -msgstr "" +msgstr "Configure seu workflow de vendas e os valores padrões." #. module: sale #: field:sale.shop,warehouse_id:0 @@ -666,7 +675,7 @@ msgstr "Todas as Cotações" #. module: sale #: selection:sale.order,order_policy:0 msgid "Invoice On Order After Delivery" -msgstr "" +msgstr "Faturamento no Pedido Após Entrega" #. module: sale #: selection:sale.report,month:0 @@ -715,7 +724,7 @@ msgstr "Vendas por Mês" #: code:addons/sale/sale.py:970 #, python-format msgid "Could not cancel sales order line!" -msgstr "" +msgstr "A linha do pedido de venda não pode ser cancelada!" #. module: sale #: field:res.company,security_lead:0 @@ -743,6 +752,8 @@ msgid "" "It indicates that the sales order has been delivered. This field is updated " "only after the scheduler(s) have been launched." msgstr "" +"Indica que o pedido de venda foi entregue. Este campo é atualizado assim que " +"o agendamento for executado." #. module: sale #: view:sale.report:0 @@ -780,7 +791,7 @@ msgstr "" #: model:ir.model,name:sale.model_sale_shop #: view:sale.shop:0 msgid "Sales Shop" -msgstr "" +msgstr "Loja de Vendas" #. module: sale #: model:ir.model,name:sale.model_res_company @@ -809,6 +820,8 @@ msgid "" "The same sales order may have been invoiced in several times (by line for " "example)." msgstr "" +"Esta é a lista de faturas que foram geradas para este pedido de venda. O " +"mesmo pedido de venda pode ser faturado várias vezes (por linha por exemplo)." #. module: sale #: report:sale.order:0 @@ -826,6 +839,7 @@ msgstr "O nome e endereço do contato que requisitou a ordem ou cotação." #, python-format msgid "You cannot cancel a sales order line that has already been invoiced !" msgstr "" +"Você não pode cancelar linhas de pedido de venda que já foram faturadas!" #. module: sale #: view:sale.order:0 @@ -886,7 +900,7 @@ msgstr "Calcular" #. module: sale #: view:sale.report:0 msgid "Sales by Partner" -msgstr "" +msgstr "Vendas por Parceiros" #. module: sale #: field:sale.order,partner_order_id:0 @@ -947,12 +961,12 @@ msgstr "Endereço de Embarque :" #: view:board.board:0 #: model:ir.actions.act_window,name:sale.action_sales_by_partner msgid "Sales per Customer in last 90 days" -msgstr "" +msgstr "Vendas por Cliente nos últimos 90 dias" #. module: sale #: model:process.node,note:sale.process_node_quotation0 msgid "Draft state of sales order" -msgstr "" +msgstr "Status provisório de pedidos de venda" #. module: sale #: model:process.transition,name:sale.process_transition_deliver0 @@ -993,6 +1007,7 @@ msgstr "Confirmar Cotação" #: help:sale.order,origin:0 msgid "Reference of the document that generated this sales order request." msgstr "" +"Referência para o documento que gerou esta solicitação de pedido de venda." #. module: sale #: view:sale.order:0 @@ -1074,7 +1089,7 @@ msgstr "Política de Embarque" #. module: sale #: help:sale.order,create_date:0 msgid "Date on which sales order is created." -msgstr "" +msgstr "Data em que foi criado o pedido de venda." #. module: sale #: model:ir.model,name:sale.model_stock_move @@ -1129,7 +1144,7 @@ msgstr "Erro !" #: code:addons/sale/sale.py:570 #, python-format msgid "Could not cancel sales order !" -msgstr "" +msgstr "Pedido de venda nao pode ser cancelado !" #. module: sale #: selection:sale.report,month:0 @@ -1177,7 +1192,7 @@ msgstr "Vendas" #. module: sale #: selection:sale.order,order_policy:0 msgid "Invoice From The Picking" -msgstr "" +msgstr "Faturar a partir da Separação" #. module: sale #: model:process.node,note:sale.process_node_invoice0 @@ -1188,7 +1203,7 @@ msgstr "Aguardando revisão do contador." #: view:sale.report:0 #: field:sale.report,uom_name:0 msgid "Reference UoM" -msgstr "" +msgstr "UdM Referencial" #. module: sale #: model:ir.model,name:sale.model_sale_order_line_make_invoice @@ -1296,6 +1311,8 @@ msgid "" "You have to select a customer in the sales form !\n" "Please set one customer before choosing a product." msgstr "" +"Você deve selecionar um cliente na tela de vendas !\n" +"Por favor, selecione um cliente antes de escolher o produto." #. module: sale #: selection:sale.config.picking_policy,step:0 @@ -1305,7 +1322,7 @@ msgstr "Lista de Separação & Ordem de Entrega" #. module: sale #: field:sale.order,origin:0 msgid "Source Document" -msgstr "" +msgstr "Documento de Origem" #. module: sale #: view:sale.order.line:0 @@ -1325,18 +1342,20 @@ msgstr "Documento de mudança para o cliente." #. module: sale #: help:sale.order,amount_untaxed:0 msgid "The amount without tax." -msgstr "" +msgstr "Montante sem impostos." #. module: sale #: code:addons/sale/sale.py:571 #, python-format msgid "You must first cancel all picking attached to this sales order." msgstr "" +"Primeiramente você precisa cancelar todas as separações relacionadas a este " +"pedido de venda." #. module: sale #: model:ir.model,name:sale.model_sale_advance_payment_inv msgid "Sales Advance Payment Invoice" -msgstr "" +msgstr "Fatura de Vendas com Pagamento Antecipado" #. module: sale #: field:sale.order,incoterm:0 @@ -1432,6 +1451,10 @@ msgid "" "generates an invoice or a delivery order as soon as it is confirmed by the " "salesman." msgstr "" +"Dependendo do controle de faturamento de pedido de venda, a fatura pode ser " +"baseada na entrega ou na quantidade pedida. Desta forma, o pedido de venda " +"pode gerar uma fatura ou ordem de entrega assim que for confirmado pelo " +"vendendor." #. module: sale #: code:addons/sale/sale.py:1116 @@ -1469,6 +1492,7 @@ msgstr "Total" #, python-format msgid "There is no sales journal defined for this company: \"%s\" (id:%d)" msgstr "" +"Não há nenhum diário de vendas definido para esta empresa: \"%s\" (id:%d)" #. module: sale #: model:process.transition,note:sale.process_transition_deliver0 @@ -1486,13 +1510,13 @@ msgstr "" #: model:ir.actions.act_window,name:sale.open_board_sales_manager #: model:ir.ui.menu,name:sale.menu_board_sales_manager msgid "Sales Dashboard" -msgstr "" +msgstr "Painel de Vendas" #. module: sale #: code:addons/sale/sale.py:1165 #, python-format msgid "Cannot delete a sales order line which is %s !" -msgstr "" +msgstr "Não se pode excluir uma linha de pedido de venda que estiver %s !" #. module: sale #: model:ir.actions.act_window,name:sale.action_sale_order_make_invoice @@ -1510,7 +1534,7 @@ msgstr "Para Faturar" #. module: sale #: help:sale.order,date_confirm:0 msgid "Date on which sales order is confirmed." -msgstr "" +msgstr "Data na qual o pedido de venda é confirmado." #. module: sale #: field:sale.order,company_id:0 @@ -1542,6 +1566,7 @@ msgstr "Exceção de Faturamento" msgid "" "This is a list of picking that has been generated for this sales order." msgstr "" +"Esta é a lista de separação que foi gerada para este pedido de venda." #. module: sale #: help:sale.installer,sale_margin:0 @@ -1599,7 +1624,7 @@ msgstr "Aviso" #: view:board.board:0 #: model:ir.actions.act_window,name:sale.action_view_sales_by_month msgid "Sales by Month" -msgstr "" +msgstr "Vendas por Mês" #. module: sale #: code:addons/sale/sale.py:1045 @@ -1611,6 +1636,11 @@ msgid "" "\n" "EAN: %s Quantity: %s Type of ul: %s" msgstr "" +"Você selecionou a quantidade de %d Unidades.\n" +"Mas isto não é compatível a embalagem selecionada.\n" +"Aqui está uma proposta de quantidade de acordo com a embalagem:\n" +"\n" +"EAN: %s Quantidade: %s Tipo de ul: %s" #. module: sale #: model:ir.model,name:sale.model_sale_order @@ -1649,13 +1679,13 @@ msgstr "Confirmar" #. module: sale #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "Erro! Você não pode criar empresas recursivas." #. module: sale #: view:board.board:0 #: model:ir.actions.act_window,name:sale.action_sales_product_total_price msgid "Sales by Product's Category in last 90 days" -msgstr "" +msgstr "Vendas por Categoria de Produtos nos últimos 90 dias" #. module: sale #: view:sale.order:0 @@ -1714,6 +1744,10 @@ msgid "" "1.The state of this sales order line is either \"draft\" or \"cancel\"!\n" "2.The Sales Order Line is Invoiced!" msgstr "" +"A Fatura não pode ser criada para esta Linha de Pedido de Vendas devido a um " +"dos seguintes motivos:\n" +"1.O status desta linha de pedido é \"provisória\" ou \"cancelada\"!\n" +"1.A Linha do Pedido de Venda está faturado!" #. module: sale #: field:sale.order.line,th_weight:0 @@ -1786,7 +1820,7 @@ msgstr "Avançar Fatura" #: code:addons/sale/sale.py:591 #, python-format msgid "The sales order '%s' has been cancelled." -msgstr "" +msgstr "O pedido de venda '%s' foi cancelado." #. module: sale #: selection:sale.order.line,state:0 @@ -1810,12 +1844,12 @@ msgstr "" #. module: sale #: help:sale.order,amount_tax:0 msgid "The tax amount." -msgstr "" +msgstr "Montante de impostos." #. module: sale #: view:sale.order:0 msgid "Packings" -msgstr "" +msgstr "Separação" #. module: sale #: field:sale.config.picking_policy,progress:0 @@ -1871,6 +1905,8 @@ msgstr "Sua Nota Fiscal foi criada com sucesso!" #, python-format msgid "You must first cancel all invoices attached to this sales order." msgstr "" +"Primeiramente você deve cancelar todas as faturas relacionadas a este pedido " +"de venda." #. module: sale #: selection:sale.report,month:0 @@ -1880,7 +1916,7 @@ msgstr "Janeiro" #. module: sale #: view:sale.installer:0 msgid "Configure Your Sales Management Application" -msgstr "" +msgstr "Configure seu Sistema de Gerenciamento de Vendas" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree4 @@ -1910,6 +1946,8 @@ msgid "" "One Procurement order for each sales order line and for each of the " "components." msgstr "" +"Um pedido de Aquisição para cada linha do pedido de venda e para cada um dos " +"componentes." #. module: sale #: model:process.transition.action,name:sale.process_transition_action_assign0 @@ -1924,19 +1962,19 @@ msgstr "Data da Ordem" #. module: sale #: model:process.node,note:sale.process_node_order0 msgid "Confirmed sales order to invoice." -msgstr "" +msgstr "Pedidos de venda confirmados para faturamento." #. module: sale #: code:addons/sale/sale.py:290 #, python-format msgid "Cannot delete Sales Order(s) which are already confirmed !" -msgstr "" +msgstr "Pedidos de Venda confirmados não podem ser cancelados !" #. module: sale #: code:addons/sale/sale.py:316 #, python-format msgid "The sales order '%s' has been set in draft state." -msgstr "" +msgstr "O pedido de venda '%s' foi colocado em status provisório." #. module: sale #: selection:sale.order.line,type:0 @@ -1962,12 +2000,12 @@ msgstr "Sem estoque suficiente !" #. module: sale #: constraint:stock.move:0 msgid "You must assign a production lot for this product" -msgstr "" +msgstr "Você deve atribuir um lote de produção para este produto." #. module: sale #: field:sale.order.line,sequence:0 msgid "Layout Sequence" -msgstr "" +msgstr "Sequência do Layout" #. module: sale #: model:ir.actions.act_window,help:sale.action_shop_form @@ -1982,7 +2020,7 @@ msgstr "" #. module: sale #: help:sale.order,invoiced:0 msgid "It indicates that an invoice has been paid." -msgstr "" +msgstr "Indica que uma fatura foi paga." #. module: sale #: report:sale.order:0 @@ -2011,7 +2049,7 @@ msgstr "Cliente" #. module: sale #: model:product.template,name:sale.advance_product_0_product_template msgid "Advance" -msgstr "" +msgstr "Avançar" #. module: sale #: selection:sale.report,month:0 @@ -2040,7 +2078,7 @@ msgstr "Contabilidade" #. module: sale #: field:sale.config.picking_policy,step:0 msgid "Steps To Deliver a Sales Order" -msgstr "" +msgstr "Passos para a Entrega de um Pedido de Venda." #. module: sale #: view:sale.order:0 @@ -2051,7 +2089,7 @@ msgstr "Buscar Ordens de Venda" #. module: sale #: model:process.node,name:sale.process_node_saleorderprocurement0 msgid "Sales Order Requisition" -msgstr "" +msgstr "Solicitação para Pedido de Venda" #. module: sale #: report:sale.order:0 diff --git a/addons/sale/i18n/tr.po b/addons/sale/i18n/tr.po index aa7fa763471..1467d9877c7 100644 --- a/addons/sale/i18n/tr.po +++ b/addons/sale/i18n/tr.po @@ -7,25 +7,25 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-11-27 13:02+0000\n" -"Last-Translator: qdp (OpenERP) \n" +"PO-Revision-Date: 2011-01-11 13:27+0000\n" +"Last-Translator: Arif Aydogmus \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:06+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale #: view:board.board:0 #: model:ir.actions.act_window,name:sale.action_sales_by_salesman msgid "Sales by Salesman in last 90 days" -msgstr "" +msgstr "Satış elemanına göre son 90 gündeki satışlar" #. module: sale #: help:sale.installer,delivery:0 msgid "Allows you to compute delivery costs on your quotations." -msgstr "" +msgstr "Teklifinizdeki teslimat maliyetini hesaplamanızı sağlar." #. module: sale #: help:sale.order,picking_policy:0 @@ -33,13 +33,13 @@ msgid "" "If you don't have enough stock available to deliver all at once, do you " "accept partial shipments or not?" msgstr "" -"Bütün ürünleri bir kerede gönderecek kadar stok ürününüz yoksa kısmi " -"teslimatların kabul edilip edilmediği." +"Tek seferde teslimat için yeterli stok yoksa parçalı gönderim yapılsın mı " +"yapılmasın mı?" #. module: sale #: help:sale.order,partner_shipping_id:0 msgid "Shipping address for current sales order." -msgstr "" +msgstr "Seçili satış siparişi için teslimat adresi" #. module: sale #: field:sale.advance.payment.inv,qtty:0 @@ -51,24 +51,24 @@ msgstr "Adet" #: view:sale.report:0 #: field:sale.report,day:0 msgid "Day" -msgstr "" +msgstr "Gün" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_cancelorder0 #: view:sale.order:0 msgid "Cancel Order" -msgstr "Sipariş İptal" +msgstr "Siparişi İptal Et" #. module: sale #: view:sale.config.picking_policy:0 msgid "Configure Sales Order Logistics" -msgstr "" +msgstr "Satış siparişi lojistiğini yapılandır" #. module: sale #: code:addons/sale/sale.py:603 #, python-format msgid "The quotation '%s' has been converted to a sales order." -msgstr "" +msgstr "'%s' teklifi satış siparişine çevrildi." #. module: sale #: selection:sale.order,order_policy:0 @@ -79,7 +79,7 @@ msgstr "Ödeme Öncesi Teslimat" #: code:addons/sale/wizard/sale_make_invoice.py:42 #, python-format msgid "Warning !" -msgstr "" +msgstr "Uyarı !" #. module: sale #: report:sale.order:0 @@ -89,7 +89,7 @@ msgstr "KDV" #. module: sale #: model:process.node,note:sale.process_node_saleorderprocurement0 msgid "Drives procurement orders for every sales order line." -msgstr "" +msgstr "Satış siparişleri için üretim emirlerini yönetir." #. module: sale #: selection:sale.config.picking_policy,picking_policy:0 @@ -102,7 +102,7 @@ msgstr "Tek Seferde" #: field:sale.report,analytic_account_id:0 #: field:sale.shop,project_id:0 msgid "Analytic Account" -msgstr "Analitik Hesap" +msgstr "Analiz Hesabı" #. module: sale #: model:ir.actions.act_window,help:sale.action_order_line_tree2 @@ -115,13 +115,13 @@ msgstr "" #. module: sale #: model:process.node,name:sale.process_node_saleprocurement0 msgid "Procurement Order" -msgstr "" +msgstr "Üretim Siparişleri" #. module: sale #: view:sale.report:0 #: field:sale.report,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Cari" #. module: sale #: view:sale.order:0 diff --git a/addons/sale_analytic_plans/i18n/pt_BR.po b/addons/sale_analytic_plans/i18n/pt_BR.po index 4384ec9cbbd..996a88624a7 100644 --- a/addons/sale_analytic_plans/i18n/pt_BR.po +++ b/addons/sale_analytic_plans/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-12 00:46+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 21:49+0000\n" +"Last-Translator: Emerson \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:21+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_analytic_plans @@ -33,11 +33,14 @@ msgid "" " The base module to manage analytic distribution and sales orders.\n" " " msgstr "" +"\n" +" Módulo base para gerenciar distribuição analítica e pedidos de venda.\n" +" " #. module: sale_analytic_plans #: model:ir.model,name:sale_analytic_plans.model_sale_order_line msgid "Sales Order Line" -msgstr "" +msgstr "Linha de Pedido de Vendas" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Invalido XML para Arquitetura da View" diff --git a/addons/sale_crm/i18n/pt_BR.po b/addons/sale_crm/i18n/pt_BR.po index dc4ebca6a15..91be885ccd9 100644 --- a/addons/sale_crm/i18n/pt_BR.po +++ b/addons/sale_crm/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-11-27 06:22+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 18:10+0000\n" +"Last-Translator: Emerson \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:52+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_crm @@ -47,7 +47,7 @@ msgstr "O Cliente não tem endereço definido!" #. module: sale_crm #: model:ir.model,name:sale_crm.model_crm_make_sale msgid "Make sales" -msgstr "" +msgstr "Criar vendas" #. module: sale_crm #: model:ir.module.module,description:sale_crm.module_meta_information @@ -74,7 +74,7 @@ msgstr "_Criar" #. module: sale_crm #: sql_constraint:sale.order:0 msgid "Order Reference must be unique !" -msgstr "" +msgstr "Referência de Pedido deve ser única !" #. module: sale_crm #: help:crm.make.sale,close:0 @@ -162,7 +162,7 @@ msgstr "Cancelar" #. module: sale_crm #: model:ir.model,name:sale_crm.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "Pedido de Venda" #~ msgid "Crm opportunity quotation" #~ msgstr "Cotação da oportunidade de Crm" diff --git a/addons/sale_journal/i18n/hu.po b/addons/sale_journal/i18n/hu.po index 5b9680d5c0f..0bc9e62b8f3 100644 --- a/addons/sale_journal/i18n/hu.po +++ b/addons/sale_journal/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2009-02-03 06:25+0000\n" -"Last-Translator: <>\n" +"PO-Revision-Date: 2011-01-11 17:13+0000\n" +"Last-Translator: NOVOTRADE RENDSZERHÁZ \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:11+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_journal @@ -56,7 +56,7 @@ msgstr "" #. module: sale_journal #: field:res.partner,property_invoice_type:0 msgid "Invoicing Method" -msgstr "" +msgstr "Számlázási mód" #. module: sale_journal #: model:ir.module.module,description:sale_journal.module_meta_information @@ -89,7 +89,7 @@ msgstr "" #. module: sale_journal #: selection:sale_journal.invoice.type,invoicing_method:0 msgid "Non grouped" -msgstr "" +msgstr "Nem csoportosított" #. module: sale_journal #: selection:sale_journal.invoice.type,invoicing_method:0 @@ -112,7 +112,7 @@ msgstr "" #. module: sale_journal #: field:sale_journal.invoice.type,invoicing_method:0 msgid "Invoicing method" -msgstr "" +msgstr "Számlázási mód" #. module: sale_journal #: model:ir.model,name:sale_journal.model_sale_order @@ -125,7 +125,7 @@ msgstr "" #: field:sale_journal.invoice.type,name:0 #: field:stock.picking,invoice_type_id:0 msgid "Invoice Type" -msgstr "" +msgstr "Számla típusa" #. module: sale_journal #: field:sale_journal.invoice.type,active:0 @@ -142,7 +142,7 @@ msgstr "" #: model:ir.model,name:sale_journal.model_sale_journal_invoice_type #: model:ir.ui.menu,name:sale_journal.menu_definition_journal_invoice_type msgid "Invoice Types" -msgstr "" +msgstr "Számla típusok" #. module: sale_journal #: model:ir.model,name:sale_journal.model_stock_picking diff --git a/addons/sale_journal/i18n/pt_BR.po b/addons/sale_journal/i18n/pt_BR.po index c8fff2c83f9..3b8cdd2d2f0 100644 --- a/addons/sale_journal/i18n/pt_BR.po +++ b/addons/sale_journal/i18n/pt_BR.po @@ -7,34 +7,34 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2009-09-08 14:31+0000\n" -"Last-Translator: Aldo Giovani \n" +"PO-Revision-Date: 2011-01-11 18:15+0000\n" +"Last-Translator: Emerson \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:12+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 msgid "Note" -msgstr "" +msgstr "Nota" #. module: sale_journal #: help:res.partner,property_invoice_type:0 msgid "The type of journal used for sales and picking." -msgstr "" +msgstr "Tipo de diário usado para vendas e separação" #. module: sale_journal #: sql_constraint:sale.order:0 msgid "Order Reference must be unique !" -msgstr "" +msgstr "Referência de Pedido deve ser única !" #. module: sale_journal #: view:res.partner:0 msgid "Invoicing" -msgstr "" +msgstr "Faturamento" #. module: sale_journal #: view:res.partner:0 @@ -51,12 +51,12 @@ msgstr "" #. module: sale_journal #: view:sale_journal.invoice.type:0 msgid "Notes" -msgstr "" +msgstr "Notas" #. module: sale_journal #: field:res.partner,property_invoice_type:0 msgid "Invoicing Method" -msgstr "" +msgstr "Método de Faturamento" #. module: sale_journal #: model:ir.module.module,description:sale_journal.module_meta_information @@ -89,17 +89,17 @@ msgstr "" #. module: sale_journal #: selection:sale_journal.invoice.type,invoicing_method:0 msgid "Non grouped" -msgstr "" +msgstr "Não agrupado" #. module: sale_journal #: selection:sale_journal.invoice.type,invoicing_method:0 msgid "Grouped" -msgstr "" +msgstr "Agrupado" #. module: sale_journal #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Erro ! Você não pode criar membros recursivos associados." #. module: sale_journal #: model:ir.actions.act_window,help:sale_journal.action_definition_journal_invoice_type @@ -112,12 +112,12 @@ msgstr "" #. module: sale_journal #: field:sale_journal.invoice.type,invoicing_method:0 msgid "Invoicing method" -msgstr "" +msgstr "Método de faturamento" #. module: sale_journal #: model:ir.model,name:sale_journal.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "Pedido de Venda" #. module: sale_journal #: field:sale.order,invoice_type_id:0 @@ -125,34 +125,34 @@ msgstr "" #: field:sale_journal.invoice.type,name:0 #: field:stock.picking,invoice_type_id:0 msgid "Invoice Type" -msgstr "" +msgstr "Tipo de Fatura" #. module: sale_journal #: field:sale_journal.invoice.type,active:0 msgid "Active" -msgstr "" +msgstr "Ativo" #. module: sale_journal #: model:ir.model,name:sale_journal.model_res_partner msgid "Partner" -msgstr "" +msgstr "Parceiro" #. module: sale_journal #: model:ir.actions.act_window,name:sale_journal.action_definition_journal_invoice_type #: model:ir.model,name:sale_journal.model_sale_journal_invoice_type #: model:ir.ui.menu,name:sale_journal.menu_definition_journal_invoice_type msgid "Invoice Types" -msgstr "" +msgstr "Tipos de fatura" #. module: sale_journal #: model:ir.model,name:sale_journal.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "Lista de Separação" #. module: sale_journal #: model:ir.module.module,shortdesc:sale_journal.module_meta_information msgid "Managing sales and deliveries by journal" -msgstr "" +msgstr "Gerenciar vendas e entregas por diário" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Invalido XML para Arquitetura da View" diff --git a/addons/sale_layout/i18n/pt_BR.po b/addons/sale_layout/i18n/pt_BR.po new file mode 100644 index 00000000000..66c48787696 --- /dev/null +++ b/addons/sale_layout/i18n/pt_BR.po @@ -0,0 +1,302 @@ +# Brazilian Portuguese translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-03 16:58+0000\n" +"PO-Revision-Date: 2011-01-11 22:10+0000\n" +"Last-Translator: Emerson \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: sale_layout +#: selection:sale.order.line,layout_type:0 +msgid "Sub Total" +msgstr "Subtotal" + +#. module: sale_layout +#: model:ir.module.module,description:sale_layout.module_meta_information +msgid "" +"\n" +" This module provides features to improve the layout of the Sales Order.\n" +"\n" +" It gives you the possibility to\n" +" * order all the lines of a sales order\n" +" * add titles, comment lines, sub total lines\n" +" * draw horizontal lines and put page breaks\n" +"\n" +" " +msgstr "" +"\n" +" Este módulo fornece recursos para melhorar o layout dos Pedidos de " +"Venda.\n" +"\n" +" Permite a possibilidade de\n" +" * pedir todas as linhas de um pedido de venda\n" +" * adicionar títulos, linhas com comentário, linhas com subtotal\n" +" * desenhar linhas horizontais e colocar quebras de página\n" +"\n" +" " + +#. module: sale_layout +#: selection:sale.order.line,layout_type:0 +msgid "Title" +msgstr "Título" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Disc. (%)" +msgstr "Desc. (%)" + +#. module: sale_layout +#: selection:sale.order.line,layout_type:0 +msgid "Note" +msgstr "Nota" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Unit Price" +msgstr "Preço Unitário" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Order N°" +msgstr "Pedido N°" + +#. module: sale_layout +#: field:sale.order,abstract_line_ids:0 +msgid "Order Lines" +msgstr "Linhas de Pedido" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Disc.(%)" +msgstr "Desc. (%)" + +#. module: sale_layout +#: field:sale.order.line,layout_type:0 +msgid "Layout Type" +msgstr "Tipo do Layout" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Seq." +msgstr "Seq." + +#. module: sale_layout +#: view:sale.order:0 +msgid "UoM" +msgstr "UdM" + +#. module: sale_layout +#: selection:sale.order.line,layout_type:0 +msgid "Product" +msgstr "Produto" + +#. module: sale_layout +#: sql_constraint:sale.order:0 +msgid "Order Reference must be unique !" +msgstr "Referência de Pedido deve ser única !" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Description" +msgstr "Descrição" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Manual Description" +msgstr "Descrição Manual" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Our Salesman" +msgstr "Nosso Vendedor" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Automatic Declaration" +msgstr "Declaração Automática" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Invoice Lines" +msgstr "Linhas da Fatura" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Quantity" +msgstr "Quantidade" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Quotation N°" +msgstr "Cotação N°" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "VAT" +msgstr "VAT (imposto europeu)" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Make Invoice" +msgstr "Gerar Fatura" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Properties" +msgstr "Propriedades" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Invoice address :" +msgstr "Endereço de Faturamento :" + +#. module: sale_layout +#: model:ir.module.module,shortdesc:sale_layout.module_meta_information +msgid "Sale Order Layout" +msgstr "Layout do Pedido de Venda" + +#. module: sale_layout +#: selection:sale.order.line,layout_type:0 +msgid "Page Break" +msgstr "Quebra de Página" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Notes" +msgstr "Notas" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Date Ordered" +msgstr "Data do Pedido" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Shipping address :" +msgstr "Endereço de Entrega :" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Taxes" +msgstr "Impostos" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Net Total :" +msgstr "Total Líquido" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Tel. :" +msgstr "Tel. :" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Total :" +msgstr "Total :" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Payment Terms" +msgstr "Formas de Pagamento" + +#. module: sale_layout +#: view:sale.order:0 +msgid "History" +msgstr "Histórico" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Sale Order Lines" +msgstr "Linhas do Pedido de Venda" + +#. module: sale_layout +#: selection:sale.order.line,layout_type:0 +msgid "Separator Line" +msgstr "Linha Separadora" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Your Reference" +msgstr "Sua Referência" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Quotation Date" +msgstr "Data da Cotação" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "TVA :" +msgstr "Imposto TVA :" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Qty" +msgstr "Qtd" + +#. module: sale_layout +#: view:sale.order:0 +msgid "States" +msgstr "Estados" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Sales order lines" +msgstr "Linhas do pedido de venda" + +#. module: sale_layout +#: model:ir.actions.report.xml,name:sale_layout.sale_order_1 +msgid "Order with Layout" +msgstr "Pedido com Layout" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Extra Info" +msgstr "Info. Extra" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Taxes :" +msgstr "Impostos :" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Fax :" +msgstr "Fax :" + +#. module: sale_layout +#: model:ir.model,name:sale_layout.model_sale_order +msgid "Sales Order" +msgstr "Pedido de Venda" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Order Line" +msgstr "Linha de Pedido" + +#. module: sale_layout +#: report:sale.order.layout:0 +msgid "Price" +msgstr "Preço" + +#. module: sale_layout +#: model:ir.model,name:sale_layout.model_sale_order_line +msgid "Sales Order Line" +msgstr "Linha do Pedido de Vendas" + +#. module: sale_layout +#: view:sale.order:0 +msgid "Stock Moves" +msgstr "Movimentações de Estoque" diff --git a/addons/sale_margin/i18n/pt_BR.po b/addons/sale_margin/i18n/pt_BR.po new file mode 100644 index 00000000000..7cbe5329244 --- /dev/null +++ b/addons/sale_margin/i18n/pt_BR.po @@ -0,0 +1,340 @@ +# Brazilian Portuguese translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-03 16:58+0000\n" +"PO-Revision-Date: 2011-01-11 18:44+0000\n" +"Last-Translator: Emerson \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "Category" +msgstr "Categoria" + +#. module: sale_margin +#: selection:report.account.invoice.product,type:0 +msgid "Customer Refund" +msgstr "Reembolso de Cliente" + +#. module: sale_margin +#: selection:report.account.invoice.product,type:0 +msgid "Customer Invoice" +msgstr "Fatura de Cliente" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "February" +msgstr "Fevereiro" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "Current" +msgstr "Atual" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "Group By..." +msgstr "Agrupar Por..." + +#. module: sale_margin +#: view:report.account.invoice.product:0 +#: field:report.account.invoice.product,state:0 +msgid "State" +msgstr "Status" + +#. module: sale_margin +#: model:ir.module.module,description:sale_margin.module_meta_information +msgid "" +" \n" +" This module adds the 'Margin' on sales order,\n" +" which gives the profitability by calculating the difference between the " +"Unit Price and Cost Price\n" +" " +msgstr "" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +#: selection:report.account.invoice.product,state:0 +msgid "Draft" +msgstr "Provisório" + +#. module: sale_margin +#: selection:report.account.invoice.product,state:0 +msgid "Paid" +msgstr "Pago" + +#. module: sale_margin +#: model:ir.model,name:sale_margin.model_stock_picking +msgid "Picking List" +msgstr "Lista de Separação" + +#. module: sale_margin +#: help:sale.order,margin:0 +msgid "" +"It gives profitability by calculating the difference between the Unit Price " +"and Cost Price." +msgstr "" + +#. module: sale_margin +#: field:report.account.invoice.product,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: sale_margin +#: model:ir.model,name:sale_margin.model_report_account_invoice_product +msgid "Invoice Statistics" +msgstr "Estatística de Faturamento" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +#: field:report.account.invoice.product,product_id:0 +msgid "Product" +msgstr "Produto" + +#. module: sale_margin +#: sql_constraint:sale.order:0 +msgid "Order Reference must be unique !" +msgstr "Referência de Pedido deve ser única !" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "Invoice by Partner" +msgstr "Faturas por Parceiro" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "August" +msgstr "Agosto" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +#: selection:report.account.invoice.product,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "May" +msgstr "Maio" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "June" +msgstr "Junho" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "Date Invoiced" +msgstr "Data Faturada" + +#. module: sale_margin +#: model:ir.module.module,shortdesc:sale_margin.module_meta_information +msgid "Margins in Sales Order" +msgstr "Margens no Pedido de Venda" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "Search Margin" +msgstr "Procurar Margem" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "This Year" +msgstr "Este ano" + +#. module: sale_margin +#: field:report.account.invoice.product,date:0 +msgid "Date" +msgstr "Data" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "July" +msgstr "Julho" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "Extended Filters..." +msgstr "Filtros Extendidos..." + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "This Month" +msgstr "Este Mês" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +#: field:report.account.invoice.product,day:0 +msgid "Day" +msgstr "Dia" + +#. module: sale_margin +#: field:report.account.invoice.product,categ_id:0 +msgid "Categories" +msgstr "Categorias" + +#. module: sale_margin +#: field:account.invoice.line,cost_price:0 +#: field:report.account.invoice.product,cost_price:0 +#: field:sale.order.line,purchase_price:0 +msgid "Cost Price" +msgstr "Preço de Custo" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "October" +msgstr "Outubro" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "January" +msgstr "janeiro" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +#: field:report.account.invoice.product,year:0 +msgid "Year" +msgstr "Ano" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "September" +msgstr "Setembro" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "April" +msgstr "Abril" + +#. module: sale_margin +#: field:report.account.invoice.product,amount:0 +msgid "Amount" +msgstr "Montante" + +#. module: sale_margin +#: selection:report.account.invoice.product,type:0 +msgid "Supplier Refund" +msgstr "Reembolso de Fornecedor" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "March" +msgstr "Março" + +#. module: sale_margin +#: field:report.account.invoice.product,margin:0 +#: field:sale.order,margin:0 +#: field:sale.order.line,margin:0 +msgid "Margin" +msgstr "Margem" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "November" +msgstr "Novembro" + +#. module: sale_margin +#: field:report.account.invoice.product,quantity:0 +msgid "Quantity" +msgstr "Quantidade" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "Invoices by product" +msgstr "Faturas por produto" + +#. module: sale_margin +#: selection:report.account.invoice.product,type:0 +msgid "Supplier Invoice" +msgstr "Fatura de Fornecedor" + +#. module: sale_margin +#: field:stock.picking,invoice_ids:0 +msgid "Invoices" +msgstr "Faturas" + +#. module: sale_margin +#: selection:report.account.invoice.product,month:0 +msgid "December" +msgstr "Dezembro" + +#. module: sale_margin +#: model:ir.model,name:sale_margin.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linha da Fatura" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +#: field:report.account.invoice.product,month:0 +msgid "Month" +msgstr "Mês" + +#. module: sale_margin +#: selection:report.account.invoice.product,state:0 +msgid "Canceled" +msgstr "Cancelada" + +#. module: sale_margin +#: model:ir.actions.act_window,help:sale_margin.action_report_account_invoice_report +msgid "" +"This report gives you an overview of all the invoices generated by the " +"system. You can sort and group your results by specific selection criteria " +"to quickly find what you are looking for." +msgstr "" + +#. module: sale_margin +#: model:ir.ui.menu,name:sale_margin.menu_report_account_invoice_product +msgid "Invoice Report" +msgstr "Relatório de Faturas" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +msgid "Done" +msgstr "Concluído" + +#. module: sale_margin +#: model:ir.ui.menu,name:sale_margin.menu_report_account_invoice_reoirt +msgid "Invoice" +msgstr "Fatura" + +#. module: sale_margin +#: view:stock.picking:0 +msgid "Customer Invoices" +msgstr "Faturas de Clientes" + +#. module: sale_margin +#: view:report.account.invoice.product:0 +#: field:report.account.invoice.product,partner_id:0 +msgid "Partner" +msgstr "Parceiro" + +#. module: sale_margin +#: model:ir.model,name:sale_margin.model_sale_order +msgid "Sales Order" +msgstr "Pedido de Venda" + +#. module: sale_margin +#: selection:report.account.invoice.product,state:0 +msgid "Open" +msgstr "Aberta" + +#. module: sale_margin +#: model:ir.actions.act_window,name:sale_margin.action_report_account_invoice_report +msgid "Invoice Analysis" +msgstr "" + +#. module: sale_margin +#: model:ir.model,name:sale_margin.model_sale_order_line +msgid "Sales Order Line" +msgstr "Linha de Pedido de Vendas" diff --git a/addons/sale_mrp/i18n/pt_BR.po b/addons/sale_mrp/i18n/pt_BR.po index fd252577223..a87e55d37d5 100644 --- a/addons/sale_mrp/i18n/pt_BR.po +++ b/addons/sale_mrp/i18n/pt_BR.po @@ -8,24 +8,24 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-11 20:37+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 22:32+0000\n" +"Last-Translator: Emerson \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:32+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_mrp #: help:mrp.production,sale_ref:0 msgid "Indicate the Customer Reference from sales order." -msgstr "" +msgstr "Indica a Referência do Cliente no pedido de venda." #. module: sale_mrp #: field:mrp.production,sale_ref:0 msgid "Sales Reference" -msgstr "" +msgstr "Referência da Venda" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production @@ -44,11 +44,17 @@ msgid "" " It adds sales name and sales Reference on production order\n" " " msgstr "" +"\n" +" Este módulo facilita a instalação dos módulos de vendas e mrp\n" +" de uma vez. Usado basicamente quando queremos manter o controle dos\n" +" pedidos de produção gerados a partir de pedidos de venda.\n" +" Adiciona nome e referência para a venda no pedido de produção.\n" +" " #. module: sale_mrp #: field:mrp.production,sale_name:0 msgid "Sales Name" -msgstr "" +msgstr "Nome da Venda" #. module: sale_mrp #: model:ir.module.module,shortdesc:sale_mrp.module_meta_information @@ -63,7 +69,7 @@ msgstr "Quantidade da Ordem não pode ser negativa ou zero !" #. module: sale_mrp #: help:mrp.production,sale_name:0 msgid "Indicate the name of sales order." -msgstr "" +msgstr "Indica o nome do pedido de venda." #~ msgid "Indicate the name of sale order." #~ msgstr "Indicar o nome de pedido." diff --git a/addons/sale_order_dates/i18n/pt_BR.po b/addons/sale_order_dates/i18n/pt_BR.po new file mode 100644 index 00000000000..59f023133ff --- /dev/null +++ b/addons/sale_order_dates/i18n/pt_BR.po @@ -0,0 +1,70 @@ +# Brazilian Portuguese translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-03 16:58+0000\n" +"PO-Revision-Date: 2011-01-11 18:48+0000\n" +"Last-Translator: Emerson \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: sale_order_dates +#: sql_constraint:sale.order:0 +msgid "Order Reference must be unique !" +msgstr "Referência de Pedido deve ser única !" + +#. module: sale_order_dates +#: help:sale.order,requested_date:0 +msgid "Date on which customer has requested for sales." +msgstr "" + +#. module: sale_order_dates +#: field:sale.order,commitment_date:0 +msgid "Commitment Date" +msgstr "" + +#. module: sale_order_dates +#: field:sale.order,effective_date:0 +msgid "Effective Date" +msgstr "Data Efetiva" + +#. module: sale_order_dates +#: model:ir.module.module,shortdesc:sale_order_dates.module_meta_information +msgid "Sales Order Dates" +msgstr "" + +#. module: sale_order_dates +#: help:sale.order,effective_date:0 +msgid "Date on which picking is created." +msgstr "" + +#. module: sale_order_dates +#: field:sale.order,requested_date:0 +msgid "Requested Date" +msgstr "Data de Requisição" + +#. module: sale_order_dates +#: model:ir.model,name:sale_order_dates.model_sale_order +msgid "Sales Order" +msgstr "Pedido de Venda" + +#. module: sale_order_dates +#: model:ir.module.module,description:sale_order_dates.module_meta_information +msgid "" +"\n" +"Add commitment, requested and effective dates on the sales order.\n" +msgstr "" + +#. module: sale_order_dates +#: help:sale.order,commitment_date:0 +msgid "Date on which delivery of products is to be made." +msgstr "" diff --git a/addons/share/i18n/fr.po b/addons/share/i18n/fr.po index 2f3621a4b14..de316fa63c1 100644 --- a/addons/share/i18n/fr.po +++ b/addons/share/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 13:04+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2011-01-11 15:02+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: share @@ -104,7 +105,7 @@ msgstr "" #: code:addons/share/wizard/share_wizard.py:68 #, python-format msgid "Please specify \"share_root_url\" in context" -msgstr "" +msgstr "Veuillez spécifier \"share_root_url\" dans le contexte" #. module: share #: view:share.wizard:0 @@ -274,6 +275,16 @@ msgid "" "users/ will only have access to the correct data.\n" " " msgstr "" +"Le but est d'implémenter un mécanisme générique de partage, où l'utilisateur " +"d'OpenERP\n" +"peut partager des données depuis OpenERP avec ses collègues, clients, ou " +"amis.\n" +"Le système fonctionnera en créant de nouveaux utilisateurs et groupes à la " +"volée, et en\n" +"combinant les droits d'accès appropriés et les ir.rules pour s'assurer que " +"/shared/users/\n" +"sera seulement accessibles pour les bonnes données.\n" +" " #. module: share #: code:addons/share/wizard/share_wizard.py:102 @@ -412,7 +423,7 @@ msgstr "Mode d'accès" #. module: share #: view:share.wizard:0 msgid "Access info" -msgstr "" +msgstr "Informations d'accès" #. module: share #: code:addons/share/wizard/share_wizard.py:426 diff --git a/addons/stock/i18n/fr.po b/addons/stock/i18n/fr.po index 8ed50841068..a0f679ccfcd 100644 --- a/addons/stock/i18n/fr.po +++ b/addons/stock/i18n/fr.po @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-09 11:16+0000\n" -"Last-Translator: lolivier \n" +"PO-Revision-Date: 2011-01-11 22:26+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:15+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock @@ -118,6 +119,10 @@ msgid "" "per location. You can use it once a year when you do the general inventory " "or whenever you need it, to correct the current stock level of a product." msgstr "" +"Les inventaires périodiques sont utilisés pour comptabiliser le nombre de " +"produits disponibles par emplacement. On peut l'utiliser une fois par an " +"pour l'inventaire général ou à chaque fois que cela est nécessaire afin de " +"corriger le niveau de stock actuel d'un produit." #. module: stock #: view:stock.picking:0 @@ -483,6 +488,10 @@ msgid "" "incoming stock moves will be posted in this account. If not set on the " "product, the one from the product category is used." msgstr "" +"Lors de la valorisation en temps réel de l'inventaire, une contrepartie " +"d'écritures comptables pour tous les mouvements de stock entrants sera " +"inscrite dans ce compte. Si la valorisation n'est pas établie sur le " +"produit, la catégorie de produit est utilisée." #. module: stock #: field:report.stock.inventory,location_type:0 @@ -588,6 +597,11 @@ msgid "" "buttons on the right of each line. You can filter the products to deliver by " "customer, products or sale order (using the Origin field)." msgstr "" +"Vous trouverez dans cette liste tous les produits à livrer aux clients. On " +"peut traiter les livraisons directement à partir de cette liste en utilisant " +"les boutons à droite de chaque ligne. On peut filtrer les produits à livrer " +"par client, par produit ou par bon de commande (en utilisant le champ " +"\"Origine\")." #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_inventory_control @@ -882,7 +896,7 @@ msgstr "Prix unitaire" #. module: stock #: model:ir.model,name:stock.model_stock_move_split_lines_exist msgid "Exist Split lines" -msgstr "" +msgstr "Il existe les lignes de séparation" #. module: stock #: field:stock.move,date_expected:0 @@ -1138,7 +1152,7 @@ msgstr "Date d'envoi prévue" #. module: stock #: selection:stock.move,state:0 msgid "Not Available" -msgstr "" +msgstr "Indisponible" #. module: stock #: selection:report.stock.move,month:0 @@ -2440,7 +2454,7 @@ msgstr "Créer" #: view:stock.move:0 #: view:stock.picking:0 msgid "Dates" -msgstr "" +msgstr "Dates" #. module: stock #: field:stock.move,priority:0 @@ -2450,7 +2464,7 @@ msgstr "Priorité" #. module: stock #: view:stock.move:0 msgid "Source" -msgstr "" +msgstr "Origine" #. module: stock #: code:addons/stock/stock.py:2557 @@ -2509,7 +2523,7 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_stock_unit_measure_stock #: model:ir.ui.menu,name:stock.menu_stock_uom_form_action msgid "Units of Measure" -msgstr "" +msgstr "Unités de mesure" #. module: stock #: selection:stock.location,chained_location_type:0 @@ -3047,12 +3061,12 @@ msgstr "Valeur Totale" #. module: stock #: model:ir.ui.menu,name:stock.menu_product_by_category_stock_form msgid "Products by Category" -msgstr "" +msgstr "Produits par catégorie" #. module: stock #: model:ir.ui.menu,name:stock.menu_product_category_config_stock msgid "Products Categories" -msgstr "" +msgstr "Catégories de produits" #. module: stock #: field:stock.move.memory.in,wizard_id:0 @@ -4117,7 +4131,7 @@ msgstr "Emplacements physiques" #. module: stock #: model:ir.model,name:stock.model_stock_partial_move msgid "Partial Move" -msgstr "" +msgstr "Mouvement partiel" #. module: stock #: help:stock.location,posx:0 diff --git a/addons/stock/i18n/pl.po b/addons/stock/i18n/pl.po index cc8151b00f8..7e1be48f8c5 100644 --- a/addons/stock/i18n/pl.po +++ b/addons/stock/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-04 20:04+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" +"PO-Revision-Date: 2011-01-12 01:30+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 04:39+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock diff --git a/addons/stock/i18n/pt_BR.po b/addons/stock/i18n/pt_BR.po index 2a61ddcdd2e..2992537b63a 100644 --- a/addons/stock/i18n/pt_BR.po +++ b/addons/stock/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-09 15:17+0000\n" -"Last-Translator: Raphaël Valyi - http://www.akretion.com \n" +"PO-Revision-Date: 2011-01-11 14:40+0000\n" +"Last-Translator: Thiago Medeiros \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:15+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock @@ -47,7 +47,7 @@ msgstr "" #. module: stock #: field:stock.move.split.lines,action:0 msgid "Action" -msgstr "" +msgstr "Ação" #. module: stock #: view:stock.production.lot:0 @@ -104,7 +104,7 @@ msgstr "" #. module: stock #: view:stock.picking:0 msgid "Picking list" -msgstr "" +msgstr "Lista de separação" #. module: stock #: report:lot.stock.overview:0 @@ -171,7 +171,7 @@ msgstr "Diário do Estoque" #. module: stock #: view:report.stock.move:0 msgid "Incoming" -msgstr "" +msgstr "Entrada" #. module: stock #: help:product.category,property_stock_account_output_categ:0 @@ -218,7 +218,7 @@ msgstr "Não aplicável" #. module: stock #: help:stock.tracking,serial:0 msgid "Other reference or serial number" -msgstr "" +msgstr "Outra referência ou número de série" #. module: stock #: field:stock.move,origin:0 @@ -235,7 +235,7 @@ msgstr "" #. module: stock #: view:stock.tracking:0 msgid "Pack Identification" -msgstr "" +msgstr "Identeificação de Pacote" #. module: stock #: view:stock.move:0 @@ -262,6 +262,8 @@ msgid "" "If checked, all product quantities will be set to zero to help ensure a real " "physical inventory is done" msgstr "" +"Se estiver assinalada, todas as quantidades de produtos serão fixados em " +"zero para ajudar a garantir um inventário físico real" #. module: stock #: model:ir.model,name:stock.model_stock_move_split_lines @@ -322,7 +324,7 @@ msgstr "Lote de Produção" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_uom_categ_form_action msgid "Units of Measure Categories" -msgstr "" +msgstr "Categorias das Unidades de Medida" #. module: stock #: help:stock.incoterms,code:0 @@ -369,7 +371,7 @@ msgstr "Valor do estoque real" #. module: stock #: field:report.stock.move,day_diff2:0 msgid "Lag (Days)" -msgstr "" +msgstr "Atraso (Dias)" #. module: stock #: model:ir.model,name:stock.model_action_traceability @@ -379,7 +381,7 @@ msgstr "" #. module: stock #: field:stock.location,posy:0 msgid "Shelves (Y)" -msgstr "" +msgstr "Prateleiras (Y)" #. module: stock #: view:stock.move:0 @@ -425,7 +427,7 @@ msgstr "" #: code:addons/stock/wizard/stock_fill_inventory.py:115 #, python-format msgid "No product in this location." -msgstr "" +msgstr "Nenhum produto neste local" #. module: stock #: field:stock.warehouse,lot_output_id:0 @@ -436,7 +438,7 @@ msgstr "Local de Saída" #: model:ir.actions.act_window,name:stock.split_into #: model:ir.model,name:stock.model_stock_split_into msgid "Split into" -msgstr "" +msgstr "Dividido em" #. module: stock #: field:stock.move,price_currency_id:0 diff --git a/addons/stock_invoice_directly/i18n/fr.po b/addons/stock_invoice_directly/i18n/fr.po index 253913dc0a1..37f8185fb45 100644 --- a/addons/stock_invoice_directly/i18n/fr.po +++ b/addons/stock_invoice_directly/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-10 10:23+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 22:38+0000\n" +"Last-Translator: lolivier \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-11 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_invoice_directly diff --git a/addons/stock_location/i18n/hu.po b/addons/stock_location/i18n/hu.po index f5ed339a6f0..638036a773a 100644 --- a/addons/stock_location/i18n/hu.po +++ b/addons/stock_location/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-02 10:50+0000\n" +"PO-Revision-Date: 2011-01-11 17:14+0000\n" "Last-Translator: NOVOTRADE RENDSZERHÁZ \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_location @@ -51,7 +51,7 @@ msgstr "" #: field:product.pulled.flow,location_src_id:0 #: field:stock.location.path,location_from_id:0 msgid "Source Location" -msgstr "" +msgstr "Forráshely" #. module: stock_location #: help:product.pulled.flow,cancel_cascade:0 @@ -359,7 +359,7 @@ msgstr "" #. module: stock_location #: field:stock.location.path,product_id:0 msgid "Products" -msgstr "" +msgstr "Termékek" #. module: stock_location #: code:addons/stock_location/procurement_pull.py:118 @@ -458,7 +458,7 @@ msgstr "" #. module: stock_location #: field:stock.location.path,name:0 msgid "Operation" -msgstr "" +msgstr "Művelet" #. module: stock_location #: view:stock.location.path:0 diff --git a/addons/stock_planning/i18n/fr.po b/addons/stock_planning/i18n/fr.po index 0887ef48218..503c853c96f 100644 --- a/addons/stock_planning/i18n/fr.po +++ b/addons/stock_planning/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2011-01-09 21:14+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-11 22:44+0000\n" +"Last-Translator: lolivier \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-10 05:19+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_planning @@ -627,7 +627,7 @@ msgstr "Période3 de cette société" #: field:stock.period,date_start:0 #: field:stock.period.createlines,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Date de début" #. module: stock_planning #: code:addons/stock_planning/stock_planning.py:642 @@ -961,6 +961,8 @@ msgid "" "\n" " Planned Out: " msgstr "" +"\n" +" Sorties planifiées : " #. module: stock_planning #: code:addons/stock_planning/stock_planning.py:667 @@ -1051,7 +1053,7 @@ msgstr "Créer les lignes de planification de stock" #. module: stock_planning #: view:stock.planning:0 msgid "General Info" -msgstr "" +msgstr "Informations générales" #. module: stock_planning #: model:ir.actions.act_window,name:stock_planning.action_view_stock_sale_forecast_form @@ -1155,7 +1157,7 @@ msgstr "Catégorie d'UdV du produit" #. module: stock_planning #: field:stock.sale.forecast,product_qty:0 msgid "Product Quantity" -msgstr "" +msgstr "Quantité de produit" #. module: stock_planning #: field:stock.sale.forecast.createlines,copy_forecast:0 @@ -1170,7 +1172,7 @@ msgstr "Affiche le produit concerné par la prévision." #. module: stock_planning #: selection:stock.planning,state:0 msgid "Done" -msgstr "" +msgstr "Terminé" #. module: stock_planning #: field:stock.period.createlines,period_ids:0 diff --git a/addons/users_ldap/i18n/fr.po b/addons/users_ldap/i18n/fr.po index 1fe49208a72..2ea1df0aabc 100644 --- a/addons/users_ldap/i18n/fr.po +++ b/addons/users_ldap/i18n/fr.po @@ -8,19 +8,19 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-03 16:58+0000\n" -"PO-Revision-Date: 2010-12-31 10:39+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-11 10:34+0000\n" +"Last-Translator: Quentin THEURET \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-06 05:38+0000\n" +"X-Launchpad-Export-Date: 2011-01-12 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: users_ldap #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "Erreur! Vous ne pouvez pas créer de sociétés récursives" +msgstr "Erreur ! Vous ne pouvez pas créer de sociétés récursives" #. module: users_ldap #: constraint:res.users:0 From 8f5dbe707e39315ad4872d9c5447cad7820630bc Mon Sep 17 00:00:00 2001 From: "qdp-launchpad@tinyerp.com" <> Date: Wed, 12 Jan 2011 09:03:05 +0100 Subject: [PATCH 06/20] [FIX] account_analytic_plans: removed unused view that was linked on a already removed other unused view bzr revid: qdp-launchpad@tinyerp.com-20110112080305-9cuvt6m56xjm2q60 --- .../account_analytic_plans_view.xml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/addons/account_analytic_plans/account_analytic_plans_view.xml b/addons/account_analytic_plans/account_analytic_plans_view.xml index b1dae7f55f8..676949fd420 100644 --- a/addons/account_analytic_plans/account_analytic_plans_view.xml +++ b/addons/account_analytic_plans/account_analytic_plans_view.xml @@ -312,17 +312,5 @@ - - account.bank.statement.form.inherit_1 - account.bank.statement - form - - - - - - - - From 7276f8a9eda2723efee57d97cf73bd087efe11be Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Wed, 12 Jan 2011 13:16:43 +0100 Subject: [PATCH 08/20] [IMP] package translations (if any) when sending web modules over the wire bzr revid: xmo@openerp.com-20110112121643-awcvugfndc941873 --- bin/addons/__init__.py | 2 - bin/addons/base/module/module.py | 78 ++++++++++++++++++++++++++++---- 2 files changed, 69 insertions(+), 11 deletions(-) diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index a5f6fe5daa6..8c5903366dd 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -286,8 +286,6 @@ def get_module_resource(module, *args): return resource_path return False - - def get_modules(): """Returns the list of module names """ diff --git a/bin/addons/base/module/module.py b/bin/addons/base/module/module.py index d050355ab05..86dd945ca59 100644 --- a/bin/addons/base/module/module.py +++ b/bin/addons/base/module/module.py @@ -19,11 +19,15 @@ # along with this program. If not, see . # ############################################################################## +import base64 +import cStringIO import imp import logging import os import re +import StringIO import urllib +import zipfile import zipimport import addons @@ -554,6 +558,56 @@ class module(osv.osv): else: self._web_dependencies( cr, uid, parent, context=context) + + def _translations_subdir(self, module): + """ Returns the path to the subdirectory holding translations for the + module files, or None if it can't find one + + :param module: a module object + :type module: browse(ir.module.module) + """ + subdir = addons.get_module_resource(module.name, 'po') + if subdir: return subdir + # old naming convention + subdir = addons.get_module_resource(module.name, 'i18n') + if subdir: return subdir + return None + def _add_translations(self, module, web_data): + """ Adds translation data to a zipped web module + + :param module: a module descriptor + :type module: browse(ir.module.module) + :param web_data: zipped data of a web module + :type web_data: bytes + """ + # cStringIO.StringIO is either read or write, not r/w + web_zip = StringIO.StringIO(web_data) + web_archive = zipfile.ZipFile(web_zip, 'a') + + # get the contents of the i18n or po folder and move them to the + # po/messages subdirectory of the web module. + # The POT file will be incorrectly named, but that should not + # matter since the web client is not going to use it, only the PO + # files. + translations_file = cStringIO.StringIO( + addons.zip_directory(self._translations_subdir(module), False)) + translations_archive = zipfile.ZipFile(translations_file) + + for path in translations_archive.namelist(): + web_path = os.path.join( + 'web', 'po', 'messages', os.path.basename(path)) + web_archive.writestr( + web_path, + translations_archive.read(path)) + + translations_archive.close() + translations_file.close() + + web_archive.close() + try: + return web_zip.getvalue() + finally: + web_zip.close() def get_web(self, cr, uid, names, context=None): """ get_web(cr, uid, [module_name], context) -> [{name, depends, content}] @@ -568,15 +622,21 @@ class module(osv.osv): if not modules: return [] self.__logger.info('Sending web content of modules %s ' 'to web client', names) - return [ - {'name': module.name, - 'version': module.installed_version, - 'depends': list(self._web_dependencies( - cr, uid, module, context=context)), - 'content': addons.zip_directory( - addons.get_module_resource(module.name, 'web'))} - for module in modules - ] + + modules_data = [] + for module in modules: + web_data = addons.zip_directory( + addons.get_module_resource(module.name, 'web'), False) + if self._translations_subdir(module): + web_data = self._add_translations(module, web_data) + modules_data.append({ + 'name': module.name, + 'version': module.installed_version, + 'depends': list(self._web_dependencies( + cr, uid, module, context=context)), + 'content': base64.encodestring(web_data) + }) + return modules_data module() From 4ec11519377e607b100d1e67b9d5384506fc97d2 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Wed, 12 Jan 2011 14:14:15 +0100 Subject: [PATCH 09/20] [REM] all: removed no-op en_US.po files, ignored by Rosetta anyway bzr revid: odo@openerp.com-20110112131415-49r7ucjk6bgg9xza --- addons/account_cancel/i18n/en_US.po | 34 - addons/analytic/i18n/en_US.po | 251 --- addons/base_action_rule/i18n/en_US.po | 459 ----- addons/base_calendar/i18n/en_US.po | 1523 ----------------- addons/claim_from_delivery/i18n/en_US.po | 59 - addons/crm_claim/i18n/en_US.po | 750 -------- addons/crm_fundraising/i18n/en_US.po | 733 -------- addons/crm_helpdesk/i18n/en_US.po | 641 ------- addons/crm_partner_assign/i18n/en_US.po | 112 -- addons/decimal_precision/i18n/en_US.po | 83 - addons/email_template/i18n/en_US.po | 1186 ------------- addons/fetchmail/i18n/en_US.po | 269 --- addons/hr_payroll_account/i18n/en_US.po | 481 ------ addons/hr_recruitment/i18n/en_US.po | 989 ----------- addons/knowledge/i18n/en_US.po | 149 -- addons/marketing/i18n/en_US.po | 107 -- .../marketing_campaign_crm_demo/i18n/en_US.po | 178 -- addons/procurement/i18n/en_US.po | 838 --------- addons/product_manufacturer/i18n/en_US.po | 91 - addons/project_issue/i18n/en_US.po | 936 ---------- addons/project_issue_sheet/i18n/en_US.po | 86 - addons/project_long_term/i18n/en_US.po | 550 ------ addons/project_messages/i18n/en_US.po | 118 -- addons/resource/i18n/en_US.po | 318 ---- addons/sale_mrp/i18n/en_US.po | 67 - addons/sale_order_dates/i18n/en_US.po | 56 - addons/share/i18n/en_US.po | 228 --- addons/stock_planning/i18n/en_US.po | 1396 --------------- addons/wiki_faq/i18n/en_US.po | 29 - addons/wiki_quality_manual/i18n/en_US.po | 29 - addons/wiki_sale_faq/i18n/en_US.po | 61 - 31 files changed, 12807 deletions(-) delete mode 100644 addons/account_cancel/i18n/en_US.po delete mode 100644 addons/analytic/i18n/en_US.po delete mode 100644 addons/base_action_rule/i18n/en_US.po delete mode 100644 addons/base_calendar/i18n/en_US.po delete mode 100644 addons/claim_from_delivery/i18n/en_US.po delete mode 100644 addons/crm_claim/i18n/en_US.po delete mode 100644 addons/crm_fundraising/i18n/en_US.po delete mode 100644 addons/crm_helpdesk/i18n/en_US.po delete mode 100644 addons/crm_partner_assign/i18n/en_US.po delete mode 100644 addons/decimal_precision/i18n/en_US.po delete mode 100644 addons/email_template/i18n/en_US.po delete mode 100644 addons/fetchmail/i18n/en_US.po delete mode 100644 addons/hr_payroll_account/i18n/en_US.po delete mode 100644 addons/hr_recruitment/i18n/en_US.po delete mode 100644 addons/knowledge/i18n/en_US.po delete mode 100644 addons/marketing/i18n/en_US.po delete mode 100644 addons/marketing_campaign_crm_demo/i18n/en_US.po delete mode 100644 addons/procurement/i18n/en_US.po delete mode 100644 addons/product_manufacturer/i18n/en_US.po delete mode 100644 addons/project_issue/i18n/en_US.po delete mode 100644 addons/project_issue_sheet/i18n/en_US.po delete mode 100644 addons/project_long_term/i18n/en_US.po delete mode 100644 addons/project_messages/i18n/en_US.po delete mode 100644 addons/resource/i18n/en_US.po delete mode 100644 addons/sale_mrp/i18n/en_US.po delete mode 100644 addons/sale_order_dates/i18n/en_US.po delete mode 100644 addons/share/i18n/en_US.po delete mode 100644 addons/stock_planning/i18n/en_US.po delete mode 100644 addons/wiki_faq/i18n/en_US.po delete mode 100644 addons/wiki_quality_manual/i18n/en_US.po delete mode 100644 addons/wiki_sale_faq/i18n/en_US.po diff --git a/addons/account_cancel/i18n/en_US.po b/addons/account_cancel/i18n/en_US.po deleted file mode 100644 index 213c97a659e..00000000000 --- a/addons/account_cancel/i18n/en_US.po +++ /dev/null @@ -1,34 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_cancel -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-19 12:08:17+0000\n" -"PO-Revision-Date: 2010-08-19 12:08:17+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_cancel -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_cancel -#: model:ir.module.module,description:account_cancel.module_meta_information -msgid "\n" -" Module adds 'Allow cancelling entries' field on form view of account journal. If set to true it allows user to cancel entries & invoices.\n" -" " -msgstr "" - -#. module: account_cancel -#: model:ir.module.module,shortdesc:account_cancel.module_meta_information -msgid "Account Cancel" -msgstr "" - diff --git a/addons/analytic/i18n/en_US.po b/addons/analytic/i18n/en_US.po deleted file mode 100644 index 65db82b92be..00000000000 --- a/addons/analytic/i18n/en_US.po +++ /dev/null @@ -1,251 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * analytic -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-06-18 11:01:12+0000\n" -"PO-Revision-Date: 2010-06-18 11:01:12+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: analytic -#: field:account.analytic.account,child_ids:0 -msgid "Child Accounts" -msgstr "" - -#. module: analytic -#: help:account.analytic.line,amount_currency:0 -msgid "The amount expressed in the related account currency if not equal to the company one." -msgstr "" - -#. module: analytic -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account Name" -msgstr "" - -#. module: analytic -#: help:account.analytic.line,unit_amount:0 -msgid "Specifies the amount of quantity to count." -msgstr "" - -#. module: analytic -#: help:account.analytic.line,currency_id:0 -msgid "The related account currency if not equal to the company one." -msgstr "" - -#. module: analytic -#: model:ir.module.module,description:analytic.module_meta_information -msgid "Module for defining analytic accounting object.\n" -" " -msgstr "" - -#. module: analytic -#: field:account.analytic.account,state:0 -msgid "State" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,user_id:0 -msgid "Account Manager" -msgstr "" - -#. module: analytic -#: selection:account.analytic.account,state:0 -msgid "Draft" -msgstr "" - -#. module: analytic -#: selection:account.analytic.account,state:0 -msgid "Closed" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "" - -#. module: analytic -#: help:account.analytic.account,state:0 -msgid "* When an account is created its in 'Draft' state. \n" -"* If any associated partner is there, it can be in 'Open' state. \n" -"* If any pending balance is there it can be in 'Pending'. \n" -"* And finally when all the transactions are over, it can be in 'Close' state. \n" -"* The project can be in either if the states 'Template' and 'Running'.\n" -" If it is template then we can make projects based on the template projects. If its in 'Running' state it is a normal project. \n" -" If it is to be reviewed then the state is 'Pending'.\n" -" When the project is completed the state is set to 'Done'." -msgstr "" - -#. module: analytic -#: field:account.analytic.account,type:0 -msgid "Account Type" -msgstr "" - -#. module: analytic -#: selection:account.analytic.account,state:0 -msgid "Template" -msgstr "" - -#. module: analytic -#: selection:account.analytic.account,state:0 -msgid "Pending" -msgstr "" - -#. module: analytic -#: model:ir.model,name:analytic.model_account_analytic_line -msgid "Analytic Line" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,description:0 -#: field:account.analytic.line,name:0 -msgid "Description" -msgstr "" - -#. module: analytic -#: help:account.analytic.line,amount:0 -msgid "Calculated by multiplying the quantity and the price given in the Product's cost price." -msgstr "" - -#. module: analytic -#: field:account.analytic.account,company_id:0 -#: field:account.analytic.line,company_id:0 -msgid "Company" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,quantity_max:0 -msgid "Maximum Quantity" -msgstr "" - -#. module: analytic -#: field:account.analytic.line,user_id:0 -msgid "User" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "" - -#. module: analytic -#: field:account.analytic.line,date:0 -msgid "Date" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,currency_id:0 -#: field:account.analytic.line,currency_id:0 -msgid "Account currency" -msgstr "" - -#. module: analytic -#: selection:account.analytic.account,type:0 -msgid "View" -msgstr "" - -#. module: analytic -#: help:account.analytic.account,quantity_max:0 -msgid "Sets the higher limit of quantity of hours." -msgstr "" - -#. module: analytic -#: field:account.analytic.account,credit:0 -msgid "Credit" -msgstr "" - -#. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,contact_id:0 -msgid "Contact" -msgstr "" - -#. module: analytic -#: selection:account.analytic.account,state:0 -msgid "Cancelled" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,balance:0 -msgid "Balance" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,date_start:0 -msgid "Date Start" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,quantity:0 -#: field:account.analytic.line,unit_amount:0 -msgid "Quantity" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,date:0 -msgid "Date End" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,code:0 -msgid "Account Code" -msgstr "" - -#. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Normal" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,complete_name:0 -msgid "Full Account Name" -msgstr "" - -#. module: analytic -#: field:account.analytic.line,account_id:0 -#: model:ir.model,name:analytic.model_account_analytic_account -#: model:ir.module.module,shortdesc:analytic.module_meta_information -msgid "Analytic Account" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,company_currency_id:0 -msgid "Currency" -msgstr "" - -#. module: analytic -#: field:account.analytic.line,amount_currency:0 -msgid "Amount currency" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,partner_id:0 -msgid "Associated Partner" -msgstr "" - -#. module: analytic -#: selection:account.analytic.account,state:0 -msgid "Open" -msgstr "" - -#. module: analytic -#: field:account.analytic.account,line_ids:0 -msgid "Analytic Entries" -msgstr "" - diff --git a/addons/base_action_rule/i18n/en_US.po b/addons/base_action_rule/i18n/en_US.po deleted file mode 100644 index 102aacb39f2..00000000000 --- a/addons/base_action_rule/i18n/en_US.po +++ /dev/null @@ -1,459 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_action_rule -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-19 12:20:41+0000\n" -"PO-Revision-Date: 2010-08-19 12:20:41+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_action_rule -#: help:base.action.rule,act_mail_to_user:0 -msgid "Check this if you want the rule to send an email to the responsible person." -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_remind_partner:0 -msgid "Remind Partner" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "" - -#. module: base_action_rule -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,act_remind_user:0 -msgid "Check this if you want the rule to send a reminder by email to the user." -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Object" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_mail_to_email:0 -msgid "Mail to these Emails" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Email Body" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Days" -msgstr "" - -#. module: base_action_rule -#: code:addons/base_action_rule/base_action_rule.py:0 -#, python-format -msgid "Error!" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_reply_to:0 -msgid "Reply-To" -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,act_email_cc:0 -msgid "These people will receive a copy of the future communication between partner and users by email" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Minutes" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,act_remind_partner:0 -msgid "Check this if you want the rule to send a reminder by email to the partner." -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Email Reminders" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 -msgid "Partner" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "%(object_subject)s = Object subject" -msgstr "" - -#. module: base_action_rule -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Special Keywords to Be Used in The Body" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 -msgid "State" -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,act_mail_to_email:0 -msgid "Email-id of the persons whom mail is to be sent" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -#: model:ir.module.module,shortdesc:base_action_rule.module_meta_information -msgid "Action Rule" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Fields to Change" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Hours" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "%(object_id)s = Object ID" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Delay After Trigger Date" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_remind_attach:0 -msgid "Remind with Attachment" -msgstr "" - -#. module: base_action_rule -#: constraint:ir.cron:0 -msgid "Invalid arguments" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "%(object_user_phone)s = Responsible phone" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "The rule uses the AND operator. The model must match all non-empty fields so that the rule executes the action described in the 'Actions' tab." -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,trg_date_range_type:0 -msgid "Delay type" -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the string 'urgent'\n" -"Note: This is case sensitive search." -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_method:0 -msgid "Call Object Method" -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,act_mail_to_watchers:0 -msgid "Check this if you want the rule to mark CC(mail to any other person defined in actions)." -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "%(partner)s = Partner name" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "" - -#. module: base_action_rule -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,trg_date_range:0 -msgid "Delay after trigger date" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions" -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "Delay After Trigger Date,specifies you can put a negative number. If you need a delay before the trigger date, like sending a reminder 15 minutes before a meeting." -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "" - -#. module: base_action_rule -#: code:addons/base_action_rule/base_action_rule.py:0 -#, python-format -msgid "No E-Mail ID Found for your Company address!" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_remind_user:0 -msgid "Remind Responsible" -msgstr "" - -#. module: base_action_rule -#: model:ir.module.module,description:base_action_rule.module_meta_information -msgid "This module allows to implement action rules for any object." -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,sequence:0 -msgid "Gives the sequence order when displaying a list of rules." -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,server_action_id:0 -msgid "Describes the action name.\n" -"eg:on which object which action to be taken on basis of which condition" -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "%(object_description)s = Object description" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Email Actions" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Email Information" -msgstr "" - -#. module: base_action_rule -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_base_action_rule -msgid "Action Rules" -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,act_mail_body:0 -msgid "Content of mail" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 -msgid "Responsible" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "%(partner_email)s = Partner Email" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "%(object_date)s = Creation date" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "%(object_user_email)s = Responsible Email" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_mail_body:0 -msgid "Mail body" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_mail_to_watchers:0 -msgid "Mail to Watchers (CC)" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Server Action to be Triggered" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_mail_to_user:0 -msgid "Mail to Responsible" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,act_email_cc:0 -msgid "Add Watchers (Cc)" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act -#: model:ir.ui.menu,name:base_action_rule.menu_base_action_rule_form -msgid "Automated Actions" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_id:0 -msgid "Server Action" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,act_remind_attach:0 -msgid "Check this if you want that all documents attached to the object be attached to the reminder email sent." -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Actions" -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "If the active field is set to False, it will allow you to hide the rule without removing it." -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "%(object_user)s = Responsible name" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,create_date:0 -msgid "Create Date" -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on States" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 -msgid "Trigger Date" -msgstr "" - diff --git a/addons/base_calendar/i18n/en_US.po b/addons/base_calendar/i18n/en_US.po deleted file mode 100644 index c9bc6e5e0b4..00000000000 --- a/addons/base_calendar/i18n/en_US.po +++ /dev/null @@ -1,1523 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_calendar -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-23 05:02:00+0000\n" -"PO-Revision-Date: 2010-08-23 05:02:00+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_calendar -#: selection:calendar.alarm,trigger_related:0 -#: selection:res.alarm,trigger_related:0 -msgid "The event starts" -msgstr "The event starts" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.todo,freq:0 -msgid "Hourly" -msgstr "Hourly" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Required to Join" -msgstr "Required to Join" - -#. module: base_calendar -#: help:calendar.event,exdate:0 -#: help:calendar.todo,exdate:0 -msgid "This property defines the list of date/time exceptions for a recurring calendar component." -msgstr "This property defines the list of date/time exceptions for a recurring calendar component." - -#. module: base_calendar -#: field:calendar.event.edit.all,name:0 -msgid "Title" -msgstr "Title" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.event,rrule_type:0 -#: selection:calendar.todo,freq:0 -#: selection:calendar.todo,rrule_type:0 -msgid "Monthly" -msgstr "Monthly" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Invited User" -msgstr "Invited User" - -#. module: base_calendar -#: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view -#: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm -msgid "Alarms" -msgstr "Alarms" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 -#: selection:calendar.event,week_list:0 -#: selection:calendar.todo,week_list:0 -msgid "Sunday" -msgstr "Sunday" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: field:calendar.attendee,role:0 -msgid "Role" -msgstr "Role" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: view:calendar.event:0 -msgid "Invitation details" -msgstr "Invitation details" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 -#: selection:calendar.event,byday:0 -#: selection:calendar.todo,byday:0 -msgid "Fourth" -msgstr "Fourth" - -#. module: base_calendar -#: field:calendar.event,show_as:0 -#: field:calendar.todo,show_as:0 -msgid "Show as" -msgstr "Show as" - -#. module: base_calendar -#: field:base.calendar.set.exrule,day:0 -#: selection:base.calendar.set.exrule,select1:0 -#: field:calendar.event,day:0 -#: selection:calendar.event,select1:0 -#: field:calendar.todo,day:0 -#: selection:calendar.todo,select1:0 -msgid "Date of month" -msgstr "Date of month" - -#. module: base_calendar -#: selection:calendar.event,class:0 -#: selection:calendar.todo,class:0 -msgid "Public" -msgstr "Public" - -#. module: base_calendar -#: selection:calendar.alarm,trigger_interval:0 -#: selection:res.alarm,trigger_interval:0 -msgid "Hours" -msgstr "Hours" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "March" -msgstr "March" - -#. module: base_calendar -#: code:addons/base_calendar/wizard/base_calendar_set_exrule.py:0 -#, python-format -msgid "Warning !" -msgstr "Warning !" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 -#: selection:calendar.event,week_list:0 -#: selection:calendar.todo,week_list:0 -msgid "Friday" -msgstr "Friday" - -#. module: base_calendar -#: field:calendar.event,allday:0 -#: field:calendar.todo,allday:0 -msgid "All Day" -msgstr "All Day" - -#. module: base_calendar -#: field:base.calendar.set.exrule,select1:0 -#: field:calendar.event,select1:0 -#: field:calendar.todo,select1:0 -msgid "Option" -msgstr "Option" - -#. module: base_calendar -#: selection:calendar.attendee,availability:0 -#: selection:calendar.event,show_as:0 -#: selection:calendar.todo,show_as:0 -#: selection:res.users,availability:0 -msgid "Free" -msgstr "Free" - -#. module: base_calendar -#: help:calendar.attendee,rsvp:0 -msgid "Indicats whether the favor of a reply is requested" -msgstr "Indicats whether the favor of a reply is requested" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_ir_attachment -msgid "ir.attachment" -msgstr "ir.attachment" - -#. module: base_calendar -#: help:calendar.attendee,delegated_to:0 -msgid "The users that the original request was delegated to" -msgstr "The users that the original request was delegated to" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: field:calendar.attendee,delegated_to:0 -msgid "Delegated To" -msgstr "Delegated To" - -#. module: base_calendar -#: field:base.calendar.set.exrule,we:0 -#: field:calendar.event,we:0 -#: field:calendar.todo,we:0 -msgid "Wed" -msgstr "Wed" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Show time as" -msgstr "Show time as" - -#. module: base_calendar -#: field:base.calendar.set.exrule,tu:0 -#: field:calendar.event,tu:0 -#: field:calendar.todo,tu:0 -msgid "Tue" -msgstr "Tue" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.event,rrule_type:0 -#: selection:calendar.todo,freq:0 -#: selection:calendar.todo,rrule_type:0 -msgid "Yearly" -msgstr "Yearly" - -#. module: base_calendar -#: selection:calendar.alarm,trigger_related:0 -#: selection:res.alarm,trigger_related:0 -msgid "The event ends" -msgstr "The event ends" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 -#: selection:calendar.event,byday:0 -#: selection:calendar.todo,byday:0 -msgid "Last" -msgstr "Last" - -#. module: base_calendar -#: help:calendar.attendee,state:0 -msgid "Status of the attendee's participation" -msgstr "Status of the attendee's participation" - -#. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Room" - -#. module: base_calendar -#: selection:calendar.alarm,trigger_interval:0 -#: selection:res.alarm,trigger_interval:0 -msgid "Days" -msgstr "Days" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.todo,freq:0 -msgid "No Repeat" -msgstr "No Repeat" - -#. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:0 -#: code:addons/base_calendar/wizard/base_calendar_invite_attendee.py:0 -#: code:addons/base_calendar/wizard/base_calendar_set_exrule.py:0 -#, python-format -msgid "Error!" -msgstr "Error!" - -#. module: base_calendar -#: selection:calendar.attendee,role:0 -msgid "Chair Person" -msgstr "Chair Person" - -#. module: base_calendar -#: selection:calendar.alarm,action:0 -msgid "Procedure" -msgstr "Procedure" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Select data for Custom Rule" -msgstr "Select data for Custom Rule" - -#. module: base_calendar -#: selection:calendar.event,state:0 -#: selection:calendar.todo,state:0 -msgid "Cancelled" -msgstr "Cancelled" - -#. module: base_calendar -#: selection:calendar.alarm,trigger_interval:0 -#: selection:res.alarm,trigger_interval:0 -msgid "Minutes" -msgstr "Minutes" - -#. module: base_calendar -#: selection:calendar.alarm,action:0 -msgid "Display" -msgstr "Display" - -#. module: base_calendar -#: view:calendar.event.edit.all:0 -msgid "Edit all Occurrences" -msgstr "Edit all Occurrences" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Invitation type" -msgstr "Invitation type" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.todo,freq:0 -msgid "Secondly" -msgstr "Secondly" - -#. module: base_calendar -#: field:calendar.alarm,event_date:0 -#: field:calendar.attendee,event_date:0 -#: view:calendar.event:0 -msgid "Event Date" -msgstr "Event Date" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: view:calendar.event:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: base_calendar -#: help:calendar.attendee,partner_id:0 -msgid "Partner related to contact" -msgstr "Partner related to contact" - -#. module: base_calendar -#: help:calendar.attendee,cutype:0 -msgid "Specify the type of Invitation" -msgstr "Specify the type of Invitation" - -#. module: base_calendar -#: help:calendar.event,exrule:0 -#: help:calendar.todo,exrule:0 -msgid "defines a rule or repeating pattern for an exception to a recurrence set" -msgstr "defines a rule or repeating pattern for an exception to a recurrence set" - -#. module: base_calendar -#: field:calendar.alarm,event_end_date:0 -#: field:calendar.attendee,event_end_date:0 -msgid "Event End Date" -msgstr "Event End Date" - -#. module: base_calendar -#: selection:calendar.attendee,role:0 -msgid "Optional Participation" -msgstr "Optional Participation" - -#. module: base_calendar -#: field:calendar.event,date_deadline:0 -#: field:calendar.todo,date_deadline:0 -msgid "Deadline" -msgstr "Deadline" - -#. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:0 -#, python-format -msgid "Warning!" -msgstr "Warning!" - -#. module: base_calendar -#: view:base.calendar.set.exrule:0 -msgid "_Cancel" -msgstr "_Cancel" - -#. module: base_calendar -#: model:ir.module.module,shortdesc:base_calendar.module_meta_information -msgid "Basic Calendar Functionality" -msgstr "Basic Calendar Functionality" - -#. module: base_calendar -#: field:calendar.event,organizer:0 -#: field:calendar.event,organizer_id:0 -#: field:calendar.todo,organizer:0 -#: field:calendar.todo,organizer_id:0 -msgid "Organizer" -msgstr "Organizer" - -#. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:0 -#: view:calendar.event:0 -#: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format -msgid "Event" -msgstr "Event" - -#. module: base_calendar -#: selection:calendar.alarm,trigger_occurs:0 -#: selection:res.alarm,trigger_occurs:0 -msgid "Before" -msgstr "Before" - -#. module: base_calendar -#: view:calendar.event:0 -#: selection:calendar.event,state:0 -#: selection:calendar.todo,state:0 -msgid "Confirmed" -msgstr "Confirmed" - -#. module: base_calendar -#: model:ir.actions.act_window,name:base_calendar.action_calendar_event_edit_all -msgid "Edit all events" -msgstr "Edit all events" - -#. module: base_calendar -#: field:calendar.alarm,attendee_ids:0 -#: field:calendar.event,attendee_ids:0 -#: field:calendar.todo,attendee_ids:0 -msgid "Attendees" -msgstr "Attendees" - -#. module: base_calendar -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Confirm" -msgstr "Confirm" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_calendar_todo -msgid "Calendar Task" -msgstr "Calendar Task" - -#. module: base_calendar -#: field:base.calendar.set.exrule,su:0 -#: field:calendar.event,su:0 -#: field:calendar.todo,su:0 -msgid "Sun" -msgstr "Sun" - -#. module: base_calendar -#: field:calendar.attendee,cutype:0 -msgid "Invite Type" -msgstr "Invite Type" - -#. module: base_calendar -#: view:res.alarm:0 -msgid "Reminder details" -msgstr "Reminder details" - -#. module: base_calendar -#: field:calendar.attendee,parent_ids:0 -msgid "Delegrated From" -msgstr "Delegrated From" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,select1:0 -#: selection:calendar.event,select1:0 -#: selection:calendar.todo,select1:0 -msgid "Day of month" -msgstr "Day of month" - -#. module: base_calendar -#: view:calendar.event:0 -#: field:calendar.event,location:0 -#: field:calendar.event.edit.all,location:0 -#: field:calendar.todo,location:0 -msgid "Location" -msgstr "Location" - -#. module: base_calendar -#: field:base_calendar.invite.attendee,send_mail:0 -msgid "Send mail?" -msgstr "Send mail?" - -#. module: base_calendar -#: field:base_calendar.invite.attendee,email:0 -#: selection:calendar.alarm,action:0 -#: field:calendar.attendee,email:0 -msgid "Email" -msgstr "Email" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Event Detail" -msgstr "Event Detail" - -#. module: base_calendar -#: selection:calendar.alarm,state:0 -msgid "Run" -msgstr "Run" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_calendar_alarm -msgid "Event alarm information" -msgstr "Event alarm information" - -#. module: base_calendar -#: selection:calendar.event,class:0 -#: selection:calendar.todo,class:0 -msgid "Confidential" -msgstr "Confidential" - -#. module: base_calendar -#: field:base.calendar.set.exrule,end_date:0 -#: field:calendar.event,end_date:0 -#: field:calendar.todo,end_date:0 -msgid "Repeat Until" -msgstr "Repeat Until" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Visibility" -msgstr "Visibility" - -#. module: base_calendar -#: field:calendar.attendee,rsvp:0 -msgid "Required Reply?" -msgstr "Required Reply?" - -#. module: base_calendar -#: field:calendar.event,base_calendar_url:0 -#: field:calendar.todo,base_calendar_url:0 -msgid "Caldav URL" -msgstr "Caldav URL" - -#. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Recurrent ID" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "July" -msgstr "July" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: selection:calendar.attendee,state:0 -msgid "Accepted" -msgstr "Accepted" - -#. module: base_calendar -#: field:base.calendar.set.exrule,th:0 -#: field:calendar.event,th:0 -#: field:calendar.todo,th:0 -msgid "Thu" -msgstr "Thu" - -#. module: base_calendar -#: field:calendar.attendee,child_ids:0 -msgid "Delegrated To" -msgstr "Delegrated To" - -#. module: base_calendar -#: constraint:ir.cron:0 -msgid "Invalid arguments" -msgstr "Invalid arguments" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Required Reply" -msgstr "Required Reply" - -#. module: base_calendar -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: base_calendar -#: selection:calendar.attendee,role:0 -msgid "Participation required" -msgstr "Participation required" - -#. module: base_calendar -#: field:calendar.event,create_date:0 -#: field:calendar.todo,create_date:0 -msgid "Created" -msgstr "Created" - -#. module: base_calendar -#: selection:calendar.event,class:0 -#: selection:calendar.todo,class:0 -msgid "Private" -msgstr "Private" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.event,rrule_type:0 -#: selection:calendar.todo,freq:0 -#: selection:calendar.todo,rrule_type:0 -msgid "Daily" -msgstr "Daily" - -#. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:0 -#, python-format -msgid "Can not Duplicate" -msgstr "Can not Duplicate" - -#. module: base_calendar -#: field:calendar.event,class:0 -#: field:calendar.todo,class:0 -msgid "Mark as" -msgstr "Mark as" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: field:calendar.attendee,partner_address_id:0 -msgid "Contact" -msgstr "Contact" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: view:calendar.event:0 -msgid "Delegate" -msgstr "Delegate" - -#. module: base_calendar -#: field:base_calendar.invite.attendee,partner_id:0 -#: view:calendar.attendee:0 -#: field:calendar.attendee,partner_id:0 -msgid "Partner" -msgstr "Partner" - -#. module: base_calendar -#: view:base.calendar.set.exrule:0 -msgid "Select data for ExRule" -msgstr "Select data for ExRule" - -#. module: base_calendar -#: view:base_calendar.invite.attendee:0 -#: selection:base_calendar.invite.attendee,type:0 -msgid "Partner Contacts" -msgstr "Partner Contacts" - -#. module: base_calendar -#: view:base.calendar.set.exrule:0 -msgid "_Ok" -msgstr "_Ok" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 -#: selection:calendar.event,byday:0 -#: selection:calendar.todo,byday:0 -msgid "First" -msgstr "First" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Privacy" -msgstr "Privacy" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Subject" -msgstr "Subject" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "September" -msgstr "September" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "December" -msgstr "December" - -#. module: base_calendar -#: help:base_calendar.invite.attendee,send_mail:0 -msgid "Check this if you want to send an Email to Invited Person" -msgstr "Check this if you want to send an Email to Invited Person" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Availability" -msgstr "Availability" - -#. module: base_calendar -#: view:calendar.event.edit.all:0 -msgid "_Save" -msgstr "_Save" - -#. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Individual" -msgstr "Individual" - -#. module: base_calendar -#: field:calendar.alarm,user_id:0 -msgid "Owner" -msgstr "Owner" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Delegation Info" -msgstr "Delegation Info" - -#. module: base_calendar -#: view:calendar.event:0 -#: field:calendar.event.edit.all,date:0 -msgid "Start Date" -msgstr "Start Date" - -#. module: base_calendar -#: field:calendar.attendee,cn:0 -msgid "Common name" -msgstr "Common name" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: selection:calendar.attendee,state:0 -msgid "Declined" -msgstr "Declined" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "My Role" -msgstr "My Role" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "My Events" -msgstr "My Events" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: view:calendar.event:0 -msgid "Decline" -msgstr "Decline" - -#. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Group" -msgstr "Group" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Edit All" -msgstr "Edit All" - -#. module: base_calendar -#: field:base_calendar.invite.attendee,contact_ids:0 -msgid "Contacts" -msgstr "Contacts" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_alarm -msgid "Basic Alarm Information" -msgstr "Basic Alarm Information" - -#. module: base_calendar -#: field:base.calendar.set.exrule,fr:0 -#: field:calendar.event,fr:0 -#: field:calendar.todo,fr:0 -msgid "Fri" -msgstr "Fri" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: view:calendar.event:0 -msgid "Invitation Detail" -msgstr "Invitation Detail" - -#. module: base_calendar -#: field:calendar.attendee,member:0 -msgid "Member" -msgstr "Member" - -#. module: base_calendar -#: help:calendar.event,location:0 -#: help:calendar.todo,location:0 -msgid "Location of Event" -msgstr "Location of Event" - -#. module: base_calendar -#: field:calendar.event,rrule:0 -#: field:calendar.todo,rrule:0 -msgid "Recurrent Rule" -msgstr "Recurrent Rule" - -#. module: base_calendar -#: selection:calendar.alarm,state:0 -msgid "Draft" -msgstr "Draft" - -#. module: base_calendar -#: field:calendar.alarm,attach:0 -msgid "Attachment" -msgstr "Attachment" - -#. module: base_calendar -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Invitation From" -msgstr "Invitation From" - -#. module: base_calendar -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: base_calendar -#: view:calendar.event:0 -#: field:calendar.event.edit.all,alarm_id:0 -msgid "Reminder" -msgstr "Reminder" - -#. module: base_calendar -#: view:base.calendar.set.exrule:0 -#: model:ir.actions.act_window,name:base_calendar.action_base_calendar_set_exrule -#: model:ir.model,name:base_calendar.model_base_calendar_set_exrule -msgid "Set Exrule" -msgstr "Set Exrule" - -#. module: base_calendar -#: view:calendar.event:0 -#: model:ir.actions.act_window,name:base_calendar.action_view_event -#: model:ir.ui.menu,name:base_calendar.menu_events -msgid "Events" -msgstr "Events" - -#. module: base_calendar -#: model:ir.actions.act_window,name:base_calendar.action_view_calendar_invite_attendee_wizard -#: model:ir.model,name:base_calendar.model_base_calendar_invite_attendee -msgid "Invite Attendees" -msgstr "Invite Attendees" - -#. module: base_calendar -#: help:calendar.attendee,email:0 -msgid "Email of Invited Person" -msgstr "Email of Invited Person" - -#. module: base_calendar -#: field:calendar.alarm,repeat:0 -#: field:res.alarm,repeat:0 -msgid "Repeat" -msgstr "Repeat" - -#. module: base_calendar -#: help:calendar.attendee,dir:0 -msgid "Reference to the URIthat points to the directory information corresponding to the attendee." -msgstr "Reference to the URIthat points to the directory information corresponding to the attendee." - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "August" -msgstr "August" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 -#: selection:calendar.event,week_list:0 -#: selection:calendar.todo,week_list:0 -msgid "Monday" -msgstr "Monday" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 -#: selection:calendar.event,byday:0 -#: selection:calendar.todo,byday:0 -msgid "Third" -msgstr "Third" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "June" -msgstr "June" - -#. module: base_calendar -#: field:calendar.alarm,alarm_id:0 -msgid "Basic Alarm" -msgstr "Basic Alarm" - -#. module: base_calendar -#: view:base.calendar.set.exrule:0 -#: view:calendar.event:0 -msgid "The" -msgstr "The" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: field:calendar.attendee,delegated_from:0 -msgid "Delegated From" -msgstr "Delegated From" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: field:calendar.attendee,user_id:0 -msgid "User" -msgstr "User" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "ExRule" -msgstr "ExRule" - -#. module: base_calendar -#: view:calendar.event:0 -#: field:calendar.event,date:0 -msgid "Date" -msgstr "Date" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "November" -msgstr "November" - -#. module: base_calendar -#: help:calendar.attendee,member:0 -msgid "Indicate the groups that the attendee belongs to" -msgstr "Indicate the groups that the attendee belongs to" - -#. module: base_calendar -#: field:base.calendar.set.exrule,mo:0 -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -msgid "Mon" -msgstr "Mon" - -#. module: base_calendar -#: field:base.calendar.set.exrule,count:0 -#: field:calendar.event,count:0 -#: field:calendar.todo,count:0 -msgid "Count" -msgstr "Count" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "October" -msgstr "October" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: view:calendar.event:0 -msgid "Uncertain" -msgstr "Uncertain" - -#. module: base_calendar -#: field:calendar.attendee,language:0 -msgid "Language" -msgstr "Language" - -#. module: base_calendar -#: field:calendar.alarm,trigger_occurs:0 -#: field:res.alarm,trigger_occurs:0 -msgid "Triggers" -msgstr "Triggers" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "January" -msgstr "January" - -#. module: base_calendar -#: field:calendar.alarm,trigger_related:0 -#: field:res.alarm,trigger_related:0 -msgid "Related to" -msgstr "Related to" - -#. module: base_calendar -#: field:base.calendar.set.exrule,interval:0 -#: field:calendar.alarm,trigger_interval:0 -#: field:calendar.event,interval:0 -#: field:calendar.todo,interval:0 -#: field:res.alarm,trigger_interval:0 -msgid "Interval" -msgstr "Interval" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 -#: selection:calendar.event,week_list:0 -#: selection:calendar.todo,week_list:0 -msgid "Wednesday" -msgstr "Wednesday" - -#. module: base_calendar -#: field:calendar.alarm,name:0 -#: view:calendar.event:0 -msgid "Summary" -msgstr "Summary" - -#. module: base_calendar -#: field:calendar.alarm,active:0 -#: field:calendar.event,active:0 -#: field:calendar.todo,active:0 -#: field:res.alarm,active:0 -msgid "Active" -msgstr "Active" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Invitation" -msgstr "Invitation" - -#. module: base_calendar -#: field:calendar.alarm,action:0 -msgid "Action" -msgstr "Action" - -#. module: base_calendar -#: help:calendar.alarm,duration:0 -#: help:res.alarm,duration:0 -msgid "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the other" -msgstr "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the other" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_calendar_event_edit_all -msgid "Calendar Edit all event" -msgstr "Calendar Edit all event" - -#. module: base_calendar -#: help:calendar.attendee,role:0 -msgid "Participation role for the calendar user" -msgstr "Participation role for the calendar user" - -#. module: base_calendar -#: field:calendar.attendee,ref:0 -msgid "Event Ref" -msgstr "Event Ref" - -#. module: base_calendar -#: help:calendar.alarm,action:0 -msgid "Defines the action to be invoked when an alarm is triggered" -msgstr "Defines the action to be invoked when an alarm is triggered" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Search Events" -msgstr "Search Events" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.event,rrule_type:0 -#: selection:calendar.todo,freq:0 -#: selection:calendar.todo,rrule_type:0 -msgid "Weekly" -msgstr "Weekly" - -#. module: base_calendar -#: help:calendar.alarm,active:0 -#: help:calendar.event,active:0 -#: help:calendar.todo,active:0 -#: help:res.alarm,active:0 -msgid "If the active field is set to true, it will allow you to hide the event alarm information without removing it." -msgstr "If the active field is set to true, it will allow you to hide the event alarm information without removing it." - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -msgid "Recurrent ID date" -msgstr "Recurrent ID date" - -#. module: base_calendar -#: field:calendar.alarm,state:0 -#: view:calendar.attendee:0 -#: field:calendar.attendee,state:0 -#: view:calendar.event:0 -#: field:calendar.event,state:0 -#: field:calendar.todo,state:0 -msgid "State" -msgstr "State" - -#. module: base_calendar -#: view:res.alarm:0 -msgid "Reminder Details" -msgstr "Reminder Details" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "To Review" -msgstr "To Review" - -#. module: base_calendar -#: field:base.calendar.set.exrule,freq:0 -#: field:calendar.event,freq:0 -#: field:calendar.todo,freq:0 -msgid "Frequency" -msgstr "Frequency" - -#. module: base_calendar -#: selection:calendar.alarm,state:0 -msgid "Done" -msgstr "Done" - -#. module: base_calendar -#: view:base_calendar.invite.attendee:0 -#: field:base_calendar.invite.attendee,user_ids:0 -msgid "Users" -msgstr "Users" - -#. module: base_calendar -#: view:base.calendar.set.exrule:0 -#: view:calendar.event:0 -msgid "of" -msgstr "of" - -#. module: base_calendar -#: view:base_calendar.invite.attendee:0 -#: view:calendar.event:0 -#: view:calendar.event.edit.all:0 -msgid "Cancel" -msgstr "Cancel" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "res.users" -msgstr "res.users" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 -#: selection:calendar.event,week_list:0 -#: selection:calendar.todo,week_list:0 -msgid "Tuesday" -msgstr "Tuesday" - -#. module: base_calendar -#: help:calendar.alarm,description:0 -msgid "Provides a more complete description of the calendar component, than that provided by the \"SUMMARY\" property" -msgstr "Provides a more complete description of the calendar component, than that provided by the \"SUMMARY\" property" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Responsible User" -msgstr "Responsible User" - -#. module: base_calendar -#: selection:calendar.attendee,availability:0 -#: selection:calendar.event,show_as:0 -#: selection:calendar.todo,show_as:0 -#: selection:res.users,availability:0 -msgid "Busy" -msgstr "Busy" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_calendar_event -msgid "Calendar Event" -msgstr "Calendar Event" - -#. module: base_calendar -#: selection:calendar.attendee,state:0 -#: selection:calendar.event,state:0 -#: selection:calendar.todo,state:0 -msgid "Tentative" -msgstr "Tentative" - -#. module: base_calendar -#: view:calendar.event:0 -#: field:calendar.event,user_id:0 -#: field:calendar.todo,user_id:0 -msgid "Responsible" -msgstr "Responsible" - -#. module: base_calendar -#: view:calendar.event:0 -#: field:calendar.event,rrule_type:0 -#: field:calendar.todo,rrule_type:0 -msgid "Recurrency" -msgstr "Recurrency" - -#. module: base_calendar -#: model:ir.actions.act_window,name:base_calendar.action_view_attendee_form -#: model:ir.ui.menu,name:base_calendar.menu_attendee_invitations -msgid "Event Invitations" -msgstr "Event Invitations" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 -#: selection:calendar.event,week_list:0 -#: selection:calendar.todo,week_list:0 -msgid "Thursday" -msgstr "Thursday" - -#. module: base_calendar -#: selection:calendar.event,rrule_type:0 -#: selection:calendar.todo,rrule_type:0 -msgid "Custom" -msgstr "Custom" - -#. module: base_calendar -#: field:calendar.event,exrule:0 -#: field:calendar.todo,exrule:0 -msgid "Exception Rule" -msgstr "Exception Rule" - -#. module: base_calendar -#: help:calendar.attendee,language:0 -msgid "To specify the language for text values in aproperty or property parameter." -msgstr "To specify the language for text values in aproperty or property parameter." - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Details" -msgstr "Details" - -#. module: base_calendar -#: field:base.calendar.set.exrule,month_list:0 -#: field:calendar.event,month_list:0 -#: field:calendar.todo,month_list:0 -msgid "Month" -msgstr "Month" - -#. module: base_calendar -#: view:base_calendar.invite.attendee:0 -#: view:calendar.event:0 -msgid "Invite People" -msgstr "Invite People" - -#. module: base_calendar -#: help:calendar.event,rrule:0 -#: help:calendar.todo,rrule:0 -msgid "Defines a rule or repeating pattern for recurring events\n" -"e.g.: Every other month on the last Sunday of the month for 10 occurrences: FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=-1SU" -msgstr "Defines a rule or repeating pattern for recurring events\n" -"e.g.: Every other month on the last Sunday of the month for 10 occurrences: FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=-1SU" - -#. module: base_calendar -#: field:calendar.attendee,dir:0 -msgid "URI Reference" -msgstr "URI Reference" - -#. module: base_calendar -#: field:calendar.alarm,description:0 -#: view:calendar.event:0 -#: field:calendar.event,description:0 -#: field:calendar.event,name:0 -#: field:calendar.todo,description:0 -#: field:calendar.todo,name:0 -msgid "Description" -msgstr "Description" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "May" -msgstr "May" - -#. module: base_calendar -#: field:base_calendar.invite.attendee,type:0 -#: view:calendar.attendee:0 -msgid "Type" -msgstr "Type" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Search Invitations" -msgstr "Search Invitations" - -#. module: base_calendar -#: selection:calendar.alarm,trigger_occurs:0 -#: selection:res.alarm,trigger_occurs:0 -msgid "After" -msgstr "After" - -#. module: base_calendar -#: selection:calendar.alarm,state:0 -msgid "Stop" -msgstr "Stop" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_ir_values -msgid "ir.values" -msgstr "ir.values" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_ir_model -msgid "Objects" -msgstr "Objects" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: selection:calendar.attendee,state:0 -msgid "Delegated" -msgstr "Delegated" - -#. module: base_calendar -#: field:base.calendar.set.exrule,sa:0 -#: field:calendar.event,sa:0 -#: field:calendar.todo,sa:0 -msgid "Sat" -msgstr "Sat" - -#. module: base_calendar -#: model:ir.module.module,description:base_calendar.module_meta_information -msgid "Full featured calendar system that supports:\n" -" - Calendar of events\n" -" - Alerts (create requests)\n" -" - Recurring events\n" -" - Invitations to people" -msgstr "Full featured calendar system that supports:\n" -" - Calendar of events\n" -" - Alerts (create requests)\n" -" - Recurring events\n" -" - Invitations to people" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.todo,freq:0 -msgid "Minutely" -msgstr "Minutely" - -#. module: base_calendar -#: help:calendar.attendee,sent_by:0 -msgid "Specify the user that is acting on behalf of the calendar user" -msgstr "Specify the user that is acting on behalf of the calendar user" - -#. module: base_calendar -#: view:calendar.event:0 -#: field:calendar.event.edit.all,date_deadline:0 -msgid "End Date" -msgstr "End Date" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "February" -msgstr "February" - -#. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Resource" -msgstr "Resource" - -#. module: base_calendar -#: field:res.alarm,name:0 -msgid "Name" -msgstr "Name" - -#. module: base_calendar -#: field:calendar.event,exdate:0 -#: field:calendar.todo,exdate:0 -msgid "Exception Date/Times" -msgstr "Exception Date/Times" - -#. module: base_calendar -#: help:calendar.alarm,name:0 -msgid "Contains the text to be used as the message subject for email or contains the text to be used for display" -msgstr "Contains the text to be used as the message subject for email or contains the text to be used for display" - -#. module: base_calendar -#: field:calendar.event,alarm_id:0 -#: field:calendar.event,base_calendar_alarm_id:0 -#: field:calendar.todo,alarm_id:0 -#: field:calendar.todo,base_calendar_alarm_id:0 -msgid "Alarm" -msgstr "Alarm" - -#. module: base_calendar -#: code:addons/base_calendar/wizard/base_calendar_set_exrule.py:0 -#, python-format -msgid "Please Apply Recurrency before applying Exception Rule." -msgstr "Please Apply Recurrency before applying Exception Rule." - -#. module: base_calendar -#: field:calendar.attendee,sent_by_uid:0 -msgid "Sent By User" -msgstr "Sent By User" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "April" -msgstr "April" - -#. module: base_calendar -#: field:base.calendar.set.exrule,week_list:0 -#: field:calendar.event,week_list:0 -#: field:calendar.todo,week_list:0 -msgid "Weekday" -msgstr "Weekday" - -#. module: base_calendar -#: field:base.calendar.set.exrule,byday:0 -#: field:calendar.event,byday:0 -#: field:calendar.todo,byday:0 -msgid "By day" -msgstr "By day" - -#. module: base_calendar -#: field:calendar.alarm,model_id:0 -msgid "Model" -msgstr "Model" - -#. module: base_calendar -#: selection:calendar.alarm,action:0 -msgid "Audio" -msgstr "Audio" - -#. module: base_calendar -#: field:calendar.event,id:0 -#: field:calendar.todo,id:0 -msgid "ID" -msgstr "ID" - -#. module: base_calendar -#: selection:calendar.attendee,role:0 -msgid "For information Purpose" -msgstr "For information Purpose" - -#. module: base_calendar -#: view:base_calendar.invite.attendee:0 -msgid "Invite" -msgstr "Invite" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_calendar_attendee -msgid "Attendee information" -msgstr "Attendee information" - -#. module: base_calendar -#: field:calendar.alarm,res_id:0 -msgid "Resource ID" -msgstr "Resource ID" - -#. module: base_calendar -#: selection:calendar.attendee,state:0 -msgid "Needs Action" -msgstr "Needs Action" - -#. module: base_calendar -#: field:calendar.attendee,sent_by:0 -msgid "Sent By" -msgstr "Sent By" - -#. module: base_calendar -#: field:calendar.event,sequence:0 -#: field:calendar.todo,sequence:0 -msgid "Sequence" -msgstr "Sequence" - -#. module: base_calendar -#: field:calendar.event,vtimezone:0 -#: field:calendar.todo,vtimezone:0 -msgid "Timezone" -msgstr "Timezone" - -#. module: base_calendar -#: selection:base_calendar.invite.attendee,type:0 -msgid "Internal User" -msgstr "Internal User" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: view:calendar.event:0 -msgid "Accept" -msgstr "Accept" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 -#: selection:calendar.event,week_list:0 -#: selection:calendar.todo,week_list:0 -msgid "Saturday" -msgstr "Saturday" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Invitation To" -msgstr "Invitation To" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 -#: selection:calendar.event,byday:0 -#: selection:calendar.todo,byday:0 -msgid "Second" -msgstr "Second" - -#. module: base_calendar -#: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 -msgid "Free/Busy" -msgstr "Free/Busy" - -#. module: base_calendar -#: field:calendar.alarm,duration:0 -#: field:calendar.alarm,trigger_duration:0 -#: field:calendar.event,duration:0 -#: field:calendar.todo,date:0 -#: field:calendar.todo,duration:0 -#: field:res.alarm,duration:0 -#: field:res.alarm,trigger_duration:0 -msgid "Duration" -msgstr "Duration" - -#. module: base_calendar -#: selection:base_calendar.invite.attendee,type:0 -msgid "External Email" -msgstr "External Email" - -#. module: base_calendar -#: field:calendar.alarm,trigger_date:0 -msgid "Trigger Date" -msgstr "Trigger Date" - -#. module: base_calendar -#: help:calendar.alarm,attach:0 -msgid "* Points to a sound resource, which is rendered when the alarm is triggered for audio,\n" -" * File which is intended to be sent as message attachments for email,\n" -" * Points to a procedure resource, which is invoked when the alarm is triggered for procedure." -msgstr "* Points to a sound resource, which is rendered when the alarm is triggered for audio,\n" -" * File which is intended to be sent as message attachments for email,\n" -" * Points to a procedure resource, which is invoked when the alarm is triggered for procedure." - -#. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 -#: selection:calendar.event,byday:0 -#: selection:calendar.todo,byday:0 -msgid "Fifth" -msgstr "Fifth" - diff --git a/addons/claim_from_delivery/i18n/en_US.po b/addons/claim_from_delivery/i18n/en_US.po deleted file mode 100644 index 087d608d122..00000000000 --- a/addons/claim_from_delivery/i18n/en_US.po +++ /dev/null @@ -1,59 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * claim_from_delivery -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 12:05:30+0000\n" -"PO-Revision-Date: 2010-08-20 12:05:30+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: claim_from_delivery -#: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery -msgid "Claim" -msgstr "Claim" - -#. module: claim_from_delivery -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: claim_from_delivery -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: claim_from_delivery -#: model:ir.module.module,description:claim_from_delivery.module_meta_information -msgid "Create Claim from delivery order:\n" -"" -msgstr "Create Claim from delivery order:\n" -"" - -#. module: claim_from_delivery -#: model:ir.module.module,shortdesc:claim_from_delivery.module_meta_information -msgid "Claim from delivery" -msgstr "Claim from delivery" - -#. module: claim_from_delivery -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: claim_from_delivery -#: model:ir.model,name:claim_from_delivery.model_stock_picking -msgid "Picking List" -msgstr "Picking List" - -#. module: claim_from_delivery -#: field:stock.picking,partner_id:0 -msgid "Partner" -msgstr "Partner" - diff --git a/addons/crm_claim/i18n/en_US.po b/addons/crm_claim/i18n/en_US.po deleted file mode 100644 index e11ff69864a..00000000000 --- a/addons/crm_claim/i18n/en_US.po +++ /dev/null @@ -1,750 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * crm_claim -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 12:27:25+0000\n" -"PO-Revision-Date: 2010-08-20 12:27:25+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: crm_claim -#: field:crm.claim,planned_revenue:0 -msgid "Planned Revenue" -msgstr "Planned Revenue" - -#. module: crm_claim -#: field:crm.claim.report,nbr:0 -msgid "# of Cases" -msgstr "# of Cases" - -#. module: crm_claim -#: view:crm.claim:0 -#: view:crm.claim.report:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: crm_claim -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "March" -msgstr "March" - -#. module: crm_claim -#: field:crm.claim.report,delay_close:0 -msgid "Delay to close" -msgstr "Delay to close" - -#. module: crm_claim -#: field:crm.claim,company_id:0 -#: view:crm.claim.report:0 -#: field:crm.claim.report,company_id:0 -msgid "Company" -msgstr "Company" - -#. module: crm_claim -#: field:crm.claim,email_cc:0 -msgid "Watchers Emails" -msgstr "Watchers Emails" - -#. module: crm_claim -#: view:crm.claim.report:0 -msgid "#Claim" -msgstr "#Claim" - -#. module: crm_claim -#: view:crm.claim.report:0 -msgid "This Year" -msgstr "This Year" - -#. module: crm_claim -#: view:crm.claim.report:0 -msgid "Cases" -msgstr "Cases" - -#. module: crm_claim -#: selection:crm.claim,priority:0 -#: selection:crm.claim.report,priority:0 -msgid "Highest" -msgstr "Highest" - -#. module: crm_claim -#: view:crm.claim.report:0 -#: field:crm.claim.report,day:0 -msgid "Day" -msgstr "Day" - -#. module: crm_claim -#: help:crm.claim,canal_id:0 -msgid "The channels represent the different communication modes available with the customer." -msgstr "The channels represent the different communication modes available with the customer." - -#. module: crm_claim -#: help:crm.claim,section_id:0 -msgid "Sales team to which Case belongs to.Define Responsible user and Email account for mail gateway." -msgstr "Sales team to which Case belongs to.Define Responsible user and Email account for mail gateway." - -#. module: crm_claim -#: field:crm.claim,partner_mobile:0 -msgid "Mobile" -msgstr "Mobile" - -#. module: crm_claim -#: field:crm.claim,message_ids:0 -msgid "Messages" -msgstr "Messages" - -#. module: crm_claim -#: model:crm.case.categ,name:crm_claim.categ_claim1 -msgid "Factual Claims" -msgstr "Factual Claims" - -#. module: crm_claim -#: field:crm.claim,type_id:0 -#: field:crm.claim.report,type_id:0 -msgid "Claim Type" -msgstr "Claim Type" - -#. module: crm_claim -#: selection:crm.claim,state:0 -#: selection:crm.claim.report,state:0 -msgid "Cancelled" -msgstr "Cancelled" - -#. module: crm_claim -#: model:crm.case.resource.type,name:crm_claim.type_claim2 -msgid "Preventive" -msgstr "Preventive" - -#. module: crm_claim -#: model:crm.case.stage,name:crm_claim.stage_claim2 -msgid "Fixed" -msgstr "Fixed" - -#. module: crm_claim -#: field:crm.claim,partner_address_id:0 -msgid "Partner Contact" -msgstr "Partner Contact" - -#. module: crm_claim -#: view:crm.claim.report:0 -msgid "My Case" -msgstr "My Case" - -#. module: crm_claim -#: field:crm.claim,ref:0 -msgid "Reference" -msgstr "Reference" - -#. module: crm_claim -#: field:crm.claim,date_action_next:0 -msgid "Next Action" -msgstr "Next Action" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Reset to Draft" -msgstr "Reset to Draft" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Extra Info" -msgstr "Extra Info" - -#. module: crm_claim -#: view:crm.claim:0 -#: field:crm.claim,partner_id:0 -#: field:crm.claim.report,partner_id:0 -msgid "Partner" -msgstr "Partner" - -#. module: crm_claim -#: field:crm.claim,active:0 -msgid "Active" -msgstr "Active" - -#. module: crm_claim -#: field:crm.claim,date_closed:0 -#: selection:crm.claim,state:0 -#: selection:crm.claim.report,state:0 -msgid "Closed" -msgstr "Closed" - -#. module: crm_claim -#: view:crm.claim.report:0 -#: field:crm.claim.report,section_id:0 -msgid "Section" -msgstr "Section" - -#. module: crm_claim -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: crm_claim -#: field:crm.claim,priority:0 -#: view:crm.claim.report:0 -#: field:crm.claim.report,priority:0 -msgid "Priority" -msgstr "Priority" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Send New Email" -msgstr "Send New Email" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Reply" -msgstr "Reply" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Stage: " -msgstr "Stage: " - -#. module: crm_claim -#: view:crm.claim:0 -#: view:crm.claim.report:0 -msgid "Type" -msgstr "Type" - -#. module: crm_claim -#: field:crm.claim,email_from:0 -msgid "Email" -msgstr "Email" - -#. module: crm_claim -#: field:crm.claim,canal_id:0 -msgid "Channel" -msgstr "Channel" - -#. module: crm_claim -#: selection:crm.claim,priority:0 -#: selection:crm.claim.report,priority:0 -msgid "Lowest" -msgstr "Lowest" - -#. module: crm_claim -#: field:crm.claim,create_date:0 -msgid "Creation Date" -msgstr "Creation Date" - -#. module: crm_claim -#: view:crm.claim:0 -#: selection:crm.claim,state:0 -#: view:crm.claim.report:0 -#: selection:crm.claim.report,state:0 -msgid "Pending" -msgstr "Pending" - -#. module: crm_claim -#: view:crm.claim:0 -#: field:crm.claim,date_deadline:0 -msgid "Deadline" -msgstr "Deadline" - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "July" -msgstr "July" - -#. module: crm_claim -#: model:ir.actions.act_window,name:crm_claim.crm_claim_stage_act -msgid "Claim Stages" -msgstr "Claim Stages" - -#. module: crm_claim -#: model:ir.ui.menu,name:crm_claim.menu_crm_case_claim-act -msgid "Categories" -msgstr "Categories" - -#. module: crm_claim -#: view:crm.claim:0 -#: field:crm.claim,stage_id:0 -#: view:crm.claim.report:0 -#: field:crm.claim.report,stage_id:0 -msgid "Stage" -msgstr "Stage" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "History Information" -msgstr "History Information" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Dates" -msgstr "Dates" - -#. module: crm_claim -#: model:ir.actions.act_window,name:crm_claim.crm_claim_resource_act -msgid "Claim Resource Type" -msgstr "Claim Resource Type" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Contact" -msgstr "Contact" - -#. module: crm_claim -#: model:ir.ui.menu,name:crm_claim.menu_crm_claim_stage_act -msgid "Stages" -msgstr "Stages" - -#. module: crm_claim -#: model:ir.ui.menu,name:crm_claim.menu_report_crm_claim_tree -msgid "Claims Analysis" -msgstr "Claims Analysis" - -#. module: crm_claim -#: help:crm.claim.report,delay_close:0 -msgid "Number of Days to close the case" -msgstr "Number of Days to close the case" - -#. module: crm_claim -#: model:ir.model,name:crm_claim.model_crm_claim_report -msgid "CRM Claim Report" -msgstr "CRM Claim Report" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Status and Categorization" -msgstr "Status and Categorization" - -#. module: crm_claim -#: model:crm.case.stage,name:crm_claim.stage_claim1 -msgid "Accepted as Claim" -msgstr "Accepted as Claim" - -#. module: crm_claim -#: model:crm.case.resource.type,name:crm_claim.type_claim1 -msgid "Corrective" -msgstr "Corrective" - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "September" -msgstr "September" - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "December" -msgstr "December" - -#. module: crm_claim -#: view:crm.claim.report:0 -#: field:crm.claim.report,month:0 -msgid "Month" -msgstr "Month" - -#. module: crm_claim -#: field:crm.claim,write_date:0 -msgid "Update Date" -msgstr "Update Date" - -#. module: crm_claim -#: field:crm.claim,ref2:0 -msgid "Reference 2" -msgstr "Reference 2" - -#. module: crm_claim -#: field:crm.claim,categ_id:0 -#: view:crm.claim.report:0 -#: field:crm.claim.report,categ_id:0 -msgid "Category" -msgstr "Category" - -#. module: crm_claim -#: model:crm.case.categ,name:crm_claim.categ_claim2 -msgid "Value Claims" -msgstr "Value Claims" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Closure Date" -msgstr "Closure Date" - -#. module: crm_claim -#: field:crm.claim,planned_cost:0 -msgid "Planned Costs" -msgstr "Planned Costs" - -#. module: crm_claim -#: help:crm.claim,email_cc:0 -msgid "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" -msgstr "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" - -#. module: crm_claim -#: selection:crm.claim,state:0 -#: view:crm.claim.report:0 -#: selection:crm.claim.report,state:0 -msgid "Draft" -msgstr "Draft" - -#. module: crm_claim -#: selection:crm.claim,priority:0 -#: selection:crm.claim.report,priority:0 -msgid "Low" -msgstr "Low" - -#. module: crm_claim -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: crm_claim -#: view:crm.claim.report:0 -msgid "7 Days" -msgstr "7 Days" - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "August" -msgstr "August" - -#. module: crm_claim -#: selection:crm.claim,priority:0 -#: selection:crm.claim.report,priority:0 -msgid "Normal" -msgstr "Normal" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Global CC" -msgstr "Global CC" - -#. module: crm_claim -#: model:ir.module.module,shortdesc:crm_claim.module_meta_information -msgid "Customer & Supplier Relationship Management" -msgstr "Customer & Supplier Relationship Management" - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "June" -msgstr "June" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Type of Action" -msgstr "Type of Action" - -#. module: crm_claim -#: field:crm.claim,partner_phone:0 -msgid "Phone" -msgstr "Phone" - -#. module: crm_claim -#: view:crm.claim.report:0 -#: field:crm.claim.report,user_id:0 -msgid "User" -msgstr "User" - -#. module: crm_claim -#: model:crm.case.stage,name:crm_claim.stage_claim5 -msgid "Awaiting Response" -msgstr "Awaiting Response" - -#. module: crm_claim -#: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action -msgid "Claim Categories" -msgstr "Claim Categories" - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "November" -msgstr "November" - -#. module: crm_claim -#: view:crm.claim.report:0 -msgid "Extended Filters..." -msgstr "Extended Filters..." - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Closure" -msgstr "Closure" - -#. module: crm_claim -#: model:ir.ui.menu,name:crm_claim.menu_crm_claim_type_act -msgid "Resource Type" -msgstr "Resource Type" - -#. module: crm_claim -#: view:crm.claim.report:0 -msgid "Search" -msgstr "Search" - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "October" -msgstr "October" - -#. module: crm_claim -#: model:ir.module.module,description:crm_claim.module_meta_information -msgid "\n" -"This modules allows you to track your customers/suppliers claims and flames.\n" -"It is fully integrated with the email gateway so that you can create\n" -"automatically new claims based on incoming emails.\n" -" " -msgstr "\n" -"This modules allows you to track your customers/suppliers claims and flames.\n" -"It is fully integrated with the email gateway so that you can create\n" -"automatically new claims based on incoming emails.\n" -" " - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "January" -msgstr "January" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Claim Date" -msgstr "Claim Date" - -#. module: crm_claim -#: help:crm.claim,email_from:0 -msgid "These people will receive email." -msgstr "These people will receive email." - -#. module: crm_claim -#: field:crm.claim,date:0 -msgid "Date" -msgstr "Date" - -#. module: crm_claim -#: view:crm.claim:0 -#: view:crm.claim.report:0 -#: model:ir.actions.act_window,name:crm_claim.action_report_crm_claim -#: model:ir.actions.act_window,name:crm_claim.crm_case_categ_claim0 -#: model:ir.ui.menu,name:crm_claim.menu_crm_case_claims -msgid "Claims" -msgstr "Claims" - -#. module: crm_claim -#: model:crm.case.categ,name:crm_claim.categ_claim3 -msgid "Policy Claims" -msgstr "Policy Claims" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "History" -msgstr "History" - -#. module: crm_claim -#: model:ir.model,name:crm_claim.model_crm_claim -#: model:ir.ui.menu,name:crm_claim.menu_config_claim -msgid "Claim" -msgstr "Claim" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Attachments" -msgstr "Attachments" - -#. module: crm_claim -#: view:crm.claim:0 -#: field:crm.claim,state:0 -#: view:crm.claim.report:0 -#: field:crm.claim.report,state:0 -msgid "State" -msgstr "State" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Claim Info" -msgstr "Claim Info" - -#. module: crm_claim -#: view:crm.claim:0 -#: view:crm.claim.report:0 -msgid "Done" -msgstr "Done" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Communication" -msgstr "Communication" - -#. module: crm_claim -#: view:crm.claim:0 -#: view:crm.claim.report:0 -msgid "Cancel" -msgstr "Cancel" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Close" -msgstr "Close" - -#. module: crm_claim -#: view:crm.claim:0 -#: selection:crm.claim,state:0 -#: view:crm.claim.report:0 -#: selection:crm.claim.report,state:0 -msgid "Open" -msgstr "Open" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "In Progress" -msgstr "In Progress" - -#. module: crm_claim -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: crm_claim -#: view:crm.claim:0 -#: field:crm.claim,user_id:0 -msgid "Responsible" -msgstr "Responsible" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Date of Claim" -msgstr "Date of Claim" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Current" -msgstr "Current" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Details" -msgstr "Details" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Cases By Stage and Estimates" -msgstr "Cases By Stage and Estimates" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Claim/Action Description" -msgstr "Claim/Action Description" - -#. module: crm_claim -#: field:crm.claim,description:0 -msgid "Description" -msgstr "Description" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Search Claims" -msgstr "Search Claims" - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "May" -msgstr "May" - -#. module: crm_claim -#: model:ir.actions.act_window,name:crm_claim.act_claim_partner -#: model:ir.actions.act_window,name:crm_claim.act_claim_partner_address -msgid "Report a Claim" -msgstr "Report a Claim" - -#. module: crm_claim -#: field:crm.claim,probability:0 -msgid "Probability (%)" -msgstr "Probability (%)" - -#. module: crm_claim -#: field:crm.claim,partner_name:0 -msgid "Employee's Name" -msgstr "Employee's Name" - -#. module: crm_claim -#: view:crm.claim.report:0 -msgid "This Month" -msgstr "This Month" - -#. module: crm_claim -#: help:crm.claim,state:0 -msgid "The state is set to 'Draft', when a case is created. \n" -"If the case is in progress the state is set to 'Open'. \n" -"When the case is over, the state is set to 'Done'. \n" -"If the case needs to be reviewed then the state is set to 'Pending'." -msgstr "The state is set to 'Draft', when a case is created. \n" -"If the case is in progress the state is set to 'Open'. \n" -"When the case is over, the state is set to 'Done'. \n" -"If the case needs to be reviewed then the state is set to 'Pending'." - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "February" -msgstr "February" - -#. module: crm_claim -#: field:crm.claim,name:0 -msgid "Name" -msgstr "Name" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "Communication history" -msgstr "Communication history" - -#. module: crm_claim -#: model:crm.case.stage,name:crm_claim.stage_claim3 -msgid "Won't fix" -msgstr "Won't fix" - -#. module: crm_claim -#: selection:crm.claim.report,month:0 -msgid "April" -msgstr "April" - -#. module: crm_claim -#: view:crm.claim:0 -msgid "References" -msgstr "References" - -#. module: crm_claim -#: field:crm.claim,id:0 -msgid "ID" -msgstr "ID" - -#. module: crm_claim -#: selection:crm.claim,priority:0 -#: selection:crm.claim.report,priority:0 -msgid "High" -msgstr "High" - -#. module: crm_claim -#: view:crm.claim:0 -#: field:crm.claim,section_id:0 -msgid "Sales Team" -msgstr "Sales Team" - -#. module: crm_claim -#: field:crm.claim.report,create_date:0 -msgid "Create Date" -msgstr "Create Date" - -#. module: crm_claim -#: field:crm.claim,date_action_last:0 -msgid "Last Action" -msgstr "Last Action" - -#. module: crm_claim -#: view:crm.claim.report:0 -#: field:crm.claim.report,name:0 -msgid "Year" -msgstr "Year" - diff --git a/addons/crm_fundraising/i18n/en_US.po b/addons/crm_fundraising/i18n/en_US.po deleted file mode 100644 index 2ea24862e69..00000000000 --- a/addons/crm_fundraising/i18n/en_US.po +++ /dev/null @@ -1,733 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * crm_fundraising -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 12:59:17+0000\n" -"PO-Revision-Date: 2010-08-20 12:59:17+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: crm_fundraising -#: field:crm.fundraising,planned_revenue:0 -msgid "Planned Revenue" -msgstr "Planned Revenue" - -#. module: crm_fundraising -#: field:crm.fundraising.report,nbr:0 -msgid "# of Cases" -msgstr "# of Cases" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: view:crm.fundraising.report:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: crm_fundraising -#: field:crm.fundraising.report,probability:0 -msgid "Avg. Probability" -msgstr "Avg. Probability" - -#. module: crm_fundraising -#: help:crm.fundraising,canal_id:0 -msgid "The channels represent the different communication modes available with the customer." -msgstr "The channels represent the different communication modes available with the customer." - -#. module: crm_fundraising -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Funds Form" -msgstr "Funds Form" - -#. module: crm_fundraising -#: field:crm.fundraising.report,delay_close:0 -msgid "Delay to close" -msgstr "Delay to close" - -#. module: crm_fundraising -#: field:crm.fundraising,company_id:0 -#: view:crm.fundraising.report:0 -#: field:crm.fundraising.report,company_id:0 -msgid "Company" -msgstr "Company" - -#. module: crm_fundraising -#: model:ir.actions.act_window,name:crm_fundraising.crm_fund_categ_action -msgid "Fundraising Categories" -msgstr "Fundraising Categories" - -#. module: crm_fundraising -#: field:crm.fundraising,email_cc:0 -msgid "Watchers Emails" -msgstr "Watchers Emails" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -msgid "This Year" -msgstr "This Year" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -msgid "Cases" -msgstr "Cases" - -#. module: crm_fundraising -#: selection:crm.fundraising,priority:0 -msgid "Highest" -msgstr "Highest" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -#: field:crm.fundraising.report,day:0 -msgid "Day" -msgstr "Day" - -#. module: crm_fundraising -#: field:crm.fundraising,partner_mobile:0 -msgid "Mobile" -msgstr "Mobile" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Notes" -msgstr "Notes" - -#. module: crm_fundraising -#: field:crm.fundraising,message_ids:0 -msgid "Messages" -msgstr "Messages" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Amount" -msgstr "Amount" - -#. module: crm_fundraising -#: selection:crm.fundraising,state:0 -#: selection:crm.fundraising.report,state:0 -msgid "Cancelled" -msgstr "Cancelled" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -#: field:crm.fundraising.report,amount_revenue:0 -msgid "Est.Revenue" -msgstr "Est.Revenue" - -#. module: crm_fundraising -#: field:crm.fundraising,partner_address_id:0 -msgid "Partner Contact" -msgstr "Partner Contact" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -msgid "My Case" -msgstr "My Case" - -#. module: crm_fundraising -#: field:crm.fundraising,ref:0 -msgid "Reference" -msgstr "Reference" - -#. module: crm_fundraising -#: field:crm.fundraising,date_action_next:0 -msgid "Next Action" -msgstr "Next Action" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Reset to Draft" -msgstr "Reset to Draft" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Extra Info" -msgstr "Extra Info" - -#. module: crm_fundraising -#: model:ir.model,name:crm_fundraising.model_crm_fundraising -#: model:ir.ui.menu,name:crm_fundraising.menu_config_fundrising -#: model:ir.ui.menu,name:crm_fundraising.menu_crm_case_fund_raise -msgid "Fund Raising" -msgstr "Fund Raising" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: field:crm.fundraising,partner_id:0 -#: field:crm.fundraising.report,partner_id:0 -msgid "Partner" -msgstr "Partner" - -#. module: crm_fundraising -#: model:ir.ui.menu,name:crm_fundraising.menu_report_crm_fundraising_tree -msgid "Fundraising Analysis" -msgstr "Fundraising Analysis" - -#. module: crm_fundraising -#: model:ir.module.module,shortdesc:crm_fundraising.module_meta_information -msgid "CRM Fundraising" -msgstr "CRM Fundraising" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Estimates" -msgstr "Estimates" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -#: field:crm.fundraising.report,section_id:0 -msgid "Section" -msgstr "Section" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Dates" -msgstr "Dates" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: field:crm.fundraising,priority:0 -msgid "Priority" -msgstr "Priority" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Send New Email" -msgstr "Send New Email" - -#. module: crm_fundraising -#: model:crm.case.categ,name:crm_fundraising.categ_fund1 -msgid "Social Rehabilitation And Rural Upliftment" -msgstr "Social Rehabilitation And Rural Upliftment" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Payment Mode" -msgstr "Payment Mode" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Reply" -msgstr "Reply" - -#. module: crm_fundraising -#: field:crm.fundraising,email_from:0 -msgid "Email" -msgstr "Email" - -#. module: crm_fundraising -#: field:crm.fundraising,canal_id:0 -msgid "Channel" -msgstr "Channel" - -#. module: crm_fundraising -#: selection:crm.fundraising,priority:0 -msgid "Lowest" -msgstr "Lowest" - -#. module: crm_fundraising -#: field:crm.fundraising,create_date:0 -msgid "Creation Date" -msgstr "Creation Date" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: selection:crm.fundraising,state:0 -#: view:crm.fundraising.report:0 -#: selection:crm.fundraising.report,state:0 -msgid "Pending" -msgstr "Pending" - -#. module: crm_fundraising -#: field:crm.fundraising,date_deadline:0 -msgid "Deadline" -msgstr "Deadline" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "July" -msgstr "July" - -#. module: crm_fundraising -#: model:ir.ui.menu,name:crm_fundraising.menu_crm_case_fundraising-act -msgid "Categories" -msgstr "Categories" - -#. module: crm_fundraising -#: field:crm.fundraising,stage_id:0 -msgid "Stage" -msgstr "Stage" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "History Information" -msgstr "History Information" - -#. module: crm_fundraising -#: field:crm.fundraising,date_closed:0 -#: selection:crm.fundraising,state:0 -#: selection:crm.fundraising.report,state:0 -msgid "Closed" -msgstr "Closed" - -#. module: crm_fundraising -#: field:crm.fundraising,partner_name2:0 -msgid "Employee Email" -msgstr "Employee Email" - -#. module: crm_fundraising -#: model:crm.case.categ,name:crm_fundraising.categ_fund2 -msgid "Learning And Education" -msgstr "Learning And Education" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Contact" -msgstr "Contact" - -#. module: crm_fundraising -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "March" -msgstr "March" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Fund Description" -msgstr "Fund Description" - -#. module: crm_fundraising -#: help:crm.fundraising.report,delay_close:0 -msgid "Number of Days to close the case" -msgstr "Number of Days to close the case" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -#: model:ir.actions.act_window,name:crm_fundraising.action_report_crm_fundraising -#: model:ir.module.module,description:crm_fundraising.module_meta_information -msgid "Fundraising" -msgstr "Fundraising" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "September" -msgstr "September" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "December" -msgstr "December" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Funds Tree" -msgstr "Funds Tree" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -#: field:crm.fundraising.report,month:0 -msgid "Month" -msgstr "Month" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Escalate" -msgstr "Escalate" - -#. module: crm_fundraising -#: field:crm.fundraising,write_date:0 -msgid "Update Date" -msgstr "Update Date" - -#. module: crm_fundraising -#: model:crm.case.resource.type,name:crm_fundraising.type_fund3 -msgid "Credit Card" -msgstr "Credit Card" - -#. module: crm_fundraising -#: model:ir.actions.act_window,name:crm_fundraising.crm_fundraising_stage_act -msgid "Fundraising Stages" -msgstr "Fundraising Stages" - -#. module: crm_fundraising -#: field:crm.fundraising,ref2:0 -msgid "Reference 2" -msgstr "Reference 2" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: field:crm.fundraising,categ_id:0 -#: view:crm.fundraising.report:0 -#: field:crm.fundraising.report,categ_id:0 -msgid "Category" -msgstr "Category" - -#. module: crm_fundraising -#: model:crm.case.categ,name:crm_fundraising.categ_fund4 -msgid "Arts And Culture" -msgstr "Arts And Culture" - -#. module: crm_fundraising -#: field:crm.fundraising,planned_cost:0 -msgid "Planned Costs" -msgstr "Planned Costs" - -#. module: crm_fundraising -#: help:crm.fundraising,email_cc:0 -msgid "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" -msgstr "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" - -#. module: crm_fundraising -#: selection:crm.fundraising,state:0 -#: view:crm.fundraising.report:0 -#: selection:crm.fundraising.report,state:0 -msgid "Draft" -msgstr "Draft" - -#. module: crm_fundraising -#: selection:crm.fundraising,priority:0 -msgid "Low" -msgstr "Low" - -#. module: crm_fundraising -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -msgid "7 Days" -msgstr "7 Days" - -#. module: crm_fundraising -#: model:ir.ui.menu,name:crm_fundraising.menu_crm_fundraising_stage_act -msgid "Stages" -msgstr "Stages" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "August" -msgstr "August" - -#. module: crm_fundraising -#: selection:crm.fundraising,priority:0 -msgid "Normal" -msgstr "Normal" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Global CC" -msgstr "Global CC" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: model:ir.actions.act_window,name:crm_fundraising.crm_case_category_act_fund_all1 -msgid "Funds" -msgstr "Funds" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "June" -msgstr "June" - -#. module: crm_fundraising -#: field:crm.fundraising,partner_phone:0 -msgid "Phone" -msgstr "Phone" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -#: field:crm.fundraising.report,user_id:0 -msgid "User" -msgstr "User" - -#. module: crm_fundraising -#: model:crm.case.resource.type,name:crm_fundraising.type_fund2 -msgid "Cheque" -msgstr "Cheque" - -#. module: crm_fundraising -#: field:crm.fundraising,active:0 -msgid "Active" -msgstr "Active" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "November" -msgstr "November" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -msgid "Extended Filters..." -msgstr "Extended Filters..." - -#. module: crm_fundraising -#: model:ir.ui.menu,name:crm_fundraising.menu_crm_fundraising_resource_act -msgid "Resource Type" -msgstr "Resource Type" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -msgid "Search" -msgstr "Search" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "October" -msgstr "October" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "January" -msgstr "January" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -msgid "#Fundraising" -msgstr "#Fundraising" - -#. module: crm_fundraising -#: help:crm.fundraising,email_from:0 -msgid "These people will receive email." -msgstr "These people will receive email." - -#. module: crm_fundraising -#: field:crm.fundraising,date:0 -msgid "Date" -msgstr "Date" - -#. module: crm_fundraising -#: model:crm.case.categ,name:crm_fundraising.categ_fund3 -msgid "Healthcare" -msgstr "Healthcare" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "History" -msgstr "History" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Attachments" -msgstr "Attachments" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Misc" -msgstr "Misc" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: field:crm.fundraising,state:0 -#: view:crm.fundraising.report:0 -#: field:crm.fundraising.report,state:0 -msgid "State" -msgstr "State" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: view:crm.fundraising.report:0 -msgid "Done" -msgstr "Done" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Communication" -msgstr "Communication" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: view:crm.fundraising.report:0 -msgid "Cancel" -msgstr "Cancel" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: selection:crm.fundraising,state:0 -#: view:crm.fundraising.report:0 -#: selection:crm.fundraising.report,state:0 -msgid "Open" -msgstr "Open" - -#. module: crm_fundraising -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: field:crm.fundraising,user_id:0 -msgid "Responsible" -msgstr "Responsible" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Current" -msgstr "Current" - -#. module: crm_fundraising -#: help:crm.fundraising,section_id:0 -msgid "Sales team to which Case belongs to. Define Responsible user and Email account for mail gateway." -msgstr "Sales team to which Case belongs to. Define Responsible user and Email account for mail gateway." - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Details" -msgstr "Details" - -#. module: crm_fundraising -#: model:ir.model,name:crm_fundraising.model_crm_fundraising_report -msgid "CRM Fundraising Report" -msgstr "CRM Fundraising Report" - -#. module: crm_fundraising -#: field:crm.fundraising,type_id:0 -msgid "Fundraising Type" -msgstr "Fundraising Type" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -#: field:crm.fundraising.report,amount_revenue_prob:0 -msgid "Est. Rev*Prob." -msgstr "Est. Rev*Prob." - -#. module: crm_fundraising -#: field:crm.fundraising,description:0 -msgid "Description" -msgstr "Description" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "May" -msgstr "May" - -#. module: crm_fundraising -#: field:crm.fundraising,probability:0 -msgid "Probability (%)" -msgstr "Probability (%)" - -#. module: crm_fundraising -#: field:crm.fundraising,partner_name:0 -msgid "Employee's Name" -msgstr "Employee's Name" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -msgid "This Month" -msgstr "This Month" - -#. module: crm_fundraising -#: model:ir.actions.act_window,name:crm_fundraising.crm_fundraising_resource_act -msgid "Fundraising Resource Type" -msgstr "Fundraising Resource Type" - -#. module: crm_fundraising -#: help:crm.fundraising,state:0 -msgid "The state is set to 'Draft', when a case is created. \n" -"If the case is in progress the state is set to 'Open'. \n" -"When the case is over, the state is set to 'Done'. \n" -"If the case needs to be reviewed then the state is set to 'Pending'." -msgstr "The state is set to 'Draft', when a case is created. \n" -"If the case is in progress the state is set to 'Open'. \n" -"When the case is over, the state is set to 'Done'. \n" -"If the case needs to be reviewed then the state is set to 'Pending'." - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "February" -msgstr "February" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: field:crm.fundraising,name:0 -msgid "Name" -msgstr "Name" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Communication history" -msgstr "Communication history" - -#. module: crm_fundraising -#: model:crm.case.resource.type,name:crm_fundraising.type_fund1 -msgid "Cash" -msgstr "Cash" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Funds by Categories" -msgstr "Funds by Categories" - -#. module: crm_fundraising -#: selection:crm.fundraising.report,month:0 -msgid "April" -msgstr "April" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "References" -msgstr "References" - -#. module: crm_fundraising -#: model:crm.case.resource.type,name:crm_fundraising.type_fund4 -msgid "Demand Draft" -msgstr "Demand Draft" - -#. module: crm_fundraising -#: field:crm.fundraising,id:0 -msgid "ID" -msgstr "ID" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -msgid "Search Funds" -msgstr "Search Funds" - -#. module: crm_fundraising -#: selection:crm.fundraising,priority:0 -msgid "High" -msgstr "High" - -#. module: crm_fundraising -#: view:crm.fundraising:0 -#: field:crm.fundraising,section_id:0 -msgid "Sales Team" -msgstr "Sales Team" - -#. module: crm_fundraising -#: field:crm.fundraising.report,create_date:0 -msgid "Create Date" -msgstr "Create Date" - -#. module: crm_fundraising -#: field:crm.fundraising,date_action_last:0 -msgid "Last Action" -msgstr "Last Action" - -#. module: crm_fundraising -#: view:crm.fundraising.report:0 -#: field:crm.fundraising.report,name:0 -msgid "Year" -msgstr "Year" - -#. module: crm_fundraising -#: field:crm.fundraising,duration:0 -msgid "Duration" -msgstr "Duration" - diff --git a/addons/crm_helpdesk/i18n/en_US.po b/addons/crm_helpdesk/i18n/en_US.po deleted file mode 100644 index f5a52dd2a48..00000000000 --- a/addons/crm_helpdesk/i18n/en_US.po +++ /dev/null @@ -1,641 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * crm_helpdesk -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-23 05:05:03+0000\n" -"PO-Revision-Date: 2010-08-23 05:05:03+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: crm_helpdesk -#: field:crm.helpdesk.report,nbr:0 -msgid "# of Cases" -msgstr "# of Cases" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -#: view:crm.helpdesk.report:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: crm_helpdesk -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Today" -msgstr "Today" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "March" -msgstr "March" - -#. module: crm_helpdesk -#: field:crm.helpdesk.report,delay_close:0 -msgid "Delay to close" -msgstr "Delay to close" - -#. module: crm_helpdesk -#: field:crm.helpdesk,company_id:0 -#: view:crm.helpdesk.report:0 -#: field:crm.helpdesk.report,company_id:0 -msgid "Company" -msgstr "Company" - -#. module: crm_helpdesk -#: field:crm.helpdesk,email_cc:0 -msgid "Watchers Emails" -msgstr "Watchers Emails" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -msgid "This Year" -msgstr "This Year" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -msgid "Cases" -msgstr "Cases" - -#. module: crm_helpdesk -#: selection:crm.helpdesk,priority:0 -#: selection:crm.helpdesk.report,priority:0 -msgid "Highest" -msgstr "Highest" - -#. module: crm_helpdesk -#: field:crm.helpdesk.report,day:0 -msgid "Day" -msgstr "Day" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Notes" -msgstr "Notes" - -#. module: crm_helpdesk -#: field:crm.helpdesk,message_ids:0 -msgid "Messages" -msgstr "Messages" - -#. module: crm_helpdesk -#: selection:crm.helpdesk,state:0 -#: selection:crm.helpdesk.report,state:0 -msgid "Cancelled" -msgstr "Cancelled" - -#. module: crm_helpdesk -#: field:crm.helpdesk,partner_address_id:0 -msgid "Partner Contact" -msgstr "Partner Contact" - -#. module: crm_helpdesk -#: model:ir.ui.menu,name:crm_helpdesk.menu_report_crm_helpdesks_tree -msgid "Helpdesk Analysis" -msgstr "Helpdesk Analysis" - -#. module: crm_helpdesk -#: field:crm.helpdesk,ref:0 -msgid "Reference" -msgstr "Reference" - -#. module: crm_helpdesk -#: field:crm.helpdesk,date_action_next:0 -msgid "Next Action" -msgstr "Next Action" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Helpdesk Supports" -msgstr "Helpdesk Supports" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Extra Info" -msgstr "Extra Info" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -#: field:crm.helpdesk,partner_id:0 -#: view:crm.helpdesk.report:0 -#: field:crm.helpdesk.report,partner_id:0 -msgid "Partner" -msgstr "Partner" - -#. module: crm_helpdesk -#: field:crm.helpdesk,date_closed:0 -#: selection:crm.helpdesk,state:0 -#: selection:crm.helpdesk.report,state:0 -msgid "Closed" -msgstr "Closed" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Estimates" -msgstr "Estimates" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -#: field:crm.helpdesk.report,section_id:0 -msgid "Section" -msgstr "Section" - -#. module: crm_helpdesk -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -#: field:crm.helpdesk,priority:0 -#: view:crm.helpdesk.report:0 -#: field:crm.helpdesk.report,priority:0 -msgid "Priority" -msgstr "Priority" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Send New Email" -msgstr "Send New Email" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -msgid "Won" -msgstr "Won" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Reply" -msgstr "Reply" - -#. module: crm_helpdesk -#: model:ir.model,name:crm_helpdesk.model_crm_helpdesk_report -msgid "Helpdesk report after Sales Services" -msgstr "Helpdesk report after Sales Services" - -#. module: crm_helpdesk -#: field:crm.helpdesk,email_from:0 -msgid "Email" -msgstr "Email" - -#. module: crm_helpdesk -#: field:crm.helpdesk,canal_id:0 -msgid "Channel" -msgstr "Channel" - -#. module: crm_helpdesk -#: selection:crm.helpdesk,priority:0 -#: selection:crm.helpdesk.report,priority:0 -msgid "Lowest" -msgstr "Lowest" - -#. module: crm_helpdesk -#: field:crm.helpdesk,create_date:0 -msgid "Creation Date" -msgstr "Creation Date" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Reset to Draft" -msgstr "Reset to Draft" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -#: selection:crm.helpdesk,state:0 -#: selection:crm.helpdesk.report,state:0 -msgid "Pending" -msgstr "Pending" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -#: field:crm.helpdesk,date_deadline:0 -#: view:crm.helpdesk.report:0 -#: field:crm.helpdesk.report,date_deadline:0 -msgid "Deadline" -msgstr "Deadline" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "July" -msgstr "July" - -#. module: crm_helpdesk -#: model:ir.actions.act_window,name:crm_helpdesk.crm_helpdesk_categ_action -msgid "Helpdesk Categories" -msgstr "Helpdesk Categories" - -#. module: crm_helpdesk -#: model:ir.ui.menu,name:crm_helpdesk.menu_crm_case_helpdesk-act -msgid "Categories" -msgstr "Categories" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "History Information" -msgstr "History Information" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Dates" -msgstr "Dates" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -msgid "#Helpdesk" -msgstr "#Helpdesk" - -#. module: crm_helpdesk -#: help:crm.helpdesk,email_cc:0 -msgid "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" -msgstr "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "September" -msgstr "September" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "December" -msgstr "December" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -#: field:crm.helpdesk.report,month:0 -msgid "Month" -msgstr "Month" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Escalate" -msgstr "Escalate" - -#. module: crm_helpdesk -#: field:crm.helpdesk,write_date:0 -msgid "Update Date" -msgstr "Update Date" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Query" -msgstr "Query" - -#. module: crm_helpdesk -#: field:crm.helpdesk,ref2:0 -msgid "Reference 2" -msgstr "Reference 2" - -#. module: crm_helpdesk -#: field:crm.helpdesk,categ_id:0 -msgid "Category" -msgstr "Category" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Helpdesk Support" -msgstr "Helpdesk Support" - -#. module: crm_helpdesk -#: field:crm.helpdesk,planned_cost:0 -msgid "Planned Costs" -msgstr "Planned Costs" - -#. module: crm_helpdesk -#: model:ir.module.module,description:crm_helpdesk.module_meta_information -msgid "Helpdesk Management" -msgstr "Helpdesk Management" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Search Helpdesk" -msgstr "Search Helpdesk" - -#. module: crm_helpdesk -#: selection:crm.helpdesk,state:0 -#: selection:crm.helpdesk.report,state:0 -msgid "Draft" -msgstr "Draft" - -#. module: crm_helpdesk -#: selection:crm.helpdesk,priority:0 -#: selection:crm.helpdesk.report,priority:0 -msgid "Low" -msgstr "Low" - -#. module: crm_helpdesk -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "7 Days" -msgstr "7 Days" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "August" -msgstr "August" - -#. module: crm_helpdesk -#: selection:crm.helpdesk,priority:0 -#: selection:crm.helpdesk.report,priority:0 -msgid "Normal" -msgstr "Normal" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Global CC" -msgstr "Global CC" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "June" -msgstr "June" - -#. module: crm_helpdesk -#: field:crm.helpdesk,planned_revenue:0 -msgid "Planned Revenue" -msgstr "Planned Revenue" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -#: field:crm.helpdesk.report,user_id:0 -msgid "User" -msgstr "User" - -#. module: crm_helpdesk -#: field:crm.helpdesk,active:0 -msgid "Active" -msgstr "Active" - -#. module: crm_helpdesk -#: model:ir.module.module,shortdesc:crm_helpdesk.module_meta_information -msgid "CRM Helpdesk" -msgstr "CRM Helpdesk" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -msgid "Extended Filters..." -msgstr "Extended Filters..." - -#. module: crm_helpdesk -#: model:ir.actions.act_window,name:crm_helpdesk.crm_case_helpdesk_act111 -msgid "Helpdesk Requests" -msgstr "Helpdesk Requests" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -msgid "Search" -msgstr "Search" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "October" -msgstr "October" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "January" -msgstr "January" - -#. module: crm_helpdesk -#: help:crm.helpdesk,email_from:0 -msgid "These people will receive email." -msgstr "These people will receive email." - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -#: field:crm.helpdesk,date:0 -msgid "Date" -msgstr "Date" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "November" -msgstr "November" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "History" -msgstr "History" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Attachments" -msgstr "Attachments" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Misc" -msgstr "Misc" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -#: field:crm.helpdesk,state:0 -#: view:crm.helpdesk.report:0 -#: field:crm.helpdesk.report,state:0 -msgid "State" -msgstr "State" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "General" -msgstr "General" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Send Reminder" -msgstr "Send Reminder" - -#. module: crm_helpdesk -#: help:crm.helpdesk,section_id:0 -msgid "Sales team to which Case belongs to. Define Responsible user and Email account for mail gateway." -msgstr "Sales team to which Case belongs to. Define Responsible user and Email account for mail gateway." - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Done" -msgstr "Done" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Communication" -msgstr "Communication" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Cancel" -msgstr "Cancel" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Close" -msgstr "Close" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -#: selection:crm.helpdesk,state:0 -#: selection:crm.helpdesk.report,state:0 -msgid "Open" -msgstr "Open" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Helpdesk Support Tree" -msgstr "Helpdesk Support Tree" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Categorization" -msgstr "Categorization" - -#. module: crm_helpdesk -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -#: model:ir.actions.act_window,name:crm_helpdesk.action_report_crm_helpdesk -#: model:ir.model,name:crm_helpdesk.model_crm_helpdesk -#: model:ir.ui.menu,name:crm_helpdesk.menu_config_helpdesk -msgid "Helpdesk" -msgstr "Helpdesk" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -#: field:crm.helpdesk,user_id:0 -msgid "Responsible" -msgstr "Responsible" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -msgid "Current" -msgstr "Current" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Details" -msgstr "Details" - -#. module: crm_helpdesk -#: field:crm.helpdesk,description:0 -msgid "Description" -msgstr "Description" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "May" -msgstr "May" - -#. module: crm_helpdesk -#: field:crm.helpdesk,probability:0 -msgid "Probability (%)" -msgstr "Probability (%)" - -#. module: crm_helpdesk -#: help:crm.helpdesk,canal_id:0 -msgid "The channels represent the different communication modes available with the customer." -msgstr "The channels represent the different communication modes available with the customer." - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -msgid "This Month" -msgstr "This Month" - -#. module: crm_helpdesk -#: help:crm.helpdesk,state:0 -msgid "The state is set to 'Draft', when a case is created. \n" -"If the case is in progress the state is set to 'Open'. \n" -"When the case is over, the state is set to 'Done'. \n" -"If the case needs to be reviewed then the state is set to 'Pending'." -msgstr "The state is set to 'Draft', when a case is created. \n" -"If the case is in progress the state is set to 'Open'. \n" -"When the case is over, the state is set to 'Done'. \n" -"If the case needs to be reviewed then the state is set to 'Pending'." - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "February" -msgstr "February" - -#. module: crm_helpdesk -#: field:crm.helpdesk,name:0 -msgid "Name" -msgstr "Name" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -msgid "Lost" -msgstr "Lost" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "Communication history" -msgstr "Communication history" - -#. module: crm_helpdesk -#: model:ir.ui.menu,name:crm_helpdesk.menu_help_support_main -msgid "Helpdesk and Support" -msgstr "Helpdesk and Support" - -#. module: crm_helpdesk -#: selection:crm.helpdesk.report,month:0 -msgid "April" -msgstr "April" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -msgid "References" -msgstr "References" - -#. module: crm_helpdesk -#: field:crm.helpdesk,id:0 -msgid "ID" -msgstr "ID" - -#. module: crm_helpdesk -#: selection:crm.helpdesk,priority:0 -#: selection:crm.helpdesk.report,priority:0 -msgid "High" -msgstr "High" - -#. module: crm_helpdesk -#: view:crm.helpdesk:0 -#: field:crm.helpdesk,section_id:0 -msgid "Sales Team" -msgstr "Sales Team" - -#. module: crm_helpdesk -#: field:crm.helpdesk.report,create_date:0 -msgid "Create Date" -msgstr "Create Date" - -#. module: crm_helpdesk -#: field:crm.helpdesk,date_action_last:0 -msgid "Last Action" -msgstr "Last Action" - -#. module: crm_helpdesk -#: view:crm.helpdesk.report:0 -#: field:crm.helpdesk.report,name:0 -msgid "Year" -msgstr "Year" - -#. module: crm_helpdesk -#: field:crm.helpdesk,duration:0 -msgid "Duration" -msgstr "Duration" - diff --git a/addons/crm_partner_assign/i18n/en_US.po b/addons/crm_partner_assign/i18n/en_US.po deleted file mode 100644 index dd55437be2d..00000000000 --- a/addons/crm_partner_assign/i18n/en_US.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * partner_geo_assign -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 08:46:18+0000\n" -"PO-Revision-Date: 2010-08-20 08:46:18+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: partner_geo_assign -#: code:addons/partner_geo_assign/partner_geo_assign.py:0 -#, python-format -msgid "Network error" -msgstr "Network error" - -#. module: partner_geo_assign -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: partner_geo_assign -#: help:res.partner,partner_weight:0 -msgid "Gives the probability to assign a lead to this partner. (0 means no assignation.)" -msgstr "Gives the probability to assign a lead to this partner. (0 means no assignation.)" - -#. module: partner_geo_assign -#: model:ir.module.module,description:partner_geo_assign.module_meta_information -msgid "\n" -"This is the module used by OpenERP SA to redirect customers to his partners,\n" -"based on geolocalization.\n" -" " -msgstr "\n" -"This is the module used by OpenERP SA to redirect customers to his partners,\n" -"based on geolocalization.\n" -" " - -#. module: partner_geo_assign -#: field:res.partner,partner_weight:0 -msgid "Weight" -msgstr "Weight" - -#. module: partner_geo_assign -#: model:ir.module.module,shortdesc:partner_geo_assign.module_meta_information -msgid "Partner Geo-Localisation" -msgstr "Partner Geo-Localisation" - -#. module: partner_geo_assign -#: view:res.partner:0 -msgid "Geo Localization" -msgstr "Geo Localization" - -#. module: partner_geo_assign -#: code:addons/partner_geo_assign/partner_geo_assign.py:0 -#, python-format -msgid "Could not contact geolocation servers, please make sure you have a working internet connection (%s)" -msgstr "Could not contact geolocation servers, please make sure you have a working internet connection (%s)" - -#. module: partner_geo_assign -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: partner_geo_assign -#: field:res.partner,date_localization:0 -msgid "Geo Localization Date" -msgstr "Geo Localization Date" - -#. module: partner_geo_assign -#: view:crm.lead:0 -msgid "Geo Assign" -msgstr "Geo Assign" - -#. module: partner_geo_assign -#: field:crm.lead,partner_latitude:0 -#: field:res.partner,partner_latitude:0 -msgid "Geo Latitude" -msgstr "Geo Latitude" - -#. module: partner_geo_assign -#: model:ir.model,name:partner_geo_assign.model_crm_lead -msgid "crm.lead" -msgstr "crm.lead" - -#. module: partner_geo_assign -#: model:ir.model,name:partner_geo_assign.model_res_partner -msgid "Partner" -msgstr "Partner" - -#. module: partner_geo_assign -#: view:crm.lead:0 -msgid "Geo Assignation" -msgstr "Geo Assignation" - -#. module: partner_geo_assign -#: view:res.partner:0 -msgid "Geo Localize" -msgstr "Geo Localize" - -#. module: partner_geo_assign -#: field:crm.lead,partner_longitude:0 -#: field:res.partner,partner_longitude:0 -msgid "Geo Longitude" -msgstr "Geo Longitude" - diff --git a/addons/decimal_precision/i18n/en_US.po b/addons/decimal_precision/i18n/en_US.po deleted file mode 100644 index 38e04e1de84..00000000000 --- a/addons/decimal_precision/i18n/en_US.po +++ /dev/null @@ -1,83 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * decimal_precision -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 05:32:40+0000\n" -"PO-Revision-Date: 2010-08-20 05:32:40+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: decimal_precision -#: field:decimal.precision,digits:0 -msgid "Digits" -msgstr "Digits" - -#. module: decimal_precision -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: decimal_precision -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: decimal_precision -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: decimal_precision -#: view:decimal.precision:0 -msgid "Decimal Precision" -msgstr "Decimal Precision" - -#. module: decimal_precision -#: model:ir.actions.act_window,name:decimal_precision.action_decimal_precision_form -#: model:ir.ui.menu,name:decimal_precision.menu_decimal_precision_form -msgid "Decimal Accuracy Definitions" -msgstr "Decimal Accuracy Definitions" - -#. module: decimal_precision -#: model:ir.module.module,description:decimal_precision.module_meta_information -msgid "\n" -"This module allows to configure the price accuracy you need for different kind\n" -"of usage: accounting, sales, purchases, ...\n" -"\n" -"The decimal precision is configured per company.\n" -"" -msgstr "\n" -"This module allows to configure the price accuracy you need for different kind\n" -"of usage: accounting, sales, purchases, ...\n" -"\n" -"The decimal precision is configured per company.\n" -"" - -#. module: decimal_precision -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: decimal_precision -#: field:decimal.precision,name:0 -msgid "Usage" -msgstr "Usage" - -#. module: decimal_precision -#: model:ir.module.module,shortdesc:decimal_precision.module_meta_information -msgid "Decimal Precision Configuration" -msgstr "Decimal Precision Configuration" - -#. module: decimal_precision -#: model:ir.model,name:decimal_precision.model_decimal_precision -msgid "decimal.precision" -msgstr "decimal.precision" - diff --git a/addons/email_template/i18n/en_US.po b/addons/email_template/i18n/en_US.po deleted file mode 100644 index be4a81a7954..00000000000 --- a/addons/email_template/i18n/en_US.po +++ /dev/null @@ -1,1186 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * email_template -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 06:07:25+0000\n" -"PO-Revision-Date: 2010-08-20 06:07:25+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "Send mail Wizard" -msgstr "Send mail Wizard" - -#. module: email_template -#: view:email_template.account:0 -msgid "Email Account Configuration" -msgstr "Email Account Configuration" - -#. module: email_template -#: code:addons/email_template/wizard/email_template_send_wizard.py:0 -#, python-format -msgid "Emails for multiple items saved in outbox." -msgstr "Emails for multiple items saved in outbox." - -#. module: email_template -#: view:email.template:0 -msgid "Email Data" -msgstr "Email Data" - -#. module: email_template -#: field:email.template,def_to:0 -#: field:email_template.mailbox,email_to:0 -msgid "Recipient (To)" -msgstr "Recipient (To)" - -#. module: email_template -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: email_template -#: selection:email_template.send.wizard,state:0 -msgid "Wizard Complete" -msgstr "Wizard Complete" - -#. module: email_template -#: selection:email_template.mailbox,mail_type:0 -msgid "Plain Text & HTML with no attachments" -msgstr "Plain Text & HTML with no attachments" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Mail from Account %s failed on login. Probable Reason:Could not login to server\nError: %s" -msgstr "Mail from Account %s failed on login. Probable Reason:Could not login to server\nError: %s" - -#. module: email_template -#: field:email_template.preview,body_html:0 -#: field:email_template.preview,body_text:0 -#: field:email_template.send.wizard,body_html:0 -#: field:email_template.send.wizard,body_text:0 -msgid "Body" -msgstr "Body" - -#. module: email_template -#: code:addons/email_template/email_template.py:0 -#, python-format -msgid "Deletion of Record failed" -msgstr "Deletion of Record failed" - -#. module: email_template -#: help:email_template.account,company:0 -msgid "Select if this mail account does not belong to specific user but to the organization as a whole. eg: info@companydomain.com" -msgstr "Select if this mail account does not belong to specific user but to the organization as a whole. eg: info@companydomain.com" - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "Send now" -msgstr "Send now" - -#. module: email_template -#: view:email_template.mailbox:0 -#: selection:email_template.mailbox,state:0 -msgid "Not Applicable" -msgstr "Not Applicable" - -#. module: email_template -#: model:ir.ui.menu,name:email_template.menu_email_template_account_all -msgid "Email Accounts" -msgstr "Email Accounts" - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "Send all mails" -msgstr "Send all mails" - -#. module: email_template -#: field:email_template.mailbox,server_ref:0 -msgid "Server Reference of mail" -msgstr "Server Reference of mail" - -#. module: email_template -#: view:email_template.account:0 -msgid "My Accounts" -msgstr "My Accounts" - -#. module: email_template -#: view:email_template.mailbox:0 -msgid "Send Mail" -msgstr "Send Mail" - -#. module: email_template -#: selection:email_template.account,state:0 -msgid "Approved" -msgstr "Approved" - -#. module: email_template -#: field:email.template,table_html:0 -msgid "HTML code" -msgstr "HTML code" - -#. module: email_template -#: help:email.template,file_name:0 -msgid "File name pattern can be specified with placeholders.eg. 2009_SO003.pdf" -msgstr "File name pattern can be specified with placeholders.eg. 2009_SO003.pdf" - -#. module: email_template -#: field:email.template,from_account:0 -msgid "Email Account" -msgstr "Email Account" - -#. module: email_template -#: code:addons/email_template/wizard/email_template_send_wizard.py:0 -#, python-format -msgid "Email sending failed for one or more objects." -msgstr "Email sending failed for one or more objects." - -#. module: email_template -#: help:email.template,lang:0 -msgid "The default language for the email. Placeholders can be used here. eg. ${object.partner_id.lang}" -msgstr "The default language for the email. Placeholders can be used here. eg. ${object.partner_id.lang}" - -#. module: email_template -#: help:email_template.account,smtpport:0 -msgid "Enter port number,eg:SMTP-587 " -msgstr "Enter port number,eg:SMTP-587 " - -#. module: email_template -#: field:email.template,reply_to:0 -#: field:email_template.mailbox,reply_to:0 -#: field:email_template.preview,reply_to:0 -#: field:email_template.send.wizard,reply_to:0 -msgid "Reply-To" -msgstr "Reply-To" - -#. module: email_template -#: view:email.template:0 -msgid "Delete Action" -msgstr "Delete Action" - -#. module: email_template -#: view:email_template.account:0 -msgid "Approve Account" -msgstr "Approve Account" - -#. module: email_template -#: model:ir.ui.menu,name:email_template.menu_email_template_all -msgid "Email Templates" -msgstr "Email Templates" - -#. module: email_template -#: field:email_template.preview,rel_model_ref:0 -#: field:email_template.send.wizard,rel_model_ref:0 -msgid "Referred Document" -msgstr "Referred Document" - -#. module: email_template -#: field:email_template.send.wizard,full_success:0 -msgid "Complete Success" -msgstr "Complete Success" - -#. module: email_template -#: selection:email_template.account,send_pref:0 -msgid "Both HTML & Text (Mixed)" -msgstr "Both HTML & Text (Mixed)" - -#. module: email_template -#: view:email_template.preview:0 -msgid "OK" -msgstr "OK" - -#. module: email_template -#: selection:email_template.account,send_pref:0 -msgid "Both HTML & Text (Alternative)" -msgstr "Both HTML & Text (Alternative)" - -#. module: email_template -#: code:addons/email_template/email_template.py:0 -#, python-format -msgid "Mako templates not installed" -msgstr "Mako templates not installed" - -#. module: email_template -#: field:email_template.send.wizard,requested:0 -msgid "No of requested Mails" -msgstr "No of requested Mails" - -#. module: email_template -#: view:email_template.mailbox:0 -msgid "Download Full Mail" -msgstr "Download Full Mail" - -#. module: email_template -#: help:email.template,def_to:0 -msgid "The recipient of email. Placeholders can be used here. e.g. ${object.email_to}" -msgstr "The recipient of email. Placeholders can be used here. e.g. ${object.email_to}" - -#. module: email_template -#: view:email_template.mailbox:0 -msgid "Mailboxes" -msgstr "Mailboxes" - -#. module: email_template -#: field:email.template,attachment_ids:0 -msgid "Attached Files" -msgstr "Attached Files" - -#. module: email_template -#: field:email_template.account,smtpssl:0 -msgid "SSL/TLS (only in python 2.6)" -msgstr "SSL/TLS (only in python 2.6)" - -#. module: email_template -#: field:email_template.account,email_id:0 -msgid "From Email" -msgstr "From Email" - -#. module: email_template -#: code:addons/email_template/email_template.py:0 -#, python-format -msgid "Warning" -msgstr "Warning" - -#. module: email_template -#: view:email_template.account:0 -#: model:ir.actions.act_window,name:email_template.action_email_template_account_tree_all -msgid "Accounts" -msgstr "Accounts" - -#. module: email_template -#: field:email.template,track_campaign_item:0 -msgid "Resource Tracking" -msgstr "Resource Tracking" - -#. module: email_template -#: view:email_template.preview:0 -msgid "Body(Text)" -msgstr "Body(Text)" - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "Tip: Multiple emails are sent in the same language (the first one is proposed). We suggest you send emails in groups according to language." -msgstr "Tip: Multiple emails are sent in the same language (the first one is proposed). We suggest you send emails in groups according to language." - -#. module: email_template -#: help:email.template,reply_to:0 -#: help:email_template.preview,reply_to:0 -#: help:email_template.send.wizard,reply_to:0 -msgid "The address recipients should reply to, if different from the From address. Placeholders can be used here. e.g. ${object.email_reply_to}" -msgstr "The address recipients should reply to, if different from the From address. Placeholders can be used here. e.g. ${object.email_reply_to}" - -#. module: email_template -#: field:email_template.mailbox,subject:0 -#: field:email_template.preview,subject:0 -#: field:email_template.send.wizard,subject:0 -msgid "Subject" -msgstr "Subject" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Reason: %s" -msgstr "Reason: %s" - -#. module: email_template -#: help:email_template.account,email_id:0 -msgid "eg: yourname@yourdomain.com " -msgstr "eg: yourname@yourdomain.com " - -#. module: email_template -#: field:email_template.mailbox,email_from:0 -msgid "From" -msgstr "From" - -#. module: email_template -#: field:email_template.preview,ref_template:0 -#: field:email_template.send.wizard,ref_template:0 -msgid "Template" -msgstr "Template" - -#. module: email_template -#: field:email.template,def_body_text:0 -#: view:email_template.mailbox:0 -#: field:email_template.mailbox,body_text:0 -msgid "Standard Body (Text)" -msgstr "Standard Body (Text)" - -#. module: email_template -#: view:email_template.mailbox:0 -#: selection:email_template.mailbox,state:0 -msgid "Sending" -msgstr "Sending" - -#. module: email_template -#: view:email.template:0 -msgid "Insert Simple Field" -msgstr "Insert Simple Field" - -#. module: email_template -#: view:email_template.preview:0 -msgid "Body(Html)" -msgstr "Body(Html)" - -#. module: email_template -#: view:email_template.account:0 -msgid "Send/Receive" -msgstr "Send/Receive" - -#. module: email_template -#: model:ir.actions.act_window,name:email_template.wizard_email_template_preview -msgid "Template Preview" -msgstr "Template Preview" - -#. module: email_template -#: field:email.template,def_body_html:0 -msgid "Body (Text-Web Client Only)" -msgstr "Body (Text-Web Client Only)" - -#. module: email_template -#: field:email.template,ref_ir_value:0 -msgid "Wizard Button" -msgstr "Wizard Button" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Out going connection test failed" -msgstr "Out going connection test failed" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Mail from Account %s successfully Sent." -msgstr "Mail from Account %s successfully Sent." - -#. module: email_template -#: view:email.template:0 -#: view:email_template.mailbox:0 -msgid "Standard Body" -msgstr "Standard Body" - -#. module: email_template -#: selection:email.template,template_language:0 -msgid "Mako Templates" -msgstr "Mako Templates" - -#. module: email_template -#: help:email.template,def_body_html:0 -#: help:email.template,def_body_text:0 -msgid "The text version of the mail" -msgstr "The text version of the mail" - -#. module: email_template -#: code:addons/email_template/email_template.py:0 -#, python-format -msgid " (Email Attachment)" -msgstr " (Email Attachment)" - -#. module: email_template -#: selection:email_template.mailbox,folder:0 -msgid "Sent Items" -msgstr "Sent Items" - -#. module: email_template -#: code:addons/email_template/email_template_mailbox.py:0 -#, python-format -msgid "Sending of Mail %s failed. Probable Reason:Could not login to server\nError: %s" -msgstr "Sending of Mail %s failed. Probable Reason:Could not login to server\nError: %s" - -#. module: email_template -#: view:email_template.account:0 -msgid "Test Outgoing Connection" -msgstr "Test Outgoing Connection" - -#. module: email_template -#: model:ir.actions.act_window,name:email_template.action_email_template_mailbox -msgid "Mailbox" -msgstr "Mailbox" - -#. module: email_template -#: help:email.template,attachment_ids:0 -msgid "You may attach existing files to this template, so they will be added in all emails created from this template" -msgstr "You may attach existing files to this template, so they will be added in all emails created from this template" - -#. module: email_template -#: field:email_template.mailbox,account_id:0 -msgid "User account" -msgstr "User account" - -#. module: email_template -#: field:email_template.send.wizard,signature:0 -msgid "Attach my signature to mail" -msgstr "Attach my signature to mail" - -#. module: email_template -#: code:addons/email_template/wizard/email_template_send_wizard.py:0 -#: view:email.template:0 -#, python-format -msgid "Report" -msgstr "Report" - -#. module: email_template -#: help:email.template,model_object_field:0 -msgid "Select the field from the model you want to use.\n" -"If it is a relationship field you will be able to choose the nested values in the box below\n" -"(Note:If there are no values make sure you have selected the correct model)" -msgstr "Select the field from the model you want to use.\n" -"If it is a relationship field you will be able to choose the nested values in the box below\n" -"(Note:If there are no values make sure you have selected the correct model)" - -#. module: email_template -#: view:email.template:0 -#: view:email_template.mailbox:0 -msgid "Advanced" -msgstr "Advanced" - -#. module: email_template -#: constraint:ir.cron:0 -msgid "Invalid arguments" -msgstr "Invalid arguments" - -#. module: email_template -#: view:email.template:0 -msgid "Expression Builder" -msgstr "Expression Builder" - -#. module: email_template -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: email_template -#: selection:email_template.mailbox,mail_type:0 -msgid "HTML Body" -msgstr "HTML Body" - -#. module: email_template -#: view:email_template.account:0 -msgid "Suspend Account" -msgstr "Suspend Account" - -#. module: email_template -#: help:email.template,null_value:0 -msgid "This Value is used if the field is empty" -msgstr "This Value is used if the field is empty" - -#. module: email_template -#: view:email.template:0 -msgid "Preview Template" -msgstr "Preview Template" - -#. module: email_template -#: field:email_template.account,smtpserver:0 -msgid "Server" -msgstr "Server" - -#. module: email_template -#: help:email.template,copyvalue:0 -msgid "Copy and paste the value in the location you want to use a system value." -msgstr "Copy and paste the value in the location you want to use a system value." - -#. module: email_template -#: help:email.template,sub_model_object_field:0 -msgid "When you choose relationship fields this field will specify the sub value you can use." -msgstr "When you choose relationship fields this field will specify the sub value you can use." - -#. module: email_template -#: help:email.template,sub_object:0 -msgid "When a relation field is used this field will show you the type of field you have selected" -msgstr "When a relation field is used this field will show you the type of field you have selected" - -#. module: email_template -#: field:email.template,lang:0 -msgid "Language" -msgstr "Language" - -#. module: email_template -#: view:email.template:0 -msgid "Body (Raw HTML)" -msgstr "Body (Raw HTML)" - -#. module: email_template -#: field:email.template,use_sign:0 -msgid "Signature" -msgstr "Signature" - -#. module: email_template -#: field:email.template,sub_object:0 -msgid "Sub-model" -msgstr "Sub-model" - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "Body (Plain Text)" -msgstr "Body (Plain Text)" - -#. module: email_template -#: view:email.template:0 -msgid "Body (Text)" -msgstr "Body (Text)" - -#. module: email_template -#: field:email_template.mailbox,date_mail:0 -msgid "Rec/Sent Date" -msgstr "Rec/Sent Date" - -#. module: email_template -#: field:email.template,report_template:0 -msgid "Report to send" -msgstr "Report to send" - -#. module: email_template -#: view:email_template.account:0 -msgid "Server Information" -msgstr "Server Information" - -#. module: email_template -#: field:email_template.send.wizard,generated:0 -msgid "No of generated Mails" -msgstr "No of generated Mails" - -#. module: email_template -#: view:email.template:0 -msgid "Mail Details" -msgstr "Mail Details" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "SMTP SERVER or PORT not specified" -msgstr "SMTP SERVER or PORT not specified" - -#. module: email_template -#: view:email.template:0 -msgid "Note: This is Raw HTML." -msgstr "Note: This is Raw HTML." - -#. module: email_template -#: selection:email_template.send.wizard,state:0 -msgid "Multiple Mail Wizard Step 1" -msgstr "Multiple Mail Wizard Step 1" - -#. module: email_template -#: field:email_template.account,user:0 -msgid "Related User" -msgstr "Related User" - -#. module: email_template -#: field:email_template.mailbox,body_html:0 -msgid "Body (Rich Text Clients Only)" -msgstr "Body (Rich Text Clients Only)" - -#. module: email_template -#: selection:email_template.account,company:0 -msgid "Yes" -msgstr "Yes" - -#. module: email_template -#: field:email.template,ref_ir_act_window:0 -msgid "Window Action" -msgstr "Window Action" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Datetime Extraction failed.Date:%s \\n" -" \tError:%s" -msgstr "Datetime Extraction failed.Date:%s \\n" -" \tError:%s" - -#. module: email_template -#: view:email_template.account:0 -msgid "SMTP Server" -msgstr "SMTP Server" - -#. module: email_template -#: selection:email_template.account,send_pref:0 -msgid "HTML, otherwise Text" -msgstr "HTML, otherwise Text" - -#. module: email_template -#: view:email_template.mailbox:0 -#: selection:email_template.mailbox,folder:0 -msgid "Drafts" -msgstr "Drafts" - -#. module: email_template -#: selection:email_template.account,company:0 -msgid "No" -msgstr "No" - -#. module: email_template -#: field:email_template.mailbox,mail_type:0 -msgid "Mail Contents" -msgstr "Mail Contents" - -#. module: email_template -#: code:addons/email_template/email_template.py:0 -#, python-format -msgid "The template name must be unique !" -msgstr "The template name must be unique !" - -#. module: email_template -#: field:email.template,def_bcc:0 -#: field:email_template.mailbox,email_bcc:0 -#: field:email_template.preview,bcc:0 -#: field:email_template.send.wizard,bcc:0 -msgid "BCC" -msgstr "BCC" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Mail from Account %s failed. Probable Reason:Server Send Error\nDescription: %s" -msgstr "Mail from Account %s failed. Probable Reason:Server Send Error\nDescription: %s" - -#. module: email_template -#: selection:email_template.mailbox,mail_type:0 -msgid "Plain Text" -msgstr "Plain Text" - -#. module: email_template -#: view:email_template.account:0 -msgid "Draft" -msgstr "Draft" - -#. module: email_template -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: email_template -#: field:email.template,model_int_name:0 -msgid "Model Internal Name" -msgstr "Model Internal Name" - -#. module: email_template -#: field:email.template,message_id:0 -#: field:email_template.mailbox,message_id:0 -#: field:email_template.preview,message_id:0 -#: field:email_template.send.wizard,message_id:0 -msgid "Message-ID" -msgstr "Message-ID" - -#. module: email_template -#: help:email_template.mailbox,server_ref:0 -msgid "Applicable for inward items only" -msgstr "Applicable for inward items only" - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "After clicking send all mails, mails will be sent to outbox and cleared in next Send/Recieve" -msgstr "After clicking send all mails, mails will be sent to outbox and cleared in next Send/Recieve" - -#. module: email_template -#: field:email_template.account,state:0 -#: field:email_template.mailbox,state:0 -#: field:email_template.send.wizard,state:0 -msgid "Status" -msgstr "Status" - -#. module: email_template -#: view:email_template.account:0 -msgid "Outgoing" -msgstr "Outgoing" - -#. module: email_template -#: selection:email_template.account,state:0 -msgid "Initiated" -msgstr "Initiated" - -#. module: email_template -#: help:email.template,use_sign:0 -msgid "the signature from the User details will be appended to the mail" -msgstr "the signature from the User details will be appended to the mail" - -#. module: email_template -#: field:email_template.send.wizard,from:0 -msgid "From Account" -msgstr "From Account" - -#. module: email_template -#: selection:email_template.mailbox,mail_type:0 -msgid "Intermixed content" -msgstr "Intermixed content" - -#. module: email_template -#: view:email_template.account:0 -msgid "Request Re-activation" -msgstr "Request Re-activation" - -#. module: email_template -#: view:email.template:0 -#: model:ir.actions.act_window,name:email_template.action_email_template_tree_all -msgid "Email Templates" -msgstr "Email Templates" - -#. module: email_template -#: field:email_template.account,smtpuname:0 -msgid "User Name" -msgstr "User Name" - -#. module: email_template -#: field:email.template,sub_model_object_field:0 -msgid "Sub Field" -msgstr "Sub Field" - -#. module: email_template -#: field:email_template.mailbox,user:0 -msgid "User" -msgstr "User" - -#. module: email_template -#: help:email.template,allowed_groups:0 -msgid "Only users from these groups will be allowed to send mails from this Template" -msgstr "Only users from these groups will be allowed to send mails from this Template" - -#. module: email_template -#: view:email_template.mailbox:0 -#: selection:email_template.mailbox,folder:0 -msgid "Outbox" -msgstr "Outbox" - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "Save in Drafts" -msgstr "Save in Drafts" - -#. module: email_template -#: help:email.template,def_subject:0 -msgid "The subject of email. Placeholders can be used here." -msgstr "The subject of email. Placeholders can be used here." - -#. module: email_template -#: field:email_template.account,smtptls:0 -msgid "TLS" -msgstr "TLS" - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "Add here all attachments of the current document you want to include in the Email." -msgstr "Add here all attachments of the current document you want to include in the Email." - -#. module: email_template -#: model:ir.model,name:email_template.model_email_template_send_wizard -msgid "This is the wizard for sending mail" -msgstr "This is the wizard for sending mail" - -#. module: email_template -#: code:addons/email_template/email_template.py:0 -#: code:addons/email_template/email_template_account.py:0 -#: code:addons/email_template/email_template_mailbox.py:0 -#: code:addons/email_template/wizard/email_template_send_wizard.py:0 -#: model:ir.ui.menu,name:email_template.menu_email_template -#: model:ir.ui.menu,name:email_template.menu_email_template_config_tools -#: model:ir.ui.menu,name:email_template.menu_email_template_configuration -#, python-format -msgid "Email Template" -msgstr "Email Template" - -#. module: email_template -#: model:ir.ui.menu,name:email_template.menu_email_template_personal_mails -msgid "Personal Mails" -msgstr "Personal Mails" - -#. module: email_template -#: code:addons/email_template/email_template_mailbox.py:0 -#, python-format -msgid "Error sending mail: %s\" % str(e)))\n" -" \n" -" def send_all_mail(self, cr, uid, ids=None, context=None):\n" -" if ids is None:\n" -" ids = []\n" -" if context is None:\n" -" context = {}\n" -" filters = [('folder', '=', 'outbox" -msgstr "Error sending mail: %s\" % str(e)))\n" -" \n" -" def send_all_mail(self, cr, uid, ids=None, context=None):\n" -" if ids is None:\n" -" ids = []\n" -" if context is None:\n" -" context = {}\n" -" filters = [('folder', '=', 'outbox" - -#. module: email_template -#: field:email.template,file_name:0 -msgid "File Name Pattern" -msgstr "File Name Pattern" - -#. module: email_template -#: code:addons/email_template/email_template.py:0 -#, python-format -msgid "Send Mail (%s)" -msgstr "Send Mail (%s)" - -#. module: email_template -#: field:email_template.send.wizard,report:0 -msgid "Report File Name" -msgstr "Report File Name" - -#. module: email_template -#: field:email.template,copyvalue:0 -msgid "Expression" -msgstr "Expression" - -#. module: email_template -#: view:email_template.mailbox:0 -#: field:email_template.mailbox,history:0 -msgid "History" -msgstr "History" - -#. module: email_template -#: code:addons/email_template/email_template.py:0 -#, python-format -msgid "Django templates not installed" -msgstr "Django templates not installed" - -#. module: email_template -#: view:email.template:0 -#: view:email_template.mailbox:0 -#: field:email_template.mailbox,attachments_ids:0 -#: view:email_template.send.wizard:0 -#: field:email_template.send.wizard,attachment_ids:0 -msgid "Attachments" -msgstr "Attachments" - -#. module: email_template -#: field:email_template.preview,to:0 -#: field:email_template.send.wizard,to:0 -msgid "To" -msgstr "To" - -#. module: email_template -#: field:email_template.account,smtpport:0 -msgid "SMTP Port " -msgstr "SMTP Port " - -#. module: email_template -#: selection:email_template.account,send_pref:0 -msgid "Text, otherwise HTML" -msgstr "Text, otherwise HTML" - -#. module: email_template -#: code:addons/email_template/email_template.py:0 -#, python-format -msgid "Copy of template " -msgstr "Copy of template " - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "Discard Mail" -msgstr "Discard Mail" - -#. module: email_template -#: model:ir.model,name:email_template.model_email_template -msgid "Email Templates for Models" -msgstr "Email Templates for Models" - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "Close" -msgstr "Close" - -#. module: email_template -#: view:email_template.mailbox:0 -msgid "Body (HTML-Web Client Only)" -msgstr "Body (HTML-Web Client Only)" - -#. module: email_template -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: email_template -#: code:addons/email_template/wizard/email_template_send_wizard.py:0 -#, python-format -msgid "%s (Email Attachment)" -msgstr "%s (Email Attachment)" - -#. module: email_template -#: code:addons/email_template/wizard/email_template_send_wizard.py:0 -#, python-format -msgid "No personal email accounts are configured for you. \nEither ask admin to enforce an account for this template or get yourself a personal email account." -msgstr "No personal email accounts are configured for you. \nEither ask admin to enforce an account for this template or get yourself a personal email account." - -#. module: email_template -#: field:email.template,allowed_groups:0 -msgid "Allowed User Groups" -msgstr "Allowed User Groups" - -#. module: email_template -#: field:email.template,model_object_field:0 -msgid "Field" -msgstr "Field" - -#. module: email_template -#: view:email_template.account:0 -msgid "User Information" -msgstr "User Information" - -#. module: email_template -#: view:email_template.account:0 -#: selection:email_template.account,state:0 -msgid "Suspended" -msgstr "Suspended" - -#. module: email_template -#: field:email_template.mailbox,folder:0 -msgid "Folder" -msgstr "Folder" - -#. module: email_template -#: view:email_template.mailbox:0 -#: selection:email_template.mailbox,folder:0 -msgid "Trash" -msgstr "Trash" - -#. module: email_template -#: model:ir.model,name:email_template.model_email_template_mailbox -msgid "Email Mailbox" -msgstr "Email Mailbox" - -#. module: email_template -#: help:email_template.account,smtpuname:0 -msgid "Specify the username if your SMTP server requires authentication, otherwise leave it empty." -msgstr "Specify the username if your SMTP server requires authentication, otherwise leave it empty." - -#. module: email_template -#: code:addons/email_template/wizard/email_template_send_wizard.py:0 -#, python-format -msgid "Missing mail account" -msgstr "Missing mail account" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "SMTP Test Connection Was Successful" -msgstr "SMTP Test Connection Was Successful" - -#. module: email_template -#: model:ir.module.module,shortdesc:email_template.module_meta_information -msgid "Email Template for OpenERP" -msgstr "Email Template for OpenERP" - -#. module: email_template -#: field:email_template.account,name:0 -msgid "Description" -msgstr "Description" - -#. module: email_template -#: view:email.template:0 -msgid "Create Action" -msgstr "Create Action" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Mail from Account %s failed. Probable Reason:Account not approved" -msgstr "Mail from Account %s failed. Probable Reason:Account not approved" - -#. module: email_template -#: field:email.template,null_value:0 -msgid "Null Value" -msgstr "Null Value" - -#. module: email_template -#: field:email.template,template_language:0 -msgid "Templating Language" -msgstr "Templating Language" - -#. module: email_template -#: field:email.template,def_cc:0 -#: field:email_template.mailbox,email_cc:0 -#: field:email_template.preview,cc:0 -#: field:email_template.send.wizard,cc:0 -msgid "CC" -msgstr "CC" - -#. module: email_template -#: view:email_template.mailbox:0 -msgid "Sent" -msgstr "Sent" - -#. module: email_template -#: field:email_template.account,smtppass:0 -msgid "Password" -msgstr "Password" - -#. module: email_template -#: help:email.template,message_id:0 -#: help:email_template.preview,message_id:0 -#: help:email_template.send.wizard,message_id:0 -msgid "Specify the Message-ID SMTP header to use in outgoing emails. Please note that this overrides the Resource tracking option! Placeholders can be used here." -msgstr "Specify the Message-ID SMTP header to use in outgoing emails. Please note that this overrides the Resource tracking option! Placeholders can be used here." - -#. module: email_template -#: model:ir.ui.menu,name:email_template.menu_email_template_configuration -msgid "Emails" -msgstr "Emails" - -#. module: email_template -#: view:email.template:0 -msgid "Templates" -msgstr "Templates" - -#. module: email_template -#: field:email_template.preview,report:0 -msgid "Report Name" -msgstr "Report Name" - -#. module: email_template -#: field:email.template,name:0 -msgid "Name" -msgstr "Name" - -#. module: email_template -#: model:ir.model,name:email_template.model_email_template_preview -msgid "Email Template Preview" -msgstr "Email Template Preview" - -#. module: email_template -#: view:email_template.preview:0 -msgid "Email Preview" -msgstr "Email Preview" - -#. module: email_template -#: view:email.template:0 -msgid "Existing files" -msgstr "Existing files" - -#. module: email_template -#: view:email_template.account:0 -msgid "Personal Accounts" -msgstr "Personal Accounts" - -#. module: email_template -#: model:ir.module.module,description:email_template.module_meta_information -msgid "\n" -" Email Template is extraction of Power Email basically just to send the emails.\n" -" " -msgstr "\n" -" Email Template is extraction of Power Email basically just to send the emails.\n" -" " - -#. module: email_template -#: view:email_template.send.wizard:0 -msgid "Body (HTML)" -msgstr "Body (HTML)" - -#. module: email_template -#: help:email.template,table_html:0 -msgid "Copy this html code to your HTML message body for displaying the info in your mail." -msgstr "Copy this html code to your HTML message body for displaying the info in your mail." - -#. module: email_template -#: model:ir.model,name:email_template.model_email_template_account -msgid "email_template.account" -msgstr "email_template.account" - -#. module: email_template -#: field:email.template,object_name:0 -#: field:email_template.preview,rel_model:0 -#: field:email_template.send.wizard,rel_model:0 -msgid "Model" -msgstr "Model" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Core connection for the given ID does not exist" -msgstr "Core connection for the given ID does not exist" - -#. module: email_template -#: field:email_template.account,company:0 -msgid "Corporate" -msgstr "Corporate" - -#. module: email_template -#: help:email_template.account,smtpserver:0 -msgid "Enter name of outgoing server, eg:smtp.gmail.com " -msgstr "Enter name of outgoing server, eg:smtp.gmail.com " - -#. module: email_template -#: view:email.template:0 -msgid "Addresses" -msgstr "Addresses" - -#. module: email_template -#: help:email.template,from_account:0 -msgid "Emails will be sent from this approved account." -msgstr "Emails will be sent from this approved account." - -#. module: email_template -#: field:email.template,def_subject:0 -msgid "Subject" -msgstr "Subject" - -#. module: email_template -#: help:email.template,def_bcc:0 -msgid "Blind Carbon Copy address(es), comma-separated. Placeholders can be used here. e.g. ${object.email_bcc}" -msgstr "Blind Carbon Copy address(es), comma-separated. Placeholders can be used here. e.g. ${object.email_bcc}" - -#. module: email_template -#: code:addons/email_template/email_template_account.py:0 -#, python-format -msgid "Mail from Account %s failed. Probable Reason:MIME Error\nDescription: %s" -msgstr "Mail from Account %s failed. Probable Reason:MIME Error\nDescription: %s" - -#. module: email_template -#: field:email_template.account,send_pref:0 -msgid "Mail Format" -msgstr "Mail Format" - -#. module: email_template -#: view:email.template:0 -msgid "Actions" -msgstr "Actions" - -#. module: email_template -#: view:email_template.account:0 -msgid "Company Accounts" -msgstr "Company Accounts" - -#. module: email_template -#: code:addons/email_template/wizard/email_template_send_wizard.py:0 -#, python-format -msgid "email-template" -msgstr "email-template" - -#. module: email_template -#: help:email.template,def_cc:0 -msgid "Carbon Copy address(es), comma-separated. Placeholders can be used here. e.g. ${object.email_cc}" -msgstr "Carbon Copy address(es), comma-separated. Placeholders can be used here. e.g. ${object.email_cc}" - -#. module: email_template -#: selection:email_template.send.wizard,state:0 -msgid "Simple Mail Wizard Step 1" -msgstr "Simple Mail Wizard Step 1" - -#. module: email_template -#: selection:email_template.mailbox,mail_type:0 -msgid "Has Attachments" -msgstr "Has Attachments" - -#. module: email_template -#: help:email.template,track_campaign_item:0 -msgid "Enable this is you wish to include a special tracking marker in outgoing emails so you can identify replies and link them back to the corresponding resource record. This is useful for CRM leads for example" -msgstr "Enable this is you wish to include a special tracking marker in outgoing emails so you can identify replies and link them back to the corresponding resource record. This is useful for CRM leads for example" - -#. module: email_template -#: code:addons/email_template/email_template.py:0 -#: code:addons/email_template/wizard/email_template_send_wizard.py:0 -#, python-format -msgid "No Description" -msgstr "No Description" - diff --git a/addons/fetchmail/i18n/en_US.po b/addons/fetchmail/i18n/en_US.po deleted file mode 100644 index d3b2c949324..00000000000 --- a/addons/fetchmail/i18n/en_US.po +++ /dev/null @@ -1,269 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * fetchmail -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-23 05:11:12+0000\n" -"PO-Revision-Date: 2010-08-23 05:11:12+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: fetchmail -#: selection:email.server,state:0 -msgid "Confirmed" -msgstr "Confirmed" - -#. module: fetchmail -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: fetchmail -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: fetchmail -#: model:ir.actions.act_window,name:fetchmail.action_email_server_tree_imap -#: model:ir.ui.menu,name:fetchmail.menu_action_email_server_tree_imap -msgid "IMAP Servers" -msgstr "IMAP Servers" - -#. module: fetchmail -#: field:email.server,action_id:0 -msgid "Reply Email" -msgstr "Reply Email" - -#. module: fetchmail -#: view:email.server:0 -msgid "Server & Login" -msgstr "Server & Login" - -#. module: fetchmail -#: field:email.server,priority:0 -msgid "Server Priority" -msgstr "Server Priority" - -#. module: fetchmail -#: field:email.server,state:0 -msgid "State" -msgstr "State" - -#. module: fetchmail -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: fetchmail -#: selection:email.server,state:0 -msgid "Not Confirmed" -msgstr "Not Confirmed" - -#. module: fetchmail -#: view:email.server:0 -msgid "POP/IMAP Servers" -msgstr "POP/IMAP Servers" - -#. module: fetchmail -#: model:ir.module.module,shortdesc:fetchmail.module_meta_information -msgid "Fetchmail Server" -msgstr "Fetchmail Server" - -#. module: fetchmail -#: view:email.server:0 -#: field:email.server,note:0 -msgid "Description" -msgstr "Description" - -#. module: fetchmail -#: field:email.server,attach:0 -msgid "Add Attachments ?" -msgstr "Add Attachments ?" - -#. module: fetchmail -#: view:email.server:0 -msgid "Set to Draft" -msgstr "Set to Draft" - -#. module: fetchmail -#: field:email.server,user:0 -msgid "User Name" -msgstr "User Name" - -#. module: fetchmail -#: field:email.server,user_id:0 -msgid "User" -msgstr "User" - -#. module: fetchmail -#: field:email.server,date:0 -msgid "Date" -msgstr "Date" - -#. module: fetchmail -#: selection:email.server,state:0 -msgid "Waiting for Verification" -msgstr "Waiting for Verification" - -#. module: fetchmail -#: field:email.server,password:0 -msgid "Password" -msgstr "Password" - -#. module: fetchmail -#: constraint:ir.cron:0 -msgid "Invalid arguments" -msgstr "Invalid arguments" - -#. module: fetchmail -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: fetchmail -#: view:email.server:0 -msgid "Auto Reply?" -msgstr "Auto Reply?" - -#. module: fetchmail -#: field:email.server,name:0 -msgid "Name" -msgstr "Name" - -#. module: fetchmail -#: model:ir.model,name:fetchmail.model_mailgate_message -msgid "Mailgateway Message" -msgstr "Mailgateway Message" - -#. module: fetchmail -#: model:ir.actions.act_window,name:fetchmail.action_email_server_tree -#: model:ir.ui.menu,name:fetchmail.menu_action_email_server_tree -msgid "POP Servers" -msgstr "POP Servers" - -#. module: fetchmail -#: model:ir.ui.menu,name:fetchmail.menu_action_fetchmail_server_tree -msgid "Fetchmail Services" -msgstr "Fetchmail Services" - -#. module: fetchmail -#: model:ir.actions.act_window,name:fetchmail.action_mailgate_message_tree -#: model:ir.actions.act_window,name:fetchmail.action_mailgate_message_tree_pop -#: model:ir.ui.menu,name:fetchmail.menu_action_mailgate_message_tree -#: model:ir.ui.menu,name:fetchmail.menu_action_mailgate_message_tree_pop -msgid "Received Email History" -msgstr "Received Email History" - -#. module: fetchmail -#: field:email.server,active:0 -msgid "Active" -msgstr "Active" - -#. module: fetchmail -#: view:email.server:0 -msgid "Process Parameter" -msgstr "Process Parameter" - -#. module: fetchmail -#: field:email.server,is_ssl:0 -msgid "SSL ?" -msgstr "SSL ?" - -#. module: fetchmail -#: selection:email.server,type:0 -#: selection:mailgate.message,type:0 -msgid "IMAP Server" -msgstr "IMAP Server" - -#. module: fetchmail -#: field:email.server,object_id:0 -msgid "Model" -msgstr "Model" - -#. module: fetchmail -#: field:email.server,server:0 -msgid "Server" -msgstr "Server" - -#. module: fetchmail -#: model:ir.actions.act_window,name:fetchmail.act_server_history -msgid "Email History" -msgstr "Email History" - -#. module: fetchmail -#: view:email.server:0 -#: model:ir.model,name:fetchmail.model_email_server -msgid "POP/IMAP Server" -msgstr "POP/IMAP Server" - -#. module: fetchmail -#: constraint:ir.rule:0 -msgid "Rules are not supported for osv_memory objects !" -msgstr "Rules are not supported for osv_memory objects !" - -#. module: fetchmail -#: field:email.server,type:0 -#: field:mailgate.message,type:0 -msgid "Server Type" -msgstr "Server Type" - -#. module: fetchmail -#: view:email.server:0 -msgid "Login Information" -msgstr "Login Information" - -#. module: fetchmail -#: view:email.server:0 -msgid "Server Information" -msgstr "Server Information" - -#. module: fetchmail -#: selection:email.server,type:0 -#: selection:mailgate.message,type:0 -msgid "POP Server" -msgstr "POP Server" - -#. module: fetchmail -#: field:email.server,port:0 -msgid "Port" -msgstr "Port" - -#. module: fetchmail -#: model:ir.module.module,description:fetchmail.module_meta_information -msgid "Fetchmail: \n" -" * Fetch email from Pop / IMAP server\n" -" * Support SSL\n" -" * Integrated with all Modules\n" -" * Automatic Email Receive\n" -" * Email based Records (Add, Update)\n" -" " -msgstr "Fetchmail: \n" -" * Fetch email from Pop / IMAP server\n" -" * Support SSL\n" -" * Integrated with all Modules\n" -" * Automatic Email Receive\n" -" * Email based Records (Add, Update)\n" -" " - -#. module: fetchmail -#: help:email.server,priority:0 -msgid "Priority between 0 to 10, select define the order of Processing" -msgstr "Priority between 0 to 10, select define the order of Processing" - -#. module: fetchmail -#: field:mailgate.message,server_id:0 -msgid "Mail Server" -msgstr "Mail Server" - -#. module: fetchmail -#: view:email.server:0 -msgid "Fetch Emails" -msgstr "Fetch Emails" - diff --git a/addons/hr_payroll_account/i18n/en_US.po b/addons/hr_payroll_account/i18n/en_US.po deleted file mode 100644 index 1e4e0f033e9..00000000000 --- a/addons/hr_payroll_account/i18n/en_US.po +++ /dev/null @@ -1,481 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * hr_payroll_account -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 06:19:23+0000\n" -"PO-Revision-Date: 2010-08-20 06:19:23+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: hr_payroll_account -#: field:hr.payslip,move_line_ids:0 -msgid "Accounting Lines" -msgstr "Accounting Lines" - -#. module: hr_payroll_account -#: field:hr.payslip,move_ids:0 -msgid "Accounting vouchers" -msgstr "Accounting vouchers" - -#. module: hr_payroll_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Please defined bank account for %s !' % (slip.employee_id.name)))\n" -"\n" -" if not slip.employee_id.bank_account_id.partner_id:\n" -" raise osv.except_osv(_('Integrity Error !" -msgstr "Please defined bank account for %s !' % (slip.employee_id.name)))\n" -"\n" -" if not slip.employee_id.bank_account_id.partner_id:\n" -" raise osv.except_osv(_('Integrity Error !" - -#. module: hr_payroll_account -#: view:hr.payslip:0 -msgid "Other Informations" -msgstr "Other Informations" - -#. module: hr_payroll_account -#: model:ir.model,name:hr_payroll_account.model_hr_payslip_account_move -msgid "Account Move Link to Pay Slip" -msgstr "Account Move Link to Pay Slip" - -#. module: hr_payroll_account -#: view:hr.payslip:0 -msgid "Description" -msgstr "Description" - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Period is not defined for slip date %s'%slip.date))\n" -" period_id = search_periods[0]\n" -" name = 'Payment of Salary to %s' % (slip.employee_id.name)\n" -" move = {\n" -" 'journal_id': slip.bank_journal_id.id,\n" -" 'period_id': period_id,\n" -" 'date': slip.date,\n" -" 'type':'bank_pay_voucher',\n" -" 'ref':slip.number,\n" -" 'narration': name\n" -" }\n" -" move_id = move_pool.create(cr, uid, move, context=context)\n" -" self.create_voucher(cr, uid, [slip.id], name, move_id)\n" -"\n" -" name = \"To %s account\" % (slip.employee_id.name)\n" -" ded_rec = {\n" -" 'move_id':move_id,\n" -" 'name': name,\n" -" #'partner_id': partner_id,\n" -" 'date': slip.date,\n" -" 'account_id': slip.employee_id.property_bank_account.id,\n" -" 'debit': 0.0,\n" -" 'credit' : slip.total_pay,\n" -" 'journal_id' : slip.journal_id.id,\n" -" 'period_id' :period_id,\n" -" 'ref':slip.number\n" -" }\n" -" line_ids += [movel_pool.create(cr, uid, ded_rec, context=context)]\n" -" name = \"By %s account\" % (slip.employee_id.property_bank_account.name)\n" -" cre_rec = {\n" -" 'move_id':move_id,\n" -" 'name': name,\n" -" 'partner_id': partner_id,\n" -" 'date': slip.date,\n" -" 'account_id': partner.property_account_payable.id,\n" -" 'debit': slip.total_pay,\n" -" 'credit' : 0.0,\n" -" 'journal_id' : slip.journal_id.id,\n" -" 'period_id' :period_id,\n" -" 'ref':slip.number\n" -" }\n" -" line_ids += [movel_pool.create(cr, uid, cre_rec, context=context)]\n" -"\n" -" other_pay = slip.other_pay\n" -" #Process all Reambuse Entries\n" -" for line in slip.line_ids:\n" -" if line.type == 'otherpay' and line.expanse_id.invoice_id:\n" -" if not line.expanse_id.invoice_id.move_id:\n" -" raise osv.except_osv(_('Warning !" -msgstr "Period is not defined for slip date %s'%slip.date))\n" -" period_id = search_periods[0]\n" -" name = 'Payment of Salary to %s' % (slip.employee_id.name)\n" -" move = {\n" -" 'journal_id': slip.bank_journal_id.id,\n" -" 'period_id': period_id,\n" -" 'date': slip.date,\n" -" 'type':'bank_pay_voucher',\n" -" 'ref':slip.number,\n" -" 'narration': name\n" -" }\n" -" move_id = move_pool.create(cr, uid, move, context=context)\n" -" self.create_voucher(cr, uid, [slip.id], name, move_id)\n" -"\n" -" name = \"To %s account\" % (slip.employee_id.name)\n" -" ded_rec = {\n" -" 'move_id':move_id,\n" -" 'name': name,\n" -" #'partner_id': partner_id,\n" -" 'date': slip.date,\n" -" 'account_id': slip.employee_id.property_bank_account.id,\n" -" 'debit': 0.0,\n" -" 'credit' : slip.total_pay,\n" -" 'journal_id' : slip.journal_id.id,\n" -" 'period_id' :period_id,\n" -" 'ref':slip.number\n" -" }\n" -" line_ids += [movel_pool.create(cr, uid, ded_rec, context=context)]\n" -" name = \"By %s account\" % (slip.employee_id.property_bank_account.name)\n" -" cre_rec = {\n" -" 'move_id':move_id,\n" -" 'name': name,\n" -" 'partner_id': partner_id,\n" -" 'date': slip.date,\n" -" 'account_id': partner.property_account_payable.id,\n" -" 'debit': slip.total_pay,\n" -" 'credit' : 0.0,\n" -" 'journal_id' : slip.journal_id.id,\n" -" 'period_id' :period_id,\n" -" 'ref':slip.number\n" -" }\n" -" line_ids += [movel_pool.create(cr, uid, cre_rec, context=context)]\n" -"\n" -" other_pay = slip.other_pay\n" -" #Process all Reambuse Entries\n" -" for line in slip.line_ids:\n" -" if line.type == 'otherpay' and line.expanse_id.invoice_id:\n" -" if not line.expanse_id.invoice_id.move_id:\n" -" raise osv.except_osv(_('Warning !" - -#. module: hr_payroll_account -#: view:hr.payslip:0 -msgid "Accounting Informations" -msgstr "Accounting Informations" - -#. module: hr_payroll_account -#: model:ir.module.module,description:hr_payroll_account.module_meta_information -msgid "Generic Payroll system Integrated with Accountings\n" -" * Expanse Encoding\n" -" * Payment Encoding\n" -" * Comany Contribution Managemet\n" -" " -msgstr "Generic Payroll system Integrated with Accountings\n" -" * Expanse Encoding\n" -" * Payment Encoding\n" -" * Comany Contribution Managemet\n" -" " - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Period is not defined for slip date %s'%slip.date))\n" -" period_id = search_periods[0]\n" -"\n" -" move = {\n" -" #'name': slip.name,\n" -" 'journal_id': slip.journal_id.id,\n" -" 'period_id': period_id,\n" -" 'date': slip.date,\n" -" 'ref':slip.number,\n" -" 'narration': slip.name\n" -" }\n" -" move_id = move_pool.create(cr, uid, move, context=context)\n" -" self.create_voucher(cr, uid, [slip.id], slip.name, move_id)\n" -"\n" -" line = {\n" -" 'move_id':move_id,\n" -" 'name': \"By Basic Salary / \" + slip.employee_id.name,\n" -" 'date': slip.date,\n" -" 'account_id': slip.employee_id.salary_account.id,\n" -" 'debit': slip.basic,\n" -" 'credit': 0.0,\n" -" 'quantity':slip.working_days,\n" -" 'journal_id': slip.journal_id.id,\n" -" 'period_id': period_id,\n" -" 'analytic_account_id': False,\n" -" 'ref':slip.number\n" -" }\n" -"\n" -" #Setting Analysis Account for Basic Salary\n" -" if slip.employee_id.analytic_account:\n" -" line['analytic_account_id'] = slip.employee_id.analytic_account.id\n" -"\n" -" move_line_id = movel_pool.create(cr, uid, line, context=context)\n" -" line_ids += [move_line_id]\n" -"\n" -" line = {\n" -" 'move_id':move_id,\n" -" 'name': \"To Basic Paysble Salary / \" + slip.employee_id.name,\n" -" 'partner_id': partner_id,\n" -" 'date': slip.date,\n" -" 'account_id': slip.employee_id.employee_account.id,\n" -" 'debit': 0.0,\n" -" 'quantity':slip.working_days,\n" -" 'credit': slip.basic,\n" -" 'journal_id': slip.journal_id.id,\n" -" 'period_id': period_id,\n" -" 'ref':slip.number\n" -" }\n" -" line_ids += [movel_pool.create(cr, uid, line, context=context)]\n" -"\n" -" for line in slip.line_ids:\n" -" name = \"[%s] - %s / %s\" % (line.code, line.name, slip.employee_id.name)\n" -" amount = line.total\n" -"\n" -" if line.type == 'leaves':\n" -" continue\n" -"\n" -" rec = {\n" -" 'move_id':move_id,\n" -" 'name': name,\n" -" 'date': slip.date,\n" -" 'account_id': line.account_id.id,\n" -" 'debit': 0.0,\n" -" 'credit' : 0.0,\n" -" 'journal_id' : slip.journal_id.id,\n" -" 'period_id' :period_id,\n" -" 'analytic_account_id':False,\n" -" 'ref':slip.number,\n" -" 'quantity':1\n" -" }\n" -"\n" -" #Setting Analysis Account for Salary Slip Lines\n" -" if line.analytic_account_id:\n" -" rec['analytic_account_id'] = line.analytic_account_id.id\n" -" else:\n" -" rec['analytic_account_id'] = slip.deg_id.account_id.id\n" -"\n" -" if line.type == 'allowance' or line.type == 'otherpay':\n" -" rec['debit'] = amount\n" -" if not partner.property_account_payable:\n" -" raise osv.except_osv(_('Integrity Error !" -msgstr "Period is not defined for slip date %s'%slip.date))\n" -" period_id = search_periods[0]\n" -"\n" -" move = {\n" -" #'name': slip.name,\n" -" 'journal_id': slip.journal_id.id,\n" -" 'period_id': period_id,\n" -" 'date': slip.date,\n" -" 'ref':slip.number,\n" -" 'narration': slip.name\n" -" }\n" -" move_id = move_pool.create(cr, uid, move, context=context)\n" -" self.create_voucher(cr, uid, [slip.id], slip.name, move_id)\n" -"\n" -" line = {\n" -" 'move_id':move_id,\n" -" 'name': \"By Basic Salary / \" + slip.employee_id.name,\n" -" 'date': slip.date,\n" -" 'account_id': slip.employee_id.salary_account.id,\n" -" 'debit': slip.basic,\n" -" 'credit': 0.0,\n" -" 'quantity':slip.working_days,\n" -" 'journal_id': slip.journal_id.id,\n" -" 'period_id': period_id,\n" -" 'analytic_account_id': False,\n" -" 'ref':slip.number\n" -" }\n" -"\n" -" #Setting Analysis Account for Basic Salary\n" -" if slip.employee_id.analytic_account:\n" -" line['analytic_account_id'] = slip.employee_id.analytic_account.id\n" -"\n" -" move_line_id = movel_pool.create(cr, uid, line, context=context)\n" -" line_ids += [move_line_id]\n" -"\n" -" line = {\n" -" 'move_id':move_id,\n" -" 'name': \"To Basic Paysble Salary / \" + slip.employee_id.name,\n" -" 'partner_id': partner_id,\n" -" 'date': slip.date,\n" -" 'account_id': slip.employee_id.employee_account.id,\n" -" 'debit': 0.0,\n" -" 'quantity':slip.working_days,\n" -" 'credit': slip.basic,\n" -" 'journal_id': slip.journal_id.id,\n" -" 'period_id': period_id,\n" -" 'ref':slip.number\n" -" }\n" -" line_ids += [movel_pool.create(cr, uid, line, context=context)]\n" -"\n" -" for line in slip.line_ids:\n" -" name = \"[%s] - %s / %s\" % (line.code, line.name, slip.employee_id.name)\n" -" amount = line.total\n" -"\n" -" if line.type == 'leaves':\n" -" continue\n" -"\n" -" rec = {\n" -" 'move_id':move_id,\n" -" 'name': name,\n" -" 'date': slip.date,\n" -" 'account_id': line.account_id.id,\n" -" 'debit': 0.0,\n" -" 'credit' : 0.0,\n" -" 'journal_id' : slip.journal_id.id,\n" -" 'period_id' :period_id,\n" -" 'analytic_account_id':False,\n" -" 'ref':slip.number,\n" -" 'quantity':1\n" -" }\n" -"\n" -" #Setting Analysis Account for Salary Slip Lines\n" -" if line.analytic_account_id:\n" -" rec['analytic_account_id'] = line.analytic_account_id.id\n" -" else:\n" -" rec['analytic_account_id'] = slip.deg_id.account_id.id\n" -"\n" -" if line.type == 'allowance' or line.type == 'otherpay':\n" -" rec['debit'] = amount\n" -" if not partner.property_account_payable:\n" -" raise osv.except_osv(_('Integrity Error !" - -#. module: hr_payroll_account -#: model:ir.module.module,shortdesc:hr_payroll_account.module_meta_information -msgid "Human Resource Payroll Accounting" -msgstr "Human Resource Payroll Accounting" - -#. module: hr_payroll_account -#: view:hr.payslip:0 -#: field:hr.payslip,move_payment_ids:0 -msgid "Payment Lines" -msgstr "Payment Lines" - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Please define fiscal year for perticular contract" -msgstr "Please define fiscal year for perticular contract" - -#. module: hr_payroll_account -#: model:ir.model,name:hr_payroll_account.model_hr_payslip -msgid "Pay Slip" -msgstr "Pay Slip" - -#. module: hr_payroll_account -#: view:hr.payslip:0 -msgid "Account Lines" -msgstr "Account Lines" - -#. module: hr_payroll_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: hr_payroll_account -#: view:hr.payslip:0 -msgid "Accounting Vouchers" -msgstr "Accounting Vouchers" - -#. module: hr_payroll_account -#: help:hr.payslip,period_id:0 -msgid "Keep empty to use the period of the validation(Payslip) date." -msgstr "Keep empty to use the period of the validation(Payslip) date." - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Fiscal Year is not defined for slip date %s'%slip.date))\n" -" search_periods = period_pool.search(cr, uid, [('date_start','<=',slip.date),('date_stop','>=',slip.date)], context=context)\n" -" if not search_periods:\n" -" raise osv.except_osv(_('Warning !" -msgstr "Fiscal Year is not defined for slip date %s'%slip.date))\n" -" search_periods = period_pool.search(cr, uid, [('date_start','<=',slip.date),('date_stop','>=',slip.date)], context=context)\n" -" if not search_periods:\n" -" raise osv.except_osv(_('Warning !" - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Fiscal Year is not defined for slip date %s'%slip.date))\n" -" search_periods = period_pool.search(cr,uid,[('date_start','<=',slip.date),('date_stop','>=',slip.date)], context=context)\n" -" if not search_periods:\n" -" raise osv.except_osv(_('Warning !" -msgstr "Fiscal Year is not defined for slip date %s'%slip.date))\n" -" search_periods = period_pool.search(cr,uid,[('date_start','<=',slip.date),('date_stop','>=',slip.date)], context=context)\n" -" if not search_periods:\n" -" raise osv.except_osv(_('Warning !" - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Warning !" -msgstr "Warning !" - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Please Confirm all Expanse Invoice appear for Reimbursement" -msgstr "Please Confirm all Expanse Invoice appear for Reimbursement" - -#. module: hr_payroll_account -#: field:hr.payslip,period_id:0 -msgid "Force Period" -msgstr "Force Period" - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Please Configure Partners Receivable Account!!" -msgstr "Please Configure Partners Receivable Account!!" - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Please defined partner in bank account for %s !' % (slip.employee_id.name)))\n" -"\n" -" partner = slip.employee_id.bank_account_id.partner_id\n" -" partner_id = slip.employee_id.bank_account_id.partner_id.id\n" -"\n" -" period_id = False\n" -"\n" -" if slip.period_id:\n" -" period_id = slip.period_id.id\n" -" else:\n" -" fiscal_year_ids = fiscalyear_pool.search(cr, uid, [], context=context)\n" -" if not fiscal_year_ids:\n" -" raise osv.except_osv(_('Warning !" -msgstr "Please defined partner in bank account for %s !' % (slip.employee_id.name)))\n" -"\n" -" partner = slip.employee_id.bank_account_id.partner_id\n" -" partner_id = slip.employee_id.bank_account_id.partner_id.id\n" -"\n" -" period_id = False\n" -"\n" -" if slip.period_id:\n" -" period_id = slip.period_id.id\n" -" else:\n" -" fiscal_year_ids = fiscalyear_pool.search(cr, uid, [], context=context)\n" -" if not fiscal_year_ids:\n" -" raise osv.except_osv(_('Warning !" - -#. module: hr_payroll_account -#: view:hr.payslip:0 -msgid "Accounting Details" -msgstr "Accounting Details" - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Please Configure Partners Payable Account!!" -msgstr "Please Configure Partners Payable Account!!" - -#. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:0 -#, python-format -msgid "Integrity Error !" -msgstr "Integrity Error !" - diff --git a/addons/hr_recruitment/i18n/en_US.po b/addons/hr_recruitment/i18n/en_US.po deleted file mode 100644 index 7bd8e6c1b96..00000000000 --- a/addons/hr_recruitment/i18n/en_US.po +++ /dev/null @@ -1,989 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * hr_recruitment -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 06:51:08+0000\n" -"PO-Revision-Date: 2010-08-20 06:51:08+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: hr_recruitment -#: help:hr.applicant,active:0 -msgid "If the active field is set to false, it will allow you to hide the case without removing it." -msgstr "If the active field is set to false, it will allow you to hide the case without removing it." - -#. module: hr_recruitment -#: view:hr.recruitment.stage:0 -#: field:hr.recruitment.stage,requirements:0 -msgid "Requirements" -msgstr "Requirements" - -#. module: hr_recruitment -#: code:addons/hr_recruitment/hr_recruitment.py:0 -#, python-format -msgid "is Open." -msgstr "is Open." - -#. module: hr_recruitment -#: field:hr.recruitment.report,delay_open:0 -msgid "Avg. Delay to Open" -msgstr "Avg. Delay to Open" - -#. module: hr_recruitment -#: field:hr.recruitment.report,nbr:0 -msgid "# of Cases" -msgstr "# of Cases" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -msgid " 7 Days " -msgstr " 7 Days " - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: field:hr.applicant,department_id:0 -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,department_id:0 -#: field:hr.recruitment.stage,department_id:0 -msgid "Department" -msgstr "Department" - -#. module: hr_recruitment -#: field:hr.applicant,date_action:0 -msgid "Next Action Date" -msgstr "Next Action Date" - -#. module: hr_recruitment -#: field:hr.recruitment.report,opening_date:0 -msgid "Date of Opening" -msgstr "Date of Opening" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -msgid "Jobs" -msgstr "Jobs" - -#. module: hr_recruitment -#: field:hr.applicant,company_id:0 -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,company_id:0 -msgid "Company" -msgstr "Company" - -#. module: hr_recruitment -#: field:hr.applicant,email_cc:0 -msgid "Watchers Emails" -msgstr "Watchers Emails" - -#. module: hr_recruitment -#: field:hr.recruitment.partner.create,close:0 -msgid "Close job request" -msgstr "Close job request" - -#. module: hr_recruitment -#: field:hr.applicant,day_open:0 -msgid "Days to Open" -msgstr "Days to Open" - -#. module: hr_recruitment -#: field:hr.recruitment.job2phonecall,note:0 -msgid "Goals" -msgstr "Goals" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: view:hr.recruitment.partner.create:0 -#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_partner_create -msgid "Create Partner" -msgstr "Create Partner" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,day:0 -msgid "Day" -msgstr "Day" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Contract Data" -msgstr "Contract Data" - -#. module: hr_recruitment -#: field:hr.applicant,partner_mobile:0 -msgid "Mobile" -msgstr "Mobile" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -msgid "365 Days" -msgstr "365 Days" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -msgid "30 Days" -msgstr "30 Days" - -#. module: hr_recruitment -#: field:hr.applicant,message_ids:0 -msgid "Messages" -msgstr "Messages" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Next Actions" -msgstr "Next Actions" - -#. module: hr_recruitment -#: model:crm.case.categ,name:hr_recruitment.categ_job2 -msgid "Junior Developer" -msgstr "Junior Developer" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Notes" -msgstr "Notes" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,state:0 -msgid "Cancelled" -msgstr "Cancelled" - -#. module: hr_recruitment -#: field:hr.applicant,job_id:0 -#: field:hr.recruitment.report,job_id:0 -msgid "Applied Job" -msgstr "Applied Job" - -#. module: hr_recruitment -#: model:hr.recruitment.degree,name:hr_recruitment.degree_graduate -msgid "Graduate" -msgstr "Graduate" - -#. module: hr_recruitment -#: model:hr.recruitment.stage,name:hr_recruitment.stage_job1 -msgid "Initial Jobs Demand" -msgstr "Initial Jobs Demand" - -#. module: hr_recruitment -#: field:hr.applicant,partner_address_id:0 -msgid "Partner Contact" -msgstr "Partner Contact" - -#. module: hr_recruitment -#: field:hr.applicant,reference:0 -msgid "Reference" -msgstr "Reference" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -msgid "My Recruitment" -msgstr "My Recruitment" - -#. module: hr_recruitment -#: field:hr.applicant,title_action:0 -msgid "Next Action" -msgstr "Next Action" - -#. module: hr_recruitment -#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_recruitment -msgid "Recruitment" -msgstr "Recruitment" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,salary_prop:0 -msgid "Salary Proposed" -msgstr "Salary Proposed" - -#. module: hr_recruitment -#: field:hr.applicant,partner_id:0 -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,partner_id:0 -msgid "Partner" -msgstr "Partner" - -#. module: hr_recruitment -#: help:hr.applicant,salary_expected:0 -msgid "Salary Expected by Applicant" -msgstr "Salary Expected by Applicant" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: field:hr.recruitment.report,available:0 -msgid "Availability" -msgstr "Availability" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Previous" -msgstr "Previous" - -#. module: hr_recruitment -#: field:hr.applicant,date_closed:0 -#: field:hr.recruitment.report,date_closed:0 -#: selection:hr.recruitment.report,state:0 -msgid "Closed" -msgstr "Closed" - -#. module: hr_recruitment -#: code:addons/hr_recruitment/wizard/hr_recruitment_phonecall.py:0 -#, python-format -msgid "Phone Call" -msgstr "Phone Call" - -#. module: hr_recruitment -#: view:hr.recruitment.partner.create:0 -msgid "Convert To Partner" -msgstr "Convert To Partner" - -#. module: hr_recruitment -#: model:ir.model,name:hr_recruitment.model_hr_recruitment_report -msgid "Recruitments Statistics" -msgstr "Recruitments Statistics" - -#. module: hr_recruitment -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Next" -msgstr "Next" - -#. module: hr_recruitment -#: model:ir.model,name:hr_recruitment.model_hr_job -msgid "Job Description" -msgstr "Job Description" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Forward" -msgstr "Forward" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Send New Email" -msgstr "Send New Email" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Schedule a Phone Call" -msgstr "Schedule a Phone Call" - -#. module: hr_recruitment -#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:0 -#, python-format -msgid "A partner is already defined on this job request." -msgstr "A partner is already defined on this job request." - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: selection:hr.applicant,state:0 -#: view:hr.recruitment.report:0 -msgid "New" -msgstr "New" - -#. module: hr_recruitment -#: field:hr.applicant,email_from:0 -msgid "Email" -msgstr "Email" - -#. module: hr_recruitment -#: field:hr.applicant,availability:0 -msgid "Availability (Days)" -msgstr "Availability (Days)" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -msgid "Available" -msgstr "Available" - -#. module: hr_recruitment -#: selection:hr.applicant,priority:0 -#: selection:hr.recruitment.report,priority:0 -msgid "Good" -msgstr "Good" - -#. module: hr_recruitment -#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:0 -#, python-format -msgid "Error !" -msgstr "Error !" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: field:hr.applicant,create_date:0 -msgid "Creation Date" -msgstr "Creation Date" - -#. module: hr_recruitment -#: field:hr.recruitment.job2phonecall,deadline:0 -msgid "Planned Date" -msgstr "Planned Date" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: field:hr.applicant,priority:0 -#: field:hr.recruitment.report,priority:0 -msgid "Appreciation" -msgstr "Appreciation" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Job" -msgstr "Job" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Print Interview" -msgstr "Print Interview" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: field:hr.applicant,stage_id:0 -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,stage_id:0 -#: view:hr.recruitment.stage:0 -msgid "Stage" -msgstr "Stage" - -#. module: hr_recruitment -#: model:hr.recruitment.stage,name:hr_recruitment.stage_job3 -msgid "Second Interview" -msgstr "Second Interview" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,salary_exp:0 -msgid "Salary Expected" -msgstr "Salary Expected" - -#. module: hr_recruitment -#: field:hr.applicant,salary_expected:0 -msgid "Expected Salary" -msgstr "Expected Salary" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "July" -msgstr "July" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Subject" -msgstr "Subject" - -#. module: hr_recruitment -#: code:addons/hr_recruitment/hr_recruitment.py:0 -#, python-format -msgid "Job request for" -msgstr "Job request for" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: model:ir.actions.act_window,name:hr_recruitment.crm_case_categ0_act_job -#: model:ir.ui.menu,name:hr_recruitment.menu_crm_case_categ0_act_job -msgid "Applicants" -msgstr "Applicants" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "History Information" -msgstr "History Information" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Dates" -msgstr "Dates" - -#. module: hr_recruitment -#: model:hr.recruitment.degree,name:hr_recruitment.degree_bac5 -msgid " > Bac +5" -msgstr " > Bac +5" - -#. module: hr_recruitment -#: model:ir.model,name:hr_recruitment.model_hr_applicant -#: model:ir.ui.menu,name:hr_recruitment.menu_hr_config_applicant -msgid "Applicant" -msgstr "Applicant" - -#. module: hr_recruitment -#: help:hr.recruitment.stage,sequence:0 -msgid "Gives the sequence order when displaying a list of stages." -msgstr "Gives the sequence order when displaying a list of stages." - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Contact" -msgstr "Contact" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Qualification" -msgstr "Qualification" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "March" -msgstr "March" - -#. module: hr_recruitment -#: model:ir.model,name:hr_recruitment.model_hr_recruitment_stage -msgid "Stage of Recruitment" -msgstr "Stage of Recruitment" - -#. module: hr_recruitment -#: view:hr.recruitment.stage:0 -#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_stage_act -#: model:ir.ui.menu,name:hr_recruitment.menu_hr_job_stage_act -#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_stage -msgid "Stages" -msgstr "Stages" - -#. module: hr_recruitment -#: field:hr.applicant,probability:0 -msgid "Probability" -msgstr "Probability" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "September" -msgstr "September" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "December" -msgstr "December" - -#. module: hr_recruitment -#: code:addons/hr_recruitment/hr_recruitment.py:0 -#, python-format -msgid "Applicant " -msgstr "Applicant " - -#. module: hr_recruitment -#: model:ir.module.module,shortdesc:hr_recruitment.module_meta_information -msgid "HR - Recruitement" -msgstr "HR - Recruitement" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Job Info" -msgstr "Job Info" - -#. module: hr_recruitment -#: model:hr.recruitment.stage,name:hr_recruitment.stage_job2 -msgid "First Interview" -msgstr "First Interview" - -#. module: hr_recruitment -#: field:hr.applicant,write_date:0 -msgid "Update Date" -msgstr "Update Date" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Interview Question" -msgstr "Interview Question" - -#. module: hr_recruitment -#: field:hr.applicant,salary_proposed:0 -msgid "Proposed Salary" -msgstr "Proposed Salary" - -#. module: hr_recruitment -#: model:crm.case.categ,name:hr_recruitment.categ_job1 -msgid "Salesman" -msgstr "Salesman" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Schedule Meeting" -msgstr "Schedule Meeting" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Search Jobs" -msgstr "Search Jobs" - -#. module: hr_recruitment -#: field:hr.recruitment.job2phonecall,category_id:0 -msgid "Category" -msgstr "Category" - -#. module: hr_recruitment -#: field:hr.applicant,partner_name:0 -msgid "Applicant's Name" -msgstr "Applicant's Name" - -#. module: hr_recruitment -#: selection:hr.applicant,priority:0 -#: selection:hr.recruitment.report,priority:0 -msgid "Very Good" -msgstr "Very Good" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -msgid "# Cases" -msgstr "# Cases" - -#. module: hr_recruitment -#: field:hr.applicant,date_open:0 -msgid "Opened" -msgstr "Opened" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -msgid "Group By ..." -msgstr "Group By ..." - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: selection:hr.applicant,state:0 -msgid "In Progress" -msgstr "In Progress" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Reset to New" -msgstr "Reset to New" - -#. module: hr_recruitment -#: help:hr.applicant,email_cc:0 -msgid "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" -msgstr "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,state:0 -msgid "Draft" -msgstr "Draft" - -#. module: hr_recruitment -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: hr_recruitment -#: view:hr.recruitment.stage:0 -msgid "Stage Definition" -msgstr "Stage Definition" - -#. module: hr_recruitment -#: field:hr.recruitment.report,delay_close:0 -msgid "Avg. Delay to Close" -msgstr "Avg. Delay to Close" - -#. module: hr_recruitment -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: hr_recruitment -#: help:hr.applicant,salary_proposed:0 -msgid "Salary Proposed by the Organisation" -msgstr "Salary Proposed by the Organisation" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: selection:hr.applicant,state:0 -#: view:hr.recruitment.report:0 -#: selection:hr.recruitment.report,state:0 -msgid "Pending" -msgstr "Pending" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Status" -msgstr "Status" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "August" -msgstr "August" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: field:hr.applicant,type_id:0 -#: view:hr.recruitment.degree:0 -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,type_id:0 -#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_degree_action -msgid "Degree" -msgstr "Degree" - -#. module: hr_recruitment -#: field:hr.applicant,partner_phone:0 -msgid "Phone" -msgstr "Phone" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Global CC" -msgstr "Global CC" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "June" -msgstr "June" - -#. module: hr_recruitment -#: model:ir.actions.act_window,name:hr_recruitment.hr_job_stage_act -msgid "Applicant Stages" -msgstr "Applicant Stages" - -#. module: hr_recruitment -#: model:hr.recruitment.stage,name:hr_recruitment.stage_job7 -msgid "Refused by Company" -msgstr "Refused by Company" - -#. module: hr_recruitment -#: field:hr.applicant,day_close:0 -msgid "Days to Close" -msgstr "Days to Close" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,user_id:0 -msgid "User" -msgstr "User" - -#. module: hr_recruitment -#: selection:hr.applicant,priority:0 -#: selection:hr.recruitment.report,priority:0 -msgid "Excellent" -msgstr "Excellent" - -#. module: hr_recruitment -#: field:hr.applicant,active:0 -msgid "Active" -msgstr "Active" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "November" -msgstr "November" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -msgid "Extended Filters..." -msgstr "Extended Filters..." - -#. module: hr_recruitment -#: field:hr.applicant,response:0 -msgid "Response" -msgstr "Response" - -#. module: hr_recruitment -#: model:hr.recruitment.degree,name:hr_recruitment.degree_licenced -msgid "Licenced" -msgstr "Licenced" - -#. module: hr_recruitment -#: model:ir.module.module,description:hr_recruitment.module_meta_information -msgid "\n" -"Manages job positions and the recruitement process. It's integrated with the\n" -"survey module to allow you to define interview for different jobs.\n" -"\n" -"This module is integrated with the mail gateway to automatically tracks email\n" -"sent to jobs@YOURCOMPANY.com. It's also integrated with the document management\n" -"system to store and search in your CV base.\n" -" " -msgstr "\n" -"Manages job positions and the recruitement process. It's integrated with the\n" -"survey module to allow you to define interview for different jobs.\n" -"\n" -"This module is integrated with the mail gateway to automatically tracks email\n" -"sent to jobs@YOURCOMPANY.com. It's also integrated with the document management\n" -"system to store and search in your CV base.\n" -" " - -#. module: hr_recruitment -#: view:hr.recruitment.job2phonecall:0 -#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_phonecall -#: model:ir.model,name:hr_recruitment.model_hr_recruitment_job2phonecall -msgid "Schedule Phone Call" -msgstr "Schedule Phone Call" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "January" -msgstr "January" - -#. module: hr_recruitment -#: help:hr.applicant,email_from:0 -msgid "These people will receive email." -msgstr "These people will receive email." - -#. module: hr_recruitment -#: selection:hr.applicant,priority:0 -#: selection:hr.recruitment.report,priority:0 -msgid "Not Good" -msgstr "Not Good" - -#. module: hr_recruitment -#: field:hr.applicant,date:0 -#: field:hr.recruitment.report,date:0 -msgid "Date" -msgstr "Date" - -#. module: hr_recruitment -#: view:hr.recruitment.job2phonecall:0 -msgid "Phone Call Description" -msgstr "Phone Call Description" - -#. module: hr_recruitment -#: view:hr.recruitment.partner.create:0 -msgid "Are you sure you want to create a partner based on this job request ?" -msgstr "Are you sure you want to create a partner based on this job request ?" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Jobs - Recruitment Form" -msgstr "Jobs - Recruitment Form" - -#. module: hr_recruitment -#: field:hr.recruitment.report,partner_address_id:0 -msgid "Partner Contact Name" -msgstr "Partner Contact Name" - -#. module: hr_recruitment -#: code:addons/hr_recruitment/hr_recruitment.py:0 -#, python-format -msgid "from Mailgate." -msgstr "from Mailgate." - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Attachments" -msgstr "Attachments" - -#. module: hr_recruitment -#: model:hr.recruitment.stage,name:hr_recruitment.stage_job4 -msgid "Contract Proposed" -msgstr "Contract Proposed" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: field:hr.applicant,state:0 -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,state:0 -msgid "State" -msgstr "State" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Communication history" -msgstr "Communication history" - -#. module: hr_recruitment -#: view:hr.recruitment.job2phonecall:0 -#: view:hr.recruitment.partner.create:0 -msgid "Cancel" -msgstr "Cancel" - -#. module: hr_recruitment -#: model:ir.actions.act_window,name:hr_recruitment.hr_job_categ_action -msgid "Applicant Categories" -msgstr "Applicant Categories" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,state:0 -msgid "Open" -msgstr "Open" - -#. module: hr_recruitment -#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:0 -#, python-format -msgid "A partner is already existing with the same name." -msgstr "A partner is already existing with the same name." - -#. module: hr_recruitment -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: hr_recruitment -#: help:hr.recruitment.degree,sequence:0 -msgid "Gives the sequence order when displaying a list of degrees." -msgstr "Gives the sequence order when displaying a list of degrees." - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: field:hr.applicant,user_id:0 -msgid "Responsible" -msgstr "Responsible" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_report_all -#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_report_all -msgid "Recruitment Analysis" -msgstr "Recruitment Analysis" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: view:hr.recruitment.report:0 -msgid "Current" -msgstr "Current" - -#. module: hr_recruitment -#: code:addons/hr_recruitment/hr_recruitment.py:0 -#, python-format -msgid "A Job Request created" -msgstr "A Job Request created" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "October" -msgstr "October" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Details" -msgstr "Details" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Cases By Stage and Estimates" -msgstr "Cases By Stage and Estimates" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Reply" -msgstr "Reply" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,month:0 -msgid "Month" -msgstr "Month" - -#. module: hr_recruitment -#: code:addons/hr_recruitment/hr_recruitment.py:0 -#, python-format -msgid "is Hired." -msgstr "is Hired." - -#. module: hr_recruitment -#: field:hr.applicant,description:0 -msgid "Description" -msgstr "Description" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "May" -msgstr "May" - -#. module: hr_recruitment -#: model:hr.recruitment.stage,name:hr_recruitment.stage_job5 -msgid "Contract Signed" -msgstr "Contract Signed" - -#. module: hr_recruitment -#: constraint:crm.case.section:0 -msgid "Error ! You cannot create recursive Sales team." -msgstr "Error ! You cannot create recursive Sales team." - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: selection:hr.applicant,state:0 -msgid "Refused" -msgstr "Refused" - -#. module: hr_recruitment -#: view:hr.applicant:0 -#: selection:hr.applicant,state:0 -msgid "Hired" -msgstr "Hired" - -#. module: hr_recruitment -#: model:hr.recruitment.stage,name:hr_recruitment.stage_job6 -msgid "Refused by Employee" -msgstr "Refused by Employee" - -#. module: hr_recruitment -#: selection:hr.applicant,priority:0 -#: selection:hr.recruitment.report,priority:0 -msgid "On Average" -msgstr "On Average" - -#. module: hr_recruitment -#: model:ir.model,name:hr_recruitment.model_hr_recruitment_degree -msgid "Degree of Recruitment" -msgstr "Degree of Recruitment" - -#. module: hr_recruitment -#: view:hr.applicant:0 -msgid "Emails" -msgstr "Emails" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "February" -msgstr "February" - -#. module: hr_recruitment -#: field:hr.applicant,name:0 -#: field:hr.recruitment.degree,name:0 -#: field:hr.recruitment.stage,name:0 -msgid "Name" -msgstr "Name" - -#. module: hr_recruitment -#: model:ir.model,name:hr_recruitment.model_hr_recruitment_partner_create -msgid "Create Partner from job application" -msgstr "Create Partner from job application" - -#. module: hr_recruitment -#: selection:hr.recruitment.report,month:0 -msgid "April" -msgstr "April" - -#. module: hr_recruitment -#: model:crm.case.section,name:hr_recruitment.section_hr_department -msgid "HR Department" -msgstr "HR Department" - -#. module: hr_recruitment -#: field:hr.recruitment.degree,sequence:0 -#: field:hr.recruitment.stage,sequence:0 -msgid "Sequence" -msgstr "Sequence" - -#. module: hr_recruitment -#: field:hr.recruitment.job2phonecall,user_id:0 -msgid "Assign To" -msgstr "Assign To" - -#. module: hr_recruitment -#: view:hr.recruitment.report:0 -#: field:hr.recruitment.report,year:0 -msgid "Year" -msgstr "Year" - -#. module: hr_recruitment -#: help:hr.recruitment.report,delay_close:0 -#: help:hr.recruitment.report,delay_open:0 -msgid "Number of Days to close the project issue" -msgstr "Number of Days to close the project issue" - -#. module: hr_recruitment -#: field:hr.applicant,survey:0 -#: field:hr.job,survey_id:0 -msgid "Survey" -msgstr "Survey" - diff --git a/addons/knowledge/i18n/en_US.po b/addons/knowledge/i18n/en_US.po deleted file mode 100644 index 3e04f4f08f0..00000000000 --- a/addons/knowledge/i18n/en_US.po +++ /dev/null @@ -1,149 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * knowledge -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 07:00:40+0000\n" -"PO-Revision-Date: 2010-08-20 07:00:40+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: knowledge -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: knowledge -#: field:knowledge.installer,wiki:0 -msgid "Collaborative Content (Wiki)" -msgstr "Collaborative Content (Wiki)" - -#. module: knowledge -#: help:knowledge.installer,wiki_quality_manual:0 -msgid "Creates an example skeleton for a standard quality manual." -msgstr "Creates an example skeleton for a standard quality manual." - -#. module: knowledge -#: field:knowledge.installer,document_ftp:0 -msgid "Shared Repositories (FTP)" -msgstr "Shared Repositories (FTP)" - -#. module: knowledge -#: model:ir.module.module,shortdesc:knowledge.module_meta_information -msgid "Knowledge Management System" -msgstr "Knowledge Management System" - -#. module: knowledge -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: knowledge -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: knowledge -#: model:ir.ui.menu,name:knowledge.menu_document -msgid "Knowledge" -msgstr "Knowledge" - -#. module: knowledge -#: help:knowledge.installer,document_webdav:0 -msgid "Provides a WebDAV access to your OpenERP's Document Management System. Lets you access attachments and virtual documents through your standard file browser." -msgstr "Provides a WebDAV access to your OpenERP's Document Management System. Lets you access attachments and virtual documents through your standard file browser." - -#. module: knowledge -#: field:knowledge.installer,progress:0 -msgid "Configuration Progress" -msgstr "Configuration Progress" - -#. module: knowledge -#: view:knowledge.installer:0 -msgid "title" -msgstr "title" - -#. module: knowledge -#: help:knowledge.installer,document_ftp:0 -msgid "Provides an FTP access to your OpenERP's Document Management System. It lets you access attachments and virtual documents through a standard FTP client." -msgstr "Provides an FTP access to your OpenERP's Document Management System. It lets you access attachments and virtual documents through a standard FTP client." - -#. module: knowledge -#: model:ir.module.module,description:knowledge.module_meta_information -msgid "Installer for knowledge-based tools\n" -" " -msgstr "Installer for knowledge-based tools\n" -" " - -#. module: knowledge -#: model:ir.ui.menu,name:knowledge.menu_document_configuration -msgid "Configuration" -msgstr "Configuration" - -#. module: knowledge -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: knowledge -#: model:ir.actions.act_window,name:knowledge.action_knowledge_installer -msgid "Knowledge Modules Installation" -msgstr "Knowledge Modules Installation" - -#. module: knowledge -#: view:ir.actions.todo:0 -msgid "Launch" -msgstr "Launch" - -#. module: knowledge -#: field:knowledge.installer,wiki_quality_manual:0 -msgid "Quality Manual" -msgstr "Quality Manual" - -#. module: knowledge -#: view:knowledge.installer:0 -msgid "Templates of Content" -msgstr "Templates of Content" - -#. module: knowledge -#: field:knowledge.installer,document_webdav:0 -msgid "Shared Repositories (WebDAV)" -msgstr "Shared Repositories (WebDAV)" - -#. module: knowledge -#: help:knowledge.installer,wiki_faq:0 -msgid "Creates a skeleton internal FAQ pre-filled with documentation about OpenERP's Document Management System." -msgstr "Creates a skeleton internal FAQ pre-filled with documentation about OpenERP's Document Management System." - -#. module: knowledge -#: field:knowledge.installer,wiki_faq:0 -msgid "Internal FAQ" -msgstr "Internal FAQ" - -#. module: knowledge -#: model:ir.ui.menu,name:knowledge.menu_document2 -msgid "Collaborative Content" -msgstr "Collaborative Content" - -#. module: knowledge -#: field:knowledge.installer,config_logo:0 -msgid "Image" -msgstr "Image" - -#. module: knowledge -#: model:ir.model,name:knowledge.model_knowledge_installer -msgid "knowledge.installer" -msgstr "knowledge.installer" - -#. module: knowledge -#: help:knowledge.installer,wiki:0 -msgid "Lets you create wiki pages and page groups in order to keep track of business knowledge and share it with and between your employees." -msgstr "Lets you create wiki pages and page groups in order to keep track of business knowledge and share it with and between your employees." - diff --git a/addons/marketing/i18n/en_US.po b/addons/marketing/i18n/en_US.po deleted file mode 100644 index 76da154dc28..00000000000 --- a/addons/marketing/i18n/en_US.po +++ /dev/null @@ -1,107 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * marketing -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 07:07:10+0000\n" -"PO-Revision-Date: 2010-08-20 07:07:10+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: marketing -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: marketing -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: marketing -#: field:marketing.installer,progress:0 -msgid "Configuration Progress" -msgstr "Configuration Progress" - -#. module: marketing -#: view:marketing.installer:0 -msgid "title" -msgstr "title" - -#. module: marketing -#: field:marketing.installer,email_template:0 -msgid "Automated E-Mails" -msgstr "Automated E-Mails" - -#. module: marketing -#: field:marketing.installer,config_logo:0 -msgid "Image" -msgstr "Image" - -#. module: marketing -#: help:marketing.installer,marketing_campaign:0 -msgid "Helps you to manage marketing campaigns and automate actions and communication steps." -msgstr "Helps you to manage marketing campaigns and automate actions and communication steps." - -#. module: marketing -#: help:marketing.installer,marketing_campaign_mailchimp:0 -msgid "This modules integrate mailchimp.com's service with OpenERP to automate mass mailings." -msgstr "This modules integrate mailchimp.com's service with OpenERP to automate mass mailings." - -#. module: marketing -#: model:ir.module.module,description:marketing.module_meta_information -msgid "Menu for Marketing" -msgstr "Menu for Marketing" - -#. module: marketing -#: help:marketing.installer,email_template:0 -msgid "Helps you to design templates of emails and integrate them in your different processes." -msgstr "Helps you to design templates of emails and integrate them in your different processes." - -#. module: marketing -#: help:marketing.installer,crm_profiling:0 -msgid "Helps you to perform segmentation within partners and design questionaires." -msgstr "Helps you to perform segmentation within partners and design questionaires." - -#. module: marketing -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: marketing -#: model:ir.module.module,shortdesc:marketing.module_meta_information -msgid "Marketing" -msgstr "Marketing" - -#. module: marketing -#: field:marketing.installer,crm_profiling:0 -msgid "Profiling Tools" -msgstr "Profiling Tools" - -#. module: marketing -#: field:marketing.installer,marketing_campaign:0 -msgid "Marketing Campaigns" -msgstr "Marketing Campaigns" - -#. module: marketing -#: model:ir.model,name:marketing.model_marketing_installer -msgid "marketing.installer" -msgstr "marketing.installer" - -#. module: marketing -#: field:marketing.installer,marketing_campaign_mailchimp:0 -msgid "Mailchimp Integration" -msgstr "Mailchimp Integration" - -#. module: marketing -#: model:ir.actions.act_window,name:marketing.action_marketing_installer -msgid "Marketing Modules Installation" -msgstr "Marketing Modules Installation" - diff --git a/addons/marketing_campaign_crm_demo/i18n/en_US.po b/addons/marketing_campaign_crm_demo/i18n/en_US.po deleted file mode 100644 index a47822331de..00000000000 --- a/addons/marketing_campaign_crm_demo/i18n/en_US.po +++ /dev/null @@ -1,178 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * marketing_campaign_crm_demo -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 08:33:08+0000\n" -"PO-Revision-Date: 2010-08-20 08:33:08+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: marketing_campaign_crm_demo -#: model:ir.actions.report.xml,name:marketing_campaign_crm_demo.mc_crm_lead_demo_report -msgid "Marketing campaign demo report" -msgstr "Marketing campaign demo report" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_body_text:marketing_campaign_crm_demo.email_template_1 -msgid "Hello,Thanks for generous interest you have shown in the openERP.Regards,OpenERP Team," -msgstr "Hello,Thanks for generous interest you have shown in the openERP.Regards,OpenERP Team," - -#. module: marketing_campaign_crm_demo -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "Error! You can not create recursive Directories." - -#. module: marketing_campaign_crm_demo -#: model:ir.module.module,description:marketing_campaign_crm_demo.module_meta_information -msgid "Demo data for the module marketing_campaign." -msgstr "Demo data for the module marketing_campaign." - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_body_text:marketing_campaign_crm_demo.email_template_4 -msgid "Hello,Thanks for showing intrest and buying the OpenERP book.\n" -" If any further information required kindly revert back.\n" -" I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," -msgstr "Hello,Thanks for showing intrest and buying the OpenERP book.\n" -" If any further information required kindly revert back.\n" -" I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_2 -msgid "Propose to subscribe to the OpenERP Discovery Day on May 2010" -msgstr "Propose to subscribe to the OpenERP Discovery Day on May 2010" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_6 -msgid "Propose paid training to Silver partners" -msgstr "Propose paid training to Silver partners" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_1 -msgid "Thanks for showing interest in OpenERP" -msgstr "Thanks for showing interest in OpenERP" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_4 -msgid "Thanks for buying the OpenERP book" -msgstr "Thanks for buying the OpenERP book" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_5 -msgid "Propose a free technical training to Gold partners" -msgstr "Propose a free technical training to Gold partners" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_body_text:marketing_campaign_crm_demo.email_template_7 -msgid "Hello, We have very good offer that might suit you.\n" -" For our silver partners,We are offering Gold partnership.\n" -" If any further information required kindly revert back.\n" -" I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," -msgstr "Hello, We have very good offer that might suit you.\n" -" For our silver partners,We are offering Gold partnership.\n" -" If any further information required kindly revert back.\n" -" I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," - -#. module: marketing_campaign_crm_demo -#: rml:crm.lead.demo:0 -msgid "Partner :" -msgstr "Partner :" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_body_text:marketing_campaign_crm_demo.email_template_8 -msgid "Hello, Thanks for showing intrest and for subscribing to technical training.If any further information required kindly revert back.I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," -msgstr "Hello, Thanks for showing intrest and for subscribing to technical training.If any further information required kindly revert back.I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," - -#. module: marketing_campaign_crm_demo -#: rml:crm.lead.demo:0 -msgid "Company :" -msgstr "Company :" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_8 -msgid "Thanks for subscribing to technical training" -msgstr "Thanks for subscribing to technical training" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_3 -msgid "Thanks for subscribing to the OpenERP Discovery Day" -msgstr "Thanks for subscribing to the OpenERP Discovery Day" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_body_text:marketing_campaign_crm_demo.email_template_5 -msgid "Hello, We have very good offer that might suit you.\n" -" For our gold partners,We are arranging free technical training on june,2010.\n" -" If any further information required kindly revert back.\n" -" I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," -msgstr "Hello, We have very good offer that might suit you.\n" -" For our gold partners,We are arranging free technical training on june,2010.\n" -" If any further information required kindly revert back.\n" -" I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_body_text:marketing_campaign_crm_demo.email_template_3 -msgid "Hello,Thanks for showing intrest and for subscribing to the OpenERP Discovery Day.\n" -" If any further information required kindly revert back.\n" -" I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," -msgstr "Hello,Thanks for showing intrest and for subscribing to the OpenERP Discovery Day.\n" -" If any further information required kindly revert back.\n" -" I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_body_text:marketing_campaign_crm_demo.email_template_2 -msgid "Hello,We have very good offer that might suit you.\n" -" We propose you to subscribe to the OpenERP Discovery Day on May 2010.\n" -" If any further information required kindly revert back.\n" -" We really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," -msgstr "Hello,We have very good offer that might suit you.\n" -" We propose you to subscribe to the OpenERP Discovery Day on May 2010.\n" -" If any further information required kindly revert back.\n" -" We really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_body_text:marketing_campaign_crm_demo.email_template_6 -msgid "Hello, We have very good offer that might suit you.\n" -" For our silver partners,We are paid technical training on june,2010.\n" -" If any further information required kindly revert back.\n" -" I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," -msgstr "Hello, We have very good offer that might suit you.\n" -" For our silver partners,We are paid technical training on june,2010.\n" -" If any further information required kindly revert back.\n" -" I really appreciate your co-operation on this.\n" -" Regards,OpenERP Team," - -#. module: marketing_campaign_crm_demo -#: model:ir.actions.server,name:marketing_campaign_crm_demo.action_dummy -msgid "Dummy Action" -msgstr "Dummy Action" - -#. module: marketing_campaign_crm_demo -#: model:ir.module.module,shortdesc:marketing_campaign_crm_demo.module_meta_information -msgid "marketing_campaign_crm_demo" -msgstr "marketing_campaign_crm_demo" - -#. module: marketing_campaign_crm_demo -#: model:email.template,def_subject:marketing_campaign_crm_demo.email_template_7 -msgid "Propose gold partnership to silver partners" -msgstr "Propose gold partnership to silver partners" - diff --git a/addons/procurement/i18n/en_US.po b/addons/procurement/i18n/en_US.po deleted file mode 100644 index 249709f42cf..00000000000 --- a/addons/procurement/i18n/en_US.po +++ /dev/null @@ -1,838 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * procurement -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 09:15:16+0000\n" -"PO-Revision-Date: 2010-08-20 09:15:16+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: procurement -#: model:ir.model,name:procurement.model_make_procurement -msgid "Make Procurements" -msgstr "Make Procurements" - -#. module: procurement -#: help:procurement.order.compute.all,automatic:0 -msgid "Triggers an automatic procurement for all products that have a virtual stock under 0. You should probably not use this option, we suggest using a MTO configuration on products." -msgstr "Triggers an automatic procurement for all products that have a virtual stock under 0. You should probably not use this option, we suggest using a MTO configuration on products." - -#. module: procurement -#: view:stock.warehouse.orderpoint:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: procurement -#: view:procurement.order:0 -msgid "Planification" -msgstr "Planification" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "No supplier defined for this product !" -msgstr "No supplier defined for this product !" - -#. module: procurement -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: procurement -#: field:make.procurement,uom_id:0 -msgid "Unit of Measure" -msgstr "Unit of Measure" - -#. module: procurement -#: field:procurement.order,procure_method:0 -msgid "Procurement Method" -msgstr "Procurement Method" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "No address defined for the supplier" -msgstr "No address defined for the supplier" - -#. module: procurement -#: model:ir.actions.act_window,name:procurement.action_procurement_compute -msgid "Compute Stock Minimum Rules Only" -msgstr "Compute Stock Minimum Rules Only" - -#. module: procurement -#: field:procurement.order,company_id:0 -#: field:stock.warehouse.orderpoint,company_id:0 -msgid "Company" -msgstr "Company" - -#. module: procurement -#: field:procurement.order,product_uos_qty:0 -msgid "UoS Quantity" -msgstr "UoS Quantity" - -#. module: procurement -#: view:procurement.order:0 -#: field:procurement.order,name:0 -msgid "Reason" -msgstr "Reason" - -#. module: procurement -#: view:procurement.order.compute:0 -msgid "Compute Procurements" -msgstr "Compute Procurements" - -#. module: procurement -#: field:procurement.order,message:0 -msgid "Latest error" -msgstr "Latest error" - -#. module: procurement -#: help:mrp.property,composition:0 -msgid "Not used in computations, for information purpose only." -msgstr "Not used in computations, for information purpose only." - -#. module: procurement -#: field:stock.warehouse.orderpoint,procurement_id:0 -msgid "Latest procurement" -msgstr "Latest procurement" - -#. module: procurement -#: view:procurement.order:0 -msgid "Notes" -msgstr "Notes" - -#. module: procurement -#: help:procurement.order,message:0 -msgid "Exception occurred while computing procurement orders." -msgstr "Exception occurred while computing procurement orders." - -#. module: procurement -#: help:procurement.order,state:0 -msgid "When a procurement is created the state is set to 'Draft'.\n" -" If the procurement is confirmed, the state is set to 'Confirmed'. \n" -"After confirming the state is set to 'Running'.\n" -" If any exception arises in the order then the state is set to 'Exception'.\n" -" Once the exception is removed the state becomes 'Ready'.\n" -" It is in 'Waiting'. state when the procurement is waiting for another one to finish." -msgstr "When a procurement is created the state is set to 'Draft'.\n" -" If the procurement is confirmed, the state is set to 'Confirmed'. \n" -"After confirming the state is set to 'Running'.\n" -" If any exception arises in the order then the state is set to 'Exception'.\n" -" Once the exception is removed the state becomes 'Ready'.\n" -" It is in 'Waiting'. state when the procurement is waiting for another one to finish." - -#. module: procurement -#: view:stock.warehouse.orderpoint:0 -msgid "Minimum Stock Rules Search" -msgstr "Minimum Stock Rules Search" - -#. module: procurement -#: help:stock.warehouse.orderpoint,product_min_qty:0 -msgid "When the virtual stock goes belong the Min Quantity, OpenERP generates a procurement to bring the virtual stock to the Max Quantity." -msgstr "When the virtual stock goes belong the Min Quantity, OpenERP generates a procurement to bring the virtual stock to the Max Quantity." - -#. module: procurement -#: view:procurement.order.compute.all:0 -msgid "Scheduler Parameters" -msgstr "Scheduler Parameters" - -#. module: procurement -#: model:ir.actions.act_window,name:procurement.procurement_action11 -msgid "Temporary Procurement Exceptions" -msgstr "Temporary Procurement Exceptions" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "has an exception." -msgstr "has an exception." - -#. module: procurement -#: selection:procurement.order,state:0 -msgid "Ready" -msgstr "Ready" - -#. module: procurement -#: field:procurement.order.compute.all,automatic:0 -msgid "Automatic orderpoint" -msgstr "Automatic orderpoint" - -#. module: procurement -#: selection:procurement.order,state:0 -msgid "Confirmed" -msgstr "Confirmed" - -#. module: procurement -#: view:procurement.order:0 -msgid "Retry" -msgstr "Retry" - -#. module: procurement -#: view:procurement.order.compute:0 -#: view:procurement.orderpoint.compute:0 -msgid "Parameters" -msgstr "Parameters" - -#. module: procurement -#: view:procurement.order:0 -msgid "Confirm" -msgstr "Confirm" - -#. module: procurement -#: help:procurement.order,origin:0 -msgid "Reference of the document that created this Procurement.\n" -"This is automatically completed by OpenERP." -msgstr "Reference of the document that created this Procurement.\n" -"This is automatically completed by OpenERP." - -#. module: procurement -#: model:ir.model,name:procurement.model_stock_warehouse_orderpoint -msgid "Minimum Inventory Rule" -msgstr "Minimum Inventory Rule" - -#. module: procurement -#: model:ir.actions.act_window,name:procurement.procurement_action4 -msgid "Procurement Exceptions to Fix" -msgstr "Procurement Exceptions to Fix" - -#. module: procurement -#: field:procurement.order,priority:0 -msgid "Priority" -msgstr "Priority" - -#. module: procurement -#: view:procurement.order:0 -#: field:procurement.order,state:0 -msgid "State" -msgstr "State" - -#. module: procurement -#: field:procurement.order,location_id:0 -#: view:stock.warehouse.orderpoint:0 -#: field:stock.warehouse.orderpoint,location_id:0 -msgid "Location" -msgstr "Location" - -#. module: procurement -#: field:make.procurement,warehouse_id:0 -#: view:stock.warehouse.orderpoint:0 -#: field:stock.warehouse.orderpoint,warehouse_id:0 -msgid "Warehouse" -msgstr "Warehouse" - -#. module: procurement -#: selection:stock.warehouse.orderpoint,logic:0 -msgid "Best price (not yet active!)" -msgstr "Best price (not yet active!)" - -#. module: procurement -#: view:procurement.order:0 -msgid "Product & Location" -msgstr "Product & Location" - -#. module: procurement -#: model:ir.model,name:procurement.model_procurement_order_compute -msgid "Compute Procurement" -msgstr "Compute Procurement" - -#. module: procurement -#: model:ir.actions.act_window,name:procurement.procurement_action3 -#: model:ir.module.module,shortdesc:procurement.module_meta_information -msgid "Procurements" -msgstr "Procurements" - -#. module: procurement -#: field:res.company,schedule_range:0 -msgid "Scheduler Range Days" -msgstr "Scheduler Range Days" - -#. module: procurement -#: view:make.procurement:0 -msgid "Ask New Products" -msgstr "Ask New Products" - -#. module: procurement -#: field:make.procurement,date_planned:0 -msgid "Planned Date" -msgstr "Planned Date" - -#. module: procurement -#: view:procurement.order:0 -msgid "Group By" -msgstr "Group By" - -#. module: procurement -#: field:make.procurement,qty:0 -#: field:procurement.order,product_qty:0 -msgid "Quantity" -msgstr "Quantity" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "Not enough stock and no minimum orderpoint rule defined." -msgstr "Not enough stock and no minimum orderpoint rule defined." - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "Invalid action !" -msgstr "Invalid action !" - -#. module: procurement -#: view:procurement.order:0 -msgid "References" -msgstr "References" - -#. module: procurement -#: view:res.company:0 -msgid "Configuration" -msgstr "Configuration" - -#. module: procurement -#: constraint:ir.cron:0 -msgid "Invalid arguments" -msgstr "Invalid arguments" - -#. module: procurement -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: procurement -#: help:procurement.order,procure_method:0 -msgid "If you encode manually a Procurement, you probably want to use a make to order method." -msgstr "If you encode manually a Procurement, you probably want to use a make to order method." - -#. module: procurement -#: view:res.company:0 -msgid "MRP & Logistics Scheduler" -msgstr "MRP & Logistics Scheduler" - -#. module: procurement -#: view:procurement.order.compute.all:0 -msgid "Wizard run all the procurements, and generate task, production order or purchase order based on the product type" -msgstr "Wizard run all the procurements, and generate task, production order or purchase order based on the product type" - -#. module: procurement -#: field:stock.warehouse.orderpoint,product_max_qty:0 -msgid "Max Quantity" -msgstr "Max Quantity" - -#. module: procurement -#: view:procurement.order:0 -msgid "Procurement Reason" -msgstr "Procurement Reason" - -#. module: procurement -#: model:ir.model,name:procurement.model_procurement_order -#: model:process.process,name:procurement.process_process_procurementprocess0 -#: view:procurement.order:0 -msgid "Procurement" -msgstr "Procurement" - -#. module: procurement -#: model:ir.actions.act_window,name:procurement.procurement_action -msgid "Procurement Orders" -msgstr "Procurement Orders" - -#. module: procurement -#: view:procurement.order:0 -msgid "To Fix" -msgstr "To Fix" - -#. module: procurement -#: view:procurement.order:0 -msgid "Exceptions" -msgstr "Exceptions" - -#. module: procurement -#: model:process.node,note:procurement.process_node_serviceonorder0 -msgid "Assignment from Production or Purchase Order." -msgstr "Assignment from Production or Purchase Order." - -#. module: procurement -#: model:ir.model,name:procurement.model_mrp_property -msgid "Property" -msgstr "Property" - -#. module: procurement -#: model:ir.actions.act_window,name:procurement.act_make_procurement -#: view:make.procurement:0 -msgid "Procurement Request" -msgstr "Procurement Request" - -#. module: procurement -#: view:procurement.orderpoint.compute:0 -msgid "Compute Stock" -msgstr "Compute Stock" - -#. module: procurement -#: model:process.process,name:procurement.process_process_serviceproductprocess0 -msgid "Service" -msgstr "Service" - -#. module: procurement -#: model:ir.module.module,description:procurement.module_meta_information -msgid "\n" -" This is the module for computing Procurements.\n" -" " -msgstr "\n" -" This is the module for computing Procurements.\n" -" " - -#. module: procurement -#: field:stock.warehouse.orderpoint,product_min_qty:0 -msgid "Min Quantity" -msgstr "Min Quantity" - -#. module: procurement -#: selection:procurement.order,priority:0 -msgid "Urgent" -msgstr "Urgent" - -#. module: procurement -#: selection:mrp.property,composition:0 -msgid "plus" -msgstr "plus" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "Please check the Quantity in Procurement Order(s), it should not be less than 1!" -msgstr "Please check the Quantity in Procurement Order(s), it should not be less than 1!" - -#. module: procurement -#: help:stock.warehouse.orderpoint,product_max_qty:0 -msgid "When the virtual stock goes belong the Max Quantity, OpenERP generates a procurement to bring the virtual stock to the Max Quantity." -msgstr "When the virtual stock goes belong the Max Quantity, OpenERP generates a procurement to bring the virtual stock to the Max Quantity." - -#. module: procurement -#: help:procurement.orderpoint.compute,automatic:0 -msgid "If the stock of a product is under 0, it will act like an orderpoint" -msgstr "If the stock of a product is under 0, it will act like an orderpoint" - -#. module: procurement -#: view:procurement.order:0 -msgid "Procurement Lines" -msgstr "Procurement Lines" - -#. module: procurement -#: view:procurement.order:0 -#: field:procurement.order,note:0 -msgid "Note" -msgstr "Note" - -#. module: procurement -#: selection:procurement.order,state:0 -msgid "Draft" -msgstr "Draft" - -#. module: procurement -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: procurement -#: view:procurement.order:0 -msgid "Status" -msgstr "Status" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "Procurement " -msgstr "Procurement " - -#. module: procurement -#: help:res.company,schedule_range:0 -msgid "This is the time frame analysed by the scheduler when computing procurements. All procurements that are not between today and today+range are skipped for futur computation." -msgstr "This is the time frame analysed by the scheduler when computing procurements. All procurements that are not between today and today+range are skipped for futur computation." - -#. module: procurement -#: selection:procurement.order,priority:0 -msgid "Normal" -msgstr "Normal" - -#. module: procurement -#: view:procurement.order.compute:0 -msgid "This wizard will schedule procurements." -msgstr "This wizard will schedule procurements." - -#. module: procurement -#: help:stock.warehouse.orderpoint,active:0 -msgid "If the active field is set to true, it will allow you to hide the orderpoint without removing it." -msgstr "If the active field is set to true, it will allow you to hide the orderpoint without removing it." - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "is running." -msgstr "is running." - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "Not enough stock " -msgstr "Not enough stock " - -#. module: procurement -#: model:process.node,name:procurement.process_node_procureproducts0 -msgid "Procure Products" -msgstr "Procure Products" - -#. module: procurement -#: field:procurement.order,date_planned:0 -msgid "Scheduled date" -msgstr "Scheduled date" - -#. module: procurement -#: selection:procurement.order,state:0 -msgid "Exception" -msgstr "Exception" - -#. module: procurement -#: model:ir.model,name:procurement.model_procurement_orderpoint_compute -msgid "Automatic Order Point" -msgstr "Automatic Order Point" - -#. module: procurement -#: field:stock.warehouse.orderpoint,qty_multiple:0 -msgid "Qty Multiple" -msgstr "Qty Multiple" - -#. module: procurement -#: model:ir.model,name:procurement.model_res_company -msgid "Companies" -msgstr "Companies" - -#. module: procurement -#: view:procurement.order:0 -msgid "Extra Information" -msgstr "Extra Information" - -#. module: procurement -#: help:procurement.order,name:0 -msgid "Procurement name." -msgstr "Procurement name." - -#. module: procurement -#: field:stock.warehouse.orderpoint,active:0 -msgid "Active" -msgstr "Active" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "Qty Multiple must be greater than zero." -msgstr "Qty Multiple must be greater than zero." - -#. module: procurement -#: selection:stock.warehouse.orderpoint,logic:0 -msgid "Order to Max" -msgstr "Order to Max" - -#. module: procurement -#: field:procurement.order,date_close:0 -msgid "Date Closed" -msgstr "Date Closed" - -#. module: procurement -#: view:procurement.order:0 -msgid "Late" -msgstr "Late" - -#. module: procurement -#: field:mrp.property,composition:0 -msgid "Properties composition" -msgstr "Properties composition" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "Data Insufficient !" -msgstr "Data Insufficient !" - -#. module: procurement -#: model:ir.model,name:procurement.model_mrp_property_group -#: field:mrp.property,group_id:0 -#: field:mrp.property.group,name:0 -msgid "Property Group" -msgstr "Property Group" - -#. module: procurement -#: view:stock.warehouse.orderpoint:0 -msgid "Misc" -msgstr "Misc" - -#. module: procurement -#: view:stock.warehouse.orderpoint:0 -msgid "Locations" -msgstr "Locations" - -#. module: procurement -#: selection:procurement.order,procure_method:0 -msgid "from stock" -msgstr "from stock" - -#. module: procurement -#: view:stock.warehouse.orderpoint:0 -msgid "General Information" -msgstr "General Information" - -#. module: procurement -#: view:procurement.order:0 -msgid "Run Procurement" -msgstr "Run Procurement" - -#. module: procurement -#: selection:procurement.order,state:0 -msgid "Done" -msgstr "Done" - -#. module: procurement -#: help:stock.warehouse.orderpoint,qty_multiple:0 -msgid "The procurement quantity will by rounded up to this multiple." -msgstr "The procurement quantity will by rounded up to this multiple." - -#. module: procurement -#: view:make.procurement:0 -#: view:procurement.order:0 -#: selection:procurement.order,state:0 -#: view:procurement.order.compute:0 -#: view:procurement.order.compute.all:0 -#: view:procurement.orderpoint.compute:0 -msgid "Cancel" -msgstr "Cancel" - -#. module: procurement -#: field:stock.warehouse.orderpoint,logic:0 -msgid "Reordering Mode" -msgstr "Reordering Mode" - -#. module: procurement -#: field:procurement.order,origin:0 -msgid "Source Document" -msgstr "Source Document" - -#. module: procurement -#: selection:procurement.order,priority:0 -msgid "Not urgent" -msgstr "Not urgent" - -#. module: procurement -#: model:ir.model,name:procurement.model_procurement_order_compute_all -msgid "Compute all schedulers" -msgstr "Compute all schedulers" - -#. module: procurement -#: view:procurement.order:0 -msgid "Current" -msgstr "Current" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "Project_mrp module not installed !" -msgstr "Project_mrp module not installed !" - -#. module: procurement -#: view:procurement.order:0 -msgid "Details" -msgstr "Details" - -#. module: procurement -#: view:board.board:0 -#: model:ir.actions.act_window,name:procurement.procurement_action5 -msgid "Procurement Exceptions" -msgstr "Procurement Exceptions" - -#. module: procurement -#: model:ir.actions.act_window,name:procurement.act_procurement_2_stock_warehouse_orderpoint -#: model:ir.actions.act_window,name:procurement.act_product_product_2_stock_warehouse_orderpoint -#: model:ir.actions.act_window,name:procurement.act_stock_warehouse_2_stock_warehouse_orderpoint -#: model:ir.actions.act_window,name:procurement.action_orderpoint_form -#: view:stock.warehouse.orderpoint:0 -msgid "Minimum Stock Rules" -msgstr "Minimum Stock Rules" - -#. module: procurement -#: field:procurement.order,close_move:0 -msgid "Close Move at end" -msgstr "Close Move at end" - -#. module: procurement -#: view:procurement.order:0 -msgid "Scheduled Date" -msgstr "Scheduled Date" - -#. module: procurement -#: field:make.procurement,product_id:0 -#: view:procurement.order:0 -#: field:procurement.order,product_id:0 -#: field:stock.warehouse.orderpoint,product_id:0 -msgid "Product" -msgstr "Product" - -#. module: procurement -#: field:mrp.property,description:0 -#: field:mrp.property.group,description:0 -msgid "Description" -msgstr "Description" - -#. module: procurement -#: selection:mrp.property,composition:0 -msgid "min" -msgstr "min" - -#. module: procurement -#: view:stock.warehouse.orderpoint:0 -msgid "Quantity Rules" -msgstr "Quantity Rules" - -#. module: procurement -#: selection:procurement.order,state:0 -msgid "Running" -msgstr "Running" - -#. module: procurement -#: field:stock.warehouse.orderpoint,product_uom:0 -msgid "Product UOM" -msgstr "Product UOM" - -#. module: procurement -#: model:process.node,name:procurement.process_node_serviceonorder0 -msgid "Make to Order" -msgstr "Make to Order" - -#. module: procurement -#: view:procurement.order:0 -msgid "UOM" -msgstr "UOM" - -#. module: procurement -#: selection:procurement.order,state:0 -msgid "Waiting" -msgstr "Waiting" - -#. module: procurement -#: selection:procurement.order,procure_method:0 -msgid "on order" -msgstr "on order" - -#. module: procurement -#: field:procurement.order,move_id:0 -msgid "Reservation" -msgstr "Reservation" - -#. module: procurement -#: model:process.node,note:procurement.process_node_procureproducts0 -msgid "The way to procurement depends on the product type." -msgstr "The way to procurement depends on the product type." - -#. module: procurement -#: view:make.procurement:0 -msgid "This wizard will plan the procurement for this product. This procurement may generate task, production orders or purchase orders." -msgstr "This wizard will plan the procurement for this product. This procurement may generate task, production orders or purchase orders." - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "is done." -msgstr "is done." - -#. module: procurement -#: field:mrp.property,name:0 -#: field:stock.warehouse.orderpoint,name:0 -msgid "Name" -msgstr "Name" - -#. module: procurement -#: selection:mrp.property,composition:0 -msgid "max" -msgstr "max" - -#. module: procurement -#: field:procurement.order,product_uos:0 -msgid "Product UoS" -msgstr "Product UoS" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "from stock: products assigned." -msgstr "from stock: products assigned." - -#. module: procurement -#: model:ir.actions.act_window,name:procurement.action_compute_schedulers -#: view:procurement.order.compute.all:0 -msgid "Compute Schedulers" -msgstr "Compute Schedulers" - -#. module: procurement -#: view:procurement.orderpoint.compute:0 -msgid "Wizard checks all the stock minimum rules and generate procurement order." -msgstr "Wizard checks all the stock minimum rules and generate procurement order." - -#. module: procurement -#: field:procurement.order,product_uom:0 -msgid "Product UoM" -msgstr "Product UoM" - -#. module: procurement -#: view:procurement.order:0 -msgid "Search Procurement" -msgstr "Search Procurement" - -#. module: procurement -#: selection:procurement.order,priority:0 -msgid "Very Urgent" -msgstr "Very Urgent" - -#. module: procurement -#: field:procurement.orderpoint.compute,automatic:0 -msgid "Automatic Orderpoint" -msgstr "Automatic Orderpoint" - -#. module: procurement -#: view:procurement.order:0 -msgid "Procurement Details" -msgstr "Procurement Details" - -#. module: procurement -#: code:addons/procurement/procurement.py:0 -#, python-format -msgid "Cannot delete Procurement Order(s) which are in %s State!' % s['state']))\n" -" return osv.osv.unlink(self, cr, uid, unlink_ids, context=context)\n" -"\n" -" def onchange_product_id(self, cr, uid, ids, product_id, context={}):\n" -" \"\"\" Finds UoM and UoS of changed product.\n" -" @param product_id: Changed id of product.\n" -" @return: Dictionary of values.\n" -" \"\"\"\n" -" if product_id:\n" -" w = self.pool.get('product.product" -msgstr "Cannot delete Procurement Order(s) which are in %s State!' % s['state']))\n" -" return osv.osv.unlink(self, cr, uid, unlink_ids, context=context)\n" -"\n" -" def onchange_product_id(self, cr, uid, ids, product_id, context={}):\n" -" \"\"\" Finds UoM and UoS of changed product.\n" -" @param product_id: Changed id of product.\n" -" @return: Dictionary of values.\n" -" \"\"\"\n" -" if product_id:\n" -" w = self.pool.get('product.product" - -#. module: procurement -#: constraint:ir.rule:0 -msgid "Rules are not supported for osv_memory objects !" -msgstr "Rules are not supported for osv_memory objects !" - diff --git a/addons/product_manufacturer/i18n/en_US.po b/addons/product_manufacturer/i18n/en_US.po deleted file mode 100644 index 91281fdacd4..00000000000 --- a/addons/product_manufacturer/i18n/en_US.po +++ /dev/null @@ -1,91 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * product_manufacturer -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-12 12:35:32+0000\n" -"PO-Revision-Date: 2010-08-12 12:35:32+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: product_manufacturer -#: model:ir.module.module,description:product_manufacturer.module_meta_information -msgid "A module that add manufacturers and attributes on the product form" -msgstr "" - -#. module: product_manufacturer -#: field:product.product,manufacturer_pref:0 -msgid "Manufacturer Product Code" -msgstr "" - -#. module: product_manufacturer -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: product_manufacturer -#: view:product.manufacturer.attribute:0 -msgid "Product Template Name" -msgstr "" - -#. module: product_manufacturer -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: product_manufacturer -#: model:ir.model,name:product_manufacturer.model_product_manufacturer_attribute -msgid "Product attributes" -msgstr "" - -#. module: product_manufacturer -#: view:product.manufacturer.attribute:0 -#: view:product.product:0 -msgid "Product Attributes" -msgstr "" - -#. module: product_manufacturer -#: field:product.manufacturer.attribute,name:0 -msgid "Attribute" -msgstr "" - -#. module: product_manufacturer -#: model:ir.model,name:product_manufacturer.model_product_product -#: field:product.manufacturer.attribute,product_id:0 -msgid "Product" -msgstr "" - -#. module: product_manufacturer -#: field:product.manufacturer.attribute,value:0 -msgid "Value" -msgstr "" - -#. module: product_manufacturer -#: view:product.product:0 -#: field:product.product,attribute_ids:0 -msgid "Attributes" -msgstr "" - -#. module: product_manufacturer -#: model:ir.module.module,shortdesc:product_manufacturer.module_meta_information -msgid "Products Attributes & Manufacturers" -msgstr "" - -#. module: product_manufacturer -#: field:product.product,manufacturer_pname:0 -msgid "Manufacturer Product Name" -msgstr "" - -#. module: product_manufacturer -#: view:product.product:0 -#: field:product.product,manufacturer:0 -msgid "Manufacturer" -msgstr "" - diff --git a/addons/project_issue/i18n/en_US.po b/addons/project_issue/i18n/en_US.po deleted file mode 100644 index 20af7b04708..00000000000 --- a/addons/project_issue/i18n/en_US.po +++ /dev/null @@ -1,936 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * project_issue -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 10:01:46+0000\n" -"PO-Revision-Date: 2010-08-20 10:01:46+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: project_issue -#: view:project.issue:0 -#: field:project.issue,priority:0 -msgid "Severity" -msgstr "Severity" - -#. module: project_issue -#: code:addons/project_issue/project_issue.py:0 -#, python-format -msgid "is Open." -msgstr "is Open." - -#. module: project_issue -#: field:project.issue.report,delay_open:0 -msgid "Avg. Delay to Open" -msgstr "Avg. Delay to Open" - -#. module: project_issue -#: view:project.issue:0 -#: view:project.issue.report:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: project_issue -#: field:project.issue,working_hours_open:0 -msgid "Working Hours to Open the Issue" -msgstr "Working Hours to Open the Issue" - -#. module: project_issue -#: view:project.issue:0 -msgid " 7 Days " -msgstr " 7 Days " - -#. module: project_issue -#: field:project.issue,date_open:0 -msgid "Opened" -msgstr "Opened" - -#. module: project_issue -#: field:project.issue.report,opening_date:0 -msgid "Date of Opening" -msgstr "Date of Opening" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "March" -msgstr "March" - -#. module: project_issue -#: field:project.issue,company_id:0 -#: view:project.issue.report:0 -#: field:project.issue.report,company_id:0 -msgid "Company" -msgstr "Company" - -#. module: project_issue -#: field:project.issue,email_cc:0 -msgid "Watchers Emails" -msgstr "Watchers Emails" - -#. module: project_issue -#: view:project.issue.report:0 -msgid "Close Working hours" -msgstr "Close Working hours" - -#. module: project_issue -#: field:project.issue,day_open:0 -msgid "Days to Open" -msgstr "Days to Open" - -#. module: project_issue -#: view:project.issue.report:0 -msgid "Date Closed" -msgstr "Date Closed" - -#. module: project_issue -#: view:project.issue.report:0 -#: field:project.issue.report,day:0 -msgid "Day" -msgstr "Day" - -#. module: project_issue -#: code:addons/project_issue/project_issue.py:0 -#, python-format -msgid "An Issue created" -msgstr "An Issue created" - -#. module: project_issue -#: field:project.issue,task_id:0 -#: view:project.issue.report:0 -#: field:project.issue.report,task_id:0 -msgid "Task" -msgstr "Task" - -#. module: project_issue -#: view:board.board:0 -msgid "Issues By Stage" -msgstr "Issues By Stage" - -#. module: project_issue -#: field:project.issue,partner_mobile:0 -msgid "Mobile" -msgstr "Mobile" - -#. module: project_issue -#: view:project.issue.report:0 -msgid "365 Days" -msgstr "365 Days" - -#. module: project_issue -#: field:project.issue,message_ids:0 -msgid "Messages" -msgstr "Messages" - -#. module: project_issue -#: model:ir.model,name:project_issue.model_project_project -#: view:project.issue:0 -#: field:project.issue,project_id:0 -#: view:project.issue.report:0 -#: field:project.issue.report,project_id:0 -msgid "Project" -msgstr "Project" - -#. module: project_issue -#: selection:project.issue,state:0 -#: selection:project.issue.report,state:0 -msgid "Cancelled" -msgstr "Cancelled" - -#. module: project_issue -#: model:crm.case.stage,name:project_issue.stage2 -msgid "Fixed" -msgstr "Fixed" - -#. module: project_issue -#: code:addons/project_issue/project_issue.py:0 -#, python-format -msgid "Warning !" -msgstr "Warning !" - -#. module: project_issue -#: field:project.issue.report,date_closed:0 -msgid "Date of Closing" -msgstr "Date of Closing" - -#. module: project_issue -#: view:project.issue:0 -msgid "Issue Tracker Search" -msgstr "Issue Tracker Search" - -#. module: project_issue -#: field:project.issue.report,user_id2losed:0 -msgid "Close Date" -msgstr "Close Date" - -#. module: project_issue -#: field:project.issue.report,working_hours_open:0 -msgid "Avg. Working Hours to Open" -msgstr "Avg. Working Hours to Open" - -#. module: project_issue -#: field:project.issue,date_action_next:0 -msgid "Next Action" -msgstr "Next Action" - -#. module: project_issue -#: help:project.project,project_escalation_id:0 -msgid "If any issue is escalated from the current Project, it will be listed under the project selected here." -msgstr "If any issue is escalated from the current Project, it will be listed under the project selected here." - -#. module: project_issue -#: field:project.issue,date_deadline:0 -msgid "Deadline" -msgstr "Deadline" - -#. module: project_issue -#: code:addons/project_issue/project_issue.py:0 -#, python-format -msgid "You cannot escalate this issue.\nThe relevant Project has not configured the Escalation Project!" -msgstr "You cannot escalate this issue.\nThe relevant Project has not configured the Escalation Project!" - -#. module: project_issue -#: view:project.issue:0 -#: field:project.issue,partner_id:0 -#: view:project.issue.report:0 -#: field:project.issue.report,partner_id:0 -msgid "Partner" -msgstr "Partner" - -#. module: project_issue -#: model:crm.case.resource.type,name:project_issue.type2 -msgid "Version 4.4" -msgstr "Version 4.4" - -#. module: project_issue -#: view:project.issue:0 -msgid "Statistics" -msgstr "Statistics" - -#. module: project_issue -#: view:project.issue:0 -msgid "Convert To Task" -msgstr "Convert To Task" - -#. module: project_issue -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: project_issue -#: view:project.issue.report:0 -#: field:project.issue.report,section_id:0 -msgid "Section" -msgstr "Section" - -#. module: project_issue -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: project_issue -#: view:project.issue:0 -#: view:project.issue.report:0 -#: field:project.issue.report,priority:0 -msgid "Priority" -msgstr "Priority" - -#. module: project_issue -#: view:project.issue:0 -msgid "Send New Email" -msgstr "Send New Email" - -#. module: project_issue -#: view:project.issue:0 -#: field:project.issue,version_id:0 -#: view:project.issue.report:0 -#: field:project.issue.report,version_id:0 -msgid "Version" -msgstr "Version" - -#. module: project_issue -#: model:ir.module.module,shortdesc:project_issue.module_meta_information -msgid "Issue Management in Project Management" -msgstr "Issue Management in Project Management" - -#. module: project_issue -#: view:board.board:0 -msgid "Pending Issues" -msgstr "Pending Issues" - -#. module: project_issue -#: view:project.issue.report:0 -msgid "Open Working Hours" -msgstr "Open Working Hours" - -#. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Issue Categories" - -#. module: project_issue -#: field:project.issue,email_from:0 -msgid "Email" -msgstr "Email" - -#. module: project_issue -#: field:project.issue,canal_id:0 -#: field:project.issue.report,canal_id:0 -msgid "Channel" -msgstr "Channel" - -#. module: project_issue -#: selection:project.issue,priority:0 -#: selection:project.issue.report,priority:0 -msgid "Lowest" -msgstr "Lowest" - -#. module: project_issue -#: model:crm.case.stage,name:project_issue.stage3 -msgid "Won't fix" -msgstr "Won't fix" - -#. module: project_issue -#: field:project.issue,create_date:0 -#: field:project.issue.report,creation_date:0 -msgid "Creation Date" -msgstr "Creation Date" - -#. module: project_issue -#: field:project.issue,partner_phone:0 -msgid "Phone" -msgstr "Phone" - -#. module: project_issue -#: view:project.issue:0 -msgid "Reset to Draft" -msgstr "Reset to Draft" - -#. module: project_issue -#: view:project.issue:0 -#: selection:project.issue,state:0 -#: view:project.issue.report:0 -#: selection:project.issue.report,state:0 -msgid "Pending" -msgstr "Pending" - -#. module: project_issue -#: model:ir.actions.act_window,name:project_issue.open_board_project_issue -#: model:ir.ui.menu,name:project_issue.menu_deshboard_project_issue -msgid "Project Issue Dashboard" -msgstr "Project Issue Dashboard" - -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "References" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "July" -msgstr "July" - -#. module: project_issue -#: view:project.issue:0 -#: field:project.issue,stage_id:0 -#: view:project.issue.report:0 -#: field:project.issue.report,stage_id:0 -msgid "Stage" -msgstr "Stage" - -#. module: project_issue -#: view:project.issue:0 -msgid "History Information" -msgstr "History Information" - -#. module: project_issue -#: field:project.issue,date_closed:0 -#: selection:project.issue,state:0 -#: selection:project.issue.report,state:0 -msgid "Closed" -msgstr "Closed" - -#. module: project_issue -#: model:ir.actions.act_window,name:project_issue.action_view_current_project_issue_tree -#: model:ir.actions.act_window,name:project_issue.action_view_pending_project_issue_tree -msgid "Project issues" -msgstr "Project issues" - -#. module: project_issue -#: view:project.issue:0 -msgid "Contact" -msgstr "Contact" - -#. module: project_issue -#: view:board.board:0 -msgid "My Board" -msgstr "My Board" - -#. module: project_issue -#: view:project.issue:0 -msgid "Communication" -msgstr "Communication" - -#. module: project_issue -#: help:project.issue,canal_id:0 -msgid "The channels represent the different communication modes available with the customer. With each commercial opportunity, you can indicate the canall which is this opportunity source." -msgstr "The channels represent the different communication modes available with the customer. With each commercial opportunity, you can indicate the canall which is this opportunity source." - -#. module: project_issue -#: code:addons/project_issue/project_issue.py:0 -#, python-format -msgid "Tasks" -msgstr "Tasks" - -#. module: project_issue -#: field:project.issue.report,nbr:0 -msgid "# of Issues" -msgstr "# of Issues" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "September" -msgstr "September" - -#. module: project_issue -#: view:project.issue:0 -msgid "Communication history" -msgstr "Communication history" - -#. module: project_issue -#: view:project.issue:0 -msgid "Issue Tracker Tree" -msgstr "Issue Tracker Tree" - -#. module: project_issue -#: help:project.issue,assigned_to:0 -msgid "This is the current user to whom the related task have been assigned" -msgstr "This is the current user to whom the related task have been assigned" - -#. module: project_issue -#: view:project.issue:0 -#: view:project.issue.report:0 -#: field:project.issue.report,month:0 -msgid "Month" -msgstr "Month" - -#. module: project_issue -#: model:ir.model,name:project_issue.model_project_issue_report -msgid "project.issue.report" -msgstr "project.issue.report" - -#. module: project_issue -#: view:project.issue:0 -msgid "Escalate" -msgstr "Escalate" - -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Feature Requests" - -#. module: project_issue -#: field:project.issue,write_date:0 -msgid "Update Date" -msgstr "Update Date" - -#. module: project_issue -#: view:project.issue:0 -msgid "Salesman" -msgstr "Salesman" - -#. module: project_issue -#: model:ir.module.module,description:project_issue.module_meta_information -msgid "\n" -" This module provide Issues/Bugs Management in Project\n" -" " -msgstr "\n" -" This module provide Issues/Bugs Management in Project\n" -" " - -#. module: project_issue -#: field:project.issue,categ_id:0 -#: view:project.issue.report:0 -#: field:project.issue.report,categ_id:0 -msgid "Category" -msgstr "Category" - -#. module: project_issue -#: view:project.issue.report:0 -msgid "#Number of Project Issues" -msgstr "#Number of Project Issues" - -#. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_stage_act -msgid "Issue Stages" -msgstr "Issue Stages" - -#. module: project_issue -#: help:project.issue,email_cc:0 -msgid "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" -msgstr "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" - -#. module: project_issue -#: model:crm.case.resource.type,name:project_issue.type1 -msgid "Version 4.2" -msgstr "Version 4.2" - -#. module: project_issue -#: selection:project.issue,state:0 -#: selection:project.issue.report,state:0 -msgid "Draft" -msgstr "Draft" - -#. module: project_issue -#: selection:project.issue,priority:0 -#: selection:project.issue.report,priority:0 -msgid "Low" -msgstr "Low" - -#. module: project_issue -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: project_issue -#: field:project.issue.report,delay_close:0 -msgid "Avg. Delay to Close" -msgstr "Avg. Delay to Close" - -#. module: project_issue -#: model:crm.case.stage,name:project_issue.stage6 -msgid "Works For Me" -msgstr "Works For Me" - -#. module: project_issue -#: view:project.issue.report:0 -msgid "7 Days" -msgstr "7 Days" - -#. module: project_issue -#: view:project.issue:0 -msgid "Status" -msgstr "Status" - -#. module: project_issue -#: view:project.issue.report:0 -msgid "#Project Issues" -msgstr "#Project Issues" - -#. module: project_issue -#: view:board.board:0 -msgid "Current Issues" -msgstr "Current Issues" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "August" -msgstr "August" - -#. module: project_issue -#: selection:project.issue,priority:0 -#: selection:project.issue.report,priority:0 -msgid "Normal" -msgstr "Normal" - -#. module: project_issue -#: view:project.issue:0 -msgid "Global CC" -msgstr "Global CC" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "June" -msgstr "June" - -#. module: project_issue -#: code:addons/project_issue/project_issue.py:0 -#, python-format -msgid "Issue " -msgstr "Issue " - -#. module: project_issue -#: view:project.issue.report:0 -msgid "30 Days" -msgstr "30 Days" - -#. module: project_issue -#: field:project.issue,day_close:0 -msgid "Days to Close" -msgstr "Days to Close" - -#. module: project_issue -#: model:crm.case.stage,name:project_issue.stage5 -msgid "Awaiting Response" -msgstr "Awaiting Response" - -#. module: project_issue -#: field:project.issue,active:0 -msgid "Active" -msgstr "Active" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "November" -msgstr "November" - -#. module: project_issue -#: view:project.issue.report:0 -msgid "Extended Filters..." -msgstr "Extended Filters..." - -#. module: project_issue -#: view:project.issue.report:0 -msgid "Search" -msgstr "Search" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "October" - -#. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_stage_act -msgid "Stages" -msgstr "Stages" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "January" -msgstr "January" - -#. module: project_issue -#: view:project.issue:0 -msgid "Feature Tracker Tree" -msgstr "Feature Tracker Tree" - -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Bugs" -msgstr "Bugs" - -#. module: project_issue -#: view:board.board:0 -msgid "Issues By State" -msgstr "Issues By State" - -#. module: project_issue -#: code:addons/project_issue/project_issue.py:0 -#, python-format -msgid "from Mailgate." -msgstr "from Mailgate." - -#. module: project_issue -#: view:project.issue:0 -#: field:project.issue,date:0 -msgid "Date" -msgstr "Date" - -#. module: project_issue -#: view:project.issue:0 -msgid " Today " -msgstr " Today " - -#. module: project_issue -#: field:project.issue,partner_address_id:0 -msgid "Partner Contact" -msgstr "Partner Contact" - -#. module: project_issue -#: model:crm.case.stage,name:project_issue.stage1 -msgid "Accepted as Bug" -msgstr "Accepted as Bug" - -#. module: project_issue -#: view:project.issue:0 -msgid "Resolution" -msgstr "Resolution" - -#. module: project_issue -#: view:project.issue:0 -msgid "History" -msgstr "History" - -#. module: project_issue -#: field:project.issue,assigned_to:0 -#: view:project.issue.report:0 -#: field:project.issue.report,assigned_to:0 -msgid "Assigned to" -msgstr "Assigned to" - -#. module: project_issue -#: field:project.project,reply_to:0 -msgid "Reply-To Email Address" -msgstr "Reply-To Email Address" - -#. module: project_issue -#: selection:project.issue,priority:0 -#: selection:project.issue.report,priority:0 -msgid "Highest" -msgstr "Highest" - -#. module: project_issue -#: view:project.issue:0 -msgid "Attachments" -msgstr "Attachments" - -#. module: project_issue -#: view:project.issue:0 -msgid "Issue Tracker Form" -msgstr "Issue Tracker Form" - -#. module: project_issue -#: field:project.issue,state:0 -#: view:project.issue.report:0 -#: field:project.issue.report,state:0 -msgid "State" -msgstr "State" - -#. module: project_issue -#: view:project.issue:0 -msgid "General" -msgstr "General" - -#. module: project_issue -#: field:project.issue.report,user_id2:0 -msgid "Assignee" -msgstr "Assignee" - -#. module: project_issue -#: view:project.issue:0 -#: view:project.issue.report:0 -msgid "Done" -msgstr "Done" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "December" -msgstr "December" - -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Cancel" - -#. module: project_issue -#: view:project.issue:0 -#: selection:project.issue.report,state:0 -msgid "Open" -msgstr "Open" - -#. module: project_issue -#: model:ir.actions.act_window,name:project_issue.act_project_project_2_project_issue_all -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_act0 -#: model:ir.ui.menu,name:project_issue.menu_project_issue_track -#: view:project.issue:0 -msgid "Issues" -msgstr "Issues" - -#. module: project_issue -#: view:project.issue:0 -msgid "In Progress" -msgstr "In Progress" - -#. module: project_issue -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: project_issue -#: model:ir.actions.act_window,name:project_issue.action_project_issue_graph_stage -#: model:ir.actions.act_window,name:project_issue.action_project_issue_graph_state -#: model:ir.model,name:project_issue.model_project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_confi -#: view:project.issue.report:0 -msgid "Project Issue" -msgstr "Project Issue" - -#. module: project_issue -#: field:project.issue,user_id:0 -#: view:project.issue.report:0 -#: field:project.issue.report,user_id:0 -msgid "Responsible" -msgstr "Responsible" - -#. module: project_issue -#: field:project.project,resource_calendar_id:0 -msgid "Working Time" -msgstr "Working Time" - -#. module: project_issue -#: model:crm.case.stage,name:project_issue.stage4 -msgid "Invalid" -msgstr "Invalid" - -#. module: project_issue -#: view:project.issue:0 -#: view:project.issue.report:0 -msgid "Current" -msgstr "Current" - -#. module: project_issue -#: help:project.project,resource_calendar_id:0 -msgid "Timetable working hours to adjust the gantt diagram report" -msgstr "Timetable working hours to adjust the gantt diagram report" - -#. module: project_issue -#: view:project.issue:0 -msgid "Details" -msgstr "Details" - -#. module: project_issue -#: view:project.issue:0 -msgid "Reply" -msgstr "Reply" - -#. module: project_issue -#: view:project.issue:0 -msgid "Feature Tracker Search" -msgstr "Feature Tracker Search" - -#. module: project_issue -#: view:project.issue:0 -#: field:project.issue,description:0 -msgid "Description" -msgstr "Description" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "May" -msgstr "May" - -#. module: project_issue -#: model:ir.actions.act_window,name:project_issue.action_project_issue_report -#: model:ir.ui.menu,name:project_issue.menu_project_issue_report_tree -msgid "Issue Analysis" -msgstr "Issue Analysis" - -#. module: project_issue -#: view:project.issue.report:0 -#: field:project.issue.report,email:0 -msgid "# Emails" -msgstr "# Emails" - -#. module: project_issue -#: field:project.issue,partner_name:0 -msgid "Employee's Name" -msgstr "Employee's Name" - -#. module: project_issue -#: view:project.issue:0 -msgid "Emails" -msgstr "Emails" - -#. module: project_issue -#: help:project.issue,state:0 -msgid "The state is set to 'Draft', when a case is created. \n" -"If the case is in progress the state is set to 'Open'. \n" -"When the case is over, the state is set to 'Done'. \n" -"If the case needs to be reviewed then the state is set to 'Pending'." -msgstr "The state is set to 'Draft', when a case is created. \n" -"If the case is in progress the state is set to 'Open'. \n" -"When the case is over, the state is set to 'Done'. \n" -"If the case needs to be reviewed then the state is set to 'Pending'." - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "February" -msgstr "February" - -#. module: project_issue -#: view:project.issue:0 -#: field:project.issue,name:0 -msgid "Name" -msgstr "Name" - -#. module: project_issue -#: view:project.issue:0 -msgid "Feature description" -msgstr "Feature description" - -#. module: project_issue -#: field:project.project,project_escalation_id:0 -msgid "Project Escalation" -msgstr "Project Escalation" - -#. module: project_issue -#: help:project.issue,section_id:0 -msgid "Sales team to which Case belongs to. Define Responsible user and Email account for mail gateway." -msgstr "Sales team to which Case belongs to. Define Responsible user and Email account for mail gateway." - -#. module: project_issue -#: help:project.issue,email_from:0 -msgid "These people will receive email." -msgstr "These people will receive email." - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "April" -msgstr "April" - -#. module: project_issue -#: field:project.issue,working_hours_close:0 -msgid "Working Hours to Close the Issue" -msgstr "Working Hours to Close the Issue" - -#. module: project_issue -#: code:addons/project_issue/project_issue.py:0 -#, python-format -msgid "is Closed." -msgstr "is Closed." - -#. module: project_issue -#: field:project.issue,id:0 -msgid "ID" -msgstr "ID" - -#. module: project_issue -#: help:project.issue.report,delay_close:0 -#: help:project.issue.report,delay_open:0 -msgid "Number of Days to close the project issue" -msgstr "Number of Days to close the project issue" - -#. module: project_issue -#: selection:project.issue,state:0 -msgid "Todo" -msgstr "Todo" - -#. module: project_issue -#: field:project.issue.report,working_hours_close:0 -msgid "Avg. Working Hours to Close" -msgstr "Avg. Working Hours to Close" - -#. module: project_issue -#: selection:project.issue,priority:0 -#: selection:project.issue.report,priority:0 -msgid "High" -msgstr "High" - -#. module: project_issue -#: field:project.issue,section_id:0 -msgid "Sales Team" -msgstr "Sales Team" - -#. module: project_issue -#: field:project.issue,date_action_last:0 -msgid "Last Action" -msgstr "Last Action" - -#. module: project_issue -#: view:project.issue.report:0 -#: field:project.issue.report,name:0 -msgid "Year" -msgstr "Year" - -#. module: project_issue -#: field:project.issue,duration:0 -msgid "Duration" -msgstr "Duration" - diff --git a/addons/project_issue_sheet/i18n/en_US.po b/addons/project_issue_sheet/i18n/en_US.po deleted file mode 100644 index 020118f5fc6..00000000000 --- a/addons/project_issue_sheet/i18n/en_US.po +++ /dev/null @@ -1,86 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * project_issue_sheet -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 10:09:09+0000\n" -"PO-Revision-Date: 2010-08-20 10:09:09+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: project_issue_sheet -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: project_issue_sheet -#: model:ir.module.module,description:project_issue_sheet.module_meta_information -msgid "\n" -" This module adds the Timesheet support for the Issues/Bugs Management in Project\n" -" " -msgstr "\n" -" This module adds the Timesheet support for the Issues/Bugs Management in Project\n" -" " - -#. module: project_issue_sheet -#: model:ir.model,name:project_issue_sheet.model_account_analytic_line -msgid "Analytic Line" -msgstr "Analytic Line" - -#. module: project_issue_sheet -#: model:ir.model,name:project_issue_sheet.model_project_issue -msgid "Project Issue" -msgstr "Project Issue" - -#. module: project_issue_sheet -#: model:ir.model,name:project_issue_sheet.model_hr_analytic_timesheet -msgid "Timesheet Line" -msgstr "Timesheet Line" - -#. module: project_issue_sheet -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: project_issue_sheet -#: view:project.issue:0 -msgid "Timesheet" -msgstr "Timesheet" - -#. module: project_issue_sheet -#: field:project.issue,analytic_account_id:0 -msgid "Analytic Account" -msgstr "Analytic Account" - -#. module: project_issue_sheet -#: view:project.issue:0 -msgid "Worklogs" -msgstr "Worklogs" - -#. module: project_issue_sheet -#: field:account.analytic.line,create_date:0 -msgid "Create Date" -msgstr "Create Date" - -#. module: project_issue_sheet -#: field:project.issue,timesheet_ids:0 -msgid "Timesheets" -msgstr "Timesheets" - -#. module: project_issue_sheet -#: model:ir.module.module,shortdesc:project_issue_sheet.module_meta_information -msgid "Add the Timesheet support for Issue Management in Project Management" -msgstr "Add the Timesheet support for Issue Management in Project Management" - -#. module: project_issue_sheet -#: field:hr.analytic.timesheet,issue_id:0 -msgid "Issue" -msgstr "Issue" - diff --git a/addons/project_long_term/i18n/en_US.po b/addons/project_long_term/i18n/en_US.po deleted file mode 100644 index 3e64d59a5c1..00000000000 --- a/addons/project_long_term/i18n/en_US.po +++ /dev/null @@ -1,550 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * project_long_term -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 10:27:00+0000\n" -"PO-Revision-Date: 2010-08-20 10:27:00+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: project_long_term -#: model:ir.module.module,shortdesc:project_long_term.module_meta_information -msgid "Long Term Project Management" -msgstr "Long Term Project Management" - -#. module: project_long_term -#: view:project.compute.phases:0 -#: view:project.compute.tasks:0 -msgid "Compute Scheduling of Phases" -msgstr "Compute Scheduling of Phases" - -#. module: project_long_term -#: view:project.phase:0 -#: field:project.phase,next_phase_ids:0 -msgid "Next Phases" -msgstr "Next Phases" - -#. module: project_long_term -#: view:project.phase:0 -msgid "Project's Tasks" -msgstr "Project's Tasks" - -#. module: project_long_term -#: model:ir.actions.act_window,name:project_long_term.act_project_phases -#: view:project.phase:0 -msgid "Phases" -msgstr "Phases" - -#. module: project_long_term -#: view:project.compute.phases:0 -msgid "_Compute" -msgstr "_Compute" - -#. module: project_long_term -#: view:project.phase:0 -#: view:project.resource.allocation:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: project_long_term -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: project_long_term -#: constraint:project.project:0 -msgid "Error! project start-date must be lower then project end-date." -msgstr "Error! project start-date must be lower then project end-date." - -#. module: project_long_term -#: field:project.compute.phases,target_project:0 -msgid "Schedule" -msgstr "Schedule" - -#. module: project_long_term -#: model:ir.module.module,description:project_long_term.module_meta_information -msgid "\n" -"\n" -" Long Term Project management module that tracks planning, scheduling, resources allocation.\n" -" Mainly used with Big project management.\n" -" - Project Phases will be maintained by Manager of the project\n" -" - Compute Phase Scheduling: Compute start date and end date of the phases which are in draft,open and pending state of the project given.\n" -" If no project given then all the draft,open and pending state phases will be taken\n" -" - Compute Task Scheduling: This works same as the scheduler button on project.phase. It takes the project as argument and computes all the open,draft and pending tasks\n" -" - Schedule Tasks: All the tasks which are in draft,pending and open state are scheduled with taking the phase's start date\n" -"\n" -" " -msgstr "\n" -"\n" -" Long Term Project management module that tracks planning, scheduling, resources allocation.\n" -" Mainly used with Big project management.\n" -" - Project Phases will be maintained by Manager of the project\n" -" - Compute Phase Scheduling: Compute start date and end date of the phases which are in draft,open and pending state of the project given.\n" -" If no project given then all the draft,open and pending state phases will be taken\n" -" - Compute Task Scheduling: This works same as the scheduler button on project.phase. It takes the project as argument and computes all the open,draft and pending tasks\n" -" - Schedule Tasks: All the tasks which are in draft,pending and open state are scheduled with taking the phase's start date\n" -"\n" -" " - -#. module: project_long_term -#: model:ir.actions.act_window,name:project_long_term.act_resouce_allocation -#: model:ir.ui.menu,name:project_long_term.menu_resouce_allocation -#: view:project.resource.allocation:0 -msgid "Resource Allocations" -msgstr "Resource Allocations" - -#. module: project_long_term -#: view:project.resource.allocation:0 -msgid "R.A." -msgstr "R.A." - -#. module: project_long_term -#: constraint:project.project:0 -msgid "Error! You cannot assign escalation to the same project!" -msgstr "Error! You cannot assign escalation to the same project!" - -#. module: project_long_term -#: code:addons/project_long_term/project_long_term.py:0 -#, python-format -msgid "Day" -msgstr "Day" - -#. module: project_long_term -#: model:ir.model,name:project_long_term.model_project_task -msgid "Task" -msgstr "Task" - -#. module: project_long_term -#: selection:project.compute.phases,target_project:0 -msgid "Compute a Single Project" -msgstr "Compute a Single Project" - -#. module: project_long_term -#: view:project.phase:0 -#: field:project.phase,previous_phase_ids:0 -msgid "Previous Phases" -msgstr "Previous Phases" - -#. module: project_long_term -#: help:project.phase,product_uom:0 -msgid "UoM (Unit of Measure) is the unit of measurement for Duration" -msgstr "UoM (Unit of Measure) is the unit of measurement for Duration" - -#. module: project_long_term -#: model:ir.model,name:project_long_term.model_project_project -#: field:project.compute.phases,project_id:0 -#: field:project.compute.tasks,project_id:0 -#: view:project.phase:0 -#: field:project.phase,project_id:0 -msgid "Project" -msgstr "Project" - -#. module: project_long_term -#: code:addons/project_long_term/wizard/project_compute_phases.py:0 -#, python-format -msgid "Error!" -msgstr "Error!" - -#. module: project_long_term -#: selection:project.phase,state:0 -msgid "Cancelled" -msgstr "Cancelled" - -#. module: project_long_term -#: field:project.resource.allocation,useability:0 -msgid "Usability" -msgstr "Usability" - -#. module: project_long_term -#: help:project.resource.allocation,useability:0 -msgid "Usability of this resource for this project phase in percentage (=50%)" -msgstr "Usability of this resource for this project phase in percentage (=50%)" - -#. module: project_long_term -#: help:project.phase,date_end:0 -#: field:project.resource.allocation,phase_id_date_end:0 -msgid "It's computed by the scheduler according to the start date and the duration." -msgstr "It's computed by the scheduler according to the start date and the duration." - -#. module: project_long_term -#: view:project.compute.phases:0 -msgid "This wizard will schedule phases for all or specified project" -msgstr "This wizard will schedule phases for all or specified project" - -#. module: project_long_term -#: view:project.phase:0 -msgid "Planning" -msgstr "Planning" - -#. module: project_long_term -#: view:project.compute.phases:0 -#: view:project.compute.tasks:0 -msgid "_Cancel" -msgstr "_Cancel" - -#. module: project_long_term -#: model:ir.actions.act_window,name:project_long_term.action_project_compute_phases -#: model:ir.ui.menu,name:project_long_term.menu_compute_phase -msgid "Compute Phase Scheduling" -msgstr "Compute Phase Scheduling" - -#. module: project_long_term -#: constraint:res.users:0 -msgid "The chosen company is not in the allowed companies for this user" -msgstr "The chosen company is not in the allowed companies for this user" - -#. module: project_long_term -#: constraint:account.analytic.account:0 -msgid "Error! You can not create recursive analytic accounts." -msgstr "Error! You can not create recursive analytic accounts." - -#. module: project_long_term -#: view:project.phase:0 -msgid "Dates" -msgstr "Dates" - -#. module: project_long_term -#: view:project.phase:0 -#: field:project.phase,state:0 -msgid "State" -msgstr "State" - -#. module: project_long_term -#: field:project.phase,product_uom:0 -msgid "Duration UoM" -msgstr "Duration UoM" - -#. module: project_long_term -#: model:ir.actions.act_window,name:project_long_term.action_project_compute_tasks -#: model:ir.ui.menu,name:project_long_term.menu_compute_tasks -msgid "Compute Task Scheduling" -msgstr "Compute Task Scheduling" - -#. module: project_long_term -#: model:ir.model,name:project_long_term.model_project_resource_allocation -#: view:project.phase:0 -#: view:project.resource.allocation:0 -msgid "Project Resource Allocation" -msgstr "Project Resource Allocation" - -#. module: project_long_term -#: model:ir.ui.menu,name:project_long_term.menu_pm_resources_project1 -#: model:ir.ui.menu,name:project_long_term.menu_view_resource -msgid "Resources" -msgstr "Resources" - -#. module: project_long_term -#: model:ir.actions.act_window,name:project_long_term.project_phase_task_list -msgid "Related Tasks" -msgstr "Related Tasks" - -#. module: project_long_term -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: project_long_term -#: help:project.phase,constraint_date_start:0 -msgid "force the phase to start after this date" -msgstr "force the phase to start after this date" - -#. module: project_long_term -#: field:project.phase,task_ids:0 -msgid "Project Tasks" -msgstr "Project Tasks" - -#. module: project_long_term -#: field:project.phase,resource_ids:0 -msgid "Project Resources" -msgstr "Project Resources" - -#. module: project_long_term -#: view:project.schedule.tasks:0 -msgid "_Ok" -msgstr "_Ok" - -#. module: project_long_term -#: constraint:project.phase:0 -msgid "Phase start-date must be lower than phase end-date." -msgstr "Phase start-date must be lower than phase end-date." - -#. module: project_long_term -#: model:ir.model,name:project_long_term.model_project_schedule_tasks -msgid "project.schedule.tasks" -msgstr "project.schedule.tasks" - -#. module: project_long_term -#: view:project.phase:0 -#: field:project.phase,constraint_date_start:0 -#: field:project.phase,date_start:0 -msgid "Start Date" -msgstr "Start Date" - -#. module: project_long_term -#: view:project.phase:0 -msgid "Resource Allocation" -msgstr "Resource Allocation" - -#. module: project_long_term -#: help:project.phase,constraint_date_end:0 -msgid "force the phase to finish before this date" -msgstr "force the phase to finish before this date" - -#. module: project_long_term -#: code:addons/project_long_term/wizard/project_compute_tasks.py:0 -#, python-format -msgid "Project must have members assigned !" -msgstr "Project must have members assigned !" - -#. module: project_long_term -#: view:project.phase:0 -#: selection:project.phase,state:0 -msgid "Draft" -msgstr "Draft" - -#. module: project_long_term -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: project_long_term -#: view:project.phase:0 -#: selection:project.phase,state:0 -msgid "Pending" -msgstr "Pending" - -#. module: project_long_term -#: constraint:project.task:0 -msgid "Error! Task start-date must be lower then task end-date." -msgstr "Error! Task start-date must be lower then task end-date." - -#. module: project_long_term -#: view:project.phase:0 -msgid "Remaining Hours" -msgstr "Remaining Hours" - -#. module: project_long_term -#: view:project.phase:0 -msgid "User" -msgstr "User" - -#. module: project_long_term -#: view:project.phase:0 -msgid "Task Detail" -msgstr "Task Detail" - -#. module: project_long_term -#: view:project.compute.tasks:0 -msgid "Compute" -msgstr "Compute" - -#. module: project_long_term -#: model:ir.model,name:project_long_term.model_project_compute_tasks -msgid "Project Compute Tasks" -msgstr "Project Compute Tasks" - -#. module: project_long_term -#: code:addons/project_long_term/wizard/project_compute_phases.py:0 -#, python-format -msgid "No responsible person assigned !" -msgstr "No responsible person assigned !" - -#. module: project_long_term -#: code:addons/project_long_term/wizard/project_compute_tasks.py:0 -#: code:addons/project_long_term/wizard/project_schedule_tasks.py:0 -#, python-format -msgid "Error" -msgstr "Error" - -#. module: project_long_term -#: code:addons/project_long_term/wizard/project_compute_phases.py:0 -#, python-format -msgid "You must assign a responsible person for phase '%s' !" -msgstr "You must assign a responsible person for phase '%s' !" - -#. module: project_long_term -#: view:project.phase:0 -msgid "Constraints" -msgstr "Constraints" - -#. module: project_long_term -#: help:project.phase,sequence:0 -msgid "Gives the sequence order when displaying a list of phases." -msgstr "Gives the sequence order when displaying a list of phases." - -#. module: project_long_term -#: model:ir.actions.act_window,name:project_long_term.act_project_phase -#: model:ir.actions.act_window,name:project_long_term.act_project_phase_list -#: model:ir.ui.menu,name:project_long_term.menu_project_phase -#: view:project.phase:0 -#: field:project.project,phase_ids:0 -msgid "Project Phases" -msgstr "Project Phases" - -#. module: project_long_term -#: view:project.phase:0 -#: selection:project.phase,state:0 -msgid "Done" -msgstr "Done" - -#. module: project_long_term -#: view:project.phase:0 -msgid "Cancel" -msgstr "Cancel" - -#. module: project_long_term -#: view:project.phase:0 -#: selection:project.phase,state:0 -msgid "In Progress" -msgstr "In Progress" - -#. module: project_long_term -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: project_long_term -#: code:addons/project_long_term/wizard/project_schedule_tasks.py:0 -#, python-format -msgid "Phase must have resources assigned !" -msgstr "Phase must have resources assigned !" - -#. module: project_long_term -#: view:project.phase:0 -msgid "Other Info" -msgstr "Other Info" - -#. module: project_long_term -#: field:project.phase,responsible_id:0 -msgid "Responsible" -msgstr "Responsible" - -#. module: project_long_term -#: view:project.phase:0 -msgid "Start Phase" -msgstr "Start Phase" - -#. module: project_long_term -#: code:addons/project_long_term/wizard/project_compute_phases.py:0 -#, python-format -msgid "Please Specify Project to be schedule" -msgstr "Please Specify Project to be schedule" - -#. module: project_long_term -#: view:project.schedule.tasks:0 -msgid "Task Scheduling completed successfully." -msgstr "Task Scheduling completed successfully." - -#. module: project_long_term -#: view:project.resource.allocation:0 -msgid "Phase" -msgstr "Phase" - -#. module: project_long_term -#: help:project.phase,date_start:0 -#: field:project.resource.allocation,phase_id_date_start:0 -msgid "It's computed by the scheduler according the project date or the end date of the previous phase." -msgstr "It's computed by the scheduler according the project date or the end date of the previous phase." - -#. module: project_long_term -#: help:project.phase,state:0 -msgid "If the phase is created the state 'Draft'.\n" -" If the phase is started, the state becomes 'In Progress'.\n" -" If review is needed the phase is in 'Pending' state. \n" -" If the phase is over, the states is set to 'Done'." -msgstr "If the phase is created the state 'Draft'.\n" -" If the phase is started, the state becomes 'In Progress'.\n" -" If review is needed the phase is in 'Pending' state. \n" -" If the phase is over, the states is set to 'Done'." - -#. module: project_long_term -#: field:project.phase,constraint_date_end:0 -#: field:project.phase,date_end:0 -msgid "End Date" -msgstr "End Date" - -#. module: project_long_term -#: view:project.resource.allocation:0 -#: field:project.resource.allocation,resource_id:0 -msgid "Resource" -msgstr "Resource" - -#. module: project_long_term -#: field:project.phase,name:0 -msgid "Name" -msgstr "Name" - -#. module: project_long_term -#: model:ir.ui.menu,name:project_long_term.menu_view_resource_calendar -msgid "Working Period" -msgstr "Working Period" - -#. module: project_long_term -#: model:ir.ui.menu,name:project_long_term.menu_phase_schedule -#: view:project.phase:0 -msgid "Scheduling" -msgstr "Scheduling" - -#. module: project_long_term -#: model:ir.model,name:project_long_term.model_project_phase -#: view:project.phase:0 -#: field:project.resource.allocation,phase_id:0 -#: field:project.task,phase_id:0 -msgid "Project Phase" -msgstr "Project Phase" - -#. module: project_long_term -#: model:ir.model,name:project_long_term.model_project_compute_phases -msgid "Project Compute Phases" -msgstr "Project Compute Phases" - -#. module: project_long_term -#: field:project.schedule.tasks,msg:0 -msgid "Message" -msgstr "Message" - -#. module: project_long_term -#: constraint:project.phase:0 -msgid "Loops in phases not allowed" -msgstr "Loops in phases not allowed" - -#. module: project_long_term -#: field:project.phase,sequence:0 -msgid "Sequence" -msgstr "Sequence" - -#. module: project_long_term -#: selection:project.compute.phases,target_project:0 -msgid "Compute All Projects" -msgstr "Compute All Projects" - -#. module: project_long_term -#: model:ir.ui.menu,name:project_long_term.menu_view_resource_calendar_leaves -msgid "Resource Leaves" -msgstr "Resource Leaves" - -#. module: project_long_term -#: model:ir.actions.act_window,name:project_long_term.action_project_schedule_tasks -#: view:project.phase:0 -#: view:project.schedule.tasks:0 -msgid "Schedule Tasks" -msgstr "Schedule Tasks" - -#. module: project_long_term -#: help:project.phase,duration:0 -msgid "By default in days" -msgstr "By default in days" - -#. module: project_long_term -#: field:project.phase,duration:0 -msgid "Duration" -msgstr "Duration" - diff --git a/addons/project_messages/i18n/en_US.po b/addons/project_messages/i18n/en_US.po deleted file mode 100644 index dfb3b44c5b5..00000000000 --- a/addons/project_messages/i18n/en_US.po +++ /dev/null @@ -1,118 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * project_messages -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 10:34:15+0000\n" -"PO-Revision-Date: 2010-08-20 10:34:15+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: project_messages -#: field:project.messages,to_id:0 -msgid "To" -msgstr "To" - -#. module: project_messages -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: project_messages -#: field:project.messages,from_id:0 -msgid "From" -msgstr "From" - -#. module: project_messages -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: project_messages -#: model:ir.actions.act_window,name:project_messages.messages_form -#: model:ir.ui.menu,name:project_messages.menu_messages_form -#: view:project.messages:0 -msgid "Communication Messages" -msgstr "Communication Messages" - -#. module: project_messages -#: help:project.messages,to_id:0 -msgid "Keep this empty to broadcast the message." -msgstr "Keep this empty to broadcast the message." - -#. module: project_messages -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: project_messages -#: model:ir.model,name:project_messages.model_project_messages -msgid "project.messages" -msgstr "project.messages" - -#. module: project_messages -#: view:project.messages:0 -#: view:project.project:0 -#: field:project.project,message_ids:0 -msgid "Messages" -msgstr "Messages" - -#. module: project_messages -#: model:ir.model,name:project_messages.model_project_project -#: view:project.messages:0 -#: field:project.messages,project_id:0 -msgid "Project" -msgstr "Project" - -#. module: project_messages -#: view:project.messages:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: project_messages -#: model:ir.module.module,description:project_messages.module_meta_information -msgid "\n" -" This module provides the functionality to send messages within a project.\n" -" A user can send messages individually to other user. He can even broadcast\n" -" it to all the users.\n" -" " -msgstr "\n" -" This module provides the functionality to send messages within a project.\n" -" A user can send messages individually to other user. He can even broadcast\n" -" it to all the users.\n" -" " - -#. module: project_messages -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: project_messages -#: view:project.messages:0 -msgid "Message To" -msgstr "Message To" - -#. module: project_messages -#: view:project.messages:0 -#: field:project.messages,message:0 -#: view:project.project:0 -msgid "Message" -msgstr "Message" - -#. module: project_messages -#: view:project.messages:0 -msgid "Message From" -msgstr "Message From" - -#. module: project_messages -#: model:ir.module.module,shortdesc:project_messages.module_meta_information -msgid "In-Project Messaging System" -msgstr "In-Project Messaging System" - diff --git a/addons/resource/i18n/en_US.po b/addons/resource/i18n/en_US.po deleted file mode 100644 index 8c4932c4a6d..00000000000 --- a/addons/resource/i18n/en_US.po +++ /dev/null @@ -1,318 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * resource -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-18 06:50:02+0000\n" -"PO-Revision-Date: 2010-08-18 06:50:02+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: resource -#: help:resource.calendar.leaves,resource_id:0 -msgid "If empty, this is a generic holiday for the company. If a resource is set, the holiday/leave is only for this resource" -msgstr "If empty, this is a generic holiday for the company. If a resource is set, the holiday/leave is only for this resource" - -#. module: resource -#: selection:resource.calendar.attendance,dayofweek:0 -msgid "Friday" -msgstr "Friday" - -#. module: resource -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: resource -#: field:resource.resource,resource_type:0 -msgid "Resource Type" -msgstr "Resource Type" - -#. module: resource -#: model:ir.model,name:resource.model_resource_calendar_leaves -#: view:resource.calendar.leaves:0 -msgid "Leave Detail" -msgstr "Leave Detail" - -#. module: resource -#: model:ir.actions.act_window,name:resource.resource_calendar_resources_leaves -msgid "Resources Leaves" -msgstr "Resources Leaves" - -#. module: resource -#: field:resource.calendar,attendance_ids:0 -#: view:resource.calendar.attendance:0 -#: view:resource.calendar.leaves:0 -msgid "Working Time" -msgstr "Working Time" - -#. module: resource -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: resource -#: selection:resource.calendar.attendance,dayofweek:0 -msgid "Thursday" -msgstr "Thursday" - -#. module: resource -#: view:resource.calendar:0 -#: view:resource.calendar.leaves:0 -#: view:resource.resource:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: resource -#: selection:resource.calendar.attendance,dayofweek:0 -msgid "Sunday" -msgstr "Sunday" - -#. module: resource -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: resource -#: view:resource.resource:0 -msgid "Search Resource" -msgstr "Search Resource" - -#. module: resource -#: view:resource.resource:0 -msgid "Type" -msgstr "Type" - -#. module: resource -#: model:ir.actions.act_window,name:resource.action_resource_resource_tree -#: view:resource.resource:0 -msgid "Resources" -msgstr "Resources" - -#. module: resource -#: field:resource.calendar,manager:0 -msgid "Workgroup manager" -msgstr "Workgroup manager" - -#. module: resource -#: view:resource.calendar:0 -msgid "Search Working Period" -msgstr "Search Working Period" - -#. module: resource -#: selection:resource.calendar.attendance,dayofweek:0 -msgid "Monday" -msgstr "Monday" - -#. module: resource -#: model:ir.model,name:resource.model_resource_calendar -msgid "Resource Calendar" -msgstr "Resource Calendar" - -#. module: resource -#: field:resource.calendar,company_id:0 -#: view:resource.calendar.leaves:0 -#: field:resource.calendar.leaves,company_id:0 -#: view:resource.resource:0 -#: field:resource.resource,company_id:0 -msgid "Company" -msgstr "Company" - -#. module: resource -#: selection:resource.resource,resource_type:0 -msgid "Material" -msgstr "Material" - -#. module: resource -#: field:resource.calendar.attendance,dayofweek:0 -msgid "Day of week" -msgstr "Day of week" - -#. module: resource -#: field:resource.calendar.attendance,date_from:0 -msgid "Starting date" -msgstr "Starting date" - -#. module: resource -#: view:resource.resource:0 -#: field:resource.resource,user_id:0 -msgid "User" -msgstr "User" - -#. module: resource -#: view:resource.calendar.leaves:0 -msgid "Date" -msgstr "Date" - -#. module: resource -#: view:resource.calendar.leaves:0 -msgid "Search Working Period Leaves" -msgstr "Search Working Period Leaves" - -#. module: resource -#: field:resource.calendar.leaves,date_to:0 -msgid "End Date" -msgstr "End Date" - -#. module: resource -#: model:ir.actions.act_window,name:resource.resource_calendar_closing_days -msgid "Closing Days" -msgstr "Closing Days" - -#. module: resource -#: model:ir.module.module,shortdesc:resource.module_meta_information -#: view:resource.calendar.leaves:0 -#: field:resource.calendar.leaves,resource_id:0 -#: view:resource.resource:0 -msgid "Resource" -msgstr "Resource" - -#. module: resource -#: view:resource.calendar:0 -#: field:resource.calendar,name:0 -#: field:resource.calendar.attendance,name:0 -#: view:resource.calendar.leaves:0 -#: field:resource.calendar.leaves,name:0 -#: field:resource.resource,name:0 -msgid "Name" -msgstr "Name" - -#. module: resource -#: model:ir.module.module,description:resource.module_meta_information -msgid "\n" -" Module for resource management\n" -" A resource represent something that can be scheduled\n" -" (a developer on a task or a workcenter on manufacturing orders).\n" -" This module manages a resource calendar associated to every resource.\n" -" It also manages the leaves of every resource.\n" -"\n" -" " -msgstr "\n" -" Module for resource management\n" -" A resource represent something that can be scheduled\n" -" (a developer on a task or a workcenter on manufacturing orders).\n" -" This module manages a resource calendar associated to every resource.\n" -" It also manages the leaves of every resource.\n" -"\n" -" " - -#. module: resource -#: help:resource.resource,active:0 -msgid "If the active field is set to true, it will allow you to hide the resource record without removing it." -msgstr "If the active field is set to true, it will allow you to hide the resource record without removing it." - -#. module: resource -#: selection:resource.calendar.attendance,dayofweek:0 -msgid "Wednesday" -msgstr "Wednesday" - -#. module: resource -#: model:ir.actions.act_window,name:resource.action_resource_calendar_form -#: view:resource.calendar:0 -msgid "Working Period" -msgstr "Working Period" - -#. module: resource -#: model:ir.model,name:resource.model_resource_resource -msgid "Resource Detail" -msgstr "Resource Detail" - -#. module: resource -#: field:resource.resource,active:0 -msgid "Active" -msgstr "Active" - -#. module: resource -#: field:resource.calendar.attendance,calendar_id:0 -msgid "Resource's Calendar" -msgstr "Resource's Calendar" - -#. module: resource -#: help:resource.resource,user_id:0 -msgid "Related user name for the resource to manage its access." -msgstr "Related user name for the resource to manage its access." - -#. module: resource -#: help:resource.resource,calendar_id:0 -msgid "Define the schedule of resource" -msgstr "Define the schedule of resource" - -#. module: resource -#: field:resource.calendar.attendance,hour_from:0 -msgid "Work from" -msgstr "Work from" - -#. module: resource -#: field:resource.resource,code:0 -msgid "Code" -msgstr "Code" - -#. module: resource -#: field:resource.calendar.attendance,hour_to:0 -msgid "Work to" -msgstr "Work to" - -#. module: resource -#: help:resource.resource,time_efficiency:0 -msgid "This field depict the efficiency of the resource to complete tasks. e.g resource put alone on a phase of 5 days with 5 tasks assigned to him, will show a load of 100% for this phase by default, but if we put a efficency of 200%, then his load will only be 50%." -msgstr "This field depict the efficiency of the resource to complete tasks. e.g resource put alone on a phase of 5 days with 5 tasks assigned to him, will show a load of 100% for this phase by default, but if we put a efficency of 200%, then his load will only be 50%." - -#. module: resource -#: selection:resource.calendar.attendance,dayofweek:0 -msgid "Tuesday" -msgstr "Tuesday" - -#. module: resource -#: field:resource.calendar.leaves,calendar_id:0 -#: field:resource.resource,calendar_id:0 -msgid "Working time" -msgstr "Working time" - -#. module: resource -#: model:ir.actions.act_window,name:resource.action_resource_calendar_leave_tree -msgid "Resource Leaves" -msgstr "Resource Leaves" - -#. module: resource -#: view:resource.calendar:0 -msgid "Manager" -msgstr "Manager" - -#. module: resource -#: code:addons/resource/faces/resource.py:0 -#, python-format -msgid "(vacation)" -msgstr "(vacation)" - -#. module: resource -#: field:resource.resource,time_efficiency:0 -msgid "Efficiency factor" -msgstr "Efficiency factor" - -#. module: resource -#: selection:resource.resource,resource_type:0 -msgid "Human" -msgstr "Human" - -#. module: resource -#: model:ir.model,name:resource.model_resource_calendar_attendance -msgid "Work Detail" -msgstr "Work Detail" - -#. module: resource -#: field:resource.calendar.leaves,date_from:0 -msgid "Start Date" -msgstr "Start Date" - -#. module: resource -#: selection:resource.calendar.attendance,dayofweek:0 -msgid "Saturday" -msgstr "Saturday" - diff --git a/addons/sale_mrp/i18n/en_US.po b/addons/sale_mrp/i18n/en_US.po deleted file mode 100644 index 44811d945f5..00000000000 --- a/addons/sale_mrp/i18n/en_US.po +++ /dev/null @@ -1,67 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * sale_mrp -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-06-28 09:21:25+0000\n" -"PO-Revision-Date: 2010-06-28 09:21:25+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: sale_mrp -#: help:mrp.production,sale_ref:0 -msgid "Indicate the Customer Reference from sale order." -msgstr "" - -#. module: sale_mrp -#: help:mrp.production,sale_name:0 -msgid "Indicate the name of sale order." -msgstr "" - -#. module: sale_mrp -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: sale_mrp -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: sale_mrp -#: field:mrp.production,sale_name:0 -msgid "Sale Name" -msgstr "" - -#. module: sale_mrp -#: model:ir.model,name:sale_mrp.model_mrp_production -msgid "Manufacturing Order" -msgstr "" - -#. module: sale_mrp -#: model:ir.module.module,description:sale_mrp.module_meta_information -msgid "\n" -" This module provides facility to the user to install mrp and sale modules\n" -" at a time. It is basically used when we want to keep track of production\n" -" orders generated from sale orders.\n" -" It adds sale name and sale Reference on production order\n" -" " -msgstr "" - -#. module: sale_mrp -#: field:mrp.production,sale_ref:0 -msgid "Sale Reference" -msgstr "" - -#. module: sale_mrp -#: model:ir.module.module,shortdesc:sale_mrp.module_meta_information -msgid "Sales and MRP Management" -msgstr "" - diff --git a/addons/sale_order_dates/i18n/en_US.po b/addons/sale_order_dates/i18n/en_US.po deleted file mode 100644 index 4d6da819818..00000000000 --- a/addons/sale_order_dates/i18n/en_US.po +++ /dev/null @@ -1,56 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * sale_order_dates -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-09 12:40:22+0000\n" -"PO-Revision-Date: 2010-08-09 12:40:22+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: sale_order_dates -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: sale_order_dates -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: sale_order_dates -#: model:ir.module.module,shortdesc:sale_order_dates.module_meta_information -msgid "Sale Order Dates" -msgstr "" - -#. module: sale_order_dates -#: field:sale.order,commitment_date:0 -msgid "Commitment Date" -msgstr "" - -#. module: sale_order_dates -#: model:ir.model,name:sale_order_dates.model_sale_order -msgid "Sale Order" -msgstr "" - -#. module: sale_order_dates -#: field:sale.order,effective_date:0 -msgid "Effective Date" -msgstr "" - -#. module: sale_order_dates -#: model:ir.module.module,description:sale_order_dates.module_meta_information -msgid "Add commitment, requested and effective dates on the sale order.\n" -msgstr "" - -#. module: sale_order_dates -#: field:sale.order,requested_date:0 -msgid "Requested Date" -msgstr "" \ No newline at end of file diff --git a/addons/share/i18n/en_US.po b/addons/share/i18n/en_US.po deleted file mode 100644 index c701e031c93..00000000000 --- a/addons/share/i18n/en_US.po +++ /dev/null @@ -1,228 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * share -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 10:47:11+0000\n" -"PO-Revision-Date: 2010-08-20 10:47:11+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: share -#: view:share.create:0 -msgid "Exising Users" -msgstr "Exising Users" - -#. module: share -#: view:share.create:0 -msgid "Step 1: Chose the action and the additional domain" -msgstr "Step 1: Chose the action and the additional domain" - -#. module: share -#: field:share.create,user_ids:0 -msgid "Share Users" -msgstr "Share Users" - -#. module: share -#: view:share.create:0 -msgid "Step 3: Chose Access Mode" -msgstr "Step 3: Chose Access Mode" - -#. module: share -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: share -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: share -#: model:ir.module.module,shortdesc:share.module_meta_information -msgid "Share Management" -msgstr "Share Management" - -#. module: share -#: view:share.create:0 -msgid "New Users" -msgstr "New Users" - -#. module: share -#: model:ir.actions.act_window,name:share.action_share_wizard -#: model:ir.ui.menu,name:share.menu_action_share_wizard -msgid "Share Access Rules" -msgstr "Share Access Rules" - -#. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "Error" -msgstr "Error" - -#. module: share -#: view:share.result:0 -msgid "Step 4: Share Users Detail" -msgstr "Step 4: Share Users Detail" - -#. module: share -#: view:share.create:0 -msgid "Next" -msgstr "Next" - -#. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "Share Group is exits without sharing !" -msgstr "Share Group is exits without sharing !" - -#. module: share -#: model:ir.model,name:share.model_share_result -msgid "share.result" -msgstr "share.result" - -#. module: share -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: share -#: selection:share.create,user_type:0 -msgid "New" -msgstr "New" - -#. module: share -#: selection:share.create,access_mode:0 -msgid "READ ONLY" -msgstr "READ ONLY" - -#. module: share -#: field:share.result,users:0 -msgid "Users" -msgstr "Users" - -#. module: share -#: view:share.result:0 -msgid "Send Email" -msgstr "Send Email" - -#. module: share -#: model:ir.model,name:share.model_res_groups -msgid "res.groups" -msgstr "res.groups" - -#. module: share -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: share -#: selection:share.create,access_mode:0 -msgid "READ & WRITE" -msgstr "READ & WRITE" - -#. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "Step:3 Sharing Wizard" -msgstr "Step:3 Sharing Wizard" - -#. module: share -#: model:ir.model,name:share.model_share_create -msgid "Create share" -msgstr "Create share" - -#. module: share -#: field:share.create,user_type:0 -msgid "User Type" -msgstr "User Type" - -#. module: share -#: view:share.create:0 -msgid "Step 2: Chose the User type" -msgstr "Step 2: Chose the User type" - -#. module: share -#: field:share.create,new_user:0 -msgid "New user" -msgstr "New user" - -#. module: share -#: field:share.create,action_id:0 -msgid "Action" -msgstr "Action" - -#. module: share -#: field:share.create,domain:0 -msgid "Domain" -msgstr "Domain" - -#. module: share -#: field:share.create,access_mode:0 -msgid "Access Mode" -msgstr "Access Mode" - -#. module: share -#: field:res.groups,share:0 -#: field:res.users,share:0 -#: view:share.create:0 -#: view:share.result:0 -msgid "Share" -msgstr "Share" - -#. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "Step:2 Sharing Wizard" -msgstr "Step:2 Sharing Wizard" - -#. module: share -#: selection:share.create,user_type:0 -msgid "Existing" -msgstr "Existing" - -#. module: share -#: code:addons/share/wizard/share_wizard.py:0 -#, python-format -msgid "Step:4 Share Users Detail" -msgstr "Step:4 Share Users Detail" - -#. module: share -#: model:ir.module.module,description:share.module_meta_information -msgid "The goal is to implement a generic sharing mechanism, where user of OpenERP\n" -"can share data from OpenERP to their colleagues, customers, or friends.\n" -"The system will work by creating new users and groups on the fly, and by\n" -"combining the appropriate access rights and ir.rules to ensure that the /shared\n" -"users/ will only have access to the correct data.\n" -" " -msgstr "The goal is to implement a generic sharing mechanism, where user of OpenERP\n" -"can share data from OpenERP to their colleagues, customers, or friends.\n" -"The system will work by creating new users and groups on the fly, and by\n" -"combining the appropriate access rights and ir.rules to ensure that the /shared\n" -"users/ will only have access to the correct data.\n" -" " - -#. module: share -#: view:share.create:0 -#: view:share.result:0 -msgid "Cancel" -msgstr "Cancel" - -#. module: share -#: model:ir.model,name:share.model_res_users -msgid "res.users" -msgstr "res.users" - -#. module: share -#: field:share.create,read_access:0 -#: field:share.create,write_access:0 -msgid "Write Access" -msgstr "Write Access" - diff --git a/addons/stock_planning/i18n/en_US.po b/addons/stock_planning/i18n/en_US.po deleted file mode 100644 index 2e9440aecad..00000000000 --- a/addons/stock_planning/i18n/en_US.po +++ /dev/null @@ -1,1396 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * stock_planning -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 11:29:01+0000\n" -"PO-Revision-Date: 2010-08-20 11:29:01+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: stock_planning -#: code:addons/stock_planning/wizard/stock_planning_createlines.py:0 -#, python-format -msgid "No forecasts for selected period or no products in selected category !" -msgstr "No forecasts for selected period or no products in selected category !" - -#. module: stock_planning -#: help:stock.planning,stock_only:0 -msgid "Check to calculate stock location of selected warehouse only. If not selected calculation is made for input, stock and output location of warehouse." -msgstr "Check to calculate stock location of selected warehouse only. If not selected calculation is made for input, stock and output location of warehouse." - -#. module: stock_planning -#: field:stock.planning,maximum_op:0 -msgid "Maximum Rule" -msgstr "Maximum Rule" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period1_per_company:0 -msgid "This Copmany Period1" -msgstr "This Copmany Period1" - -#. module: stock_planning -#: view:stock.planning:0 -#: view:stock.sale.forecast:0 -msgid "Group By..." -msgstr "Group By..." - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Already Out: " -msgstr "\n Already Out: " - -#. module: stock_planning -#: help:stock.sale.forecast,product_amt:0 -msgid "Forecast value which will be converted to Product Quantity according to prices." -msgstr "Forecast value which will be converted to Product Quantity according to prices." - -#. module: stock_planning -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "Incoming Left must be greater than 0 !" -msgstr "Incoming Left must be greater than 0 !" - -#. module: stock_planning -#: help:stock.planning,outgoing_before:0 -msgid "Planned Out in periods before calculated. Between start date of current period and one day before start of calculated period." -msgstr "Planned Out in periods before calculated. Between start date of current period and one day before start of calculated period." - -#. module: stock_planning -#: code:addons/stock_planning/wizard/stock_planning_forecast.py:0 -#, python-format -msgid "No products in selected category !" -msgstr "No products in selected category !" - -#. module: stock_planning -#: help:stock.sale.forecast.createlines,warehouse_id:0 -msgid "Warehouse which forecasts will concern. If during stock planning you will need sales forecast for all warehouses choose any warehouse now." -msgstr "Warehouse which forecasts will concern. If during stock planning you will need sales forecast for all warehouses choose any warehouse now." - -#. module: stock_planning -#: field:stock.planning,outgoing_left:0 -msgid "Expected Out" -msgstr "Expected Out" - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid " " -msgstr " " - -#. module: stock_planning -#: field:stock.planning,incoming_left:0 -msgid "Incoming Left" -msgstr "Incoming Left" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Requisition history" -msgstr "Requisition history" - -#. module: stock_planning -#: view:stock.sale.forecast.createlines:0 -msgid "Create Forecasts Lines" -msgstr "Create Forecasts Lines" - -#. module: stock_planning -#: help:stock.planning,outgoing:0 -msgid "Quantity of all confirmed outgoing moves in calculated Period." -msgstr "Quantity of all confirmed outgoing moves in calculated Period." - -#. module: stock_planning -#: view:stock.period.createlines:0 -msgid "Create Daily Periods" -msgstr "Create Daily Periods" - -#. module: stock_planning -#: view:stock.planning:0 -#: field:stock.planning,company_id:0 -#: field:stock.planning.createlines,company_id:0 -#: view:stock.sale.forecast:0 -#: field:stock.sale.forecast,company_id:0 -#: field:stock.sale.forecast.createlines,company_id:0 -msgid "Company" -msgstr "Company" - -#. module: stock_planning -#: help:stock.planning,warehouse_forecast:0 -msgid "All sales forecasts for selected Warehouse of selected Product during selected Period." -msgstr "All sales forecasts for selected Warehouse of selected Product during selected Period." - -#. module: stock_planning -#: model:ir.ui.menu,name:stock_planning.menu_stock_period_creatlines -msgid "Create Stock and Sales Periods" -msgstr "Create Stock and Sales Periods" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Minimum Stock Rule Indicators" -msgstr "Minimum Stock Rule Indicators" - -#. module: stock_planning -#: help:stock.sale.forecast.createlines,period_id:0 -msgid "Period which forecasts will concern." -msgstr "Period which forecasts will concern." - -#. module: stock_planning -#: field:stock.planning,stock_only:0 -msgid "Stock Location Only" -msgstr "Stock Location Only" - -#. module: stock_planning -#: help:stock.planning,already_out:0 -msgid "Quantity which is already dispatched out of this warehouse in current period." -msgstr "Quantity which is already dispatched out of this warehouse in current period." - -#. module: stock_planning -#: help:stock.planning,procure_to_stock:0 -msgid "Chect to make procurement to stock location of selected warehouse. If not selected procurement will be made into input location of warehouse." -msgstr "Chect to make procurement to stock location of selected warehouse. If not selected procurement will be made into input location of warehouse." - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Current Period Situation" -msgstr "Current Period Situation" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Planned Out Before: " -msgstr "\n Planned Out Before: " - -#. module: stock_planning -#: view:stock.period.createlines:0 -msgid "Create Monthly Periods" -msgstr "Create Monthly Periods" - -#. module: stock_planning -#: help:stock.planning,supply_warehouse_id:0 -msgid "Warehouse used as source in supply pick move created by 'Supply from Another Warhouse'." -msgstr "Warehouse used as source in supply pick move created by 'Supply from Another Warhouse'." - -#. module: stock_planning -#: model:ir.model,name:stock_planning.model_stock_period_createlines -msgid "stock.period.createlines" -msgstr "stock.period.createlines" - -#. module: stock_planning -#: field:stock.planning,outgoing_before:0 -msgid "Planned Out Before" -msgstr "Planned Out Before" - -#. module: stock_planning -#: field:stock.planning.createlines,forecasted_products:0 -msgid "All Products with Forecast" -msgstr "All Products with Forecast" - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Periods :" -msgstr "Periods :" - -#. module: stock_planning -#: help:stock.planning,already_in:0 -msgid "Quantity which is already picked up to this warehouse in current period." -msgstr "Quantity which is already picked up to this warehouse in current period." - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid " Confirmed In Before: " -msgstr " Confirmed In Before: " - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Stock and Sales Forecast" -msgstr "Stock and Sales Forecast" - -#. module: stock_planning -#: model:ir.model,name:stock_planning.model_stock_sale_forecast -msgid "stock.sale.forecast" -msgstr "stock.sale.forecast" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_dept_id:0 -msgid "This Department" -msgstr "This Department" - -#. module: stock_planning -#: field:stock.planning,to_procure:0 -msgid "Planned In" -msgstr "Planned In" - -#. module: stock_planning -#: field:stock.planning,stock_simulation:0 -msgid "Stock Simulation" -msgstr "Stock Simulation" - -#. module: stock_planning -#: model:ir.model,name:stock_planning.model_stock_planning_createlines -msgid "stock.planning.createlines" -msgstr "stock.planning.createlines" - -#. module: stock_planning -#: help:stock.planning,incoming_before:0 -msgid "Confirmed incoming in periods before calculated (Including Already In). Between start date of current period and one day before start of calculated period." -msgstr "Confirmed incoming in periods before calculated (Including Already In). Between start date of current period and one day before start of calculated period." - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Search Sales Forecast" -msgstr "Search Sales Forecast" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period5_per_user:0 -msgid "This User Period5" -msgstr "This User Period5" - -#. module: stock_planning -#: help:stock.planning,history:0 -msgid "History of procurement or internal supply of this planning line." -msgstr "History of procurement or internal supply of this planning line." - -#. module: stock_planning -#: help:stock.planning,company_forecast:0 -msgid "All sales forecasts for whole company (for all Warehouses) of selected Product during selected Period." -msgstr "All sales forecasts for whole company (for all Warehouses) of selected Product during selected Period." - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period1_per_user:0 -msgid "This User Period1" -msgstr "This User Period1" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period3_per_user:0 -msgid "This User Period3" -msgstr "This User Period3" - -#. module: stock_planning -#: model:ir.ui.menu,name:stock_planning.menu_stock_planning_main -#: view:stock.planning:0 -msgid "Stock Planning" -msgstr "Stock Planning" - -#. module: stock_planning -#: field:stock.planning,minimum_op:0 -msgid "Minimum Rule" -msgstr "Minimum Rule" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Procure Incoming Left" -msgstr "Procure Incoming Left" - -#. module: stock_planning -#: view:stock.period:0 -msgid "Closed" -msgstr "Closed" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "Pick List " -msgstr "Pick List " - -#. module: stock_planning -#: view:stock.planning.createlines:0 -#: view:stock.sale.forecast.createlines:0 -msgid "Create" -msgstr "Create" - -#. module: stock_planning -#: model:ir.actions.act_window,name:stock_planning.action_view_stock_planning_form -#: model:ir.module.module,shortdesc:stock_planning.module_meta_information -#: model:ir.ui.menu,name:stock_planning.menu_stock_planning -#: view:stock.planning:0 -msgid "Master Procurement Schedule" -msgstr "Master Procurement Schedule" - -#. module: stock_planning -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid " Creation Date: " -msgstr " Creation Date: " - -#. module: stock_planning -#: field:stock.planning,period_id:0 -#: field:stock.planning.createlines,period_id:0 -#: field:stock.sale.forecast,period_id:0 -#: field:stock.sale.forecast.createlines,period_id:0 -msgid "Period" -msgstr "Period" - -#. module: stock_planning -#: view:stock.period:0 -#: field:stock.period,state:0 -#: field:stock.planning,state:0 -#: field:stock.sale.forecast,state:0 -msgid "State" -msgstr "State" - -#. module: stock_planning -#: help:stock.sale.forecast.createlines,product_categ_id:0 -msgid "Product Category of products which created forecasts will concern." -msgstr "Product Category of products which created forecasts will concern." - -#. module: stock_planning -#: model:ir.model,name:stock_planning.model_stock_period -msgid "stock period" -msgstr "stock period" - -#. module: stock_planning -#: model:ir.model,name:stock_planning.model_stock_sale_forecast_createlines -msgid "stock.sale.forecast.createlines" -msgstr "stock.sale.forecast.createlines" - -#. module: stock_planning -#: field:stock.planning,warehouse_id:0 -#: field:stock.planning.createlines,warehouse_id:0 -#: field:stock.sale.forecast,warehouse_id:0 -#: field:stock.sale.forecast.createlines,warehouse_id:0 -msgid "Warehouse" -msgstr "Warehouse" - -#. module: stock_planning -#: help:stock.planning,stock_simulation:0 -msgid "Stock simulation at the end of selected Period.\n" -" For current period it is: \n" -"Initial Stock - Already Out + Already In - Expected Out + Incoming Left.\n" -"For periods ahead it is: \n" -"Initial Stock - Planned Out Before + Incoming Before - Planned Out + Planned In." -msgstr "Stock simulation at the end of selected Period.\n" -" For current period it is: \n" -"Initial Stock - Already Out + Already In - Expected Out + Incoming Left.\n" -"For periods ahead it is: \n" -"Initial Stock - Planned Out Before + Incoming Before - Planned Out + Planned In." - -#. module: stock_planning -#: help:stock.sale.forecast,analyze_company:0 -msgid "Check this box to see the sales for whole company." -msgstr "Check this box to see the sales for whole company." - -#. module: stock_planning -#: field:stock.sale.forecast,name:0 -msgid "Name" -msgstr "Name" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Search Stock Planning" -msgstr "Search Stock Planning" - -#. module: stock_planning -#: field:stock.planning,incoming_before:0 -msgid "Incoming Before" -msgstr "Incoming Before" - -#. module: stock_planning -#: field:stock.planning.createlines,product_categ_id:0 -#: field:stock.sale.forecast.createlines,product_categ_id:0 -msgid "Product Category" -msgstr "Product Category" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#: code:addons/stock_planning/wizard/stock_planning_createlines.py:0 -#: code:addons/stock_planning/wizard/stock_planning_forecast.py:0 -#, python-format -msgid "Error !" -msgstr "Error !" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "Manual planning for " -msgstr "Manual planning for " - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_user_id:0 -msgid "This User" -msgstr "This User" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Forecasts" -msgstr "Forecasts" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Supply from Another Warehouse" -msgstr "Supply from Another Warehouse" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Calculate Planning" -msgstr "Calculate Planning" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "Procurement created in MPS by user: " -msgstr "Procurement created in MPS by user: " - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "Invalid action !" -msgstr "Invalid action !" - -#. module: stock_planning -#: help:stock.planning,stock_start:0 -msgid "Stock quantity one day before current period." -msgstr "Stock quantity one day before current period." - -#. module: stock_planning -#: view:stock.period.createlines:0 -msgid "Create Weekly Periods" -msgstr "Create Weekly Periods" - -#. module: stock_planning -#: help:stock.planning,maximum_op:0 -msgid "Maximum quantity set in Minimum Stock Rules for this Warhouse" -msgstr "Maximum quantity set in Minimum Stock Rules for this Warhouse" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "You must specify a Source Warehouse !" -msgstr "You must specify a Source Warehouse !" - -#. module: stock_planning -#: view:stock.planning.createlines:0 -msgid "Creates planning lines for selected period and warehouse." -msgstr "Creates planning lines for selected period and warehouse." - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Warehouse Forecast: " -msgstr "\n Warehouse Forecast: " - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "Cannot delete Validated Sale Forecasts !" -msgstr "Cannot delete Validated Sale Forecasts !" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period4_per_user:0 -msgid "This User Period4" -msgstr "This User Period4" - -#. module: stock_planning -#: view:stock.planning.createlines:0 -#: view:stock.sale.forecast.createlines:0 -msgid "Note: Doesn't duplicate existing lines created by you." -msgstr "Note: Doesn't duplicate existing lines created by you." - -#. module: stock_planning -#: view:stock.period:0 -msgid "Stock and Sales Period" -msgstr "Stock and Sales Period" - -#. module: stock_planning -#: field:stock.planning,company_forecast:0 -msgid "Company Forecast" -msgstr "Company Forecast" - -#. module: stock_planning -#: help:stock.planning,product_uom:0 -#: help:stock.sale.forecast,product_uom:0 -msgid "Unit of Measure used to show the quanities of stock calculation.You can use units form default category or from second category (UoS category)." -msgstr "Unit of Measure used to show the quanities of stock calculation.You can use units form default category or from second category (UoS category)." - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Per User :" -msgstr "Per User :" - -#. module: stock_planning -#: field:stock.period,name:0 -#: field:stock.period.createlines,name:0 -msgid "Period Name" -msgstr "Period Name" - -#. module: stock_planning -#: field:stock.sale.forecast,user_id:0 -msgid "Created/Validated by" -msgstr "Created/Validated by" - -#. module: stock_planning -#: field:stock.planning,warehouse_forecast:0 -msgid "Warehouse Forecast" -msgstr "Warehouse Forecast" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period4_per_company:0 -msgid "This Company Period4" -msgstr "This Company Period4" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period5_per_company:0 -msgid "This Company Period5" -msgstr "This Company Period5" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Planned Out: " -msgstr "\n Planned Out: " - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period2_per_company:0 -msgid "This Company Period2" -msgstr "This Company Period2" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period3_per_company:0 -msgid "This Company Period3" -msgstr "This Company Period3" - -#. module: stock_planning -#: field:stock.period,date_start:0 -#: field:stock.period.createlines,date_start:0 -msgid "Start Date" -msgstr "Start Date" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period2_per_user:0 -msgid "This User Period2" -msgstr "This User Period2" - -#. module: stock_planning -#: field:stock.planning,confirmed_forecasts_only:0 -msgid "Validated Forecasts" -msgstr "Validated Forecasts" - -#. module: stock_planning -#: help:stock.planning.createlines,product_categ_id:0 -msgid "Planning will be created for products from Product Category selected by this field. This field is ignored when you check \"All Forecasted Product\" box." -msgstr "Planning will be created for products from Product Category selected by this field. This field is ignored when you check \"All Forecasted Product\" box." - -#. module: stock_planning -#: field:stock.planning,planned_outgoing:0 -msgid "Planned Out" -msgstr "Planned Out" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Forecast" -msgstr "Forecast" - -#. module: stock_planning -#: selection:stock.period,state:0 -#: selection:stock.planning,state:0 -#: selection:stock.sale.forecast,state:0 -msgid "Draft" -msgstr "Draft" - -#. module: stock_planning -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: stock_planning -#: view:stock.planning:0 -#: view:stock.sale.forecast:0 -msgid "Warehouse " -msgstr "Warehouse " - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period5_per_dept:0 -msgid "This Dept Period5" -msgstr "This Dept Period5" - -#. module: stock_planning -#: view:stock.period.createlines:0 -msgid "Create periods for Stock and Sales Planning" -msgstr "Create periods for Stock and Sales Planning" - -#. module: stock_planning -#: help:stock.planning,planned_outgoing:0 -msgid "Enter planned outgoing quantity from selected Warehouse during the selected Period of selected Product. To plan this value look at Confirmed Out or Sales Forecasts. This value should be equal or greater than Confirmed Out." -msgstr "Enter planned outgoing quantity from selected Warehouse during the selected Period of selected Product. To plan this value look at Confirmed Out or Sales Forecasts. This value should be equal or greater than Confirmed Out." - -#. module: stock_planning -#: model:ir.module.module,description:stock_planning.module_meta_information -msgid "\n" -"This module is based on original OpenERP SA module stock_planning version 1.0 of the same name Master Procurement Schedule.\n" -"\n" -"Purpose of MPS is to allow create a manual procurement (requisition) apart of MRP scheduler (which works automatically on minimum stock rules).\n" -"\n" -"Terms used in the module:\n" -"- Stock and Sales Period - is the time (between Start Date and End Date) for which you plan Stock and Sales Forecast and make Procurement Planning. \n" -"- Stock and Sales Forecast - is the quantity of products you plan to sell in the Period.\n" -"- Stock Planning - is the quantity of products you plan to purchase or produce for the Period.\n" -"\n" -"Because we have another module sale_forecast which uses terms \"Sales Forecast\" and \"Planning\" as amount values we will use terms \"Stock and Sales Forecast\" and \"Stock Planning\" to emphasize that we use quantity values. \n" -"\n" -"Activity with this module is divided to three steps:\n" -"- Creating Periods. Mandatory step.\n" -"- Creating Sale Forecasts and entering quantities to them. Optional step but useful for further planning.\n" -"- Creating Planning lines, entering quantities to them and making Procurement. Making procurement is the final step for the Period.\n" -"\n" -"Periods\n" -"=======\n" -"You have two menu items for Periods in \"Sales Management - Configuration\". There are:\n" -"- \"Create Sales Periods\" - Which automates creating daily, weekly or monthly periods.\n" -"- \"Stock and sales Periods\" - Which allows to create any type of periods, change the dates and change the State of period.\n" -"\n" -"Creating periods is the first step you have to do to use modules features. You can create custom periods using \"New\" button in \"Stock and Sales Periods\" form or view but it is recommended to use automating tool.\n" -"\n" -"Remarks:\n" -"- These periods (officially Stock and Sales Periods) are separated of Financial or other periods in the system.\n" -"- Periods are not assigned to companies (when you use multicompany feature at all). Module suppose that you use the same periods across companies. If you wish to use different periods for different companies define them as you wish (they can overlap). Later on in this text will be indications how to use such periods.\n" -"- When periods are created automatically their start and finish dates are with start hour 00:00:00 and end hour 23:59:00. Fe. when you create daily periods they will have start date 31.01.2010 00:00:00 and end date 31.01.2010 23:59:00. It works only in automatic creation of periods. When you create periods manually you have to take care about hours because you can have incorrect values form sales or stock. \n" -"- If you use overlapping periods for the same product, warehouse and company results can be unpredictable.\n" -"- If current date doesn't belong to any period or you have holes between periods results can be unpredictable.\n" -"\n" -"Sales Forecasts\n" -"===============\n" -"You have few menus for Sales forecast in \"Sales Management - Sales Forecasts\".\n" -"- \"Create Sales Forecasts for Sales Periods\" - which automates creating forecasts lines according to some parameters.\n" -"- \"Sales Forecasts\" - few menus for working with forecasts lists and forms.\n" -"\n" -"Menu \"Create Sales Forecasts for Sales Periods\" creates Forecasts for products from selected Category, for selected Period and for selected Warehouse. It is an option \"Copy Last Forecast\" to copy forecast and other settings of period before this one to created one.\n" -"\n" -"Remarks:\n" -"- This tool doesn't create lines, if relevant lines (for the same Product, Period, Warehouse and validated or created by you) already exists. If you wish to create another forecast, if relevant lines exists you have to do it manually using menus described bellow.\n" -"- When created lines are validated by someone else you can use this tool to create another lines for the same Period, Product and Warehouse. \n" -"- When you choose \"Copy Last Forecast\" created line takes quantity and some settings from your (validated by you or created by you if not validated yet) forecast which is for last period before period of created forecast. If there are few your forecasts for period before this one (it is possible) system takes one of them (no rule which of them).\n" -"\n" -"\n" -"Menus \"Sales Forecasts\"\n" -"On \"Sales Forecast\" form mainly you have to enter a forecast quantity in \"Product Quantity\". Further calculation can work for draft forecasts. But validation can save your data against any accidental changes. You can click \"Validate\" button but it is not mandatory.\n" -"\n" -"Instead of forecast quantity you can enter amount of forecast sales in field \"Product Amount\". System will count quantity from amount according to Sale price of the Product.\n" -"\n" -"All values on the form are expressed in unit of measure selected on form. You can select one of unit of measure from default category or from second category. When you change unit of measure the quanities will be recalculated according to new UoM: editable values (blue fields) immediately, non edited fields after clicking of \"Calculate Planning\" button.\n" -"\n" -"To find proper value for Sale Forecast you can use \"Sales History\" table for this product. You have to enter parameters to the top and left of this table and system will count sale quantities according to these parameters. So you can select fe. your department (at the top) then (to the left): last period, period before last and period year ago.\n" -"\n" -"Remarks:\n" -"\n" -"\n" -"Procurement Planning\n" -"====================\n" -"Menu for Planning you can find in \"Warehouse - Stock Planning\".\n" -"- \"Create Stock Planning Lines\" - allows you to automate creating planning lines according to some parameters.\n" -"- \"Master Procurement Scheduler\" - is the most important menu of the module which allows to create procurement.\n" -"\n" -"As Sales forecast is phase of planning sales. The Procurement Planning (Planning) is the phase of scheduling Purchasing or Producing. You can create Procurement Planning quickly using tool from menu \"Create Stock Planning Lines\", then you can review created planning and make procurement using menu \"Master Procurement Schedule\".\n" -"\n" -"Menu \"Create Stock Planning Lines\" allows you to create quickly Planning lines for products from selected Category, for selected Period, and for selected Warehouse. When you check option \"All Products with Forecast\" system creates lines for all products having forecast for selected Period and Warehouse. Selected Category will be ignored in this case.\n" -"\n" -"Under menu \"Master Procurement Scheduler\" you can generally change the values \"Planned Out\" and \"Planned In\" to observe the field \"Stock Simulation\" and decide if this value would be accurate for end of the Period. \n" -"\"Planned Out\" can be based on \"Warehouse Forecast\" which is the sum of all forecasts for Period and Warehouse. But your planning can be based on any other information you have. It is not necessary to have any forecast. \n" -"\"Planned In\" quantity is used to calculate field \"Incoming Left\" which is the quantity to be procured to make stock as indicated in \"Stock Simulation\" at the end of Period. You can compare \"Stock Simulation\" quantity to minimum stock rules visible on the form. But you can plan different quantity than in Minimum Stock Rules. Calculation is made for whole Warehouse by default. But if you want to see values for Stock location of calculated warehouse you can use check box \"Stock Location Only\".\n" -"\n" -"If after few tries you decide that you found correct quantities for \"Planned Out\" and \"Planned In\" and you are satisfied with end of period stock calculated in \"Stock Simulation\" you can click \"Procure Incoming Left\" button to procure quantity of field \"Incoming Left\" into the Warehouse. System creates appropriate Procurement Order. You can decide if procurement will be made to Stock or Input location of calculated Warehouse. \n" -"\n" -"If you don't want to Produce or Buy the product but just pick calculated quantity from another warehouse you can click \"Supply from Another Warehouse\" (instead of \"Procure Incoming Left\"). System creates pick list with move from selected source Warehouse to calculated Warehouse (as destination). You can also decide if this pick should be done from Stock or Output location of source warehouse. Destination location (Stock or Input) of destination warehouse will be used as set for \"Procure Incoming Left\". \n" -"\n" -"To see proper quantities in fields \"Confirmed In\", \"Confirmed Out\", \"Confirmed In Before\", \"Planned Out Before\" and \"Stock Simulation\" you have to click button \"Calculate Planning\".\n" -"\n" -"All values on the form are expressed in unit of measure selected on form. You can select one of unit of measure from default category or from second category. When you change unit of measure the quanities will be recalculated according to new UoM: editable values (blue fields) immediately, non edited fields after clicking of \"Calculate Planning\" button.\n" -"\n" -"How Stock Simulation field is calculated:\n" -"Generally Stock Simulation shows the stock for end of the calculated period according to some planned or confirmed stock moves. Calculation always starts with quantity of real stock of beginning of current period. Then calculation adds or subtracts quantities of calculated period or periods before calculated.\n" -"When you are in the same period (current period is the same as calculated) Stock Simulation is calculated as follows:\n" -"Stock Simulation = \n" -" Stock of beginning of current Period\n" -" - Planned Out \n" -" + Planned In\n" -"\n" -"When you calculate period next to current:\n" -"Stock Simulation = \n" -" Stock of beginning of current Period\n" -" - Planned Out of current Period \n" -" + Confirmed In of current Period (incl. Already In)\n" -" - Planned Out of calculated Period \n" -" + Planned In of calculated Period .\n" -"\n" -"As you see calculated Period is taken the same way like in case above. But calculation of current Period are made a little bit different. First you should note that system takes for current Period only Confirmed In moves. It means that you have to make planning and procurement for current Period before this calculation (for Period next to current). \n" -"\n" -"When you calculate Period ahead:\n" -"Stock Simulation = \n" -" Stock of beginning of current Period \n" -" - Sum of Planned Out of Periods before calculated \n" -" + Sum of Confirmed In of Periods before calculated (incl. Already In) \n" -" - Planned Out of calculated Period \n" -" + Planned In of calculated Period.\n" -"\n" -"Periods before calculated means periods starting from current till period before calculated.\n" -"\n" -"Remarks:\n" -"- Remember to make planning for all periods before calculated because omitting these quantities and procurements can cause wrong suggestions for procurements few periods ahead.\n" -"- If you made planning few periods ahead and you find that real Confirmed Out is bigger than Planned Out in some periods before you can repeat Planning and make another procurement. You should do it in the same planning line. If you create another planning line the suggestions can be wrong.\n" -"- When you wish to work with different periods for some part of products define two kinds of periods (fe. Weekly and Monthly) and use them for different products. Example: If you use always Weekly periods for Products A, and Monthly periods for Products B your all calculations will work correctly. You can also use different kind of periods for the same products from different warehouse or companies. But you cannot use overlapping periods for the same product, warehouse and company because results can be unpredictable. The same apply to Forecasts lines.\n" -"" -msgstr "\n" -"This module is based on original OpenERP SA module stock_planning version 1.0 of the same name Master Procurement Schedule.\n" -"\n" -"Purpose of MPS is to allow create a manual procurement (requisition) apart of MRP scheduler (which works automatically on minimum stock rules).\n" -"\n" -"Terms used in the module:\n" -"- Stock and Sales Period - is the time (between Start Date and End Date) for which you plan Stock and Sales Forecast and make Procurement Planning. \n" -"- Stock and Sales Forecast - is the quantity of products you plan to sell in the Period.\n" -"- Stock Planning - is the quantity of products you plan to purchase or produce for the Period.\n" -"\n" -"Because we have another module sale_forecast which uses terms \"Sales Forecast\" and \"Planning\" as amount values we will use terms \"Stock and Sales Forecast\" and \"Stock Planning\" to emphasize that we use quantity values. \n" -"\n" -"Activity with this module is divided to three steps:\n" -"- Creating Periods. Mandatory step.\n" -"- Creating Sale Forecasts and entering quantities to them. Optional step but useful for further planning.\n" -"- Creating Planning lines, entering quantities to them and making Procurement. Making procurement is the final step for the Period.\n" -"\n" -"Periods\n" -"=======\n" -"You have two menu items for Periods in \"Sales Management - Configuration\". There are:\n" -"- \"Create Sales Periods\" - Which automates creating daily, weekly or monthly periods.\n" -"- \"Stock and sales Periods\" - Which allows to create any type of periods, change the dates and change the State of period.\n" -"\n" -"Creating periods is the first step you have to do to use modules features. You can create custom periods using \"New\" button in \"Stock and Sales Periods\" form or view but it is recommended to use automating tool.\n" -"\n" -"Remarks:\n" -"- These periods (officially Stock and Sales Periods) are separated of Financial or other periods in the system.\n" -"- Periods are not assigned to companies (when you use multicompany feature at all). Module suppose that you use the same periods across companies. If you wish to use different periods for different companies define them as you wish (they can overlap). Later on in this text will be indications how to use such periods.\n" -"- When periods are created automatically their start and finish dates are with start hour 00:00:00 and end hour 23:59:00. Fe. when you create daily periods they will have start date 31.01.2010 00:00:00 and end date 31.01.2010 23:59:00. It works only in automatic creation of periods. When you create periods manually you have to take care about hours because you can have incorrect values form sales or stock. \n" -"- If you use overlapping periods for the same product, warehouse and company results can be unpredictable.\n" -"- If current date doesn't belong to any period or you have holes between periods results can be unpredictable.\n" -"\n" -"Sales Forecasts\n" -"===============\n" -"You have few menus for Sales forecast in \"Sales Management - Sales Forecasts\".\n" -"- \"Create Sales Forecasts for Sales Periods\" - which automates creating forecasts lines according to some parameters.\n" -"- \"Sales Forecasts\" - few menus for working with forecasts lists and forms.\n" -"\n" -"Menu \"Create Sales Forecasts for Sales Periods\" creates Forecasts for products from selected Category, for selected Period and for selected Warehouse. It is an option \"Copy Last Forecast\" to copy forecast and other settings of period before this one to created one.\n" -"\n" -"Remarks:\n" -"- This tool doesn't create lines, if relevant lines (for the same Product, Period, Warehouse and validated or created by you) already exists. If you wish to create another forecast, if relevant lines exists you have to do it manually using menus described bellow.\n" -"- When created lines are validated by someone else you can use this tool to create another lines for the same Period, Product and Warehouse. \n" -"- When you choose \"Copy Last Forecast\" created line takes quantity and some settings from your (validated by you or created by you if not validated yet) forecast which is for last period before period of created forecast. If there are few your forecasts for period before this one (it is possible) system takes one of them (no rule which of them).\n" -"\n" -"\n" -"Menus \"Sales Forecasts\"\n" -"On \"Sales Forecast\" form mainly you have to enter a forecast quantity in \"Product Quantity\". Further calculation can work for draft forecasts. But validation can save your data against any accidental changes. You can click \"Validate\" button but it is not mandatory.\n" -"\n" -"Instead of forecast quantity you can enter amount of forecast sales in field \"Product Amount\". System will count quantity from amount according to Sale price of the Product.\n" -"\n" -"All values on the form are expressed in unit of measure selected on form. You can select one of unit of measure from default category or from second category. When you change unit of measure the quanities will be recalculated according to new UoM: editable values (blue fields) immediately, non edited fields after clicking of \"Calculate Planning\" button.\n" -"\n" -"To find proper value for Sale Forecast you can use \"Sales History\" table for this product. You have to enter parameters to the top and left of this table and system will count sale quantities according to these parameters. So you can select fe. your department (at the top) then (to the left): last period, period before last and period year ago.\n" -"\n" -"Remarks:\n" -"\n" -"\n" -"Procurement Planning\n" -"====================\n" -"Menu for Planning you can find in \"Warehouse - Stock Planning\".\n" -"- \"Create Stock Planning Lines\" - allows you to automate creating planning lines according to some parameters.\n" -"- \"Master Procurement Scheduler\" - is the most important menu of the module which allows to create procurement.\n" -"\n" -"As Sales forecast is phase of planning sales. The Procurement Planning (Planning) is the phase of scheduling Purchasing or Producing. You can create Procurement Planning quickly using tool from menu \"Create Stock Planning Lines\", then you can review created planning and make procurement using menu \"Master Procurement Schedule\".\n" -"\n" -"Menu \"Create Stock Planning Lines\" allows you to create quickly Planning lines for products from selected Category, for selected Period, and for selected Warehouse. When you check option \"All Products with Forecast\" system creates lines for all products having forecast for selected Period and Warehouse. Selected Category will be ignored in this case.\n" -"\n" -"Under menu \"Master Procurement Scheduler\" you can generally change the values \"Planned Out\" and \"Planned In\" to observe the field \"Stock Simulation\" and decide if this value would be accurate for end of the Period. \n" -"\"Planned Out\" can be based on \"Warehouse Forecast\" which is the sum of all forecasts for Period and Warehouse. But your planning can be based on any other information you have. It is not necessary to have any forecast. \n" -"\"Planned In\" quantity is used to calculate field \"Incoming Left\" which is the quantity to be procured to make stock as indicated in \"Stock Simulation\" at the end of Period. You can compare \"Stock Simulation\" quantity to minimum stock rules visible on the form. But you can plan different quantity than in Minimum Stock Rules. Calculation is made for whole Warehouse by default. But if you want to see values for Stock location of calculated warehouse you can use check box \"Stock Location Only\".\n" -"\n" -"If after few tries you decide that you found correct quantities for \"Planned Out\" and \"Planned In\" and you are satisfied with end of period stock calculated in \"Stock Simulation\" you can click \"Procure Incoming Left\" button to procure quantity of field \"Incoming Left\" into the Warehouse. System creates appropriate Procurement Order. You can decide if procurement will be made to Stock or Input location of calculated Warehouse. \n" -"\n" -"If you don't want to Produce or Buy the product but just pick calculated quantity from another warehouse you can click \"Supply from Another Warehouse\" (instead of \"Procure Incoming Left\"). System creates pick list with move from selected source Warehouse to calculated Warehouse (as destination). You can also decide if this pick should be done from Stock or Output location of source warehouse. Destination location (Stock or Input) of destination warehouse will be used as set for \"Procure Incoming Left\". \n" -"\n" -"To see proper quantities in fields \"Confirmed In\", \"Confirmed Out\", \"Confirmed In Before\", \"Planned Out Before\" and \"Stock Simulation\" you have to click button \"Calculate Planning\".\n" -"\n" -"All values on the form are expressed in unit of measure selected on form. You can select one of unit of measure from default category or from second category. When you change unit of measure the quanities will be recalculated according to new UoM: editable values (blue fields) immediately, non edited fields after clicking of \"Calculate Planning\" button.\n" -"\n" -"How Stock Simulation field is calculated:\n" -"Generally Stock Simulation shows the stock for end of the calculated period according to some planned or confirmed stock moves. Calculation always starts with quantity of real stock of beginning of current period. Then calculation adds or subtracts quantities of calculated period or periods before calculated.\n" -"When you are in the same period (current period is the same as calculated) Stock Simulation is calculated as follows:\n" -"Stock Simulation = \n" -" Stock of beginning of current Period\n" -" - Planned Out \n" -" + Planned In\n" -"\n" -"When you calculate period next to current:\n" -"Stock Simulation = \n" -" Stock of beginning of current Period\n" -" - Planned Out of current Period \n" -" + Confirmed In of current Period (incl. Already In)\n" -" - Planned Out of calculated Period \n" -" + Planned In of calculated Period .\n" -"\n" -"As you see calculated Period is taken the same way like in case above. But calculation of current Period are made a little bit different. First you should note that system takes for current Period only Confirmed In moves. It means that you have to make planning and procurement for current Period before this calculation (for Period next to current). \n" -"\n" -"When you calculate Period ahead:\n" -"Stock Simulation = \n" -" Stock of beginning of current Period \n" -" - Sum of Planned Out of Periods before calculated \n" -" + Sum of Confirmed In of Periods before calculated (incl. Already In) \n" -" - Planned Out of calculated Period \n" -" + Planned In of calculated Period.\n" -"\n" -"Periods before calculated means periods starting from current till period before calculated.\n" -"\n" -"Remarks:\n" -"- Remember to make planning for all periods before calculated because omitting these quantities and procurements can cause wrong suggestions for procurements few periods ahead.\n" -"- If you made planning few periods ahead and you find that real Confirmed Out is bigger than Planned Out in some periods before you can repeat Planning and make another procurement. You should do it in the same planning line. If you create another planning line the suggestions can be wrong.\n" -"- When you wish to work with different periods for some part of products define two kinds of periods (fe. Weekly and Monthly) and use them for different products. Example: If you use always Weekly periods for Products A, and Monthly periods for Products B your all calculations will work correctly. You can also use different kind of periods for the same products from different warehouse or companies. But you cannot use overlapping periods for the same product, warehouse and company because results can be unpredictable. The same apply to Forecasts lines.\n" -"" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid " Incoming Left: " -msgstr " Incoming Left: " - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Internal Supply" -msgstr "Internal Supply" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "You must specify a Source Warehouse different than calculated (destination) Warehouse !" -msgstr "You must specify a Source Warehouse different than calculated (destination) Warehouse !" - -#. module: stock_planning -#: model:ir.actions.act_window,name:stock_planning.action_stock_sale_forecast_createlines_form -#: model:ir.ui.menu,name:stock_planning.menu_stock_sale_forecast_createlines -msgid "Create Sales Forecasts" -msgstr "Create Sales Forecasts" - -#. module: stock_planning -#: view:stock.sale.forecast.createlines:0 -msgid "Creates forecast lines for selected warehouse and period." -msgstr "Creates forecast lines for selected warehouse and period." - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "Requisition (" -msgstr "Requisition (" - -#. module: stock_planning -#: help:stock.planning,outgoing_left:0 -msgid "Quantity expected to go out in selected period. As a difference between Planned Out and Confirmed Out. For current period Already Out is also calculated" -msgstr "Quantity expected to go out in selected period. As a difference between Planned Out and Confirmed Out. For current period Already Out is also calculated" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period4_id:0 -msgid "Period4" -msgstr "Period4" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid " Already In: " -msgstr " Already In: " - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period2_id:0 -msgid "Period2" -msgstr "Period2" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period3_id:0 -msgid "Period3" -msgstr "Period3" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period1_id:0 -msgid "Period1" -msgstr "Period1" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Initial Stock: " -msgstr "\n Initial Stock: " - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid " Minimum stock: " -msgstr " Minimum stock: " - -#. module: stock_planning -#: field:stock.planning,active_uom:0 -#: field:stock.sale.forecast,active_uom:0 -msgid "Active UoM" -msgstr "Active UoM" - -#. module: stock_planning -#: model:ir.actions.act_window,name:stock_planning.action_stock_planning_createlines_form -#: model:ir.ui.menu,name:stock_planning.menu_stock_planning_createlines -#: view:stock.planning.createlines:0 -msgid "Create Stock Planning Lines" -msgstr "Create Stock Planning Lines" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "General Info" -msgstr "General Info" - -#. module: stock_planning -#: model:ir.actions.act_window,name:stock_planning.action_view_stock_sale_forecast_form -msgid "Sales Forecast" -msgstr "Sales Forecast" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Planning and Situation for Calculated Period" -msgstr "Planning and Situation for Calculated Period" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period1_per_warehouse:0 -msgid "This Warehouse Period1" -msgstr "This Warehouse Period1" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid " Confirmed In: " -msgstr " Confirmed In: " - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Sales history" -msgstr "Sales history" - -#. module: stock_planning -#: field:stock.planning,supply_warehouse_id:0 -msgid "Source Warehouse" -msgstr "Source Warehouse" - -#. module: stock_planning -#: help:stock.sale.forecast,product_qty:0 -msgid "Forecasted quantity." -msgstr "Forecasted quantity." - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Stock" -msgstr "Stock" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Stock Simulation: " -msgstr "\n Stock Simulation: " - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Confirmed Out: " -msgstr "\n Confirmed Out: " - -#. module: stock_planning -#: field:stock.planning,stock_supply_location:0 -msgid "Stock Supply Location" -msgstr "Stock Supply Location" - -#. module: stock_planning -#: help:stock.period.createlines,date_stop:0 -msgid "Ending date for planning period." -msgstr "Ending date for planning period." - -#. module: stock_planning -#: help:stock.planning.createlines,forecasted_products:0 -msgid "Check this box to create planning for all products having any forecast for selected Warehouse and Period. Product Category field will be ignored." -msgstr "Check this box to create planning for all products having any forecast for selected Warehouse and Period. Product Category field will be ignored." - -#. module: stock_planning -#: field:stock.planning,already_in:0 -msgid "Already In" -msgstr "Already In" - -#. module: stock_planning -#: field:stock.planning,product_uom_categ:0 -#: field:stock.planning,product_uos_categ:0 -#: field:stock.sale.forecast,product_uom_categ:0 -msgid "Product UoM Category" -msgstr "Product UoM Category" - -#. module: stock_planning -#: field:stock.planning,incoming:0 -msgid "Confirmed In" -msgstr "Confirmed In" - -#. module: stock_planning -#: field:stock.planning,line_time:0 -msgid "Past/Future" -msgstr "Past/Future" - -#. module: stock_planning -#: field:stock.sale.forecast,product_uos_categ:0 -msgid "Product UoS Category" -msgstr "Product UoS Category" - -#. module: stock_planning -#: field:stock.sale.forecast,product_qty:0 -msgid "Product Quantity" -msgstr "Product Quantity" - -#. module: stock_planning -#: field:stock.sale.forecast.createlines,copy_forecast:0 -msgid "Copy Last Forecast" -msgstr "Copy Last Forecast" - -#. module: stock_planning -#: help:stock.sale.forecast,product_id:0 -msgid "Shows which product this forecast concerns." -msgstr "Shows which product this forecast concerns." - -#. module: stock_planning -#: selection:stock.planning,state:0 -msgid "Done" -msgstr "Done" - -#. module: stock_planning -#: field:stock.period.createlines,period_ids:0 -msgid "Periods" -msgstr "Periods" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid " according to state:" -msgstr " according to state:" - -#. module: stock_planning -#: view:stock.period.createlines:0 -msgid "Cancel" -msgstr "Cancel" - -#. module: stock_planning -#: view:stock.period:0 -#: selection:stock.period,state:0 -#: view:stock.planning.createlines:0 -#: view:stock.sale.forecast.createlines:0 -msgid "Close" -msgstr "Close" - -#. module: stock_planning -#: view:stock.sale.forecast:0 -#: selection:stock.sale.forecast,state:0 -msgid "Validated" -msgstr "Validated" - -#. module: stock_planning -#: view:stock.period:0 -#: selection:stock.period,state:0 -msgid "Open" -msgstr "Open" - -#. module: stock_planning -#: help:stock.sale.forecast.createlines,copy_forecast:0 -msgid "Copy quantities from last Stock and Sale Forecast." -msgstr "Copy quantities from last Stock and Sale Forecast." - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period1_per_dept:0 -msgid "This Dept Period1" -msgstr "This Dept Period1" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period3_per_dept:0 -msgid "This Dept Period3" -msgstr "This Dept Period3" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period2_per_dept:0 -msgid "This Dept Period2" -msgstr "This Dept Period2" - -#. module: stock_planning -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "The Object name must start with x_ and not contain any special character !" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period4_per_dept:0 -msgid "This Dept Period4" -msgstr "This Dept Period4" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period2_per_warehouse:0 -msgid "This Warehouse Period2" -msgstr "This Warehouse Period2" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period3_per_warehouse:0 -msgid "This Warehouse Period3" -msgstr "This Warehouse Period3" - -#. module: stock_planning -#: field:stock.planning,outgoing:0 -msgid "Confirmed Out" -msgstr "Confirmed Out" - -#. module: stock_planning -#: field:stock.sale.forecast,create_uid:0 -msgid "Responsible" -msgstr "Responsible" - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Default UOM" -msgstr "Default UOM" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period4_per_warehouse:0 -msgid "This Warehouse Period4" -msgstr "This Warehouse Period4" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period5_per_warehouse:0 -msgid "This Warehouse Period5" -msgstr "This Warehouse Period5" - -#. module: stock_planning -#: view:stock.period:0 -msgid "Current" -msgstr "Current" - -#. module: stock_planning -#: model:ir.model,name:stock_planning.model_stock_planning -msgid "stock.planning" -msgstr "stock.planning" - -#. module: stock_planning -#: help:stock.sale.forecast,warehouse_id:0 -msgid "Shows which warehouse this forecast concerns. If during stock planning you will need sales forecast for all warehouses choose any warehouse now." -msgstr "Shows which warehouse this forecast concerns. If during stock planning you will need sales forecast for all warehouses choose any warehouse now." - -#. module: stock_planning -#: help:stock.planning.createlines,warehouse_id:0 -msgid "Warehouse which planning will concern." -msgstr "Warehouse which planning will concern." - -#. module: stock_planning -#: field:stock.sale.forecast,analyze_company:0 -msgid "Per Company" -msgstr "Per Company" - -#. module: stock_planning -#: help:stock.planning,to_procure:0 -msgid "Enter quantity which (by your plan) should come in. Change this value and observe Stock simulation. This value should be equal or greater than Confirmed In." -msgstr "Enter quantity which (by your plan) should come in. Change this value and observe Stock simulation. This value should be equal or greater than Confirmed In." - -#. module: stock_planning -#: help:stock.planning.createlines,period_id:0 -msgid "Period which planning will concern." -msgstr "Period which planning will concern." - -#. module: stock_planning -#: field:stock.planning,already_out:0 -msgid "Already Out" -msgstr "Already Out" - -#. module: stock_planning -#: help:stock.planning,product_id:0 -msgid "Product which this planning is created for." -msgstr "Product which this planning is created for." - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Per Warehouse :" -msgstr "Per Warehouse :" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\nFor period: " -msgstr "\nFor period: " - -#. module: stock_planning -#: field:stock.planning,history:0 -msgid "Procurement History" -msgstr "Procurement History" - -#. module: stock_planning -#: help:stock.period.createlines,date_start:0 -msgid "Starting date for planning period." -msgstr "Starting date for planning period." - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid " Planned In: " -msgstr " Planned In: " - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Per Department :" -msgstr "Per Department :" - -#. module: stock_planning -#: help:stock.planning,incoming:0 -msgid "Quantity of all confirmed incoming moves in calculated Period." -msgstr "Quantity of all confirmed incoming moves in calculated Period." - -#. module: stock_planning -#: field:stock.period,date_stop:0 -#: field:stock.period.createlines,date_stop:0 -msgid "End Date" -msgstr "End Date" - -#. module: stock_planning -#: help:stock.planning,stock_supply_location:0 -msgid "Check to supply from Stock location of Supply Warehouse. If not checked supply will be made from Output location of Supply Warehouse. Used in 'Supply from Another Warhouse' with Supply Warehouse." -msgstr "Check to supply from Stock location of Supply Warehouse. If not checked supply will be made from Output location of Supply Warehouse. Used in 'Supply from Another Warhouse' with Supply Warehouse." - -#. module: stock_planning -#: view:stock.planning:0 -msgid "No Requisition" -msgstr "No Requisition" - -#. module: stock_planning -#: help:stock.planning,minimum_op:0 -msgid "Minimum quantity set in Minimum Stock Rules for this Warhouse" -msgstr "Minimum quantity set in Minimum Stock Rules for this Warhouse" - -#. module: stock_planning -#: help:stock.sale.forecast,period_id:0 -msgid "Shows which period this forecast concerns." -msgstr "Shows which period this forecast concerns." - -#. module: stock_planning -#: field:stock.planning,product_uom:0 -msgid "UoM" -msgstr "UoM" - -#. module: stock_planning -#: view:stock.planning:0 -msgid "Calculated Period Simulation" -msgstr "Calculated Period Simulation" - -#. module: stock_planning -#: view:stock.planning:0 -#: field:stock.planning,product_id:0 -#: view:stock.sale.forecast:0 -#: field:stock.sale.forecast,product_id:0 -msgid "Product" -msgstr "Product" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "\n Expected Out: " -msgstr "\n Expected Out: " - -#. module: stock_planning -#: model:ir.ui.menu,name:stock_planning.menu_stock_sale_forecast -#: model:ir.ui.menu,name:stock_planning.menu_stock_sale_forecast_all -#: view:stock.sale.forecast:0 -msgid "Sales Forecasts" -msgstr "Sales Forecasts" - -#. module: stock_planning -#: field:stock.sale.forecast,product_uom:0 -msgid "Product UoM" -msgstr "Product UoM" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "MPS(" -msgstr "MPS(" - -#. module: stock_planning -#: code:addons/stock_planning/stock_planning.py:0 -#, python-format -msgid "Pick created from MPS by user: " -msgstr "Pick created from MPS by user: " - -#. module: stock_planning -#: field:stock.planning,procure_to_stock:0 -msgid "Procure To Stock Location" -msgstr "Procure To Stock Location" - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Approve" -msgstr "Approve" - -#. module: stock_planning -#: help:stock.planning,period_id:0 -msgid "Period for this planning. Requisition will be created for beginning of the period." -msgstr "Period for this planning. Requisition will be created for beginning of the period." - -#. module: stock_planning -#: view:stock.sale.forecast:0 -msgid "Calculate Sales History" -msgstr "Calculate Sales History" - -#. module: stock_planning -#: field:stock.sale.forecast,product_amt:0 -msgid "Product Amount" -msgstr "Product Amount" - -#. module: stock_planning -#: help:stock.planning,confirmed_forecasts_only:0 -msgid "Check to take validated forecasts only. If not checked system takes validated and draft forecasts." -msgstr "Check to take validated forecasts only. If not checked system takes validated and draft forecasts." - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_period5_id:0 -msgid "Period5" -msgstr "Period5" - -#. module: stock_planning -#: model:ir.actions.act_window,name:stock_planning.action_stock_period_createlines_form -msgid "Stock and Sales Planning Periods" -msgstr "Stock and Sales Planning Periods" - -#. module: stock_planning -#: field:stock.sale.forecast,analyzed_warehouse_id:0 -msgid "This Warehouse" -msgstr "This Warehouse" - -#. module: stock_planning -#: model:ir.actions.act_window,name:stock_planning.action_stock_period_form -#: model:ir.ui.menu,name:stock_planning.menu_stock_period -#: model:ir.ui.menu,name:stock_planning.menu_stock_period_main -#: view:stock.period:0 -#: view:stock.period.createlines:0 -msgid "Stock and Sales Periods" -msgstr "Stock and Sales Periods" - -#. module: stock_planning -#: help:stock.sale.forecast,user_id:0 -msgid "Shows who created this forecast, or who validated." -msgstr "Shows who created this forecast, or who validated." - -#. module: stock_planning -#: help:stock.planning,incoming_left:0 -msgid "Quantity left to Planned incoming quantity. This is calculated difference between Planned In and Confirmed In. For current period Already In is also calculated. This value is used to create procurement for lacking quantity." -msgstr "Quantity left to Planned incoming quantity. This is calculated difference between Planned In and Confirmed In. For current period Already In is also calculated. This value is used to create procurement for lacking quantity." - -#. module: stock_planning -#: field:stock.planning,stock_start:0 -msgid "Initial Stock" -msgstr "Initial Stock" - diff --git a/addons/wiki_faq/i18n/en_US.po b/addons/wiki_faq/i18n/en_US.po deleted file mode 100644 index a6df3e00626..00000000000 --- a/addons/wiki_faq/i18n/en_US.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki_faq -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 11:45:31+0000\n" -"PO-Revision-Date: 2010-08-20 11:45:31+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: wiki_faq -#: model:ir.module.module,description:wiki_faq.module_meta_information -msgid "This module provides a wiki FAQ Template\n" -" " -msgstr "This module provides a wiki FAQ Template\n" -" " - -#. module: wiki_faq -#: model:ir.module.module,shortdesc:wiki_faq.module_meta_information -msgid "Document Management - Wiki - FAQ" -msgstr "Document Management - Wiki - FAQ" - diff --git a/addons/wiki_quality_manual/i18n/en_US.po b/addons/wiki_quality_manual/i18n/en_US.po deleted file mode 100644 index 85a0bd45127..00000000000 --- a/addons/wiki_quality_manual/i18n/en_US.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki_quality_manual -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 11:52:06+0000\n" -"PO-Revision-Date: 2010-08-20 11:52:06+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: wiki_quality_manual -#: model:ir.module.module,description:wiki_quality_manual.module_meta_information -msgid "Quality Manual Template\n" -" " -msgstr "Quality Manual Template\n" -" " - -#. module: wiki_quality_manual -#: model:ir.module.module,shortdesc:wiki_quality_manual.module_meta_information -msgid "Document Management - Wiki - Quality Manual" -msgstr "Document Management - Wiki - Quality Manual" - diff --git a/addons/wiki_sale_faq/i18n/en_US.po b/addons/wiki_sale_faq/i18n/en_US.po deleted file mode 100644 index eb52ca35117..00000000000 --- a/addons/wiki_sale_faq/i18n/en_US.po +++ /dev/null @@ -1,61 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki_sale_faq -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-08-20 11:57:10+0000\n" -"PO-Revision-Date: 2010-08-20 11:57:10+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: wiki_sale_faq -#: model:ir.actions.act_window,name:wiki_sale_faq.action_document_form -#: model:ir.ui.menu,name:wiki_sale_faq.menu_document_files -#: model:ir.ui.menu,name:wiki_sale_faq.menu_sales -msgid "Documents" -msgstr "Documents" - -#. module: wiki_sale_faq -#: constraint:ir.ui.menu:0 -msgid "Error ! You can not create recursive Menu." -msgstr "Error ! You can not create recursive Menu." - -#. module: wiki_sale_faq -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "Error! You can not create recursive Directories." - -#. module: wiki_sale_faq -#: model:ir.ui.menu,name:wiki_sale_faq.menu_action_wiki_wiki -msgid "FAQ" -msgstr "FAQ" - -#. module: wiki_sale_faq -#: model:ir.actions.act_window,name:wiki_sale_faq.action_wiki_test -msgid "Wiki Pages" -msgstr "Wiki Pages" - -#. module: wiki_sale_faq -#: model:ir.module.module,description:wiki_sale_faq.module_meta_information -msgid "This module provides a wiki FAQ Template\n" -" " -msgstr "This module provides a wiki FAQ Template\n" -" " - -#. module: wiki_sale_faq -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Invalid model name in the action definition." - -#. module: wiki_sale_faq -#: model:ir.module.module,shortdesc:wiki_sale_faq.module_meta_information -msgid "Wiki -Sale - FAQ" -msgstr "Wiki -Sale - FAQ" - From 0b81c2b136e2313c30ba6e212ffa5202d6b75686 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Wed, 12 Jan 2011 15:31:41 +0100 Subject: [PATCH 10/20] [FIX] translate: timestamps in PO[T] header entries should use '%Y-%m-%d %H:%M %z' format, without %S bzr revid: odo@openerp.com-20110112143141-oezd2djlce1r3x6p --- bin/tools/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 9724f732a6d..0f47b6f4051 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -376,7 +376,7 @@ class TinyPoFile(object): 'version': release.version, 'modules': reduce(lambda s, m: s + "#\t* %s\n" % m, modules, ""), 'bugmail': release.support_email, - 'now': datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S')+"+0000", + 'now': datetime.utcnow().strftime('%Y-%m-%d %H:%M')+"+0000", } ) From 4448a67b496cc5e5e4ca016fb21151a145165599 Mon Sep 17 00:00:00 2001 From: Julien Thewys Date: Wed, 12 Jan 2011 16:01:36 +0100 Subject: [PATCH 11/20] [REF] cosmetic bzr revid: jth@openerp.com-20110112150136-kzaw52txf5rwadrx --- addons/base_crypt/crypt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/base_crypt/crypt.py b/addons/base_crypt/crypt.py index 486f52cea02..6535a6ff532 100755 --- a/addons/base_crypt/crypt.py +++ b/addons/base_crypt/crypt.py @@ -235,12 +235,12 @@ class users(osv.osv): # If the password 'pw' is not encrypted, then encrypt all passwords # in the db. Returns the (possibly newly) encrypted password for 'id'. - if pw[0:len(magic_md5)] != magic_md5: + if not pw.startswith(magic_md5): cr.execute('select id, password from res_users') res = cr.fetchall() for i, p in res: encrypted = p - if p[0:len(magic_md5)] != magic_md5: + if not p.startswith(magic_md5): encrypted = encrypt_md5(p, gen_salt()) cr.execute('update res_users set password=%s where id=%s', (encrypted.encode('utf-8'), int(i))) From c9fc809271b67f89d65b99b5f59c9e6e1363e776 Mon Sep 17 00:00:00 2001 From: Julien Thewys Date: Wed, 12 Jan 2011 16:05:18 +0100 Subject: [PATCH 12/20] [FIX] do not encrypt empty password bzr revid: jth@openerp.com-20110112150518-qup0i5efc4g4xcep --- addons/base_crypt/crypt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/base_crypt/crypt.py b/addons/base_crypt/crypt.py index 6535a6ff532..2aa7accce42 100755 --- a/addons/base_crypt/crypt.py +++ b/addons/base_crypt/crypt.py @@ -240,7 +240,7 @@ class users(osv.osv): res = cr.fetchall() for i, p in res: encrypted = p - if not p.startswith(magic_md5): + if p and not p.startswith(magic_md5): encrypted = encrypt_md5(p, gen_salt()) cr.execute('update res_users set password=%s where id=%s', (encrypted.encode('utf-8'), int(i))) From 9367e292056de07cec68f36f9c6d6092746f141d Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Wed, 12 Jan 2011 16:27:12 +0100 Subject: [PATCH 13/20] [FIX] purchase store=True on company_id fields of purchase order lines used by records rules lp bug: https://launchpad.net/bugs/701906 fixed bzr revid: al@openerp.com-20110112152712-cbk2w50g7v2tb0kg --- addons/purchase/purchase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/purchase/purchase.py b/addons/purchase/purchase.py index 0de19189fc3..b3c3549b952 100644 --- a/addons/purchase/purchase.py +++ b/addons/purchase/purchase.py @@ -615,7 +615,7 @@ class purchase_order_line(osv.osv): 'notes': fields.text('Notes'), 'order_id': fields.many2one('purchase.order', 'Order Reference', select=True, required=True, ondelete='cascade'), 'account_analytic_id':fields.many2one('account.analytic.account', 'Analytic Account',), - 'company_id': fields.related('order_id','company_id',type='many2one',relation='res.company',string='Company'), + 'company_id': fields.related('order_id','company_id',type='many2one',relation='res.company',store=True,string='Company'), 'state': fields.selection([('draft', 'Draft'), ('confirmed', 'Confirmed'), ('done', 'Done'), ('cancel', 'Cancelled')], 'State', required=True, readonly=True, help=' * The \'Draft\' state is set automatically when purchase order in draft state. \ \n* The \'Confirmed\' state is set automatically as confirm when purchase order in confirm state. \ From 4cc899b5a8c3abc89f1ad75a83148987cab4bcb1 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Wed, 12 Jan 2011 17:06:08 +0100 Subject: [PATCH 14/20] [FIX] res.lang: disallow non cross-platform datetime format directives bzr revid: odo@openerp.com-20110112160608-ixrjyfsgib31nnx8 --- bin/addons/base/res/res_lang.py | 39 ++++++++++++++++++++-------- bin/tools/misc.py | 45 +++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 11 deletions(-) diff --git a/bin/addons/base/res/res_lang.py b/bin/addons/base/res/res_lang.py index d19e9389884..f59127318ec 100644 --- a/bin/addons/base/res/res_lang.py +++ b/bin/addons/base/res/res_lang.py @@ -19,18 +19,22 @@ # ############################################################################## +import locale +import logging + from osv import fields, osv from locale import localeconv import tools from tools.safe_eval import safe_eval as eval from tools.translate import _ -import locale -import logging class lang(osv.osv): _name = "res.lang" _description = "Languages" + _disallowed_datetime_patterns = tools.DATETIME_FORMATS_MAP.keys() + _disallowed_datetime_patterns.remove('%y') # this one is in fact allowed, just not good practice + def install_lang(self, cr, uid, **args): lang = tools.config.get('lang') if not lang: @@ -73,13 +77,14 @@ class lang(osv.osv): return '\xc2\xa0' return s - def fix_time_format(format): - """Python's strftime does not support all the compound formats - from C's strftime, as returned by locale.nl_langinfo(). - Under Ubuntu at least, we encounter %T or %r for some locales.""" - format = format.replace('%T', '%H:%M:%S')\ - .replace('%r', '%I:%M:%S %p')\ - .replace('%R', '%H:%M') + def fix_datetime_format(format): + """Python's strftime supports only the format directives + that are available on the platform's libc, so in order to + be 100% cross-platform we map to the directives required by + the C standard (1989 version), always available on platforms + with a C standard implementation.""" + for pattern, replacement in tools.DATETIME_FORMATS_MAP.iteritems(): + format = format.replace(pattern, replacement) return str(format) lang_info = { @@ -87,8 +92,8 @@ class lang(osv.osv): 'iso_code': iso_lang, 'name': lang_name, 'translatable': 1, - 'date_format' : str(locale.nl_langinfo(locale.D_FMT).replace('%y', '%Y')), - 'time_format' : fix_time_format(locale.nl_langinfo(locale.T_FMT)), + 'date_format' : fix_datetime_format(locale.nl_langinfo(locale.D_FMT)), + 'time_format' : fix_datetime_format(locale.nl_langinfo(locale.T_FMT)), 'decimal_point' : fix_xa0(str(locale.localeconv()['decimal_point'])), 'thousands_sep' : fix_xa0(str(locale.localeconv()['thousands_sep'])), } @@ -99,6 +104,14 @@ class lang(osv.osv): tools.resetlocale() return lang_id + def _check_format(self, cr, uid, ids, context=None): + for lang in self.browse(cr, uid, ids, context=context): + for pattern in self._disallowed_datetime_patterns: + if (lang.time_format and pattern in lang.time_format)\ + or (lang.date_format and pattern in lang.date_format): + return False + return True + def _get_default_date_format(self,cursor,user,context={}): return '%m/%d/%Y' @@ -133,6 +146,10 @@ class lang(osv.osv): ('code_uniq', 'unique (code)', 'The code of the language must be unique !'), ] + _constraints = [ + (_check_format, 'Invalid date/time format directive specified. Please refer to the list of allowed directives, displayed when you edit a language.', ['time_format', 'date_format']) + ] + @tools.cache(skiparg=3) def _lang_data_get(self, cr, uid, lang_id, monetary=False): conv = localeconv() diff --git a/bin/tools/misc.py b/bin/tools/misc.py index 015299bcf05..d18090932dc 100644 --- a/bin/tools/misc.py +++ b/bin/tools/misc.py @@ -1352,6 +1352,51 @@ DEFAULT_SERVER_DATETIME_FORMAT = "%s %s" % ( DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_TIME_FORMAT) +# Python's strftime supports only the format directives +# that are available on the platform's libc, so in order to +# be cross-platform we map to the directives required by +# the C standard (1989 version), always available on platforms +# with a C standard implementation. +DATETIME_FORMATS_MAP = { + '%C': '', # century + '%D': '%m/%d/%Y', # modified %y->%Y + '%e': '%d', + '%E': '', # special modifier + '%F': '%Y-%m-%d', + '%g': '%Y', # modified %y->%Y + '%G': '%Y', + '%h': '%b', + '%k': '%H', + '%l': '%I', + '%n': '\n', + '%O': '', # special modifier + '%P': '%p', + '%R': '%H:%M', + '%r': '%I:%M:%S %p', + '%s': '', #num of seconds since epoch + '%T': '%H:%M:%S', + '%t': ' ', # tab + '%u': ' %w', + '%V': '%W', + '%y': '%Y', # Even if %y works, it's ambiguous, so we should use %Y + '%+': '%Y-%m-%d %H:%M:%S', + + # %Z is a special case that causes 2 problems at least: + # - the timezone names we use (in res_user.context_tz) come + # from pytz, but not all these names are recognized by + # strptime(), so we cannot convert in both directions + # when such a timezone is selected and %Z is in the format + # - %Z is replaced by an empty string in strftime() when + # there is not tzinfo in a datetime value (e.g when the user + # did not pick a context_tz). The resulting string does not + # parse back if the format requires %Z. + # As a consequence, we strip it completely from format strings. + # The user can always have a look at the context_tz in + # preferences to check the timezone. + '%z': '', + '%Z': '', +} + def server_to_local_timestamp(src_tstamp_str, src_format, dst_format, dst_tz_name, tz_offset=True, ignore_unparsable_time=True): """ From c6528444955d83bc75d5fa2b4c0ea56a04d4b676 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Wed, 12 Jan 2011 17:33:32 +0100 Subject: [PATCH 15/20] [IMP] web_uservoice: made "feedback" button label translatable bzr revid: odo@openerp.com-20110112163332-pthcutrnsi21p5dw --- addons/web_uservoice/i18n/web_uservoice.pot | 10 ++++++++-- addons/web_uservoice/web/editors.py | 7 ++++--- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/addons/web_uservoice/i18n/web_uservoice.pot b/addons/web_uservoice/i18n/web_uservoice.pot index 4cc5fbc584e..4c1858741ca 100644 --- a/addons/web_uservoice/i18n/web_uservoice.pot +++ b/addons/web_uservoice/i18n/web_uservoice.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-11 11:16:13+0000\n" -"PO-Revision-Date: 2011-01-11 11:16:13+0000\n" +"POT-Creation-Date: 2011-01-12 16:15+0000\n" +"PO-Revision-Date: 2011-01-12 16:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -20,3 +20,9 @@ msgstr "" msgid "Add uservoice button in header" msgstr "" +#. module: web_uservoice +#: code:addons/web_uservoice/web/editors.py:72 +#, python-format +msgid "feedback" +msgstr "" + diff --git a/addons/web_uservoice/web/editors.py b/addons/web_uservoice/web/editors.py index 36086d5d8b6..1ba4d44ee35 100644 --- a/addons/web_uservoice/web/editors.py +++ b/addons/web_uservoice/web/editors.py @@ -67,9 +67,10 @@ class HeaderTemplateEditor(openobject.templating.TemplateEditor): PAT = '

    ' ul = output.index(PAT) - output = output[:ul] + """ - - """ + output[ul:] + output = output[:ul] + (""" + + """ % _('feedback')) + output[ul:] + return output From d84824d639a8fbcd8dfaacd5130bb67d39f588b3 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Wed, 12 Jan 2011 18:39:01 +0100 Subject: [PATCH 16/20] [FIX] osv.fields: avoid unbinding _symbol_* of fields Reverts rev-id: odo@openerp.com-20110112132828-a38e8ow7ahu97jy3 bzr revid: odo@openerp.com-20110112173901-60jxjgqdufx1bnj3 --- bin/osv/fields.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/bin/osv/fields.py b/bin/osv/fields.py index 25dbd10bedd..35904d950b4 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -132,10 +132,12 @@ class integer(_column): class integer_big(_column): _type = 'integer_big' - _symbol_c = integer._symbol_c - _symbol_f = integer._symbol_f - _symbol_set = integer._symbol_set - _symbol_get = integer._symbol_get + # do not reference the _symbol_* of integer class, as that would possibly + # unbind the lambda functions + _symbol_c = '%s' + _symbol_f = lambda x: int(x or 0) + _symbol_set = (_symbol_c, _symbol_f) + _symbol_get = lambda self,x: x or 0 class reference(_column): _type = 'reference' From 70c8198927145a29a3d4686c5a5ba1d774f01990 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Wed, 12 Jan 2011 18:43:46 +0100 Subject: [PATCH 17/20] [FIX] res.lang: list view should not be editable bzr revid: odo@openerp.com-20110112174346-x8at0n91jdnpyjue --- bin/addons/base/res/res_lang_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/addons/base/res/res_lang_view.xml b/bin/addons/base/res/res_lang_view.xml index 61848255083..303f530c1d0 100644 --- a/bin/addons/base/res/res_lang_view.xml +++ b/bin/addons/base/res/res_lang_view.xml @@ -6,7 +6,7 @@ res.lang tree - + From 977914cf1a3e148a5a906d0468605095a9c088b5 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Wed, 12 Jan 2011 19:05:27 +0100 Subject: [PATCH 18/20] [REM] module: temporarily disabled inclusion of PO files in web addons - pending web client fix bzr revid: odo@openerp.com-20110112180527-ls3w2v83uat31yur --- bin/addons/base/module/module.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/addons/base/module/module.py b/bin/addons/base/module/module.py index 2e276433e63..cac621c746a 100644 --- a/bin/addons/base/module/module.py +++ b/bin/addons/base/module/module.py @@ -629,8 +629,9 @@ class module(osv.osv): for module in modules: web_data = addons.zip_directory( addons.get_module_resource(module.name, 'web'), False) - if self._translations_subdir(module): - web_data = self._add_translations(module, web_data) + #Temporarily disabled until web client is fixed + #if self._translations_subdir(module): + # web_data = self._add_translations(module, web_data) modules_data.append({ 'name': module.name, 'version': module.installed_version, From c08731c113b505290e20f4cb6914c36244a65bcf Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Wed, 12 Jan 2011 23:01:56 +0100 Subject: [PATCH 19/20] fix bzr revid: fp@tinyerp.com-20110112220156-2vhc2vbqu3reqy88 --- addons/account/account_invoice_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/account_invoice_view.xml b/addons/account/account_invoice_view.xml index 5b661e3e7d7..cc8475d4fc3 100644 --- a/addons/account/account_invoice_view.xml +++ b/addons/account/account_invoice_view.xml @@ -310,7 +310,7 @@