[MERGE] Merge with lp:openerp-web

bzr revid: hip@tinyerp.com-20121126120004-svopvxi5btx8nawc
This commit is contained in:
Hiral Patel (OpenERP) 2012-11-26 17:30:04 +05:30
commit 59ccb3cc3d
284 changed files with 118444 additions and 78333 deletions

View File

@ -18,7 +18,7 @@ This module provides the core of the OpenERP Web Client.
"static/lib/datejs/parser.js", "static/lib/datejs/parser.js",
"static/lib/datejs/sugarpak.js", "static/lib/datejs/sugarpak.js",
"static/lib/datejs/extras.js", "static/lib/datejs/extras.js",
"static/lib/jquery/jquery-1.8.2.js", "static/lib/jquery/jquery-1.8.3.js",
"static/lib/jquery.MD5/jquery.md5.js", "static/lib/jquery.MD5/jquery.md5.js",
"static/lib/jquery.form/jquery.form.js", "static/lib/jquery.form/jquery.form.js",
"static/lib/jquery.validate/jquery.validate.js", "static/lib/jquery.validate/jquery.validate.js",

View File

@ -82,7 +82,6 @@ def rjsmin(script):
return result return result
def db_list(req): def db_list(req):
dbs = []
proxy = req.session.proxy("db") proxy = req.session.proxy("db")
dbs = proxy.list() dbs = proxy.list()
h = req.httprequest.environ['HTTP_HOST'].split(':')[0] h = req.httprequest.environ['HTTP_HOST'].split(':')[0]
@ -92,7 +91,7 @@ def db_list(req):
return dbs return dbs
def db_monodb(req): def db_monodb(req):
# if only one db is listed returns it else return False # if only one db exists, return it else return False
try: try:
dbs = db_list(req) dbs = db_list(req)
if len(dbs) == 1: if len(dbs) == 1:
@ -189,14 +188,14 @@ def module_installed_bypass_session(dbname):
sorted_modules = module_topological_sort(modules) sorted_modules = module_topological_sort(modules)
return sorted_modules return sorted_modules
def module_boot(req): def module_boot(req, db=None):
server_wide_modules = openerp.conf.server_wide_modules or ['web'] server_wide_modules = openerp.conf.server_wide_modules or ['web']
serverside = [] serverside = []
dbside = [] dbside = []
for i in server_wide_modules: for i in server_wide_modules:
if i in openerpweb.addons_manifest: if i in openerpweb.addons_manifest:
serverside.append(i) serverside.append(i)
monodb = db_monodb(req) monodb = db or db_monodb(req)
if monodb: if monodb:
dbside = module_installed_bypass_session(monodb) dbside = module_installed_bypass_session(monodb)
dbside = [i for i in dbside if i not in serverside] dbside = [i for i in dbside if i not in serverside]
@ -273,9 +272,9 @@ def fs2web(path):
"""convert FS path into web path""" """convert FS path into web path"""
return '/'.join(path.split(os.path.sep)) return '/'.join(path.split(os.path.sep))
def manifest_glob(req, addons, key): def manifest_glob(req, extension, addons=None, db=None):
if addons is None: if addons is None:
addons = module_boot(req) addons = module_boot(req, db=db)
else: else:
addons = addons.split(',') addons = addons.split(',')
r = [] r = []
@ -285,19 +284,21 @@ def manifest_glob(req, addons, key):
continue continue
# ensure does not ends with / # ensure does not ends with /
addons_path = os.path.join(manifest['addons_path'], '')[:-1] addons_path = os.path.join(manifest['addons_path'], '')[:-1]
globlist = manifest.get(key, []) globlist = manifest.get(extension, [])
for pattern in globlist: for pattern in globlist:
for path in glob.glob(os.path.normpath(os.path.join(addons_path, addon, pattern))): for path in glob.glob(os.path.normpath(os.path.join(addons_path, addon, pattern))):
r.append((path, fs2web(path[len(addons_path):]))) r.append((path, fs2web(path[len(addons_path):])))
return r return r
def manifest_list(req, mods, extension): def manifest_list(req, extension, mods=None, db=None):
if not req.debug: if not req.debug:
path = '/web/webclient/' + extension path = '/web/webclient/' + extension
if mods is not None: if mods is not None:
path += '?mods=' + mods path += '?mods=' + mods
elif db:
path += '?db=' + db
return [path] return [path]
files = manifest_glob(req, mods, extension) files = manifest_glob(req, extension, addons=mods, db=db)
i_am_diabetic = req.httprequest.environ["QUERY_STRING"].count("no_sugar") >= 1 or \ i_am_diabetic = req.httprequest.environ["QUERY_STRING"].count("no_sugar") >= 1 or \
req.httprequest.environ.get('HTTP_REFERER', '').count("no_sugar") >= 1 req.httprequest.environ.get('HTTP_REFERER', '').count("no_sugar") >= 1
if i_am_diabetic: if i_am_diabetic:
@ -344,7 +345,13 @@ def make_conditional(req, response, last_modified=None, etag=None):
return response.make_conditional(req.httprequest) return response.make_conditional(req.httprequest)
def login_and_redirect(req, db, login, key, redirect_url='/'): def login_and_redirect(req, db, login, key, redirect_url='/'):
req.session.authenticate(db, login, key, {}) wsgienv = req.httprequest.environ
env = dict(
base_location=req.httprequest.url_root.rstrip('/'),
HTTP_HOST=wsgienv['HTTP_HOST'],
REMOTE_ADDR=wsgienv['REMOTE_ADDR'],
)
req.session.authenticate(db, login, key, env)
return set_cookie_and_redirect(req, redirect_url) return set_cookie_and_redirect(req, redirect_url)
def set_cookie_and_redirect(req, redirect_url): def set_cookie_and_redirect(req, redirect_url):
@ -366,13 +373,13 @@ def load_actions_from_ir_values(req, key, key2, models, meta):
Values = req.session.model('ir.values') Values = req.session.model('ir.values')
actions = Values.get(key, key2, models, meta, context) actions = Values.get(key, key2, models, meta, context)
return [(id, name, clean_action(req, action)) return [(id, name, clean_action(req, action, context))
for id, name, action in actions] for id, name, action in actions]
def clean_action(req, action, do_not_eval=False): def clean_action(req, action, context, do_not_eval=False):
action.setdefault('flags', {}) action.setdefault('flags', {})
context = req.session.eval_context(req.context) context = context or {}
eval_ctx = req.session.evaluation_context(context) eval_ctx = req.session.evaluation_context(context)
if not do_not_eval: if not do_not_eval:
@ -598,14 +605,14 @@ class Home(openerpweb.Controller):
_cp_path = '/' _cp_path = '/'
@openerpweb.httprequest @openerpweb.httprequest
def index(self, req, s_action=None, **kw): def index(self, req, s_action=None, db=None, **kw):
js = "\n ".join('<script type="text/javascript" src="%s"></script>' % i for i in manifest_list(req, None, 'js')) js = "\n ".join('<script type="text/javascript" src="%s"></script>' % i for i in manifest_list(req, 'js', db=db))
css = "\n ".join('<link rel="stylesheet" href="%s">' % i for i in manifest_list(req, None, 'css')) css = "\n ".join('<link rel="stylesheet" href="%s">' % i for i in manifest_list(req, 'css', db=db))
r = html_template % { r = html_template % {
'js': js, 'js': js,
'css': css, 'css': css,
'modules': simplejson.dumps(module_boot(req)), 'modules': simplejson.dumps(module_boot(req, db=db)),
'init': 'var wc = new s.web.WebClient();wc.appendTo($(document.body));' 'init': 'var wc = new s.web.WebClient();wc.appendTo($(document.body));'
} }
return r return r
@ -619,19 +626,19 @@ class WebClient(openerpweb.Controller):
@openerpweb.jsonrequest @openerpweb.jsonrequest
def csslist(self, req, mods=None): def csslist(self, req, mods=None):
return manifest_list(req, mods, 'css') return manifest_list(req, 'css', mods=mods)
@openerpweb.jsonrequest @openerpweb.jsonrequest
def jslist(self, req, mods=None): def jslist(self, req, mods=None):
return manifest_list(req, mods, 'js') return manifest_list(req, 'js', mods=mods)
@openerpweb.jsonrequest @openerpweb.jsonrequest
def qweblist(self, req, mods=None): def qweblist(self, req, mods=None):
return manifest_list(req, mods, 'qweb') return manifest_list(req, 'qweb', mods=mods)
@openerpweb.httprequest @openerpweb.httprequest
def css(self, req, mods=None): def css(self, req, mods=None, db=None):
files = list(manifest_glob(req, mods, 'css')) files = list(manifest_glob(req, 'css', addons=mods, db=db))
last_modified = get_last_modified(f[0] for f in files) last_modified = get_last_modified(f[0] for f in files)
if req.httprequest.if_modified_since and req.httprequest.if_modified_since >= last_modified: if req.httprequest.if_modified_since and req.httprequest.if_modified_since >= last_modified:
return werkzeug.wrappers.Response(status=304) return werkzeug.wrappers.Response(status=304)
@ -669,8 +676,8 @@ class WebClient(openerpweb.Controller):
last_modified, checksum) last_modified, checksum)
@openerpweb.httprequest @openerpweb.httprequest
def js(self, req, mods=None): def js(self, req, mods=None, db=None):
files = [f[0] for f in manifest_glob(req, mods, 'js')] files = [f[0] for f in manifest_glob(req, 'js', addons=mods, db=db)]
last_modified = get_last_modified(files) last_modified = get_last_modified(files)
if req.httprequest.if_modified_since and req.httprequest.if_modified_since >= last_modified: if req.httprequest.if_modified_since and req.httprequest.if_modified_since >= last_modified:
return werkzeug.wrappers.Response(status=304) return werkzeug.wrappers.Response(status=304)
@ -682,8 +689,8 @@ class WebClient(openerpweb.Controller):
last_modified, checksum) last_modified, checksum)
@openerpweb.httprequest @openerpweb.httprequest
def qweb(self, req, mods=None): def qweb(self, req, mods=None, db=None):
files = [f[0] for f in manifest_glob(req, mods, 'qweb')] files = [f[0] for f in manifest_glob(req, 'qweb', addons=mods, db=db)]
last_modified = get_last_modified(files) last_modified = get_last_modified(files)
if req.httprequest.if_modified_since and req.httprequest.if_modified_since >= last_modified: if req.httprequest.if_modified_since and req.httprequest.if_modified_since >= last_modified:
return werkzeug.wrappers.Response(status=304) return werkzeug.wrappers.Response(status=304)
@ -890,7 +897,7 @@ class Session(openerpweb.Controller):
old_password, new_password,confirm_password = operator.itemgetter('old_pwd', 'new_password','confirm_pwd')( old_password, new_password,confirm_password = operator.itemgetter('old_pwd', 'new_password','confirm_pwd')(
dict(map(operator.itemgetter('name', 'value'), fields))) dict(map(operator.itemgetter('name', 'value'), fields)))
if not (old_password.strip() and new_password.strip() and confirm_password.strip()): if not (old_password.strip() and new_password.strip() and confirm_password.strip()):
return {'error':'All passwords have to be filled.','title': 'Change Password'} return {'error':'You cannot leave any password empty.','title': 'Change Password'}
if new_password != confirm_password: if new_password != confirm_password:
return {'error': 'The new password and its confirmation must be identical.','title': 'Change Password'} return {'error': 'The new password and its confirmation must be identical.','title': 'Change Password'}
try: try:
@ -898,7 +905,7 @@ class Session(openerpweb.Controller):
old_password, new_password): old_password, new_password):
return {'new_password':new_password} return {'new_password':new_password}
except Exception: except Exception:
return {'error': 'Original password incorrect, your password was not changed.', 'title': 'Change Password'} return {'error': 'The old password you provided is incorrect, your password was not changed.', 'title': 'Change Password'}
return {'error': 'Error, password not changed !', 'title': 'Change Password'} return {'error': 'Error, password not changed !', 'title': 'Change Password'}
@openerpweb.jsonrequest @openerpweb.jsonrequest
@ -1236,9 +1243,10 @@ class DataSet(openerpweb.Controller):
@openerpweb.jsonrequest @openerpweb.jsonrequest
def call_button(self, req, model, method, args, domain_id=None, context_id=None): def call_button(self, req, model, method, args, domain_id=None, context_id=None):
context = req.session.eval_context(req.context)
action = self.call_common(req, model, method, args, domain_id, context_id) action = self.call_common(req, model, method, args, domain_id, context_id)
if isinstance(action, dict) and action.get('type') != '': if isinstance(action, dict) and action.get('type') != '':
return clean_action(req, action) return clean_action(req, action, context)
return False return False
@openerpweb.jsonrequest @openerpweb.jsonrequest
@ -1617,10 +1625,11 @@ class Action(openerpweb.Controller):
_cp_path = "/web/action" _cp_path = "/web/action"
@openerpweb.jsonrequest @openerpweb.jsonrequest
def load(self, req, action_id, do_not_eval=False): def load(self, req, action_id, do_not_eval=False, eval_context=None):
Actions = req.session.model('ir.actions.actions') Actions = req.session.model('ir.actions.actions')
value = False value = False
context = req.session.eval_context(req.context) context = req.session.eval_context(req.context)
eval_context = req.session.eval_context(nonliterals.CompoundContext(context, eval_context or {}))
try: try:
action_id = int(action_id) action_id = int(action_id)
@ -1641,15 +1650,16 @@ class Action(openerpweb.Controller):
ctx.update(context) ctx.update(context)
action = req.session.model(action_type).read([action_id], False, ctx) action = req.session.model(action_type).read([action_id], False, ctx)
if action: if action:
value = clean_action(req, action[0], do_not_eval) value = clean_action(req, action[0], eval_context, do_not_eval)
return value return value
@openerpweb.jsonrequest @openerpweb.jsonrequest
def run(self, req, action_id): def run(self, req, action_id):
context = req.session.eval_context(req.context)
return_action = req.session.model('ir.actions.server').run( return_action = req.session.model('ir.actions.server').run(
[action_id], req.session.eval_context(req.context)) [action_id], req.session.eval_context(req.context))
if return_action: if return_action:
return clean_action(req, return_action) return clean_action(req, return_action, context)
else: else:
return False return False
@ -1742,7 +1752,9 @@ class Export(View):
def fields_info(self, req, model, export_fields): def fields_info(self, req, model, export_fields):
info = {} info = {}
fields = self.fields_get(req, model) fields = self.fields_get(req, model)
if ".id" in export_fields:
fields['.id'] = fields.pop('id', {'string': 'ID'})
# To make fields retrieval more efficient, fetch all sub-fields of a # To make fields retrieval more efficient, fetch all sub-fields of a
# given field at the same time. Because the order in the export list is # given field at the same time. Because the order in the export list is
# arbitrary, this requires ordering all sub-fields of a given field # arbitrary, this requires ordering all sub-fields of a given field

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

2047
addons/web/i18n/lo.po Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
/*! /*!
* jQuery JavaScript Library v1.8.2 * jQuery JavaScript Library v1.8.3
* http://jquery.com/ * http://jquery.com/
* *
* Includes Sizzle.js * Includes Sizzle.js
@ -9,7 +9,7 @@
* Released under the MIT license * Released under the MIT license
* http://jquery.org/license * http://jquery.org/license
* *
* Date: Thu Sep 20 2012 21:13:05 GMT-0400 (Eastern Daylight Time) * Date: Tue Nov 13 2012 08:20:33 GMT-0500 (Eastern Standard Time)
*/ */
(function( window, undefined ) { (function( window, undefined ) {
var var
@ -186,7 +186,7 @@ jQuery.fn = jQuery.prototype = {
selector: "", selector: "",
// The current version of jQuery being used // The current version of jQuery being used
jquery: "1.8.2", jquery: "1.8.3",
// The default length of a jQuery object is 0 // The default length of a jQuery object is 0
length: 0, length: 0,
@ -999,8 +999,10 @@ jQuery.Callbacks = function( options ) {
(function add( args ) { (function add( args ) {
jQuery.each( args, function( _, arg ) { jQuery.each( args, function( _, arg ) {
var type = jQuery.type( arg ); var type = jQuery.type( arg );
if ( type === "function" && ( !options.unique || !self.has( arg ) ) ) { if ( type === "function" ) {
list.push( arg ); if ( !options.unique || !self.has( arg ) ) {
list.push( arg );
}
} else if ( arg && arg.length && type !== "string" ) { } else if ( arg && arg.length && type !== "string" ) {
// Inspect recursively // Inspect recursively
add( arg ); add( arg );
@ -1149,14 +1151,7 @@ jQuery.extend({
deferred = {}; deferred = {};
// Keep pipe for back-compat // Keep pipe for back-compat
//promise.pipe = promise.then; promise.pipe = promise.then;
promise.pipe = function() {
if (window.console) {
console.error && console.error("$.Deferred().pipe() is deprecated. Use .then() instead.");
console.trace && console.trace();
}
return promise.then.apply(this, arguments);
};
// Add list-specific methods // Add list-specific methods
jQuery.each( tuples, function( i, tuple ) { jQuery.each( tuples, function( i, tuple ) {
@ -1260,24 +1255,23 @@ jQuery.support = (function() {
clickFn, clickFn,
div = document.createElement("div"); div = document.createElement("div");
// Preliminary tests // Setup
div.setAttribute( "className", "t" ); div.setAttribute( "className", "t" );
div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
// Support tests won't run in some limited or non-browser environments
all = div.getElementsByTagName("*"); all = div.getElementsByTagName("*");
a = div.getElementsByTagName("a")[ 0 ]; a = div.getElementsByTagName("a")[ 0 ];
a.style.cssText = "top:1px;float:left;opacity:.5"; if ( !all || !a || !all.length ) {
// Can't get basic test support
if ( !all || !all.length ) {
return {}; return {};
} }
// First batch of supports tests // First batch of tests
select = document.createElement("select"); select = document.createElement("select");
opt = select.appendChild( document.createElement("option") ); opt = select.appendChild( document.createElement("option") );
input = div.getElementsByTagName("input")[ 0 ]; input = div.getElementsByTagName("input")[ 0 ];
a.style.cssText = "top:1px;float:left;opacity:.5";
support = { support = {
// IE strips leading whitespace when .innerHTML is used // IE strips leading whitespace when .innerHTML is used
leadingWhitespace: ( div.firstChild.nodeType === 3 ), leadingWhitespace: ( div.firstChild.nodeType === 3 ),
@ -1319,7 +1313,7 @@ jQuery.support = (function() {
// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)
getSetAttribute: div.className !== "t", getSetAttribute: div.className !== "t",
// Tests for enctype support on a form(#6743) // Tests for enctype support on a form (#6743)
enctype: !!document.createElement("form").enctype, enctype: !!document.createElement("form").enctype,
// Makes sure cloning an html5 element does not cause problems // Makes sure cloning an html5 element does not cause problems
@ -2224,26 +2218,25 @@ jQuery.extend({
}, },
select: { select: {
get: function( elem ) { get: function( elem ) {
var value, i, max, option, var value, option,
index = elem.selectedIndex,
values = [],
options = elem.options, options = elem.options,
one = elem.type === "select-one"; index = elem.selectedIndex,
one = elem.type === "select-one" || index < 0,
// Nothing was selected values = one ? null : [],
if ( index < 0 ) { max = one ? index + 1 : options.length,
return null; i = index < 0 ?
} max :
one ? index : 0;
// Loop through all the selected options // Loop through all the selected options
i = one ? index : 0;
max = one ? index + 1 : options.length;
for ( ; i < max; i++ ) { for ( ; i < max; i++ ) {
option = options[ i ]; option = options[ i ];
// Don't return options that are disabled or in a disabled optgroup // oldIE doesn't update selected after form reset (#2551)
if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && if ( ( option.selected || i === index ) &&
(!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { // Don't return options that are disabled or in a disabled optgroup
( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) &&
( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
// Get the specific value for the option // Get the specific value for the option
value = jQuery( option ).val(); value = jQuery( option ).val();
@ -2258,11 +2251,6 @@ jQuery.extend({
} }
} }
// Fixes Bug #2551 -- select.val() broken in IE after form.reset()
if ( one && !values.length && options.length ) {
return jQuery( options[ index ] ).val();
}
return values; return values;
}, },
@ -3240,7 +3228,7 @@ jQuery.removeEvent = document.removeEventListener ?
if ( elem.detachEvent ) { if ( elem.detachEvent ) {
// #8545, #7054, preventing memory leaks for custom events in IE6-8 // #8545, #7054, preventing memory leaks for custom events in IE6-8
// detachEvent needed property on element, by name of that event, to properly expose it to GC // detachEvent needed property on element, by name of that event, to properly expose it to GC
if ( typeof elem[ name ] === "undefined" ) { if ( typeof elem[ name ] === "undefined" ) {
elem[ name ] = null; elem[ name ] = null;
@ -3732,7 +3720,8 @@ var cachedruns,
delete cache[ keys.shift() ]; delete cache[ keys.shift() ];
} }
return (cache[ key ] = value); // Retrieve with (key + " ") to avoid collision with native Object.prototype properties (see Issue #157)
return (cache[ key + " " ] = value);
}, cache ); }, cache );
}, },
@ -4266,13 +4255,13 @@ Expr = Sizzle.selectors = {
}, },
"CLASS": function( className ) { "CLASS": function( className ) {
var pattern = classCache[ expando ][ className ]; var pattern = classCache[ expando ][ className + " " ];
if ( !pattern ) {
pattern = classCache( className, new RegExp("(^|" + whitespace + ")" + className + "(" + whitespace + "|$)") ); return pattern ||
} (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
return function( elem ) { classCache( className, function( elem ) {
return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" ); return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" );
}; });
}, },
"ATTR": function( name, operator, check ) { "ATTR": function( name, operator, check ) {
@ -4518,7 +4507,7 @@ Expr = Sizzle.selectors = {
"focus": function( elem ) { "focus": function( elem ) {
var doc = elem.ownerDocument; var doc = elem.ownerDocument;
return elem === doc.activeElement && (!doc.hasFocus || doc.hasFocus()) && !!(elem.type || elem.href); return elem === doc.activeElement && (!doc.hasFocus || doc.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
}, },
"active": function( elem ) { "active": function( elem ) {
@ -4526,11 +4515,11 @@ Expr = Sizzle.selectors = {
}, },
// Positional types // Positional types
"first": createPositionalPseudo(function( matchIndexes, length, argument ) { "first": createPositionalPseudo(function() {
return [ 0 ]; return [ 0 ];
}), }),
"last": createPositionalPseudo(function( matchIndexes, length, argument ) { "last": createPositionalPseudo(function( matchIndexes, length ) {
return [ length - 1 ]; return [ length - 1 ];
}), }),
@ -4538,14 +4527,14 @@ Expr = Sizzle.selectors = {
return [ argument < 0 ? argument + length : argument ]; return [ argument < 0 ? argument + length : argument ];
}), }),
"even": createPositionalPseudo(function( matchIndexes, length, argument ) { "even": createPositionalPseudo(function( matchIndexes, length ) {
for ( var i = 0; i < length; i += 2 ) { for ( var i = 0; i < length; i += 2 ) {
matchIndexes.push( i ); matchIndexes.push( i );
} }
return matchIndexes; return matchIndexes;
}), }),
"odd": createPositionalPseudo(function( matchIndexes, length, argument ) { "odd": createPositionalPseudo(function( matchIndexes, length ) {
for ( var i = 1; i < length; i += 2 ) { for ( var i = 1; i < length; i += 2 ) {
matchIndexes.push( i ); matchIndexes.push( i );
} }
@ -4666,7 +4655,9 @@ baseHasDuplicate = !hasDuplicate;
// Document sorting and removing duplicates // Document sorting and removing duplicates
Sizzle.uniqueSort = function( results ) { Sizzle.uniqueSort = function( results ) {
var elem, var elem,
i = 1; duplicates = [],
i = 1,
j = 0;
hasDuplicate = baseHasDuplicate; hasDuplicate = baseHasDuplicate;
results.sort( sortOrder ); results.sort( sortOrder );
@ -4674,9 +4665,12 @@ Sizzle.uniqueSort = function( results ) {
if ( hasDuplicate ) { if ( hasDuplicate ) {
for ( ; (elem = results[i]); i++ ) { for ( ; (elem = results[i]); i++ ) {
if ( elem === results[ i - 1 ] ) { if ( elem === results[ i - 1 ] ) {
results.splice( i--, 1 ); j = duplicates.push( i );
} }
} }
while ( j-- ) {
results.splice( duplicates[ j ], 1 );
}
} }
return results; return results;
@ -4687,8 +4681,9 @@ Sizzle.error = function( msg ) {
}; };
function tokenize( selector, parseOnly ) { function tokenize( selector, parseOnly ) {
var matched, match, tokens, type, soFar, groups, preFilters, var matched, match, tokens, type,
cached = tokenCache[ expando ][ selector ]; soFar, groups, preFilters,
cached = tokenCache[ expando ][ selector + " " ];
if ( cached ) { if ( cached ) {
return parseOnly ? 0 : cached.slice( 0 ); return parseOnly ? 0 : cached.slice( 0 );
@ -4703,7 +4698,8 @@ function tokenize( selector, parseOnly ) {
// Comma and first run // Comma and first run
if ( !matched || (match = rcomma.exec( soFar )) ) { if ( !matched || (match = rcomma.exec( soFar )) ) {
if ( match ) { if ( match ) {
soFar = soFar.slice( match[0].length ); // Don't consume trailing commas as valid
soFar = soFar.slice( match[0].length ) || soFar;
} }
groups.push( tokens = [] ); groups.push( tokens = [] );
} }
@ -4722,8 +4718,7 @@ function tokenize( selector, parseOnly ) {
// Filters // Filters
for ( type in Expr.filter ) { for ( type in Expr.filter ) {
if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
// The last two arguments here are (context, xml) for backCompat (match = preFilters[ type ]( match ))) ) {
(match = preFilters[ type ]( match, document, true ))) ) {
tokens.push( matched = new Token( match.shift() ) ); tokens.push( matched = new Token( match.shift() ) );
soFar = soFar.slice( matched.length ); soFar = soFar.slice( matched.length );
@ -4843,18 +4838,13 @@ function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postS
postFinder = setMatcher( postFinder, postSelector ); postFinder = setMatcher( postFinder, postSelector );
} }
return markFunction(function( seed, results, context, xml ) { return markFunction(function( seed, results, context, xml ) {
// Positional selectors apply to seed elements, so it is invalid to follow them with relative ones var temp, i, elem,
if ( seed && postFinder ) {
return;
}
var i, elem, postFilterIn,
preMap = [], preMap = [],
postMap = [], postMap = [],
preexisting = results.length, preexisting = results.length,
// Get initial elements from seed or context // Get initial elements from seed or context
elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [], seed ), elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
// Prefilter to get matcher input, preserving a map for seed-results synchronization // Prefilter to get matcher input, preserving a map for seed-results synchronization
matcherIn = preFilter && ( seed || !selector ) ? matcherIn = preFilter && ( seed || !selector ) ?
@ -4879,27 +4869,45 @@ function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postS
// Apply postFilter // Apply postFilter
if ( postFilter ) { if ( postFilter ) {
postFilterIn = condense( matcherOut, postMap ); temp = condense( matcherOut, postMap );
postFilter( postFilterIn, [], context, xml ); postFilter( temp, [], context, xml );
// Un-match failing elements by moving them back to matcherIn // Un-match failing elements by moving them back to matcherIn
i = postFilterIn.length; i = temp.length;
while ( i-- ) { while ( i-- ) {
if ( (elem = postFilterIn[i]) ) { if ( (elem = temp[i]) ) {
matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
} }
} }
} }
// Keep seed and results synchronized
if ( seed ) { if ( seed ) {
// Ignore postFinder because it can't coexist with seed if ( postFinder || preFilter ) {
i = preFilter && matcherOut.length; if ( postFinder ) {
while ( i-- ) { // Get the final matcherOut by condensing this intermediate into postFinder contexts
if ( (elem = matcherOut[i]) ) { temp = [];
seed[ preMap[i] ] = !(results[ preMap[i] ] = elem); i = matcherOut.length;
while ( i-- ) {
if ( (elem = matcherOut[i]) ) {
// Restore matcherIn since elem is not yet a final match
temp.push( (matcherIn[i] = elem) );
}
}
postFinder( null, (matcherOut = []), temp, xml );
}
// Move matched elements from seed to results to keep them synchronized
i = matcherOut.length;
while ( i-- ) {
if ( (elem = matcherOut[i]) &&
(temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {
seed[temp] = !(results[temp] = elem);
}
} }
} }
// Add elements to results, through postFinder if defined
} else { } else {
matcherOut = condense( matcherOut = condense(
matcherOut === results ? matcherOut === results ?
@ -4940,7 +4948,6 @@ function matcherFromTokens( tokens ) {
if ( (matcher = Expr.relative[ tokens[i].type ]) ) { if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];
} else { } else {
// The concatenated values are (context, xml) for backCompat
matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
// Return special upon seeing a positional matcher // Return special upon seeing a positional matcher
@ -5069,7 +5076,7 @@ compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) {
var i, var i,
setMatchers = [], setMatchers = [],
elementMatchers = [], elementMatchers = [],
cached = compilerCache[ expando ][ selector ]; cached = compilerCache[ expando ][ selector + " " ];
if ( !cached ) { if ( !cached ) {
// Generate a function of recursive functions that can be used to check each element // Generate a function of recursive functions that can be used to check each element
@ -5092,11 +5099,11 @@ compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) {
return cached; return cached;
}; };
function multipleContexts( selector, contexts, results, seed ) { function multipleContexts( selector, contexts, results ) {
var i = 0, var i = 0,
len = contexts.length; len = contexts.length;
for ( ; i < len; i++ ) { for ( ; i < len; i++ ) {
Sizzle( selector, contexts[i], results, seed ); Sizzle( selector, contexts[i], results );
} }
return results; return results;
} }
@ -5174,15 +5181,14 @@ if ( document.querySelectorAll ) {
rescape = /'|\\/g, rescape = /'|\\/g,
rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g, rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,
// qSa(:focus) reports false when true (Chrome 21), // qSa(:focus) reports false when true (Chrome 21), no need to also add to buggyMatches since matches checks buggyQSA
// A support test would require too much code (would include document ready) // A support test would require too much code (would include document ready)
rbuggyQSA = [":focus"], rbuggyQSA = [ ":focus" ],
// matchesSelector(:focus) reports false when true (Chrome 21),
// matchesSelector(:active) reports false when true (IE9/Opera 11.5) // matchesSelector(:active) reports false when true (IE9/Opera 11.5)
// A support test would require too much code (would include document ready) // A support test would require too much code (would include document ready)
// just skip matchesSelector for :active // just skip matchesSelector for :active
rbuggyMatches = [ ":active", ":focus" ], rbuggyMatches = [ ":active" ],
matches = docElem.matchesSelector || matches = docElem.matchesSelector ||
docElem.mozMatchesSelector || docElem.mozMatchesSelector ||
docElem.webkitMatchesSelector || docElem.webkitMatchesSelector ||
@ -5236,7 +5242,7 @@ if ( document.querySelectorAll ) {
// Only use querySelectorAll when not filtering, // Only use querySelectorAll when not filtering,
// when this is not xml, // when this is not xml,
// and when no QSA bugs apply // and when no QSA bugs apply
if ( !seed && !xml && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { if ( !seed && !xml && !rbuggyQSA.test( selector ) ) {
var groups, i, var groups, i,
old = true, old = true,
nid = expando, nid = expando,
@ -5305,7 +5311,7 @@ if ( document.querySelectorAll ) {
expr = expr.replace( rattributeQuotes, "='$1']" ); expr = expr.replace( rattributeQuotes, "='$1']" );
// rbuggyMatches always contains :active, so no need for an existence check // rbuggyMatches always contains :active, so no need for an existence check
if ( !isXML( elem ) && !rbuggyMatches.test( expr ) && (!rbuggyQSA || !rbuggyQSA.test( expr )) ) { if ( !isXML( elem ) && !rbuggyMatches.test( expr ) && !rbuggyQSA.test( expr ) ) {
try { try {
var ret = matches.call( elem, expr ); var ret = matches.call( elem, expr );
@ -6540,7 +6546,7 @@ var curCSS, iframe, iframeDoc,
rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ),
rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ),
rrelNum = new RegExp( "^([-+])=(" + core_pnum + ")", "i" ), rrelNum = new RegExp( "^([-+])=(" + core_pnum + ")", "i" ),
elemdisplay = {}, elemdisplay = { BODY: "block" },
cssShow = { position: "absolute", visibility: "hidden", display: "block" }, cssShow = { position: "absolute", visibility: "hidden", display: "block" },
cssNormalTransform = { cssNormalTransform = {
@ -6821,7 +6827,9 @@ if ( window.getComputedStyle ) {
if ( computed ) { if ( computed ) {
ret = computed[ name ]; // getPropertyValue is only needed for .css('filter') in IE9, see #12537
ret = computed.getPropertyValue( name ) || computed[ name ];
if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
ret = jQuery.style( elem, name ); ret = jQuery.style( elem, name );
} }
@ -7850,9 +7858,12 @@ jQuery.extend({
// A cross-domain request is in order when we have a protocol:host:port mismatch // A cross-domain request is in order when we have a protocol:host:port mismatch
if ( s.crossDomain == null ) { if ( s.crossDomain == null ) {
parts = rurl.exec( s.url.toLowerCase() ) || false; parts = rurl.exec( s.url.toLowerCase() );
s.crossDomain = parts && ( parts.join(":") + ( parts[ 3 ] ? "" : parts[ 1 ] === "http:" ? 80 : 443 ) ) !== s.crossDomain = !!( parts &&
( ajaxLocParts.join(":") + ( ajaxLocParts[ 3 ] ? "" : ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ); ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) !=
( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ) )
);
} }
// Convert data if not already a string // Convert data if not already a string
@ -8471,7 +8482,7 @@ if ( jQuery.support.ajax ) {
// on any attempt to access responseText (#11426) // on any attempt to access responseText (#11426)
try { try {
responses.text = xhr.responseText; responses.text = xhr.responseText;
} catch( _ ) { } catch( e ) {
} }
// Firefox throws an exception when accessing // Firefox throws an exception when accessing
@ -8624,7 +8635,9 @@ function Animation( elem, properties, options ) {
tick = function() { tick = function() {
var currentTime = fxNow || createFxNow(), var currentTime = fxNow || createFxNow(),
remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
percent = 1 - ( remaining / animation.duration || 0 ), // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
temp = remaining / animation.duration || 0,
percent = 1 - temp,
index = 0, index = 0,
length = animation.tweens.length; length = animation.tweens.length;
@ -8776,7 +8789,7 @@ jQuery.Animation = jQuery.extend( Animation, {
}); });
function defaultPrefilter( elem, props, opts ) { function defaultPrefilter( elem, props, opts ) {
var index, prop, value, length, dataShow, tween, hooks, oldfire, var index, prop, value, length, dataShow, toggle, tween, hooks, oldfire,
anim = this, anim = this,
style = elem.style, style = elem.style,
orig = {}, orig = {},
@ -8850,6 +8863,7 @@ function defaultPrefilter( elem, props, opts ) {
value = props[ index ]; value = props[ index ];
if ( rfxtypes.exec( value ) ) { if ( rfxtypes.exec( value ) ) {
delete props[ index ]; delete props[ index ];
toggle = toggle || value === "toggle";
if ( value === ( hidden ? "hide" : "show" ) ) { if ( value === ( hidden ? "hide" : "show" ) ) {
continue; continue;
} }
@ -8860,6 +8874,14 @@ function defaultPrefilter( elem, props, opts ) {
length = handled.length; length = handled.length;
if ( length ) { if ( length ) {
dataShow = jQuery._data( elem, "fxshow" ) || jQuery._data( elem, "fxshow", {} ); dataShow = jQuery._data( elem, "fxshow" ) || jQuery._data( elem, "fxshow", {} );
if ( "hidden" in dataShow ) {
hidden = dataShow.hidden;
}
// store state if its toggle - enables .stop().toggle() to "reverse"
if ( toggle ) {
dataShow.hidden = !hidden;
}
if ( hidden ) { if ( hidden ) {
jQuery( elem ).show(); jQuery( elem ).show();
} else { } else {
@ -9156,6 +9178,8 @@ jQuery.fx.tick = function() {
timers = jQuery.timers, timers = jQuery.timers,
i = 0; i = 0;
fxNow = jQuery.now();
for ( ; i < timers.length; i++ ) { for ( ; i < timers.length; i++ ) {
timer = timers[ i ]; timer = timers[ i ];
// Checks the timer has not already been removed // Checks the timer has not already been removed
@ -9167,6 +9191,7 @@ jQuery.fx.tick = function() {
if ( !timers.length ) { if ( !timers.length ) {
jQuery.fx.stop(); jQuery.fx.stop();
} }
fxNow = undefined;
}; };
jQuery.fx.timer = function( timer ) { jQuery.fx.timer = function( timer ) {

View File

@ -698,7 +698,7 @@ QWeb2.Element = (function() {
this.top("debugger;"); this.top("debugger;");
}, },
compile_action_log : function(value) { compile_action_log : function(value) {
this.top("console.log(" + this.format_expression(value) + "});"); this.top("console.log(" + this.format_expression(value) + ");");
} }
}); });
return Element; return Element;

View File

@ -30,7 +30,7 @@
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5); text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
/* http://www.quirksmode.org/dom/inputfile.html /* http://www.quirksmode.org/dom/inputfile.html
* http://stackoverflow.com/questions/2855589/replace-input-type-file-by-an-image * http://stackoverflow.com/questions/2855589/replace-input-type-file-by-an-image
*/ */ */
} }
.openerp.openerp_webclient_container { .openerp.openerp_webclient_container {
height: 100%; height: 100%;
@ -1387,60 +1387,6 @@
.openerp .oe_view_manager table.oe_view_manager_header .oe_view_manager_buttons { .openerp .oe_view_manager table.oe_view_manager_header .oe_view_manager_buttons {
white-space: nowrap; white-space: nowrap;
} }
.openerp .oe_view_manager .oe_view_manager_pager {
line-height: 26px;
}
.openerp .oe_view_manager .oe_view_manager_pager .oe_list_pager_single_page .oe_pager_group {
display: none;
}
.openerp .oe_view_manager .oe_pager_value {
float: left;
margin-right: 8px;
}
.openerp .oe_view_manager ul.oe_pager_group {
padding: 0;
margin: 0;
}
.openerp .oe_view_manager .oe_pager_group {
float: left;
height: 24px;
line-height: 24px;
display: inline-block;
border: 1px solid #ababab;
cursor: pointer;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.openerp .oe_view_manager .oe_pager_group li {
height: 24px;
line-height: 24px;
padding: 0;
margin: 0;
list-style-type: none;
float: left;
border-right: 1px solid #ababab;
}
.openerp .oe_view_manager .oe_pager_group li:last-child {
border: none;
}
.openerp .oe_view_manager .oe_pager_group a {
color: #4c4c4c;
padding: 0 8px;
}
.openerp .oe_view_manager .oe_pager_group a:hover {
text-decoration: none;
}
.openerp .oe_view_manager .oe_pager_group .active {
background: #999999;
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
}
.openerp .oe_view_manager .oe_pager_group .active a {
color: white;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.openerp .oe_view_manager .oe_view_manager_switch { .openerp .oe_view_manager .oe_view_manager_switch {
padding: 0; padding: 0;
margin: 0 0 0 8px; margin: 0 0 0 8px;
@ -1489,6 +1435,60 @@
.openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_diagram:after { .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_diagram:after {
content: "f"; content: "f";
} }
.openerp .oe_list_pager {
line-height: 26px;
}
.openerp .oe_pager_value {
float: left;
margin-right: 8px;
}
.openerp ul.oe_pager_group {
padding: 0;
margin: 0;
}
.openerp .oe_pager_group {
float: left;
height: 24px;
line-height: 24px;
display: inline-block;
border: 1px solid #ababab;
cursor: pointer;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.openerp .oe_pager_group li {
height: 24px;
line-height: 24px;
padding: 0;
margin: 0;
list-style-type: none;
float: left;
border-right: 1px solid #ababab;
}
.openerp .oe_pager_group li:last-child {
border: none;
}
.openerp .oe_pager_group a {
color: #4c4c4c;
padding: 0 8px;
}
.openerp .oe_pager_group a:hover {
text-decoration: none;
}
.openerp .oe_pager_group .active {
background: #999999;
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
}
.openerp .oe_pager_group .active a {
color: white;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.openerp .oe_list_pager.oe_list_pager_single_page .oe_pager_group {
display: none;
}
.openerp .oe_view_manager_current { .openerp .oe_view_manager_current {
height: 100%; height: 100%;
} }
@ -1520,6 +1520,9 @@
.openerp .oe_popup_form > .oe_formview > .oe_form_pager { .openerp .oe_popup_form > .oe_formview > .oe_form_pager {
display: none !important; display: none !important;
} }
.openerp .oe_popup_list_pager {
float: right;
}
.openerp .oe_searchview { .openerp .oe_searchview {
cursor: text; cursor: text;
position: relative; position: relative;
@ -1842,6 +1845,7 @@
padding: 0; padding: 0;
} }
.openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced li { .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced li {
cursor: pointer;
position: relative; position: relative;
list-style: none; list-style: none;
margin: 0; margin: 0;
@ -1908,14 +1912,22 @@
max-width: 700px; max-width: 700px;
} }
.openerp .oe_view_nocontent .oe_view_nocontent_create { .openerp .oe_view_nocontent .oe_view_nocontent_create {
background: transparent url(/web/static/src/img/view_empty_arrow.png) no-repeat 7px 0;
margin-top: 0; margin-top: 0;
padding-top: 35px; padding-top: 35px;
min-height: 28px;
color: #4c4c4c; color: #4c4c4c;
} }
.openerp .oe_view_nocontent .oe_view_nocontent_create:before {
content: "";
display: inline-block;
position: absolute;
width: 70px;
height: 80px;
margin-left: -70px;
margin-top: -50px;
background: transparent url(/web/static/src/img/view_empty_arrow.png) no-repeat 0px 0px;
}
.openerp .oe_view_nocontent > p { .openerp .oe_view_nocontent > p {
padding-left: 95px; padding-left: 78px;
} }
.openerp .oe_view_nocontent .oe_empty_custom_dashboard { .openerp .oe_view_nocontent .oe_empty_custom_dashboard {
background: transparent url(/web/static/src/img/graph_background.png) no-repeat 0 0; background: transparent url(/web/static/src/img/graph_background.png) no-repeat 0 0;

View File

@ -1121,47 +1121,6 @@ $sheet-padding: 16px
.oe_view_manager_buttons .oe_view_manager_buttons
white-space: nowrap white-space: nowrap
// }}} // }}}
// ViewManager.pager {{{
.oe_view_manager_pager
line-height: 26px
.oe_list_pager_single_page .oe_pager_group
display: none
.oe_pager_value
float: left
margin-right: 8px
ul.oe_pager_group
padding: 0
margin: 0
.oe_pager_group
float: left
height: 24px
line-height: 24px
display: inline-block
border: 1px solid #ababab
cursor: pointer
@include radius(5px)
li
height: 24px
line-height: 24px
padding: 0
margin: 0
list-style-type: none
float: left
border-right: 1px solid #ababab
&:last-child
border: none
a
color: #4c4c4c
padding: 0 8px
&:hover
text-decoration: none
.active
background: #999
@include box-shadow(0 1px 4px rgba(0,0,0,0.3) inset)
a
color: #fff
text-shadow: 0 1px 2px rgba(0,0,0,0.4)
// }}}
// ViewManager.switches {{{ // ViewManager.switches {{{
.oe_view_manager_switch .oe_view_manager_switch
padding: 0 padding: 0
@ -1202,6 +1161,47 @@ $sheet-padding: 16px
.oe_vm_switch_diagram:after .oe_vm_switch_diagram:after
content: "f" content: "f"
// }}} // }}}
// List pager {{{
.oe_list_pager
line-height: 26px
.oe_pager_value
float: left
margin-right: 8px
ul.oe_pager_group
padding: 0
margin: 0
.oe_pager_group
float: left
height: 24px
line-height: 24px
display: inline-block
border: 1px solid #ababab
cursor: pointer
@include radius(5px)
li
height: 24px
line-height: 24px
padding: 0
margin: 0
list-style-type: none
float: left
border-right: 1px solid #ababab
&:last-child
border: none
a
color: #4c4c4c
padding: 0 8px
&:hover
text-decoration: none
.active
background: #999
@include box-shadow(0 1px 4px rgba(0,0,0,0.3) inset)
a
color: #fff
text-shadow: 0 1px 2px rgba(0,0,0,0.4)
.oe_list_pager.oe_list_pager_single_page .oe_pager_group
display: none
// }}}
// ViewManager application {{{ // ViewManager application {{{
.oe_view_manager_current .oe_view_manager_current
height: 100% height: 100%
@ -1222,9 +1222,11 @@ $sheet-padding: 16px
> .oe_view_manager_header > .oe_view_manager_header
display: none display: none
// }}} // }}}
// Viewmanager popup {{{ // FormPopup {{{
.oe_popup_form > .oe_formview > .oe_form_pager .oe_popup_form > .oe_formview > .oe_form_pager
display: none !important display: none !important
.oe_popup_list_pager
float: right
// }}} // }}}
// SearchView {{{ // SearchView {{{
.oe_searchview .oe_searchview
@ -1471,6 +1473,7 @@ $sheet-padding: 16px
list-style: none list-style: none
padding: 0 padding: 0
li li
cursor: pointer
position: relative position: relative
list-style: none list-style: none
margin: 0 margin: 0
@ -1533,13 +1536,20 @@ $sheet-padding: 16px
font-size: 125% font-size: 125%
max-width: 700px max-width: 700px
.oe_view_nocontent_create .oe_view_nocontent_create
background: transparent url(/web/static/src/img/view_empty_arrow.png) no-repeat 7px 0
margin-top: 0 margin-top: 0
padding-top: 35px padding-top: 35px
min-height: 28px
color: #4c4c4c color: #4c4c4c
&:before
content: ""
display: inline-block
position: absolute
width: 70px
height: 80px
margin-left: -70px
margin-top: -50px
background: transparent url(/web/static/src/img/view_empty_arrow.png) no-repeat 0px 0px
> p > p
padding-left: 95px padding-left: 78px
.oe_empty_custom_dashboard .oe_empty_custom_dashboard
background: transparent url(/web/static/src/img/graph_background.png) no-repeat 0 0 background: transparent url(/web/static/src/img/graph_background.png) no-repeat 0 0
margin-top: -15px margin-top: -15px

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -52,8 +52,29 @@ instance.web.dialog = function(element) {
return result; return result;
}; };
/**
A useful class to handle dialogs.
Attributes:
- $buttons: A jQuery element targeting a dom part where buttons can be added. It always exists
during the lifecycle of the dialog.
*/
instance.web.Dialog = instance.web.Widget.extend({ instance.web.Dialog = instance.web.Widget.extend({
dialog_title: "", dialog_title: "",
/**
Constructor.
@param {Widget} parent
@param {dictionary} options A dictionary that will be forwarded to jQueryUI Dialog. Additionaly, that
dictionary can contain the following keys:
- buttons: Deprecated. The buttons key is not propagated to jQueryUI Dialog. It must be a dictionary (key = button
label, value = click handler) or a list of dictionaries (each element in the dictionary is send to the
corresponding method of a jQuery element targeting the <button> tag). It is deprecated because all dialogs
in OpenERP must be personalized in some way (button in red, link instead of button, ...) and this
feature does not allow that kind of personalization.
- destroy_on_close: Default true. If true and the dialog is closed, it is automatically destroyed.
@param {jQuery object} content Some content to replace this.$el .
*/
init: function (parent, options, content) { init: function (parent, options, content) {
var self = this; var self = this;
this._super(parent); this._super(parent);
@ -66,50 +87,49 @@ instance.web.Dialog = instance.web.Widget.extend({
max_width: '95%', max_width: '95%',
height: 'auto', height: 'auto',
min_height: 0, min_height: 0,
max_height: this.get_height('100%') - 200, max_height: $(window.top).height() - 200,
autoOpen: false, autoOpen: false,
position: [false, 40], position: [false, 40],
buttons: {}, buttons: null,
beforeClose: function () { beforeClose: function () {
self.trigger("closing"); self.trigger("closing");
}, },
resizeStop: this.on_resized resizeStop: function() {
self.trigger("resized");
},
}; };
for (var f in this) {
if (f.substr(0, 10) == 'on_button_') {
this.dialog_options.buttons[f.substr(10)] = this[f];
}
}
if (options) { if (options) {
_.extend(this.dialog_options, options); _.extend(this.dialog_options, options);
} }
this.on("closing", this, this._closing); this.on("closing", this, this._closing);
this.$buttons = $('<div class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"><span class="oe_dialog_custom_buttons"/></div>');
}, },
get_options: function(options) { _get_options: function() {
var self = this, var self = this;
o = _.extend({}, this.dialog_options, options || {}); var o = _.extend({}, this.dialog_options);
_.each(['width', 'height'], function(unit) { var sizes = {
o[unit] = self['get_' + unit](o[unit]); width: $(window.top).width(),
o['min_' + unit] = self['get_' + unit](o['min_' + unit] || 0); height: $(window.top).height(),
o['max_' + unit] = self['get_' + unit](o['max_' + unit] || 0); };
if (o[unit] !== 'auto' && o['min_' + unit] && o[unit] < o['min_' + unit]) o[unit] = o['min_' + unit]; _.each(sizes, function(available_size, unit) {
if (o[unit] !== 'auto' && o['max_' + unit] && o[unit] > o['max_' + unit]) o[unit] = o['max_' + unit]; o[unit] = self._get_size(o[unit], available_size);
o['min_' + unit] = self._get_size(o['min_' + unit] || 0, available_size);
o['max_' + unit] = self._get_size(o['max_' + unit] || 0, available_size);
if (o[unit] !== 'auto' && o['min_' + unit] && o[unit] < o['min_' + unit]) {
o[unit] = o['min_' + unit];
}
if (o[unit] !== 'auto' && o['max_' + unit] && o[unit] > o['max_' + unit]) {
o[unit] = o['max_' + unit];
}
}); });
if (!o.title && this.dialog_title) { o.title = o.title || this.dialog_title;
o.title = this.dialog_title;
}
return o; return o;
}, },
get_width: function(val) { _get_size: function(val, available_size) {
return this.get_size(val.toString(), $(window.top).width()); val = val.toString();
},
get_height: function(val) {
return this.get_size(val.toString(), $(window.top).height());
},
get_size: function(val, available_size) {
if (val === 'auto') { if (val === 'auto') {
return val; return val;
} else if (val.slice(-1) == "%") { } else if (val.slice(-1) === "%") {
return Math.round(available_size / 100 * parseInt(val.slice(0, -1), 10)); return Math.round(available_size / 100 * parseInt(val.slice(0, -1), 10));
} else { } else {
return parseInt(val, 10); return parseInt(val, 10);
@ -122,41 +142,58 @@ instance.web.Dialog = instance.web.Widget.extend({
this._super(); this._super();
} }
}, },
open: function(options) { /**
if (! this.dialog_inited) Opens the popup. Inits the dialog if it is not already inited.
@return this
*/
open: function() {
if (!this.dialog_inited) {
this.init_dialog(); this.init_dialog();
var o = this.get_options(options);
this.add_buttons(o.buttons);
delete(o.buttons);
this.$buttons.appendTo($("body"));
instance.web.dialog(this.$el, o).dialog('open');
this.$el.dialog("widget").find(".ui-dialog-buttonpane").remove();
this.$buttons.appendTo(this.$el.dialog("widget"));
if (o.height === 'auto' && o.max_height) {
this.$el.css({ 'max-height': o.max_height, 'overflow-y': 'auto' });
} }
this.$el.dialog('open');
this.$el.dialog("widget").append(this.$buttons);
return this; return this;
}, },
add_buttons: function(buttons) { _add_buttons: function(buttons) {
var self = this; var self = this;
_.each(buttons, function(fn, but) { var $customButons = this.$buttons.find('.oe_dialog_custom_buttons').empty();
var $but = $(QWeb.render('WidgetButton', { widget : { string: but, node: { attrs: {} }}})); _.each(buttons, function(fn, text) {
self.$buttons.append($but); // buttons can be object or array
if (!_.isFunction(fn)) {
text = fn.text;
fn = fn.click;
}
var $but = $(QWeb.render('WidgetButton', { widget : { string: text, node: { attrs: {} }}}));
$customButons.append($but);
$but.on('click', function(ev) { $but.on('click', function(ev) {
fn.call(self.$el, ev); fn.call(self.$el, ev);
}); });
}); });
}, },
init_dialog: function(options) { /**
Initializes the popup.
@return The result returned by start().
*/
init_dialog: function() {
var options = this._get_options();
if (options.buttons) {
this._add_buttons(options.buttons);
delete(options.buttons);
}
this.renderElement(); this.renderElement();
var o = this.get_options(options); instance.web.dialog(this.$el, options);
instance.web.dialog(this.$el, o); if (options.height === 'auto' && options.max_height) {
this.$buttons = $('<div class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" />'); this.$el.css({ 'max-height': options.max_height, 'overflow-y': 'auto' });
this.$el.dialog("widget").append(this.$buttons); }
this.dialog_inited = true; this.dialog_inited = true;
var res = this.start(); var res = this.start();
return res; return res;
}, },
/**
Closes the popup, if destroy_on_close was passed to the constructor, it is also destroyed.
*/
close: function() { close: function() {
if (this.dialog_inited && this.$el.is(":data(dialog)")) { if (this.dialog_inited && this.$el.is(":data(dialog)")) {
this.$el.dialog('close'); this.$el.dialog('close');
@ -171,9 +208,11 @@ instance.web.Dialog = instance.web.Widget.extend({
this.__tmp_dialog_closing = undefined; this.__tmp_dialog_closing = undefined;
} }
}, },
on_resized: function() { /**
}, Destroys the popup, also closes it.
*/
destroy: function () { destroy: function () {
this.$buttons.remove();
_.each(this.getChildren(), function(el) { _.each(this.getChildren(), function(el) {
el.destroy(); el.destroy();
}); });
@ -182,7 +221,7 @@ instance.web.Dialog = instance.web.Widget.extend({
this.close(); this.close();
this.__tmp_dialog_destroying = undefined; this.__tmp_dialog_destroying = undefined;
} }
if (this.dialog_inited && !this.isDestroyed()) { if (this.dialog_inited && !this.isDestroyed() && this.$el.is(":data(dialog)")) {
this.$el.dialog('destroy'); this.$el.dialog('destroy');
} }
this._super(); this._super();
@ -565,13 +604,19 @@ instance.web.Login = instance.web.Widget.extend({
self.$el.find('.oe_login_manage_db').click(function() { self.$el.find('.oe_login_manage_db').click(function() {
self.do_action("database_manager"); self.do_action("database_manager");
}); });
var d; var d = $.when();
if (self.params.db) { if ($.deparam.querystring().db) {
if (self.params.login && self.params.password) { self.params.db = $.deparam.querystring().db;
d = self.do_login(self.params.db, self.params.login, self.params.password); }
} // used by dbmanager.do_create via internal client action
if (self.params.db && self.params.login && self.params.password) {
d = self.do_login(self.params.db, self.params.login, self.params.password);
} else { } else {
d = self.rpc("/web/database/get_list", {}).done(self.on_db_loaded).fail(self.on_db_failed); if (self.params.db) {
self.on_db_loaded([self.params.db])
} else {
d = self.rpc("/web/database/get_list", {}).done(self.on_db_loaded).fail(self.on_db_failed);
}
} }
return d; return d;
}, },
@ -720,20 +765,24 @@ instance.web.ChangePassword = instance.web.Widget.extend({
template: "ChangePassword", template: "ChangePassword",
start: function() { start: function() {
var self = this; var self = this;
self.$el.validate({ this.getParent().dialog_title = "Change Password";
submitHandler: function (form) { var $button = self.$el.find('.oe_form_button');
self.rpc("/web/session/change_password",{ $button.appendTo(this.getParent().$buttons);
'fields': $(form).serializeArray() $button.eq(2).click(function(){
}).done(function(result) { self.getParent().close();
if (result.error) { })
self.display_error(result); $button.eq(0).click(function(){
return; self.rpc("/web/session/change_password",{
} else { 'fields': $("form[name=change_password_form]").serializeArray()
instance.webclient.on_logout(); }).done(function(result) {
} if (result.error) {
}); self.display_error(result);
} return;
}); } else {
instance.webclient.on_logout();
}
});
})
}, },
display_error: function (error) { display_error: function (error) {
return instance.web.dialog($('<div>'), { return instance.web.dialog($('<div>'), {
@ -981,7 +1030,7 @@ instance.web.Client = instance.web.Widget.extend({
start: function() { start: function() {
var self = this; var self = this;
return instance.session.session_bind(this.origin).then(function() { return instance.session.session_bind(this.origin).then(function() {
var $e = $(QWeb.render(self._template, {})); var $e = $(QWeb.render(self._template, {widget: self}));
self.replaceElement($e); self.replaceElement($e);
$e.openerpClass(); $e.openerpClass();
self.bind_events(); self.bind_events();
@ -1049,9 +1098,7 @@ instance.web.WebClient = instance.web.Client.extend({
start: function() { start: function() {
var self = this; var self = this;
return $.when(this._super()).then(function() { return $.when(this._super()).then(function() {
self.$el.on('click', '.oe_logo', function() { self.$(".oe_logo").attr("href", $.param.fragment("" + window.location, "", 2).slice(0, -1));
self.action_manager.do_action('home');
});
if (jQuery.param !== undefined && jQuery.deparam(jQuery.param.querystring()).kitten !== undefined) { if (jQuery.param !== undefined && jQuery.deparam(jQuery.param.querystring()).kitten !== undefined) {
$("body").addClass("kitten-mode-activated"); $("body").addClass("kitten-mode-activated");
if ($.blockUI) { if ($.blockUI) {

View File

@ -543,12 +543,12 @@ instance.web._lt = function (s) {
return {toString: function () { return instance.web._t(s); }} return {toString: function () { return instance.web._t(s); }}
}; };
instance.web.qweb = new QWeb2.Engine(); instance.web.qweb = new QWeb2.Engine();
instance.web.qweb.default_dict['__debug__'] = instance.session.debug; // Which one ?
instance.web.qweb.debug = instance.session.debug; instance.web.qweb.debug = instance.session.debug;
instance.web.qweb.default_dict = { instance.web.qweb.default_dict = {
'_' : _, '_' : _,
'_t' : instance.web._t, '_t' : instance.web._t,
'JSON': JSON, 'JSON': JSON,
'__debug__': instance.session.debug,
}; };
instance.web.qweb.preprocess_node = function() { instance.web.qweb.preprocess_node = function() {
// Note that 'this' is the Qweb Node // Note that 'this' is the Qweb Node

View File

@ -22,7 +22,6 @@ instance.web.DataExport = instance.web.Dialog.extend({
start: function() { start: function() {
var self = this; var self = this;
this._super.apply(this, arguments); this._super.apply(this, arguments);
this.open();
self.$el.removeClass('ui-dialog-content ui-widget-content'); self.$el.removeClass('ui-dialog-content ui-widget-content');
self.$el.find('#add_field').click(function() { self.$el.find('#add_field').click(function() {
if ($('#field-tree-structure tr.ui-selected')) { if ($('#field-tree-structure tr.ui-selected')) {

View File

@ -1893,6 +1893,9 @@ instance.web.search.ExtendedSearchProposition.DateTime = instance.web.search.Ext
get_value: function() { get_value: function() {
return this.datewidget.get_value(); return this.datewidget.get_value();
}, },
toString: function () {
return instance.web.format_value(this.get_value(), { type:"datetime" });
},
start: function() { start: function() {
var ready = this._super(); var ready = this._super();
this.datewidget = new (this.widget())(this); this.datewidget = new (this.widget())(this);
@ -1901,7 +1904,10 @@ instance.web.search.ExtendedSearchProposition.DateTime = instance.web.search.Ext
} }
}); });
instance.web.search.ExtendedSearchProposition.Date = instance.web.search.ExtendedSearchProposition.DateTime.extend({ instance.web.search.ExtendedSearchProposition.Date = instance.web.search.ExtendedSearchProposition.DateTime.extend({
widget: function () { return instance.web.DateWidget; } widget: function () { return instance.web.DateWidget; },
toString: function () {
return instance.web.format_value(this.get_value(), { type:"date" });
}
}); });
instance.web.search.ExtendedSearchProposition.Integer = instance.web.search.ExtendedSearchProposition.Field.extend({ instance.web.search.ExtendedSearchProposition.Integer = instance.web.search.ExtendedSearchProposition.Field.extend({
template: 'SearchView.extended_search.proposition.integer', template: 'SearchView.extended_search.proposition.integer',
@ -1918,7 +1924,8 @@ instance.web.search.ExtendedSearchProposition.Integer = instance.web.search.Exte
}, },
get_value: function() { get_value: function() {
try { try {
return instance.web.parse_value(this.$el.val(), {'widget': 'integer'}); var val =this.$el.val();
return instance.web.parse_value(val == "" ? 0 : val, {'widget': 'integer'});
} catch (e) { } catch (e) {
return ""; return "";
} }
@ -1942,7 +1949,8 @@ instance.web.search.ExtendedSearchProposition.Float = instance.web.search.Extend
}, },
get_value: function() { get_value: function() {
try { try {
return instance.web.parse_value(this.$el.val(), {'widget': 'float'}); var val =this.$el.val();
return instance.web.parse_value(val == "" ? 0.0 : val, {'widget': 'float'});
} catch (e) { } catch (e) {
return ""; return "";
} }

View File

@ -195,7 +195,6 @@ instance.web.FormView = instance.web.View.extend(instance.web.form.FieldManagerM
this.sidebar.add_items('other', _.compact([ this.sidebar.add_items('other', _.compact([
self.is_action_enabled('delete') && { label: _t('Delete'), callback: self.on_button_delete }, self.is_action_enabled('delete') && { label: _t('Delete'), callback: self.on_button_delete },
self.is_action_enabled('create') && { label: _t('Duplicate'), callback: self.on_button_duplicate }, self.is_action_enabled('create') && { label: _t('Duplicate'), callback: self.on_button_duplicate },
{ label: _t('Set Default'), callback: function (item) { self.open_defaults_dialog(); } }
])); ]));
} }
@ -1009,8 +1008,8 @@ instance.web.FormView = instance.web.View.extend(instance.web.form.FieldManagerM
} }
return true; return true;
}, },
sidebar_context: function () { sidebar_eval_context: function () {
return this.save().then(_.bind(function() {return this.get_fields_values();}, this)); return $.when(this.build_eval_context());
}, },
open_defaults_dialog: function () { open_defaults_dialog: function () {
var self = this; var self = this;
@ -1215,7 +1214,7 @@ instance.web.form.FormRenderingEngine = instance.web.form.FormRenderingEngineInt
var doc = $.parseXML('<div class="oe_form">' + xml + '</div>'); var doc = $.parseXML('<div class="oe_form">' + xml + '</div>');
$('button', doc).each(function() { $('button', doc).each(function() {
$(this).attr('data-button-type', $(this).attr('type')); $(this).attr('data-button-type', $(this).attr('type')).attr('type', 'button');
}); });
xml = instance.web.xml_to_str(doc); xml = instance.web.xml_to_str(doc);
return $(xml); return $(xml);
@ -4026,6 +4025,9 @@ instance.web.form.FieldMany2ManyTags = instance.web.form.AbstractField.extend(in
} }
this._super(value_); this._super(value_);
}, },
is_false: function() {
return _(this.get("value")).isEmpty();
},
get_value: function() { get_value: function() {
var tmp = [commands.replace_with(this.get("value"))]; var tmp = [commands.replace_with(this.get("value"))];
return tmp; return tmp;
@ -4236,16 +4238,14 @@ instance.web.form.FieldMany2ManyKanban = instance.web.form.AbstractField.extend(
var self = this; var self = this;
self.load_view(); self.load_view();
this.is_loaded.done(function() { self.on("change:effective_readonly", self, function() {
self.on("change:effective_readonly", self, function() { self.is_loaded = self.is_loaded.then(function() {
self.is_loaded = self.is_loaded.then(function() { self.kanban_view.destroy();
self.kanban_view.destroy(); return $.when(self.load_view()).done(function() {
return $.when(self.load_view()).done(function() { self.render_value();
self.render_value();
});
}); });
}); });
}) });
}, },
set_value: function(value_) { set_value: function(value_) {
value_ = value_ || []; value_ = value_ || [];
@ -4628,6 +4628,8 @@ instance.web.form.SelectCreatePopup = instance.web.form.AbstractFormPopup.extend
'selectable': !self.options.disable_multiple_selection, 'selectable': !self.options.disable_multiple_selection,
'import_enabled': false, 'import_enabled': false,
'$buttons': self.$buttonpane, '$buttons': self.$buttonpane,
'disable_editable_mode': true,
'$pager': self.$('.oe_popup_list_pager'),
}, self.options.list_view_options || {})); }, self.options.list_view_options || {}));
self.view_list.on('edit:before', self, function (e) { self.view_list.on('edit:before', self, function (e) {
e.cancel = true; e.cancel = true;
@ -4787,6 +4789,7 @@ instance.web.form.FieldBinary = instance.web.form.AbstractField.extend(instance.
this._super(field_manager, node); this._super(field_manager, node);
this.binary_value = false; this.binary_value = false;
this.useFileAPI = !!window.FileReader; this.useFileAPI = !!window.FileReader;
this.max_upload_size = 25 * 1024 * 1024; // 25Mo
if (!this.useFileAPI) { if (!this.useFileAPI) {
this.fileupload_id = _.uniqueId('oe_fileupload'); this.fileupload_id = _.uniqueId('oe_fileupload');
$(window).on(this.fileupload_id, function() { $(window).on(this.fileupload_id, function() {
@ -4812,6 +4815,11 @@ instance.web.form.FieldBinary = instance.web.form.AbstractField.extend(instance.
if ((this.useFileAPI && file_node.files.length) || (!this.useFileAPI && $(file_node).val() !== '')) { if ((this.useFileAPI && file_node.files.length) || (!this.useFileAPI && $(file_node).val() !== '')) {
if (this.useFileAPI) { if (this.useFileAPI) {
var file = file_node.files[0]; var file = file_node.files[0];
if (file.size > this.max_upload_size) {
var msg = _t("The selected file exceed the maximum file size of %s.");
instance.webclient.notification.warn(_t("File upload"), _.str.sprintf(msg, instance.web.human_size(this.max_upload_size)));
return false;
}
var filereader = new FileReader(); var filereader = new FileReader();
filereader.readAsDataURL(file); filereader.readAsDataURL(file);
filereader.onloadend = function(upload) { filereader.onloadend = function(upload) {

View File

@ -21,6 +21,8 @@ instance.web.ListView = instance.web.View.extend( /** @lends instance.web.ListVi
// whether the view rows can be reordered (via vertical drag & drop) // whether the view rows can be reordered (via vertical drag & drop)
'reorderable': true, 'reorderable': true,
'action_buttons': true, 'action_buttons': true,
//whether the editable property of the view has to be disabled
'disable_editable_mode': false,
}, },
view_type: 'tree', view_type: 'tree',
/** /**

View File

@ -78,18 +78,20 @@ openerp.web.list_editable = function (instance) {
_.extend(this.dataset, dataset); _.extend(this.dataset, dataset);
}, },
do_delete: function (ids) { do_delete: function (ids) {
var nonfalse = _.compact(ids);
var _super = this._super.bind(this); var _super = this._super.bind(this);
var next = this.editor.is_editing() var next = this.editor.is_editing()
? this.cancel_edition(true) ? this.cancel_edition(true)
: $.when(); : $.when();
return next.then(function () { return next.then(function () {
return _super(ids); return _super(nonfalse);
}); });
}, },
editable: function () { editable: function () {
return this.fields_view.arch.attrs.editable return !this.options.disable_editable_mode
&& (this.fields_view.arch.attrs.editable
|| this._context_editable || this._context_editable
|| this.options.editable; || this.options.editable);
}, },
/** /**
* Replace do_search to handle editability process * Replace do_search to handle editability process

View File

@ -26,6 +26,7 @@ instance.web.ActionManager = instance.web.Widget.extend({
if (this.dialog) { if (this.dialog) {
this.dialog.destroy(); this.dialog.destroy();
} }
this.dialog = null;
}, },
/** /**
* Add a new item to the breadcrumb * Add a new item to the breadcrumb
@ -318,7 +319,6 @@ instance.web.ActionManager = instance.web.Widget.extend({
dialogClass: executor.klass, dialogClass: executor.klass,
}); });
this.dialog.on("closing", null, options.on_close); this.dialog.on("closing", null, options.on_close);
this.dialog.init_dialog();
this.dialog.dialog_title = executor.action.name; this.dialog.dialog_title = executor.action.name;
if (widget instanceof instance.web.ViewManager) { if (widget instanceof instance.web.ViewManager) {
_.extend(widget.flags, { _.extend(widget.flags, {
@ -809,6 +809,9 @@ instance.web.ViewManagerAction = instance.web.ViewManager.extend({
case 'toggle_layout_outline': case 'toggle_layout_outline':
current_view.rendering_engine.toggle_layout_debugging(); current_view.rendering_engine.toggle_layout_debugging();
break; break;
case 'set_defaults':
current_view.open_defaults_dialog();
break;
case 'translate': case 'translate':
this.do_action({ this.do_action({
name: "Technical Translation", name: "Technical Translation",
@ -1060,23 +1063,24 @@ instance.web.Sidebar = instance.web.Widget.extend({
}, },
on_item_action_clicked: function(item) { on_item_action_clicked: function(item) {
var self = this; var self = this;
self.getParent().sidebar_context().done(function (context) { self.getParent().sidebar_eval_context().done(function (sidebar_eval_context) {
var ids = self.getParent().get_selected_ids(); var ids = self.getParent().get_selected_ids();
if (ids.length == 0) { if (ids.length == 0) {
instance.web.dialog($("<div />").text(_t("You must choose at least one record.")), { title: _t("Warning"), modal: true }); instance.web.dialog($("<div />").text(_t("You must choose at least one record.")), { title: _t("Warning"), modal: true });
return false; return false;
} }
var additional_context = _.extend({ var active_ids_context = {
active_id: ids[0], active_id: ids[0],
active_ids: ids, active_ids: ids,
active_model: self.getParent().dataset.model active_model: self.getParent().dataset.model
}, context); };
self.rpc("/web/action/load", { self.rpc("/web/action/load", {
action_id: item.action.id, action_id: item.action.id,
context: additional_context context: active_ids_context,
eval_context: new instance.web.CompoundContext(sidebar_eval_context, active_ids_context),
}).done(function(result) { }).done(function(result) {
result.context = _.extend(result.context || {}, console.log(result.context);
additional_context); result.context = new instance.web.CompoundContext(result.context || {}, active_ids_context);
result.flags = result.flags || {}; result.flags = result.flags || {};
result.flags.new_window = true; result.flags.new_window = true;
self.do_action(result, { self.do_action(result, {
@ -1329,8 +1333,8 @@ instance.web.View = instance.web.Widget.extend({
on_sidebar_export: function() { on_sidebar_export: function() {
new instance.web.DataExport(this, this.dataset).open(); new instance.web.DataExport(this, this.dataset).open();
}, },
sidebar_context: function () { sidebar_eval_context: function () {
return $.when(); return $.when({});
}, },
/** /**
* Asks the view to reload itself, if the reloading is asynchronous should * Asks the view to reload itself, if the reloading is asynchronous should

View File

@ -315,26 +315,32 @@
<t t-name="ChangePassword"> <t t-name="ChangePassword">
<form name="change_password_form" method="POST"> <form name="change_password_form" method="POST">
<div class="oe_form">
<table align="center"> <table align="center">
<tr> <tr>
<td><label for="old_pwd">Old Password:</label></td> <td class="oe_form_group_cell oe_form_group_cell_label"><label for="old_pwd" class="oe_form_label">Old Password:</label></td>
<td><input type="password" name="old_pwd" <td class="oe_form_group_cell"><input type="password" name="old_pwd"
minlength="1" autofocus="autofocus"/></td> minlength="1" autofocus="autofocus"/></td>
</tr> </tr>
<tr> <tr>
<td><label for="new_password">New Password:</label></td> <td class="oe_form_group_cell oe_form_group_cell_label"><label for="new_password" class="oe_form_label">New Password:</label></td>
<td><input type="password" name="new_password" <td class="oe_form_group_cell"><input type="password" name="new_password"
minlength="1"/></td> minlength="1"/></td>
</tr> </tr>
<tr> <tr>
<td><label for="confirm_pwd">Confirm Password:</label></td> <td class="oe_form_group_cell oe_form_group_cell_label"><label for="confirm_pwd" class="oe_form_label">Confirm New Password:</label></td>
<td><input type="password" name="confirm_pwd" <td class="oe_form_group_cell"><input type="password" name="confirm_pwd"
minlength="1"/></td> minlength="1"/></td>
</tr> </tr>
<tr> <tr>
<td colspan="2" align="right"><button class="oe_button">Change Password</button></td> <td colspan="2" align="right">
<button class='oe_button oe_form_button'>Change Password</button>
<span class="oe_fade oe_form_button"> or </span>
<button type="button" class="oe_button oe_form_button_cancel oe_form_button oe_link" href="javascript:void(0)"><span>Cancel</span></button>
</td>
</tr> </tr>
</table> </table>
</div>
</form> </form>
</t> </t>
@ -501,8 +507,11 @@
</t> </t>
<t t-name="ViewManagerDebug"> <t t-name="ViewManagerDebug">
<option value="">Debug View#<t t-esc="view.fields_view.view_id"/></option> <option value="">Debug View#<t t-esc="view.fields_view.view_id"/></option>
<option t-if="view_manager.active_view === 'form'" value="perm_read" data-views="form,page">View Log (perm_read)</option> <t t-if="view_manager.active_view === 'form'">
<option t-if="view_manager.active_view === 'form'" value="toggle_layout_outline">Toggle Form Layout Outline</option> <option value="perm_read">View Log (perm_read)</option>
<option value="toggle_layout_outline">Toggle Form Layout Outline</option>
<option value="set_defaults">Set Defaults</option>
</t>
<option value="tests">JS Tests</option> <option value="tests">JS Tests</option>
<option value="fields">View Fields</option> <option value="fields">View Fields</option>
<option value="fvg">Fields View Get</option> <option value="fvg">Fields View Get</option>
@ -1301,6 +1310,11 @@
<div class="oe_popup_search" style="width:100%"></div> <div class="oe_popup_search" style="width:100%"></div>
</td> </td>
</tr> </tr>
<tr style="width:100%">
<td style="width:100%">
<div class="oe_popup_list_pager"></div>
</td>
</tr>
<tr style="width:100%"> <tr style="width:100%">
<td style="width:100%"> <td style="width:100%">
<div class="oe_popup_list" style="width:100%"></div> <div class="oe_popup_list" style="width:100%"></div>
@ -1589,10 +1603,10 @@
<span/> <span/>
</t> </t>
<t t-name="SearchView.extended_search.proposition.integer"> <t t-name="SearchView.extended_search.proposition.integer">
<input type="number" class="field_integer" step="1"/> <input type="number" class="field_integer" value = "0" step="1"/>
</t> </t>
<t t-name="SearchView.extended_search.proposition.float"> <t t-name="SearchView.extended_search.proposition.float">
<input type="number" class="field_float" step="0.01"/> <input type="number" class="field_float" value = "0.0" step="0.01"/>
</t> </t>
<t t-name="SearchView.extended_search.proposition.selection"> <t t-name="SearchView.extended_search.proposition.selection">
<select> <select>

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-01-08 20:21+0000\n" "PO-Revision-Date: 2012-11-24 06:30+0000\n"
"Last-Translator: kifcaliph <Unknown>\n" "Last-Translator: kifcaliph <Unknown>\n"
"Language-Team: Arabic <ar@li.org>\n" "Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "التقويم"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "مرشّح"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "اليوم"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "اليوم"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "الأسبوع"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "الشهر"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "حدث جديد" msgstr "حدث جديد"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "حفظ"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "إلغاء"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "التفاصيل" msgstr "التفاصيل"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "تحرير" msgid "Save"
msgstr "حفظ"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "حذف" msgid "Today"
msgstr "اليوم"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "سيتم حذف هذا الحدث بشكل دائم، هل أنت متأكد؟" msgid "Week"
msgstr "الأسبوع"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "الوصف"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "الفترة الزمنية"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "يوم كامل" msgstr "يوم كامل"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "هل تريد تحرير مجموعة الأحداث المتكررة كاملة؟" #, python-format
msgid "Description"
msgstr "الوصف"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "تكرار الحدث" msgid "Event will be deleted permanently, are you sure?"
msgstr "سيتم حذف هذا الحدث بشكل دائم، هل أنت متأكد؟"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "معطّل" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "مُفعّل"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "جدول أعمال"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "التاريخ"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "السنة"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "التاريخ"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr "تحرير "
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "اليوم"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "تحرير"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "مُفعّل"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "هل تريد تحرير مجموعة الأحداث المتكررة كاملة؟"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "مرشّح"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "تكرار الحدث"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "جدول أعمال"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "الفترة الزمنية"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "حذف"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "الشهر"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "معطّل"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr "إنشاء: "
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "السنة"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "إلغاء"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "التقويم"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "المتصفح" #~ msgstr "المتصفح"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-05-16 09:33+0000\n" "PO-Revision-Date: 2012-05-16 09:33+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bulgarian <bg@li.org>\n" "Language-Team: Bulgarian <bg@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Календар"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "Филтър"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "Днес"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "Ден"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "Седмица"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "Месец"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "Ново събитие" msgstr "Ново събитие"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "Запис"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "Отказ"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "Детайли" msgstr "Детайли"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "Редакция" msgid "Save"
msgstr "Запис"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "Изтриване" msgid "Today"
msgstr "Днес"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "Събитието ще бъде окончателно изтрито, сигурни ли сте?" msgid "Week"
msgstr "Седмица"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "Описание"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "Времеви период"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "Цял ден" msgstr "Цял ден"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "Искатели да редактирате всички повтарящи се събития?" #, python-format
msgid "Description"
msgstr "Описание"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "Повтаряне на събитие" msgid "Event will be deleted permanently, are you sure?"
msgstr "Събитието ще бъде окончателно изтрито, сигурни ли сте?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "Изключено" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "Включено"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "Дневен ред"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "Дата"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "Година"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "Дата"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "Ден"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "Редакция"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "Включено"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Искатели да редактирате всички повтарящи се събития?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "Филтър"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "Повтаряне на събитие"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "Дневен ред"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "Времеви период"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "Изтриване"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "Месец"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "Изключено"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "Година"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "Отказ"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Календар"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Навигатор" #~ msgstr "Навигатор"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2011-11-24 12:51+0000\n" "PO-Revision-Date: 2011-11-24 12:51+0000\n"
"Last-Translator: nasir khan saikat <nasir8891@gmail.com>\n" "Last-Translator: nasir khan saikat <nasir8891@gmail.com>\n"
"Language-Team: Bengali <bn@li.org>\n" "Language-Team: Bengali <bn@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "পুঞ্জিকা"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "পুঞ্জিকা"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "ভ্রমনপরিকল্পক" #~ msgstr "ভ্রমনপরিকল্পক"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-04-15 00:09+0000\n" "PO-Revision-Date: 2012-04-15 00:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bosnian <bs@li.org>\n" "Language-Team: Bosnian <bs@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Kalendar"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Kalendar"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigator" #~ msgstr "Navigator"

View File

@ -7,135 +7,197 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-06-16 17:47+0000\n" "PO-Revision-Date: 2012-06-16 17:47+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Catalan <ca@li.org>\n" "Language-Team: Catalan <ca@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
#, python-format
msgid "&nbsp;"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164 #: code:addons/web_calendar/static/src/js/calendar.js:171
msgid "Enabled" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172 #: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year" msgid "Year"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5 #: code:addons/web_calendar/static/src/js/calendar.js:153
#: addons/web_calendar/static/src/xml/web_calendar.xml:6 #, python-format
msgid "&nbsp;" msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "" msgstr ""

View File

@ -7,139 +7,201 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-03-22 09:45+0000\n" "PO-Revision-Date: 2012-03-22 09:45+0000\n"
"Last-Translator: Zdeněk Havlík <linuzh@gmail.com>\n" "Last-Translator: Zdeněk Havlík <linuzh@gmail.com>\n"
"Language-Team: openerp-i18n-czech <openerp-i18n-czech@lists.launchpad.net>\n" "Language-Team: openerp-i18n-czech <openerp-i18n-czech@lists.launchpad.net>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
"X-Poedit-Language: Czech\n" "X-Poedit-Language: Czech\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Kalendář"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Kalendář"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigátor" #~ msgstr "Navigátor"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-07-01 09:05+0000\n" "PO-Revision-Date: 2012-07-01 09:05+0000\n"
"Last-Translator: Aputsiaq Niels Janussen <aj@isit.gl>\n" "Last-Translator: Aputsiaq Niels Janussen <aj@isit.gl>\n"
"Language-Team: Danish <da@li.org>\n" "Language-Team: Danish <da@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Kalender"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Kalender"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigator" #~ msgstr "Navigator"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2011-12-16 15:26+0000\n" "PO-Revision-Date: 2011-12-16 15:26+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\n" "Last-Translator: Ferdinand @ Camptocamp <Unknown>\n"
"Language-Team: German <de@li.org>\n" "Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Kalender"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "Filter"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "Heute"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "Tag"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "Woche"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "Monat"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "Neues Ereignis" msgstr "Neues Ereignis"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "Speichern"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "Abbrechen"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "Details" msgstr "Details"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "Bearbeiten" msgid "Save"
msgstr "Speichern"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "Löschen" msgid "Today"
msgstr "Heute"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "Termin wird endgültig gelöscht, sind Sie sicher?" msgid "Week"
msgstr "Woche"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "Beschreibung"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "Zeitspanne"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "Ganztägig" msgstr "Ganztägig"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "Möchten Sie den wiederkehrenden Termin als Ganzes bearbeiten?" #, python-format
msgid "Description"
msgstr "Beschreibung"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "Wiederkehrender Termin" msgid "Event will be deleted permanently, are you sure?"
msgstr "Termin wird endgültig gelöscht, sind Sie sicher?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "Deaktiviert" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "Aktiviert"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "Agenda"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "Datum"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "Jahr"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "Datum"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "Tag"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "Bearbeiten"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "Aktiviert"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Möchten Sie den wiederkehrenden Termin als Ganzes bearbeiten?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "Filter"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "Wiederkehrender Termin"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "Agenda"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "Zeitspanne"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "Löschen"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "Monat"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "Deaktiviert"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "Jahr"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "Abbrechen"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Kalender"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Browser" #~ msgstr "Browser"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-04-09 03:26+0000\n" "PO-Revision-Date: 2012-04-09 03:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: English (Australia) <en_AU@li.org>\n" "Language-Team: English (Australia) <en_AU@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Calendar"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Calendar"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigator" #~ msgstr "Navigator"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-09 11:36+0000\n" "PO-Revision-Date: 2012-02-09 11:36+0000\n"
"Last-Translator: John Bradshaw <Unknown>\n" "Last-Translator: John Bradshaw <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n" "Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Calendar"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "Filter"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "Today"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "Day"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "Week"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "Month"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "New event" msgstr "New event"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "Save"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "Cancel"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "Details" msgstr "Details"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "Edit" msgid "Save"
msgstr "Save"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "Delete" msgid "Today"
msgstr "Today"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "Event will be permanently deleted, are you sure?" msgid "Week"
msgstr "Week"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "Description"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "Time period"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "Full day" msgstr "Full day"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "Do you want to edit the whole set of repeated events?" #, python-format
msgid "Description"
msgstr "Description"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "Repeat event" msgid "Event will be deleted permanently, are you sure?"
msgstr "Event will be permanently deleted, are you sure?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "Disabled" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "Enabled"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "Agenda"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "Date"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "Year"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "Date"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "Day"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "Edit"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "Enabled"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Do you want to edit the whole set of repeated events?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "Filter"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "Repeat event"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "Agenda"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "Time period"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "Delete"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "Month"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "Disabled"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "Year"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "Cancel"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Calendar"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigator" #~ msgstr "Navigator"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-13 12:43+0000\n" "PO-Revision-Date: 2012-02-13 12:43+0000\n"
"Last-Translator: luis tobar <Unknown>\n" "Last-Translator: luis tobar <Unknown>\n"
"Language-Team: Spanish <es@li.org>\n" "Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Calendario"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Calendario"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navegador" #~ msgstr "Navegador"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-04-14 15:13+0000\n" "PO-Revision-Date: 2012-04-14 15:13+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Spanish (Chile) <es_CL@li.org>\n" "Language-Team: Spanish (Chile) <es_CL@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Calendario"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Calendario"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navegador" #~ msgstr "Navegador"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-16 21:34+0000\n" "PO-Revision-Date: 2012-02-16 21:34+0000\n"
"Last-Translator: Carlos Vásquez (CLEARCORP) " "Last-Translator: Carlos Vásquez (CLEARCORP) "
"<carlos.vasquez@clearcorp.co.cr>\n" "<carlos.vasquez@clearcorp.co.cr>\n"
@ -15,132 +15,194 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
"Language: es\n" "Language: es\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Calendario"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Calendario"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navegador" #~ msgstr "Navegador"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2011-10-07 15:54+0000\n" "PO-Revision-Date: 2011-10-07 15:54+0000\n"
"Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@gmail.com>\n" "Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@gmail.com>\n"
"Language-Team: Spanish (Ecuador) <es_EC@li.org>\n" "Language-Team: Spanish (Ecuador) <es_EC@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Calendario"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "Filtro"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "Hoy"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "Día"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "Semana"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "Mes"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "Nuevo evento" msgstr "Nuevo evento"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "Guardar"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "Cancelar"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "Detalles" msgstr "Detalles"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "Editar" msgid "Save"
msgstr "Guardar"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "Borrar" msgid "Today"
msgstr "Hoy"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "Evento será borrado permanentemente, estás seguro ?" msgid "Week"
msgstr "Semana"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "Descripción"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "Periodo de tiempo"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "Día completo" msgstr "Día completo"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "Desea editar los demás eventos repetidos ?" #, python-format
msgid "Description"
msgstr "Descripción"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "Repetir eventos" msgid "Event will be deleted permanently, are you sure?"
msgstr "Evento será borrado permanentemente, estás seguro ?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "Inhabilitado" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "Habilitado"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "Agenda"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "Fecha"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "Año"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "Fecha"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "Día"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "Editar"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "Habilitado"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Desea editar los demás eventos repetidos ?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "Filtro"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "Repetir eventos"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "Agenda"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "Periodo de tiempo"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "Borrar"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "Mes"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "Inhabilitado"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "Año"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Calendario"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navegador" #~ msgstr "Navegador"

View File

@ -7,135 +7,197 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2011-10-10 19:20+0000\n" "PO-Revision-Date: 2011-10-10 19:20+0000\n"
"Last-Translator: Aare Vesi <Unknown>\n" "Last-Translator: Aare Vesi <Unknown>\n"
"Language-Team: Estonian <et@li.org>\n" "Language-Team: Estonian <et@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
msgid "&nbsp;"
msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164 #: code:addons/web_calendar/static/src/js/calendar.js:171
msgid "Enabled" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172 #: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year" msgid "Year"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5 #: code:addons/web_calendar/static/src/js/calendar.js:153
#: addons/web_calendar/static/src/xml/web_calendar.xml:6 #, python-format
msgid "&nbsp;" msgid "Cancel"
msgstr "&nbsp;" msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr ""

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-08 07:27+0000\n" "PO-Revision-Date: 2012-02-08 07:27+0000\n"
"Last-Translator: Daniel Campos (Avanzosc) <Unknown>\n" "Last-Translator: Daniel Campos (Avanzosc) <Unknown>\n"
"Language-Team: Basque <eu@li.org>\n" "Language-Team: Basque <eu@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Egutegia"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Egutegia"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Nabigatzailea" #~ msgstr "Nabigatzailea"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-10-03 10:24+0000\n" "PO-Revision-Date: 2012-10-03 10:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Persian <fa@li.org>\n" "Language-Team: Persian <fa@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "تقویم"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "فیلتر"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "امروز"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "روز"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "هفته"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "ماه"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "رویداد جدید" msgstr "رویداد جدید"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "ذخیره"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "لغو کردن"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "جزئیات " msgstr "جزئیات "
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "ویرایش" msgid "Save"
msgstr "ذخیره"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "حذف" msgid "Today"
msgstr "امروز"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "رویداد حذف خواهد شد. آیا مطمئن هستید؟" msgid "Week"
msgstr "هفته"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "توضیحات"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "بازه زمانی"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "تمام روز" msgstr "تمام روز"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "آیا میخواهید مجموعه کامل رویدادهای تکراری را ویرایش کنید؟" #, python-format
msgid "Description"
msgstr "توضیحات"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "تکرار رویداد" msgid "Event will be deleted permanently, are you sure?"
msgstr "رویداد حذف خواهد شد. آیا مطمئن هستید؟"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "غیرفعال" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "فعال"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "دستور کار"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "تاریخ"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "سال"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "تاریخ"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "روز"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "ویرایش"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "فعال"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "آیا میخواهید مجموعه کامل رویدادهای تکراری را ویرایش کنید؟"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "فیلتر"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "تکرار رویداد"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "دستور کار"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "بازه زمانی"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "حذف"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "ماه"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "غیرفعال"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "سال"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "لغو کردن"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "تقویم"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "هدایتگر" #~ msgstr "هدایتگر"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-03-19 12:03+0000\n" "PO-Revision-Date: 2012-03-19 12:03+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Finnish <fi@li.org>\n" "Language-Team: Finnish <fi@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "kalenteri"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "kalenteri"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigaattori" #~ msgstr "Navigaattori"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-15 10:37+0000\n" "PO-Revision-Date: 2012-02-15 10:37+0000\n"
"Last-Translator: Fabrice (OpenERP) <Unknown>\n" "Last-Translator: Fabrice (OpenERP) <Unknown>\n"
"Language-Team: French <fr@li.org>\n" "Language-Team: French <fr@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Calendrier"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Calendrier"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigateur" #~ msgstr "Navigateur"

View File

@ -7,135 +7,197 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-07-06 19:17+0000\n" "PO-Revision-Date: 2012-07-06 19:17+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: French (Canada) <fr_CA@li.org>\n" "Language-Team: French (Canada) <fr_CA@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
#, python-format
msgid "&nbsp;"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164 #: code:addons/web_calendar/static/src/js/calendar.js:171
msgid "Enabled" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172 #: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year" msgid "Year"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5 #: code:addons/web_calendar/static/src/js/calendar.js:153
#: addons/web_calendar/static/src/xml/web_calendar.xml:6 #, python-format
msgid "&nbsp;" msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "" msgstr ""

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-09 14:24+0000\n" "PO-Revision-Date: 2012-02-09 14:24+0000\n"
"Last-Translator: Vicente <jviares@gmail.com>\n" "Last-Translator: Vicente <jviares@gmail.com>\n"
"Language-Team: Galician <gl@li.org>\n" "Language-Team: Galician <gl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Calendario"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Calendario"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navegador" #~ msgstr "Navegador"

View File

@ -7,135 +7,197 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-11-17 12:42+0000\n" "PO-Revision-Date: 2012-11-17 12:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Gujarati <gu@li.org>\n" "Language-Team: Gujarati <gu@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-18 04:47+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16278)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "કૅલેન્ડર"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "આજે"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "દિવસ"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "સંગ્રહો"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "રદ કરો"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "વિગતો" msgstr "વિગતો"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "ફેરફાર કરો" msgid "Save"
msgstr "સંગ્રહો"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "કાઢી નાંખો" msgid "Today"
msgstr "આજે"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "વર્ણન"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "વર્ણન"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:158
#, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Repeat event" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
msgid "&nbsp;"
msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/js/calendar.js:171
msgid "Disabled" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date" msgid "Date"
msgstr "તારીખ" msgstr "તારીખ"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172 #: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "દિવસ"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "ફેરફાર કરો"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "કાઢી નાંખો"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year" msgid "Year"
msgstr "વર્ષ" msgstr "વર્ષ"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5 #: code:addons/web_calendar/static/src/js/calendar.js:153
#: addons/web_calendar/static/src/xml/web_calendar.xml:6 #, python-format
msgid "&nbsp;" msgid "Cancel"
msgstr "&nbsp;" msgstr "રદ કરો"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "કૅલેન્ડર"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2011-12-19 16:06+0000\n" "PO-Revision-Date: 2012-11-24 18:16+0000\n"
"Last-Translator: Goran Kliska <gkliska@gmail.com>\n" "Last-Translator: Goran Kliska <gkliska@gmail.com>\n"
"Language-Team: Croatian <hr@li.org>\n" "Language-Team: Croatian <hr@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Kalendar"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr "Novi događaj"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr "Detalji"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "" msgid "Save"
msgstr "Snimi"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "" msgid "Today"
msgstr "Danas"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "" msgid "Week"
msgstr "Tjedan"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr "Cijeli dan"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "" #, python-format
msgid "Description"
msgstr "Opis"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "" msgid "Event will be deleted permanently, are you sure?"
msgstr "Brisati događaj?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "Datum"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr "Uredi: "
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "Dan"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "Uredi"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "Omogućeno"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Želite li urediti kompletan set ponavljajućeg događaja?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "Filter"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "Ponovi događaj"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "Agenda"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "Razdoblje"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "Obriši"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "Mjesec"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "Onemogućen"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr "Kreiraj: "
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "Godina"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "Otkaži"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Kalendar"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigator" #~ msgstr "Navigator"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-09-06 08:35+0000\n" "PO-Revision-Date: 2012-09-06 08:35+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Hungarian <hu@li.org>\n" "Language-Team: Hungarian <hu@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Naptár"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "Szűrő"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "Ma"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "Nap"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "Hét"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "Hó"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "Új esemény" msgstr "Új esemény"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "Mentés"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "Mégsem"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "Részletek" msgstr "Részletek"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "Szerkesztés" msgid "Save"
msgstr "Mentés"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "Törlés" msgid "Today"
msgstr "Ma"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "Az esemény véglegesen törlődik, biztos benne?" msgid "Week"
msgstr "Hét"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "Leírás"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "Időintervallum"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "Egész nap" msgstr "Egész nap"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "Az összes ismétlődő eseményt szerkeszteni akarja?" #, python-format
msgid "Description"
msgstr "Leírás"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "Esemény ismétlése" msgid "Event will be deleted permanently, are you sure?"
msgstr "Az esemény véglegesen törlődik, biztos benne?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "Tiltva" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "Engedélyezve"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "Napirend"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "Dátum"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "Év"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "Dátum"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "Nap"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "Szerkesztés"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "Engedélyezve"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Az összes ismétlődő eseményt szerkeszteni akarja?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "Szűrő"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "Esemény ismétlése"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "Napirend"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "Időintervallum"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "Törlés"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "Hó"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "Tiltva"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "Év"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "Mégsem"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Naptár"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigátor" #~ msgstr "Navigátor"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-08 14:59+0000\n" "PO-Revision-Date: 2012-02-08 14:59+0000\n"
"Last-Translator: Budi Iskandar <Unknown>\n" "Last-Translator: Budi Iskandar <Unknown>\n"
"Language-Team: Indonesian <id@li.org>\n" "Language-Team: Indonesian <id@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Kalender"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp" msgstr "&nbsp"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Kalender"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Pengarah" #~ msgstr "Pengarah"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-16 21:55+0000\n" "PO-Revision-Date: 2012-02-16 21:55+0000\n"
"Last-Translator: Davide Corio - agilebg.com <davide.corio@agilebg.com>\n" "Last-Translator: Davide Corio - agilebg.com <davide.corio@agilebg.com>\n"
"Language-Team: Italian <it@li.org>\n" "Language-Team: Italian <it@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Calendario"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Calendario"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigatore" #~ msgstr "Navigatore"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-07-19 01:27+0000\n" "PO-Revision-Date: 2012-07-19 01:27+0000\n"
"Last-Translator: Akira Hiyama <Unknown>\n" "Last-Translator: Akira Hiyama <Unknown>\n"
"Language-Team: Japanese <ja@li.org>\n" "Language-Team: Japanese <ja@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "カレンダー"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "フィルタ"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "本日"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "日"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "週"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "月"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "新規イベント" msgstr "新規イベント"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "保存"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "キャンセル"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "詳細" msgstr "詳細"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "編集" msgid "Save"
msgstr "保存"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "削除" msgid "Today"
msgstr "本日"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "イベントは完全に削除されます。よろしいですか?" msgid "Week"
msgstr "週"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "詳細"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "期間"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "終日" msgstr "終日"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "繰り返しイベントのセット全体を編集しますか?" #, python-format
msgid "Description"
msgstr "詳細"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "繰り返しイベント" msgid "Event will be deleted permanently, are you sure?"
msgstr "イベントは完全に削除されます。よろしいですか?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "無効" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "有効"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "議事"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "日付"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "年"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "日付"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "日"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "編集"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "有効"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "繰り返しイベントのセット全体を編集しますか?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "フィルタ"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "繰り返しイベント"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "議事"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "期間"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "削除"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "月"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "無効"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "年"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "キャンセル"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "カレンダー"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "ナビゲータ" #~ msgstr "ナビゲータ"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-03-15 18:25+0000\n" "PO-Revision-Date: 2012-03-15 18:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Georgian <ka@li.org>\n" "Language-Team: Georgian <ka@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "კალენდარი"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "კალენდარი"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "ნავიგატორი" #~ msgstr "ნავიგატორი"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-10-21 11:49+0000\n" "PO-Revision-Date: 2012-10-21 11:49+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Lithuanian <lt@li.org>\n" "Language-Team: Lithuanian <lt@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Kalendorius"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "Filtras"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "Šiandien"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "Diena"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "Savaitė"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "Mėnesis"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "Naujas įvykis" msgstr "Naujas įvykis"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "Išsaugoti"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "Atšaukti"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "Išsami informacija" msgstr "Išsami informacija"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "Redaguoti" msgid "Save"
msgstr "Išsaugoti"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "Pašalinti" msgid "Today"
msgstr "Šiandien"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "Įvykis bus pašalintas, sutinkate?" msgid "Week"
msgstr "Savaitė"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "Aprašas"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "Laikotarpis"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "Visą dieną" msgstr "Visą dieną"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "Ar norite redaguoti visus pasikartojančius įvykius?" #, python-format
msgid "Description"
msgstr "Aprašas"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "Pasikartojantis įvykis" msgid "Event will be deleted permanently, are you sure?"
msgstr "Įvykis bus pašalintas, sutinkate?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "Išjungtas" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "Įjungtas"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "Dienotvarkė"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "Data"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "Metai"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "Data"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "Diena"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "Redaguoti"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "Įjungtas"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Ar norite redaguoti visus pasikartojančius įvykius?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "Filtras"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "Pasikartojantis įvykis"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "Dienotvarkė"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "Laikotarpis"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "Pašalinti"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "Mėnesis"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "Išjungtas"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "Metai"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "Atšaukti"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Kalendorius"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigatorius" #~ msgstr "Navigatorius"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-08 11:05+0000\n" "PO-Revision-Date: 2012-02-08 11:05+0000\n"
"Last-Translator: Nikola Stojanoski <nstojanoski@vion.mk>\n" "Last-Translator: Nikola Stojanoski <nstojanoski@vion.mk>\n"
"Language-Team: Macedonian <mk@li.org>\n" "Language-Team: Macedonian <mk@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Календар"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "Филтер"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "Денес"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "Ден"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "Недела"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "Месец"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "Нов настан" msgstr "Нов настан"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "Зачувај"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "Откажи"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "Детали" msgstr "Детали"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "Измени" msgid "Save"
msgstr "Зачувај"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "Избриши" msgid "Today"
msgstr "Денес"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "Ивентот ќе биде избришан перманентно, Дали сте сигурни?" msgid "Week"
msgstr "Недела"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "Опис"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "Временски период"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "Цел ден" msgstr "Цел ден"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "Дали сакате да го измените целиот сет на ивенти што се повторуваат?" #, python-format
msgid "Description"
msgstr "Опис"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "Повтори ивент" msgid "Event will be deleted permanently, are you sure?"
msgstr "Ивентот ќе биде избришан перманентно, Дали сте сигурни?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "Исклучено" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "Вклучено"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "Агенда"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "Датум"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "Година"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "Датум"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "Ден"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "Измени"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "Вклучено"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Дали сакате да го измените целиот сет на ивенти што се повторуваат?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "Филтер"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "Повтори ивент"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "Агенда"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "Временски период"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "Избриши"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "Месец"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "Исклучено"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "Година"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "Откажи"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Календар"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Навигатор" #~ msgstr "Навигатор"

View File

@ -7,139 +7,201 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-06-13 17:27+0000\n" "PO-Revision-Date: 2012-06-13 17:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Mongolian <mn@li.org>\n" "Language-Team: Mongolian <mn@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Хуанли"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "Шүүлтүүр"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "Өнөөдөр"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "Өдөр"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "7 хоног"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "Сар"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "Шинэ үйл явдал" msgstr "Шинэ үйл явдал"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "Хадгалах"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "Цуцлах"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "Дэлгэрэнгүй" msgstr "Дэлгэрэнгүй"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "Засах" msgid "Save"
msgstr "Хадгалах"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "Устгах" msgid "Today"
msgstr "Өнөөдөр"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
#, python-format
msgid "Week"
msgstr "7 хоног"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:161
#, python-format
msgid "Full day"
msgstr "Бүтэн өдөр"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:159
#: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "Тайлбар"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:158
#, python-format
msgid "Event will be deleted permanently, are you sure?" msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
"Үйл явдал эргэлт буцалтгүйгээр устгагдах болно, та итгэлтэй байна уу?" "Үйл явдал эргэлт буцалтгүйгээр устгагдах болно, та итгэлтэй байна уу?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
#: addons/web_calendar/static/src/js/calendar.js:169 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgid "Description" #, python-format
msgstr "Тайлбар"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "Цагийн мөчлөг"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day"
msgstr "Бүтэн өдөр"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Та давтамжит үйл явдлуудыг багцаар нь засварлахыг хүсч байна уу?"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162
msgid "Repeat event"
msgstr "Давтамжит үйл явдал"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163
msgid "Disabled"
msgstr "Идэвхигүй"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "Идэвхитэй"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "Төлөвлөгөө"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "Огноо"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "Жил"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "Огноо"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "Өдөр"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "Засах"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "Идэвхитэй"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Та давтамжит үйл явдлуудыг багцаар нь засварлахыг хүсч байна уу?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "Шүүлтүүр"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "Давтамжит үйл явдал"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "Төлөвлөгөө"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "Цагийн мөчлөг"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "Устгах"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "Сар"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "Идэвхигүй"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "Жил"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "Цуцлах"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Хуанли"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Жолоо" #~ msgstr "Жолоо"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-03-28 13:05+0000\n" "PO-Revision-Date: 2012-03-28 13:05+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Norwegian Bokmal <nb@li.org>\n" "Language-Team: Norwegian Bokmal <nb@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Kalender"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Kalender"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigator" #~ msgstr "Navigator"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-16 14:02+0000\n" "PO-Revision-Date: 2012-11-25 07:04+0000\n"
"Last-Translator: Erwin van der Ploeg (Endian Solutions) <Unknown>\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) <Unknown>\n"
"Language-Team: Dutch <nl@li.org>\n" "Language-Team: Dutch <nl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:08+0000\n" "X-Launchpad-Export-Date: 2012-11-26 04:55+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Agenda"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr "Filter"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr "Vandaag"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr "Dag"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr "Week"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr "Maand"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "Nieuwe Gebeurtenis" msgstr "Nieuwe Gebeurtenis"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr "Opslaan"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr "Annuleren"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "Details" msgstr "Details"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgstr "Wijzig" msgid "Save"
msgstr "Opslaan"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgstr "Verwijder" msgid "Today"
msgstr "Vandaag"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgstr "Gebeurtenis wordt definitief verwijderd. Weet u het zeker?" msgid "Week"
msgstr "Week"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr "Omschrijving"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr "Tijdsinterval"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "Hele dag" msgstr "Hele dag"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
msgstr "Weet u zeker dat u deze herhalende gebeurtenis wilt bewerken?" #, python-format
msgid "Description"
msgstr "Omschrijving"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgstr "Herhaal gebeurtenis" msgid "Event will be deleted permanently, are you sure?"
msgstr "Gebeurtenis wordt definitief verwijderd. Weet u het zeker?"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "Uitgeschakeld" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr "Ingeschakeld"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr "Agenda"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr "Datum"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr "Jaar"
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr "Datum"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr "Bewerken: "
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr "Dag"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr "Wijzig"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr "Ingeschakeld"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr "Weet u zeker dat u deze herhalende gebeurtenis wilt bewerken?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr "Filter"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr "Herhaal gebeurtenis"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr "Agenda"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr "Tijdsinterval"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr "Verwijder"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr "Maand"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr "Uitgeschakeld"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr "Maken: "
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr "Jaar"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr "Annuleren"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Agenda"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigator" #~ msgstr "Navigator"

View File

@ -7,138 +7,200 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-02 09:06+0200\n" "POT-Creation-Date: 2012-11-24 01:23+0000\n"
"PO-Revision-Date: 2012-02-08 16:46+0000\n" "PO-Revision-Date: 2012-02-08 16:46+0000\n"
"Last-Translator: Els Van Vossel (Agaplan) <Unknown>\n" "Last-Translator: Els Van Vossel (Agaplan) <Unknown>\n"
"Language-Team: Dutch (Belgium) <nl_BE@li.org>\n" "Language-Team: Dutch (Belgium) <nl_BE@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-11-15 05:09+0000\n" "X-Launchpad-Export-Date: 2012-11-25 06:41+0000\n"
"X-Generator: Launchpad (build 16265)\n" "X-Generator: Launchpad (build 16293)\n"
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:11 #: code:addons/web_calendar/static/src/js/calendar.js:151
msgid "Calendar" #, python-format
msgstr "Kalender"
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:70
msgid "Filter"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:144
msgid "Today"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:145
msgid "Day"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:146
msgid "Week"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:147
msgid "Month"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:148
msgid "New event" msgid "New event"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:149 #: code:addons/web_calendar/static/src/js/calendar.js:154
msgid "Save" #, python-format
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:150
msgid "Cancel"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:151
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:152 #: code:addons/web_calendar/static/src/js/calendar.js:152
msgid "Edit" #, python-format
msgid "Save"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:153 #: code:addons/web_calendar/static/src/js/calendar.js:147
msgid "Delete" #, python-format
msgid "Today"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:155 #: code:addons/web_calendar/static/src/js/calendar.js:149
msgid "Event will be deleted permanently, are you sure?" #, python-format
msgid "Week"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:156 #: code:addons/web_calendar/static/src/js/calendar.js:161
#: addons/web_calendar/static/src/js/calendar.js:169 #, python-format
msgid "Description"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:157
msgid "Time period"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:158
msgid "Full day" msgid "Full day"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:161 #: code:addons/web_calendar/static/src/js/calendar.js:159
msgid "Do you want to edit the whole set of repeated events?" #: code:addons/web_calendar/static/src/js/calendar.js:172
#, python-format
msgid "Description"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:162 #: code:addons/web_calendar/static/src/js/calendar.js:158
msgid "Repeat event" #, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr "" msgstr ""
#. module: web_calendar
#. openerp-web #. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:163 #: code:addons/web_calendar/static/src/xml/web_calendar.xml:8
msgid "Disabled" #: code:addons/web_calendar/static/src/xml/web_calendar.xml:9
msgstr "" #, python-format
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:164
msgid "Enabled"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:167
#: addons/web_calendar/static/src/js/calendar.js:175
msgid "Agenda"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:168
msgid "Date"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/js/calendar.js:172
msgid "Year"
msgstr ""
#. openerp-web
#: addons/web_calendar/static/src/xml/web_calendar.xml:5
#: addons/web_calendar/static/src/xml/web_calendar.xml:6
msgid "&nbsp;" msgid "&nbsp;"
msgstr "&nbsp;" msgstr "&nbsp;"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Date"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:468
#, python-format
msgid "Edit: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:148
#, python-format
msgid "Day"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:155
#, python-format
msgid "Edit"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:167
#, python-format
msgid "Enabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:80
#, python-format
msgid "Filter"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Repeat event"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#: code:addons/web_calendar/static/src/js/calendar.js:178
#, python-format
msgid "Agenda"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Time period"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:156
#, python-format
msgid "Delete"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:150
#, python-format
msgid "Month"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Disabled"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:433
#, python-format
msgid "Create: "
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Year"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:153
#, python-format
msgid "Cancel"
msgstr ""
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:28
#, python-format
msgid "Calendar"
msgstr "Kalender"
#~ msgid "Navigator" #~ msgid "Navigator"
#~ msgstr "Navigator" #~ msgstr "Navigator"

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