mirror of
https://github.com/bringout/oca-ocb-vertical-industry.git
synced 2026-04-23 20:52:01 +02:00
Initial commit: Vertical Industry packages
This commit is contained in:
commit
d5567a0017
766 changed files with 733028 additions and 0 deletions
7
odoo-bringout-oca-ocb-lunch/lunch/__init__.py
Normal file
7
odoo-bringout-oca-ocb-lunch/lunch/__init__.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
from . import report
|
||||
from . import populate
|
||||
59
odoo-bringout-oca-ocb-lunch/lunch/__manifest__.py
Normal file
59
odoo-bringout-oca-ocb-lunch/lunch/__manifest__.py
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
{
|
||||
'name': 'Lunch',
|
||||
'sequence': 300,
|
||||
'version': '1.0',
|
||||
'depends': ['mail'],
|
||||
'category': 'Human Resources/Lunch',
|
||||
'summary': 'Handle lunch orders of your employees',
|
||||
'description': """
|
||||
The base module to manage lunch.
|
||||
================================
|
||||
|
||||
Many companies order sandwiches, pizzas and other, from usual vendors, for their employees to offer them more facilities.
|
||||
|
||||
However lunches management within the company requires proper administration especially when the number of employees or vendors is important.
|
||||
|
||||
The “Lunch Order” module has been developed to make this management easier but also to offer employees more tools and usability.
|
||||
|
||||
In addition to a full meal and vendor management, this module offers the possibility to display warning and provides quick order selection based on employee’s preferences.
|
||||
|
||||
If you want to save your employees' time and avoid them to always have coins in their pockets, this module is essential.
|
||||
""",
|
||||
'data': [
|
||||
'security/lunch_security.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'report/lunch_cashmove_report_views.xml',
|
||||
'views/lunch_templates.xml',
|
||||
'views/lunch_alert_views.xml',
|
||||
'views/lunch_cashmove_views.xml',
|
||||
'views/lunch_location_views.xml',
|
||||
'views/lunch_orders_views.xml',
|
||||
'views/lunch_product_views.xml',
|
||||
'views/lunch_supplier_views.xml',
|
||||
'views/res_config_settings.xml',
|
||||
'views/lunch_views.xml',
|
||||
'data/mail_template_data.xml',
|
||||
'data/lunch_data.xml',
|
||||
],
|
||||
'demo': ['data/lunch_demo.xml'],
|
||||
'installable': True,
|
||||
'application': True,
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'lunch/static/src/components/*',
|
||||
'lunch/static/src/mixins/*.js',
|
||||
'lunch/static/src/views/*',
|
||||
'lunch/static/src/scss/lunch_view.scss',
|
||||
'lunch/static/src/scss/lunch_kanban.scss',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'lunch/static/tests/tours/*.js',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'lunch/static/tests/lunch_kanban_tests.js',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
||||
141
odoo-bringout-oca-ocb-lunch/lunch/controllers/main.py
Normal file
141
odoo-bringout-oca-ocb-lunch/lunch/controllers/main.py
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _, http, fields
|
||||
from odoo.exceptions import AccessError
|
||||
from odoo.http import request
|
||||
from odoo.osv import expression
|
||||
from odoo.tools import float_round, float_repr
|
||||
|
||||
|
||||
class LunchController(http.Controller):
|
||||
@http.route('/lunch/infos', type='json', auth='user')
|
||||
def infos(self, user_id=None):
|
||||
self._check_user_impersonification(user_id)
|
||||
user = request.env['res.users'].browse(user_id) if user_id else request.env.user
|
||||
|
||||
infos = self._make_infos(user, order=False)
|
||||
|
||||
lines = self._get_current_lines(user)
|
||||
if lines:
|
||||
translated_states = dict(request.env['lunch.order']._fields['state']._description_selection(request.env))
|
||||
lines = [{'id': line.id,
|
||||
'product': (line.product_id.id, line.product_id.name, float_repr(float_round(line.price, 2), 2)),
|
||||
'toppings': [(topping.name, float_repr(float_round(topping.price, 2), 2))
|
||||
for topping in line.topping_ids_1 | line.topping_ids_2 | line.topping_ids_3],
|
||||
'quantity': line.quantity,
|
||||
'price': line.price,
|
||||
'raw_state': line.state,
|
||||
'state': translated_states[line.state],
|
||||
'note': line.note} for line in lines.sorted('date')]
|
||||
infos.update({
|
||||
'total': float_repr(float_round(sum(line['price'] for line in lines), 2), 2),
|
||||
'raw_state': self._get_state(lines),
|
||||
'lines': lines,
|
||||
})
|
||||
return infos
|
||||
|
||||
@http.route('/lunch/trash', type='json', auth='user')
|
||||
def trash(self, user_id=None):
|
||||
self._check_user_impersonification(user_id)
|
||||
user = request.env['res.users'].browse(user_id) if user_id else request.env.user
|
||||
|
||||
lines = self._get_current_lines(user)
|
||||
lines = lines.filtered_domain([('state', 'not in', ['sent', 'confirmed'])])
|
||||
lines.action_cancel()
|
||||
lines.unlink()
|
||||
|
||||
@http.route('/lunch/pay', type='json', auth='user')
|
||||
def pay(self, user_id=None):
|
||||
self._check_user_impersonification(user_id)
|
||||
user = request.env['res.users'].browse(user_id) if user_id else request.env.user
|
||||
|
||||
lines = self._get_current_lines(user)
|
||||
if lines:
|
||||
lines = lines.filtered(lambda line: line.state == 'new')
|
||||
|
||||
lines.action_order()
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
@http.route('/lunch/payment_message', type='json', auth='user')
|
||||
def payment_message(self):
|
||||
return {'message': request.env['ir.qweb']._render('lunch.lunch_payment_dialog', {})}
|
||||
|
||||
@http.route('/lunch/user_location_set', type='json', auth='user')
|
||||
def set_user_location(self, location_id=None, user_id=None):
|
||||
self._check_user_impersonification(user_id)
|
||||
user = request.env['res.users'].browse(user_id) if user_id else request.env.user
|
||||
|
||||
user.sudo().last_lunch_location_id = request.env['lunch.location'].browse(location_id)
|
||||
return True
|
||||
|
||||
@http.route('/lunch/user_location_get', type='json', auth='user')
|
||||
def get_user_location(self, user_id=None):
|
||||
self._check_user_impersonification(user_id)
|
||||
user = request.env['res.users'].browse(user_id) if user_id else request.env.user
|
||||
|
||||
company_ids = request.env.context.get('allowed_company_ids', request.env.company.ids)
|
||||
user_location = user.last_lunch_location_id
|
||||
has_multi_company_access = not user_location.company_id or user_location.company_id.id in company_ids
|
||||
|
||||
if not user_location or not has_multi_company_access:
|
||||
return request.env['lunch.location'].search([('company_id', 'in', [False] + company_ids)], limit=1).id
|
||||
return user_location.id
|
||||
|
||||
def _make_infos(self, user, **kwargs):
|
||||
res = dict(kwargs)
|
||||
|
||||
is_manager = request.env.user.has_group('lunch.group_lunch_manager')
|
||||
|
||||
currency = user.company_id.currency_id
|
||||
|
||||
res.update({
|
||||
'username': user.sudo().name,
|
||||
'userimage': '/web/image?model=res.users&id=%s&field=avatar_128' % user.id,
|
||||
'wallet': request.env['lunch.cashmove'].get_wallet_balance(user, False),
|
||||
'is_manager': is_manager,
|
||||
'group_portal_id': request.env.ref('base.group_portal').id,
|
||||
'locations': request.env['lunch.location'].search_read([], ['name']),
|
||||
'currency': {'symbol': currency.symbol, 'position': currency.position},
|
||||
})
|
||||
|
||||
user_location = user.last_lunch_location_id
|
||||
has_multi_company_access = not user_location.company_id or user_location.company_id.id in request.env.context.get('allowed_company_ids', request.env.company.ids)
|
||||
|
||||
if not user_location or not has_multi_company_access:
|
||||
user.last_lunch_location_id = user_location = request.env['lunch.location'].search([], limit=1) or user_location
|
||||
|
||||
alert_domain = expression.AND([
|
||||
[('available_today', '=', True)],
|
||||
[('location_ids', 'in', user_location.id)],
|
||||
[('mode', '=', 'alert')],
|
||||
])
|
||||
|
||||
res.update({
|
||||
'user_location': (user_location.id, user_location.name),
|
||||
'alerts': request.env['lunch.alert'].search_read(alert_domain, ['message']),
|
||||
})
|
||||
|
||||
return res
|
||||
|
||||
def _check_user_impersonification(self, user_id=None):
|
||||
if (user_id and request.env.uid != user_id and not request.env.user.has_group('lunch.group_lunch_manager')):
|
||||
raise AccessError(_('You are trying to impersonate another user, but this can only be done by a lunch manager'))
|
||||
|
||||
def _get_current_lines(self, user):
|
||||
return request.env['lunch.order'].search(
|
||||
[('user_id', '=', user.id), ('date', '=', fields.Date.context_today(user)), ('state', '!=', 'cancelled')]
|
||||
)
|
||||
|
||||
def _get_state(self, lines):
|
||||
"""
|
||||
This method returns the lowest state of the list of lines
|
||||
|
||||
eg: [confirmed, confirmed, new] will return ('new', 'To Order')
|
||||
"""
|
||||
states_to_int = {'new': 0, 'ordered': 1, 'sent': 2, 'confirmed': 3, 'cancelled': 4}
|
||||
int_to_states = ['new', 'ordered', 'sent', 'confirmed', 'cancelled']
|
||||
|
||||
return int_to_states[min(states_to_int[line['raw_state']] for line in lines)]
|
||||
67
odoo-bringout-oca-ocb-lunch/lunch/data/lunch_data.xml
Normal file
67
odoo-bringout-oca-ocb-lunch/lunch/data/lunch_data.xml
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="lunch_location_main" model="lunch.location" forcecreate="0">
|
||||
<field name="name">HQ Office</field>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product.category" id="categ_sandwich" forcecreate="0">
|
||||
<field name="name">Sandwich</field>
|
||||
</record>
|
||||
|
||||
<record id="categ_pizza" model="lunch.product.category" forcecreate="0">
|
||||
<field name="name">Pizza</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/pizza.png"/>
|
||||
</record>
|
||||
|
||||
<record id="categ_burger" model="lunch.product.category" forcecreate="0">
|
||||
<field name="name">Burger</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/burger.png"/>
|
||||
</record>
|
||||
|
||||
<record id="categ_drinks" model="lunch.product.category" forcecreate="0">
|
||||
<field name="name">Drinks</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/drink.png"/>
|
||||
</record>
|
||||
|
||||
<record id="partner_hungry_dog" model="res.partner" forcecreate="0">
|
||||
<field name="name">Lunch Supplier</field>
|
||||
</record>
|
||||
|
||||
<record id="supplier_hungry_dog" model="lunch.supplier" forcecreate="0">
|
||||
<field name="partner_id" ref="partner_hungry_dog"/>
|
||||
<field name="available_location_ids" eval="[
|
||||
(6, 0, [ref('lunch_location_main')]),
|
||||
]"/>
|
||||
</record>
|
||||
</data>
|
||||
<data>
|
||||
<record id="lunch_order_action_confirm" model="ir.actions.server">
|
||||
<field name="name">Lunch: Receive meals</field>
|
||||
<field name="model_id" ref="model_lunch_order"/>
|
||||
<field name="binding_model_id" ref="model_lunch_order"/>
|
||||
<field name="binding_view_types">list</field>
|
||||
<field name="state">code</field>
|
||||
<field name="code">records.action_confirm()</field>
|
||||
</record>
|
||||
|
||||
<record id="lunch_order_action_cancel" model="ir.actions.server">
|
||||
<field name="name">Lunch: Cancel meals</field>
|
||||
<field name="model_id" ref="model_lunch_order"/>
|
||||
<field name="binding_model_id" ref="model_lunch_order"/>
|
||||
<field name="binding_view_types">list</field>
|
||||
<field name="state">code</field>
|
||||
<field name="code">records.action_cancel()</field>
|
||||
</record>
|
||||
|
||||
<record id="lunch_order_action_notify" model="ir.actions.server">
|
||||
<field name="name">Lunch: Send notifications</field>
|
||||
<field name="model_id" ref="model_lunch_order"/>
|
||||
<field name="binding_model_id" ref="model_lunch_order"/>
|
||||
<field name="binding_view_types">list</field>
|
||||
<field name="state">code</field>
|
||||
<field name="code">records.action_notify()</field>
|
||||
</record>
|
||||
</data>
|
||||
|
||||
</odoo>
|
||||
481
odoo-bringout-oca-ocb-lunch/lunch/data/lunch_demo.xml
Normal file
481
odoo-bringout-oca-ocb-lunch/lunch/data/lunch_demo.xml
Normal file
|
|
@ -0,0 +1,481 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
|
||||
<record id="lunch_location_main" model="lunch.location">
|
||||
<field name="address">87323 Francis Corner Oscarhaven, OK 12782</field>
|
||||
</record>
|
||||
|
||||
<record id="partner_hungry_dog" model="res.partner">
|
||||
<field name="name">Hungry Dog</field>
|
||||
<field name="city">Russeltown</field>
|
||||
<field name="country_id" ref="base.us"/>
|
||||
<field name="street">975 Bullock Orchard</field>
|
||||
<field name="zip">02155</field>
|
||||
<field name="email">cynthiasanchez@gmail.com</field>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record id="product_bacon_0" model="lunch.product">
|
||||
<field name="name">Bacon</field>
|
||||
<field name="category_id" ref="categ_burger"/>
|
||||
<field name="price">7.2</field>
|
||||
<field name="supplier_id" ref="supplier_hungry_dog"/>
|
||||
<field name="description">Beef, Bacon, Salad, Cheddar, Fried Onion, BBQ Sauce</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/bacon_burger.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record id="product_cheese_burger_0" model="lunch.product">
|
||||
<field name="name">Cheese Burger</field>
|
||||
<field name="category_id" ref="categ_burger"/>
|
||||
<field name="price">6.8</field>
|
||||
<field name="supplier_id" ref="supplier_hungry_dog"/>
|
||||
<field name="description">Beef, Cheddar, Salad, Fried Onions, BBQ Sauce</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/cheeseburger.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record id="product_club_0" model="lunch.product">
|
||||
<field name="name">Club</field>
|
||||
<field name="category_id" ref="categ_sandwich"/>
|
||||
<field name="price">3.4</field>
|
||||
<field name="supplier_id" ref="supplier_hungry_dog"/>
|
||||
<field name="description">Ham, Cheese, Vegetables</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/club.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record id="product_coke_0" model="lunch.product">
|
||||
<field name="name">Coca Cola</field>
|
||||
<field name="category_id" ref="categ_drinks"/>
|
||||
<field name="price">2.9</field>
|
||||
<field name="description"></field>
|
||||
<field name="supplier_id" ref="supplier_hungry_dog"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record id="product_pizza_0" model="lunch.product">
|
||||
<field name="name">Pizza Margherita</field>
|
||||
<field name="category_id" ref="categ_pizza"/>
|
||||
<field name="price">6.90</field>
|
||||
<field name="supplier_id" ref="supplier_hungry_dog"/>
|
||||
<field name="description">Tomatoes, Mozzarella</field>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
|
||||
<record id="location_office_1" model="lunch.location">
|
||||
<field name="name">Office 1</field>
|
||||
</record>
|
||||
|
||||
<record id="location_office_2" model="lunch.location">
|
||||
<field name="name">Office 2</field>
|
||||
</record>
|
||||
|
||||
<record id="location_office_3" model="lunch.location">
|
||||
<field name="name">Office 3</field>
|
||||
</record>
|
||||
|
||||
<record id="alert_office_3" model="lunch.alert">
|
||||
<field name="name">Alert for Office 3</field>
|
||||
<field name="message">Please order</field>
|
||||
<field name="location_ids" eval="[(4, ref('location_office_3'))]" />
|
||||
<field name="mode">chat</field>
|
||||
</record>
|
||||
|
||||
<record id="base.user_admin" model="res.users">
|
||||
<field name="last_lunch_location_id" ref="location_office_2"/>
|
||||
</record>
|
||||
|
||||
<record id="base.user_demo" model="res.users">
|
||||
<field name="last_lunch_location_id" ref="location_office_3"/>
|
||||
<field name="groups_id" eval="[(4, ref('lunch.group_lunch_user'))]"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product.category" id="categ_pasta">
|
||||
<field name="name">Pasta</field>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product.category" id="categ_sushi">
|
||||
<field name="name">Sushi</field>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product.category" id="categ_temaki">
|
||||
<field name="name">Temaki</field>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product.category" id="categ_chirashi">
|
||||
<field name="name">Chirashi</field>
|
||||
</record>
|
||||
|
||||
<record id="partner_coin_gourmand" model="res.partner">
|
||||
<field name="name">Coin gourmand</field>
|
||||
<field name="city">Tirana</field>
|
||||
<field name="country_id" ref="base.al"/>
|
||||
<field name="street">Rr. e Durrësit, Pall. M.C. Inerte</field>
|
||||
<field name="street2">Kati.1, Laprakë, Tirana, Shqipëri</field>
|
||||
<field name="email">coin.gourmand@yourcompany.example.com</field>
|
||||
<field name="phone">+32485562388</field>
|
||||
</record>
|
||||
|
||||
<record id="partner_pizza_inn" model="res.partner">
|
||||
<field name="name">Pizza Inn</field>
|
||||
<field name="city">New Delhi TN</field>
|
||||
<field name="country_id" ref="base.us"/>
|
||||
<field name="street">#8, 1 st Floor,iscore complex</field>
|
||||
<field name="street2">Gandhi Gramam,Gandhi Nagar</field>
|
||||
<field name="zip">607308</field>
|
||||
<field name="email">pizza.inn@yourcompany.example.com</field>
|
||||
<field name="phone">+32456325289</field>
|
||||
</record>
|
||||
|
||||
<record model="res.partner" id="partner_corner">
|
||||
<field name="name">The Corner</field>
|
||||
<field name="city">Atlanta</field>
|
||||
<field name="country_id" ref="base.us"/>
|
||||
<field name="street">Genessee Ave SW</field>
|
||||
<field name="zip">607409</field>
|
||||
<field name="email">info@corner.com</field>
|
||||
<field name="phone">+32654321515</field>
|
||||
</record>
|
||||
|
||||
<record model="res.partner" id="partner_sushi_shop">
|
||||
<field name="name">Sushi Shop</field>
|
||||
<field name="city">Paris</field>
|
||||
<field name="country_id" ref="base.fr"/>
|
||||
<field name="street">Boulevard Saint-Germain</field>
|
||||
<field name="zip">486624</field>
|
||||
<field name="email">order@sushi.com</field>
|
||||
<field name="phone">+32498859912</field>
|
||||
</record>
|
||||
|
||||
<record model="lunch.supplier" id="supplier_coin_gourmand">
|
||||
<field name="partner_id" ref="partner_coin_gourmand"/>
|
||||
<field name="available_location_ids" eval="[
|
||||
(6, 0, [ref('location_office_1'), ref('location_office_2')]),
|
||||
]"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.supplier" id="supplier_pizza_inn">
|
||||
<field name="partner_id" ref="partner_pizza_inn"/>
|
||||
<field name="send_by">mail</field>
|
||||
<field name="automatic_email_time">11</field>
|
||||
<field name="available_location_ids" eval="[
|
||||
(6, 0, [ref('location_office_1'), ref('location_office_2')]),
|
||||
]"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.supplier" id="supplier_corner">
|
||||
<field name="partner_id" ref="partner_corner"/>
|
||||
<field name="available_location_ids" eval="[
|
||||
(6, 0, [ref('location_office_3')]),
|
||||
]"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.supplier" id="supplier_sushi_shop">
|
||||
<field name="partner_id" ref="partner_sushi_shop"/>
|
||||
<field name="available_location_ids" eval="[
|
||||
(6, 0, [ref('location_office_1'), ref('location_office_2')]),
|
||||
]"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_bacon">
|
||||
<field name="name">Bacon</field>
|
||||
<field name="category_id" ref="categ_burger"/>
|
||||
<field name="price">7.5</field>
|
||||
<field name="supplier_id" ref="supplier_corner"/>
|
||||
<field name="description">Beef, Bacon, Salad, Cheddar, Fried Onion, BBQ Sauce</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/bacon_burger.png"/>
|
||||
<field name="new_until" eval="datetime.today() + relativedelta(weeks=1)"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_cheeseburger">
|
||||
<field name="name">Cheese Burger</field>
|
||||
<field name="category_id" ref="categ_burger"/>
|
||||
<field name="price">7.0</field>
|
||||
<field name="supplier_id" ref="supplier_corner"/>
|
||||
<field name="description">Beef, Cheddar, Salad, Fried Onions, BBQ Sauce</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/cheeseburger.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_chicken_curry">
|
||||
<field name="name">Chicken Curry</field>
|
||||
<field name="category_id" ref="categ_sandwich"/>
|
||||
<field name="price">3.0</field>
|
||||
<field name="supplier_id" ref="supplier_corner"/>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/chicken_curry.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_spicy_tuna">
|
||||
<field name="name">Spicy Tuna</field>
|
||||
<field name="category_id" ref="categ_sandwich"/>
|
||||
<field name="price">3.0</field>
|
||||
<field name="supplier_id" ref="supplier_corner"/>
|
||||
<field name="description"></field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/chicken_curry.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_mozzarella">
|
||||
<field name="name">Mozzarella</field>
|
||||
<field name="category_id" ref="categ_sandwich"/>
|
||||
<field name="price">3.9</field>
|
||||
<field name="supplier_id" ref="supplier_corner"/>
|
||||
<field name="description">Mozzarella, Pesto, Tomatoes</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/mozza.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_club">
|
||||
<field name="name">Club</field>
|
||||
<field name="category_id" ref="categ_sandwich"/>
|
||||
<field name="price">3.4</field>
|
||||
<field name="supplier_id" ref="supplier_corner"/>
|
||||
<field name="description">Ham, Cheese, Vegetables</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/club.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_maki">
|
||||
<field name="name">Lunch Maki 18pc</field>
|
||||
<field name="category_id" ref="categ_sushi"/>
|
||||
<field name="price">12.0</field>
|
||||
<field name="supplier_id" ref="supplier_sushi_shop"/>
|
||||
<field name="description">6 Maki Salmon - 6 Maki Tuna - 6 Maki Shrimp/Avocado</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/maki.png"/>
|
||||
<field name="new_until" eval="datetime.today() + relativedelta(weeks=1)"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_salmon">
|
||||
<field name="name">Lunch Salmon 20pc</field>
|
||||
<field name="category_id" ref="categ_sushi"/>
|
||||
<field name="price">13.80</field>
|
||||
<field name="supplier_id" ref="supplier_sushi_shop"/>
|
||||
<field name="description">4 Sushi Salmon - 6 Maki Salmon - 4 Sashimi Salmon </field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/salmon_sushi.png"/>
|
||||
<field name="new_until" eval="datetime.today() + relativedelta(weeks=1)"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_temaki">
|
||||
<field name="name">Lunch Temaki mix 3pc</field>
|
||||
<field name="category_id" ref="categ_temaki"/>
|
||||
<field name="price">14.0</field>
|
||||
<field name="supplier_id" ref="supplier_sushi_shop"/>
|
||||
<field name="description">1 Avocado - 1 Salmon - 1 Eggs - 1 Tuna</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/temaki.png"/>
|
||||
<field name="new_until" eval="datetime.today() + relativedelta(weeks=1)"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_chirashi">
|
||||
<field name="name">Salmon and Avocado</field>
|
||||
<field name="category_id" ref="categ_chirashi"/>
|
||||
<field name="price">9.25</field>
|
||||
<field name="supplier_id" ref="supplier_sushi_shop"/>
|
||||
<field name="description">2 Tempuras, Cabbages, Onions, Sesame Sauce</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/chirashi.png"/>
|
||||
<field name="new_until" eval="datetime.today() + relativedelta(weeks=1)"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_cheese_ham">
|
||||
<field name="name">Cheese And Ham</field>
|
||||
<field name="category_id" ref="categ_sandwich"/>
|
||||
<field name="price">3.30</field>
|
||||
<field name="supplier_id" ref="supplier_coin_gourmand"/>
|
||||
<field name="description">Cheese, Ham, Salad, Tomatoes, cucumbers, eggs</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/club.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_country">
|
||||
<field name="name">The Country</field>
|
||||
<field name="category_id" ref="categ_sandwich"/>
|
||||
<field name="price">3.30</field>
|
||||
<field name="supplier_id" ref="supplier_coin_gourmand"/>
|
||||
<field name="description">Brie, Honey, Walnut Kernels</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/brie.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_tuna">
|
||||
<field name="name">Tuna</field>
|
||||
<field name="category_id" ref="categ_sandwich"/>
|
||||
<field name="price">2.50</field>
|
||||
<field name="supplier_id" ref="supplier_coin_gourmand"/>
|
||||
<field name="description">Tuna, Mayonnaise</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/tuna_sandwich.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_gouda">
|
||||
<field name="name">Gouda Cheese</field>
|
||||
<field name="category_id" ref="categ_sandwich"/>
|
||||
<field name="price">2.50</field>
|
||||
<field name="supplier_id" ref="supplier_coin_gourmand"/>
|
||||
<field name="description"></field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/gouda.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_chicken_curry">
|
||||
<field name="name">Chicken Curry</field>
|
||||
<field name="category_id" ref="categ_sandwich"/>
|
||||
<field name="price">2.60</field>
|
||||
<field name="supplier_id" ref="supplier_coin_gourmand"/>
|
||||
<field name="description"></field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/chicken_curry.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_margherita">
|
||||
<field name="name">Pizza Margherita</field>
|
||||
<field name="category_id" ref="categ_pizza"/>
|
||||
<field name="price">6.90</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
<field name="description">Tomatoes, Mozzarella</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/pizza_margherita.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_funghi">
|
||||
<field name="name">Pizza Funghi</field>
|
||||
<field name="category_id" ref="categ_pizza"/>
|
||||
<field name="price">7.00</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
<field name="description">Tomatoes, Mushrooms, Mozzarella</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/pizza_funghi.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_vege">
|
||||
<field name="name">Pizza Vegetarian</field>
|
||||
<field name="category_id" ref="categ_pizza"/>
|
||||
<field name="price">7.00</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
<field name="description">Tomatoes, Mozzarella, Mushrooms, Peppers, Olives</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/pizza_veggie.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_italiana">
|
||||
<field name="name">Pizza Italiana</field>
|
||||
<field name="category_id" ref="categ_pizza"/>
|
||||
<field name="price">7.40</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
<field name="description">Fresh Tomatoes, Basil, Mozzarella</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/italiana.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_Bolognese">
|
||||
<field name="name">Bolognese Pasta</field>
|
||||
<field name="category_id" ref="categ_pasta"/>
|
||||
<field name="price">7.70</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
<field name="description"></field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/pasta_bolognese.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_Napoli">
|
||||
<field name="name">Napoli Pasta</field>
|
||||
<field name="category_id" ref="categ_pasta"/>
|
||||
<field name="price">7.70</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
<field name="description">Tomatoes, Basil</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/napoli.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.topping" id="product_olives">
|
||||
<field name="name">Olives</field>
|
||||
<field name="price">0.30</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.product" id="product_4formaggi">
|
||||
<field name="name">4 Formaggi</field>
|
||||
<field name="category_id" ref="categ_pasta"/>
|
||||
<field name="price">5.50</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
<field name="description">Tomato sauce, Olive oil, Fresh Tomatoes, Onions, Vegetables, Parmesan</field>
|
||||
<field name="image_1920" type="base64" file="lunch/static/img/4formaggio.png"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.cashmove" id="cashmove_1">
|
||||
<field name="user_id" ref="base.user_demo"/>
|
||||
<field name="date" eval="(DateTime.now() + timedelta(days=3)).strftime('%Y-%m-%d')"/>
|
||||
<field name="description">Payment: 5 lunch tickets (6€)</field>
|
||||
<field name="amount">30</field>
|
||||
</record>
|
||||
|
||||
<record model="lunch.cashmove" id="cashmove_2">
|
||||
<field name="user_id" ref="base.user_admin"/>
|
||||
<field name="date" eval="(DateTime.now() - timedelta(days=3)).strftime('%Y-%m-%d')"/>
|
||||
<field name="description">Payment: 7 lunch tickets (6€)</field>
|
||||
<field name="amount">42</field>
|
||||
</record>
|
||||
|
||||
<record model="lunch.order" id="order_line_1">
|
||||
<field name="user_id" ref="base.user_demo"/>
|
||||
<field name="product_id" ref="product_Bolognese"/>
|
||||
<field name="price">7.70</field>
|
||||
<field name="date" eval="(DateTime.now() + timedelta(days=2)).strftime('%Y-%m-%d')"/>
|
||||
<field name="state">new</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
<field name="quantity">1</field>
|
||||
<field name="lunch_location_id" ref="location_office_3"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.order" id="order_line_2">
|
||||
<field name="user_id" ref="base.user_demo"/>
|
||||
<field name="product_id" ref="product_italiana"/>
|
||||
<field name="price">7.40</field>
|
||||
<field name="date" eval="(DateTime.now() + timedelta(days=1)).strftime('%Y-%m-%d')"/>
|
||||
<field name="state">confirmed</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
<field name="quantity">1</field>
|
||||
<field name="lunch_location_id" ref="location_office_3"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.order" id="order_line_3">
|
||||
<field name="user_id" ref="base.user_demo"/>
|
||||
<field name="product_id" ref="product_gouda"/>
|
||||
<field name="price">2.50</field>
|
||||
<field name="date" eval="(DateTime.now() + timedelta(days=3)).strftime('%Y-%m-%d')"/>
|
||||
<field name="state">cancelled</field>
|
||||
<field name="supplier_id" ref="supplier_coin_gourmand"/>
|
||||
<field name="quantity">1</field>
|
||||
<field name="lunch_location_id" ref="location_office_3"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.order" id="order_line_4">
|
||||
<field name="user_id" ref="base.user_demo"/>
|
||||
<field name="product_id" ref="product_chicken_curry"/>
|
||||
<field name="price">2.60</field>
|
||||
<field name="date" eval="(DateTime.now() + timedelta(days=3)).strftime('%Y-%m-%d')"/>
|
||||
<field name="state">confirmed</field>
|
||||
<field name="supplier_id" ref="supplier_coin_gourmand"/>
|
||||
<field name="quantity">1</field>
|
||||
<field name="lunch_location_id" ref="location_office_3"/>
|
||||
</record>
|
||||
|
||||
<record model="lunch.order" id="order_line_5">
|
||||
<field name="user_id" ref="base.user_admin"/>
|
||||
<field name="product_id" ref="product_4formaggi"/>
|
||||
<field name="price">5.50</field>
|
||||
<field name="date" eval="(DateTime.now() + timedelta(days=3)).strftime('%Y-%m-%d')"/>
|
||||
<field name="state">confirmed</field>
|
||||
<field name="supplier_id" ref="supplier_pizza_inn"/>
|
||||
<field name="lunch_location_id" ref="location_office_2"/>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
142
odoo-bringout-oca-ocb-lunch/lunch/data/mail_template_data.xml
Normal file
142
odoo-bringout-oca-ocb-lunch/lunch/data/mail_template_data.xml
Normal file
|
|
@ -0,0 +1,142 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="0">
|
||||
<record id="lunch_order_mail_supplier" model="mail.template">
|
||||
<field name="name">Lunch: Supplier Order</field>
|
||||
<field name="model_id" ref="lunch.model_lunch_supplier"/>
|
||||
<field name="email_from">{{ ctx['order']['email_from'] }}</field>
|
||||
<field name="partner_to">{{ ctx['order']['supplier_id'] }}</field>
|
||||
<field name="subject">Orders for {{ ctx['order']['company_name'] }}</field>
|
||||
<field name="lang">{{ ctx.get('default_lang') }}</field>
|
||||
<field name="description">Sent to vendor with the order of the day</field>
|
||||
<field name="body_html" type="html">
|
||||
<table border="0" cellpadding="0" cellspacing="0" style="padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;"><tr><td align="center">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="590" style="padding: 16px; background-color: white; color: #454748; border-collapse:separate;">
|
||||
<tbody>
|
||||
<!-- HEADER -->
|
||||
<tr>
|
||||
<td align="center" style="min-width: 590px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;">
|
||||
<tr><td valign="middle">
|
||||
<span style="font-size: 10px;">Lunch Order</span><br/>
|
||||
</td><td valign="middle" align="right">
|
||||
<img t-attf-src="/logo.png?company={{ user.company_id.id }}" style="padding: 0px; margin: 0px; height: auto; width: 80px;" t-att-alt="user.company_id.name"/>
|
||||
</td></tr>
|
||||
<tr><td colspan="2" style="text-align:center;">
|
||||
<hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;"/>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- CONTENT -->
|
||||
<tr>
|
||||
<td align="center" style="min-width: 590px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;">
|
||||
<tr>
|
||||
<td valign="top" style="font-size: 13px;">
|
||||
<div>
|
||||
<t t-set="lines" t-value="ctx.get('lines', [])"/>
|
||||
<t t-set="order" t-value="ctx.get('order')"/>
|
||||
<t t-set="currency" t-value="user.env['res.currency'].browse(order.get('currency_id'))"/>
|
||||
<p>
|
||||
Dear <t t-out="order.get('supplier_name', '')">Laurie Poiret</t>,
|
||||
</p><p>
|
||||
Here is, today orders for <t t-out="order.get('company_name', '')">LunchCompany</t>:
|
||||
</p>
|
||||
|
||||
<t t-if="sites">
|
||||
<br/>
|
||||
<p>Location</p>
|
||||
<t t-foreach="site" t-as="site">
|
||||
<p><t t-out="site['name'] or ''"></t> : <t t-out="site['address'] or ''"></t></p>
|
||||
</t>
|
||||
<br/>
|
||||
</t>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr style="background-color:rgb(233,232,233);">
|
||||
<th style="width: 100%; min-width: 96px; font-size: 13px;"><strong>Product</strong></th>
|
||||
<th style="width: 100%; min-width: 96px; font-size: 13px;"><strong>Comments</strong></th>
|
||||
<th style="width: 100%; min-width: 96px; font-size: 13px;"><strong>Person</strong></th>
|
||||
<th style="width: 100%; min-width: 96px; font-size: 13px;"><strong>Site</strong></th>
|
||||
<th style="width: 100%; min-width: 96px; font-size: 13px;" align="center"><strong>Qty</strong></th>
|
||||
<th style="width: 100%; min-width: 96px; font-size: 13px;" align="center"><strong>Price</strong></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr t-foreach="lines" t-as="line">
|
||||
<td style="width: 100%; font-size: 13px;" valign="top" t-out="line['product'] or ''">Sushi salmon</td>
|
||||
<td style="width: 100%; font-size: 13px;" valign="top">
|
||||
<t t-if="line['toppings']">
|
||||
<t t-out="line['toppings'] or ''">Soy sauce</t>
|
||||
</t>
|
||||
<t t-if="line['note']">
|
||||
<div style="color: rgb(173,181,189);" t-out="line['note'] or ''">With wasabi.</div>
|
||||
</t>
|
||||
</td>
|
||||
<td style="width: 100%; font-size: 13px;" valign="top" t-out="line['username'] or ''">lap</td>
|
||||
<td style="width: 100%; font-size: 13px;" valign="top" t-out="line['site'] or ''">Office 1</td>
|
||||
<td style="width: 100%; font-size: 13px;" valign="top" align="right" t-out="line['quantity'] or ''">10</td>
|
||||
<td style="width: 100%; font-size: 13px;" valign="top" align="right" t-out="format_amount(line['price'], currency) or ''">$ 1.00</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td style="width: 100%; font-size: 13px; border-top: 1px solid black;"><strong>Total</strong></td>
|
||||
<td style="width: 100%; font-size: 13px; border-top: 1px solid black;" align="right"><strong t-out="format_amount(order['amount_total'], currency) or ''">$ 10.00</strong></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<p>Do not hesitate to contact us if you have any questions.</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align:center;">
|
||||
<hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;"/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- FOOTER -->
|
||||
<tr>
|
||||
<td align="center" style="min-width: 590px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;">
|
||||
<tr><td valign="middle" align="left">
|
||||
<t t-out="user.company_id.name or ''">YourCompany</t>
|
||||
</td></tr>
|
||||
<tr><td valign="middle" align="left" style="opacity: 0.7;">
|
||||
<t t-out="user.company_id.phone or ''">+1 650-123-4567</t>
|
||||
<t t-if="user.company_id.phone and (user.company_id.email or user.company_id.website)">|</t>
|
||||
<t t-if="user.company_id.email">
|
||||
<a t-attf-href="'mailto:%s' % {{ user.company_id.email }}" style="text-decoration:none; color: #454748;" t-out="user.company_id.email or ''">info@yourcompany.com</a>
|
||||
</t>
|
||||
<t t-if="user.company_id.email and user.company_id.website">|</t>
|
||||
<t t-if="user.company_id.website">
|
||||
<a t-attf-href="'%s' % {{ user.company_id.website }}" style="text-decoration:none; color: #454748;" t-out="user.company_id.website or ''">http://www.example.com</a>
|
||||
</t>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td></tr>
|
||||
<!-- POWERED BY -->
|
||||
<tr><td align="center" style="min-width: 590px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;">
|
||||
<tr><td style="text-align: center; font-size: 13px;">
|
||||
Powered by <a target="_blank" href="https://www.odoo.com" style="color: #875A7B;">Odoo</a>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</data></odoo>
|
||||
2290
odoo-bringout-oca-ocb-lunch/lunch/i18n/af.po
Normal file
2290
odoo-bringout-oca-ocb-lunch/lunch/i18n/af.po
Normal file
File diff suppressed because it is too large
Load diff
2265
odoo-bringout-oca-ocb-lunch/lunch/i18n/am.po
Normal file
2265
odoo-bringout-oca-ocb-lunch/lunch/i18n/am.po
Normal file
File diff suppressed because it is too large
Load diff
2461
odoo-bringout-oca-ocb-lunch/lunch/i18n/ar.po
Normal file
2461
odoo-bringout-oca-ocb-lunch/lunch/i18n/ar.po
Normal file
File diff suppressed because it is too large
Load diff
2300
odoo-bringout-oca-ocb-lunch/lunch/i18n/az.po
Normal file
2300
odoo-bringout-oca-ocb-lunch/lunch/i18n/az.po
Normal file
File diff suppressed because it is too large
Load diff
2291
odoo-bringout-oca-ocb-lunch/lunch/i18n/be.po
Normal file
2291
odoo-bringout-oca-ocb-lunch/lunch/i18n/be.po
Normal file
File diff suppressed because it is too large
Load diff
2318
odoo-bringout-oca-ocb-lunch/lunch/i18n/bg.po
Normal file
2318
odoo-bringout-oca-ocb-lunch/lunch/i18n/bg.po
Normal file
File diff suppressed because it is too large
Load diff
2287
odoo-bringout-oca-ocb-lunch/lunch/i18n/bs.po
Normal file
2287
odoo-bringout-oca-ocb-lunch/lunch/i18n/bs.po
Normal file
File diff suppressed because it is too large
Load diff
2368
odoo-bringout-oca-ocb-lunch/lunch/i18n/ca.po
Normal file
2368
odoo-bringout-oca-ocb-lunch/lunch/i18n/ca.po
Normal file
File diff suppressed because it is too large
Load diff
2459
odoo-bringout-oca-ocb-lunch/lunch/i18n/cs.po
Normal file
2459
odoo-bringout-oca-ocb-lunch/lunch/i18n/cs.po
Normal file
File diff suppressed because it is too large
Load diff
2337
odoo-bringout-oca-ocb-lunch/lunch/i18n/da.po
Normal file
2337
odoo-bringout-oca-ocb-lunch/lunch/i18n/da.po
Normal file
File diff suppressed because it is too large
Load diff
2474
odoo-bringout-oca-ocb-lunch/lunch/i18n/de.po
Normal file
2474
odoo-bringout-oca-ocb-lunch/lunch/i18n/de.po
Normal file
File diff suppressed because it is too large
Load diff
1130
odoo-bringout-oca-ocb-lunch/lunch/i18n/el.po
Normal file
1130
odoo-bringout-oca-ocb-lunch/lunch/i18n/el.po
Normal file
File diff suppressed because it is too large
Load diff
944
odoo-bringout-oca-ocb-lunch/lunch/i18n/en_AU.po
Normal file
944
odoo-bringout-oca-ocb-lunch/lunch/i18n/en_AU.po
Normal file
|
|
@ -0,0 +1,944 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-03-10 13:15+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/en_AU/)\n"
|
||||
"Language: en_AU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "- Click on the"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt."
|
||||
"<br>\n"
|
||||
" A payment represents the employee reimbursement to the "
|
||||
"company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_action_tree
|
||||
msgid ""
|
||||
"A lunch order is defined by its user, date and order lines.\n"
|
||||
" Each order line corresponds to a product, an additional note "
|
||||
"and a price.\n"
|
||||
" Before selecting your order lines, don't forget to read the "
|
||||
"warnings displayed in the reddish area."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Add"
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:253
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch "
|
||||
"orders.\n"
|
||||
" To create a lunch alert you have to define its recurrency, "
|
||||
"the time interval during which the alert should be executed and the message "
|
||||
"to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr "Import"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Archive/Unarchive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get "
|
||||
"his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash move balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_action_tree
|
||||
msgid "Click to create a lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr "Date"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr "Day"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense "
|
||||
"or a payment.\n"
|
||||
" An expense is automatically created when an order is "
|
||||
"received while a payment is a reimbursement to the company encoded by the "
|
||||
"manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1894
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr "List"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:224
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:62
|
||||
#: model:ir.actions.report.xml,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr "Manager"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr "New"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:37
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous order ids"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrency"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr "Search"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:98
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr "Today"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr "User"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_search
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_tree
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_search
|
||||
msgid "lunch orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "or"
|
||||
msgstr "or"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"to announce that the order is ordered <br>\n"
|
||||
" - Click on the"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"to announce that the order is received <br>\n"
|
||||
" - Click on the"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "to announce that the order isn't available"
|
||||
msgstr ""
|
||||
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/en_GB.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/en_GB.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelled"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Company"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Currency"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Group By"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Order"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Price"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Product Category"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Products"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Unit Price"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
2472
odoo-bringout-oca-ocb-lunch/lunch/i18n/es.po
Normal file
2472
odoo-bringout-oca-ocb-lunch/lunch/i18n/es.po
Normal file
File diff suppressed because it is too large
Load diff
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_BO.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_BO.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_BO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Divisa"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Productos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unidad"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_CL.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_CL.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr "Nueva"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Pedido"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Productos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio un."
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_CO.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_CO.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado(a)"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr "Mis Órdenes"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr "Nuevo"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Orden"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr "Mes de la Orden"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría del Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Productos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio Unitario"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_CR.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_CR.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelada"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Orden"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Productos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unidad"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_DO.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_DO.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelada"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr "Mis pedidos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr "Nuevo"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Pedido"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr "Mes del pedido"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Productos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unidad"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_EC.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_EC.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por:"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Fecha de modificación"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima Actualización por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado en"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr "Mis Ordenes"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr "Nuevo"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Orden"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr "Orden Mensual"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Productos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unitario"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
2472
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_MX.po
Normal file
2472
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_MX.po
Normal file
File diff suppressed because it is too large
Load diff
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_PE.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_PE.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañia"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr "Mis Pedidos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Pedido"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr "Mes del Pedido"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Productos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unitario"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_PY.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_PY.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Orden"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Productos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio Unitario"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_VE.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/es_VE.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelada"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Orden"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Productos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Precio unidad"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
2353
odoo-bringout-oca-ocb-lunch/lunch/i18n/et.po
Normal file
2353
odoo-bringout-oca-ocb-lunch/lunch/i18n/et.po
Normal file
File diff suppressed because it is too large
Load diff
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/eu.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/eu.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "Guztira"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Ezeztatu"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Ezeztatua"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Enpresa"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moneta"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Deskribapena"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Group By"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Eskaria"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr "Order Month"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Price"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Produktua"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Produktu Kategoria"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Produktuak"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Egoera"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Unitateko prezioa"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
2314
odoo-bringout-oca-ocb-lunch/lunch/i18n/fa.po
Normal file
2314
odoo-bringout-oca-ocb-lunch/lunch/i18n/fa.po
Normal file
File diff suppressed because it is too large
Load diff
2486
odoo-bringout-oca-ocb-lunch/lunch/i18n/fi.po
Normal file
2486
odoo-bringout-oca-ocb-lunch/lunch/i18n/fi.po
Normal file
File diff suppressed because it is too large
Load diff
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/fo.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/fo.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Íalt</strong>"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Strika"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Fyritøka"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Byrjað av"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Byrjað tann"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Frágreiðing"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Bólka eftir"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Seinast rættað tann"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Seinast dagført av"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Seinast dagført tann"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr "Mínir ordrar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Bílegg"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr "Bíleggingarmánaði"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Prísur"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Vøra"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Íalt"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Eindarprísur"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
2477
odoo-bringout-oca-ocb-lunch/lunch/i18n/fr.po
Normal file
2477
odoo-bringout-oca-ocb-lunch/lunch/i18n/fr.po
Normal file
File diff suppressed because it is too large
Load diff
2153
odoo-bringout-oca-ocb-lunch/lunch/i18n/fr_BE.po
Normal file
2153
odoo-bringout-oca-ocb-lunch/lunch/i18n/fr_BE.po
Normal file
File diff suppressed because it is too large
Load diff
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/fr_CA.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/fr_CA.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Total</strong>"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Annulé"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Devise"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Grouper par"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Statut"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/gl.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/gl.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado o"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Moeda"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Descrición"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Pedido"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Prezo"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de Producto"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Produtos"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Prezo unidade"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
2296
odoo-bringout-oca-ocb-lunch/lunch/i18n/gu.po
Normal file
2296
odoo-bringout-oca-ocb-lunch/lunch/i18n/gu.po
Normal file
File diff suppressed because it is too large
Load diff
2332
odoo-bringout-oca-ocb-lunch/lunch/i18n/he.po
Normal file
2332
odoo-bringout-oca-ocb-lunch/lunch/i18n/he.po
Normal file
File diff suppressed because it is too large
Load diff
2302
odoo-bringout-oca-ocb-lunch/lunch/i18n/hi.po
Normal file
2302
odoo-bringout-oca-ocb-lunch/lunch/i18n/hi.po
Normal file
File diff suppressed because it is too large
Load diff
2315
odoo-bringout-oca-ocb-lunch/lunch/i18n/hr.po
Normal file
2315
odoo-bringout-oca-ocb-lunch/lunch/i18n/hr.po
Normal file
File diff suppressed because it is too large
Load diff
2324
odoo-bringout-oca-ocb-lunch/lunch/i18n/hu.po
Normal file
2324
odoo-bringout-oca-ocb-lunch/lunch/i18n/hu.po
Normal file
File diff suppressed because it is too large
Load diff
2265
odoo-bringout-oca-ocb-lunch/lunch/i18n/hy.po
Normal file
2265
odoo-bringout-oca-ocb-lunch/lunch/i18n/hy.po
Normal file
File diff suppressed because it is too large
Load diff
2338
odoo-bringout-oca-ocb-lunch/lunch/i18n/id.po
Normal file
2338
odoo-bringout-oca-ocb-lunch/lunch/i18n/id.po
Normal file
File diff suppressed because it is too large
Load diff
2294
odoo-bringout-oca-ocb-lunch/lunch/i18n/is.po
Normal file
2294
odoo-bringout-oca-ocb-lunch/lunch/i18n/is.po
Normal file
File diff suppressed because it is too large
Load diff
2472
odoo-bringout-oca-ocb-lunch/lunch/i18n/it.po
Normal file
2472
odoo-bringout-oca-ocb-lunch/lunch/i18n/it.po
Normal file
File diff suppressed because it is too large
Load diff
2323
odoo-bringout-oca-ocb-lunch/lunch/i18n/ja.po
Normal file
2323
odoo-bringout-oca-ocb-lunch/lunch/i18n/ja.po
Normal file
File diff suppressed because it is too large
Load diff
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/ka.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/ka.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "შეწყვეტა"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "გაუქმებულია"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "კომპანია"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "შემქმნელი"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "შექმნის თარიღი"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "ვალუტა"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "აღწერილობა"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "დაჯგუფება"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "იდენტიფიკატორი"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ბოლოს განაახლა"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "შეკვეთა"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "ფასი"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "პროდუქტი"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "პროდუქტები"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "სტატუსი"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/kab.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/kab.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: kab\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Sefsex"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Ifsax"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Takebbwanit"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Yerna-t"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Yerna di"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Tanfalit"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Aglam"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Sdukel s"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr "Tiludna-yiw"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Taladna"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr "Aggur n tladna"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Ssuma "
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Afaris"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Taggayt n ifarisen"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Ifarisen"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Addad"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Asemday"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "ssuma n yiwen"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
2312
odoo-bringout-oca-ocb-lunch/lunch/i18n/km.po
Normal file
2312
odoo-bringout-oca-ocb-lunch/lunch/i18n/km.po
Normal file
File diff suppressed because it is too large
Load diff
2446
odoo-bringout-oca-ocb-lunch/lunch/i18n/ko.po
Normal file
2446
odoo-bringout-oca-ocb-lunch/lunch/i18n/ko.po
Normal file
File diff suppressed because it is too large
Load diff
1827
odoo-bringout-oca-ocb-lunch/lunch/i18n/lb.po
Normal file
1827
odoo-bringout-oca-ocb-lunch/lunch/i18n/lb.po
Normal file
File diff suppressed because it is too large
Load diff
2294
odoo-bringout-oca-ocb-lunch/lunch/i18n/lo.po
Normal file
2294
odoo-bringout-oca-ocb-lunch/lunch/i18n/lo.po
Normal file
File diff suppressed because it is too large
Load diff
2322
odoo-bringout-oca-ocb-lunch/lunch/i18n/lt.po
Normal file
2322
odoo-bringout-oca-ocb-lunch/lunch/i18n/lt.po
Normal file
File diff suppressed because it is too large
Load diff
2287
odoo-bringout-oca-ocb-lunch/lunch/i18n/lunch.pot
Normal file
2287
odoo-bringout-oca-ocb-lunch/lunch/i18n/lunch.pot
Normal file
File diff suppressed because it is too large
Load diff
2306
odoo-bringout-oca-ocb-lunch/lunch/i18n/lv.po
Normal file
2306
odoo-bringout-oca-ocb-lunch/lunch/i18n/lv.po
Normal file
File diff suppressed because it is too large
Load diff
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/mk.po
Normal file
941
odoo-bringout-oca-ocb-lunch/lunch/i18n/mk.po
Normal file
|
|
@ -0,0 +1,941 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Вкупно</strong>"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Откажано"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Компанија"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Валута"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Групирај по"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr "Мои нарачки"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Нарачка"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr "Месец на нарачка"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Цена"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Производ"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Категорија на производ"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Производи"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Вкупно"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Единечна цена"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
2294
odoo-bringout-oca-ocb-lunch/lunch/i18n/ml.po
Normal file
2294
odoo-bringout-oca-ocb-lunch/lunch/i18n/ml.po
Normal file
File diff suppressed because it is too large
Load diff
2324
odoo-bringout-oca-ocb-lunch/lunch/i18n/mn.po
Normal file
2324
odoo-bringout-oca-ocb-lunch/lunch/i18n/mn.po
Normal file
File diff suppressed because it is too large
Load diff
2297
odoo-bringout-oca-ocb-lunch/lunch/i18n/ms.po
Normal file
2297
odoo-bringout-oca-ocb-lunch/lunch/i18n/ms.po
Normal file
File diff suppressed because it is too large
Load diff
2307
odoo-bringout-oca-ocb-lunch/lunch/i18n/nb.po
Normal file
2307
odoo-bringout-oca-ocb-lunch/lunch/i18n/nb.po
Normal file
File diff suppressed because it is too large
Load diff
938
odoo-bringout-oca-ocb-lunch/lunch/i18n/ne.po
Normal file
938
odoo-bringout-oca-ocb-lunch/lunch/i18n/ne.po
Normal file
|
|
@ -0,0 +1,938 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
2474
odoo-bringout-oca-ocb-lunch/lunch/i18n/nl.po
Normal file
2474
odoo-bringout-oca-ocb-lunch/lunch/i18n/nl.po
Normal file
File diff suppressed because it is too large
Load diff
2290
odoo-bringout-oca-ocb-lunch/lunch/i18n/no.po
Normal file
2290
odoo-bringout-oca-ocb-lunch/lunch/i18n/no.po
Normal file
File diff suppressed because it is too large
Load diff
2498
odoo-bringout-oca-ocb-lunch/lunch/i18n/pl.po
Normal file
2498
odoo-bringout-oca-ocb-lunch/lunch/i18n/pl.po
Normal file
File diff suppressed because it is too large
Load diff
2314
odoo-bringout-oca-ocb-lunch/lunch/i18n/pt.po
Normal file
2314
odoo-bringout-oca-ocb-lunch/lunch/i18n/pt.po
Normal file
File diff suppressed because it is too large
Load diff
2345
odoo-bringout-oca-ocb-lunch/lunch/i18n/pt_BR.po
Normal file
2345
odoo-bringout-oca-ocb-lunch/lunch/i18n/pt_BR.po
Normal file
File diff suppressed because it is too large
Load diff
2351
odoo-bringout-oca-ocb-lunch/lunch/i18n/ro.po
Normal file
2351
odoo-bringout-oca-ocb-lunch/lunch/i18n/ro.po
Normal file
File diff suppressed because it is too large
Load diff
2351
odoo-bringout-oca-ocb-lunch/lunch/i18n/ru.po
Normal file
2351
odoo-bringout-oca-ocb-lunch/lunch/i18n/ru.po
Normal file
File diff suppressed because it is too large
Load diff
2320
odoo-bringout-oca-ocb-lunch/lunch/i18n/sk.po
Normal file
2320
odoo-bringout-oca-ocb-lunch/lunch/i18n/sk.po
Normal file
File diff suppressed because it is too large
Load diff
2351
odoo-bringout-oca-ocb-lunch/lunch/i18n/sl.po
Normal file
2351
odoo-bringout-oca-ocb-lunch/lunch/i18n/sl.po
Normal file
File diff suppressed because it is too large
Load diff
2274
odoo-bringout-oca-ocb-lunch/lunch/i18n/sq.po
Normal file
2274
odoo-bringout-oca-ocb-lunch/lunch/i18n/sq.po
Normal file
File diff suppressed because it is too large
Load diff
2337
odoo-bringout-oca-ocb-lunch/lunch/i18n/sr.po
Normal file
2337
odoo-bringout-oca-ocb-lunch/lunch/i18n/sr.po
Normal file
File diff suppressed because it is too large
Load diff
945
odoo-bringout-oca-ocb-lunch/lunch/i18n/sr@latin.po
Normal file
945
odoo-bringout-oca-ocb-lunch/lunch/i18n/sr@latin.po
Normal file
|
|
@ -0,0 +1,945 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * lunch
|
||||
#
|
||||
# Translators:
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Đorđe Cvijanović <cdorde@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Đorđe Cvijanović <cdorde@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> red X to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid ""
|
||||
"- Click on the <span class=\"fa fa-phone text-success\"></span> to announce that the order is ordered <br>\n"
|
||||
" - Click on the <span class=\"fa fa-check text-success\"></span> to announce that the order is received <br>\n"
|
||||
" - Click on the <span class=\"fa fa-times-circle text-danger\"></span> to announce that the order isn't available"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "<span class=\"o_stat_text\">Balance</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "<strong>Total</strong>"
|
||||
msgstr "<strong>Ukupno</strong>"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid ""
|
||||
"A cashmove can either be an expense or a payment.<br>\n"
|
||||
" An expense is automatically created at the order receipt.<br>\n"
|
||||
" A payment represents the employee reimbursement to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "A product is defined by its name, category, price and vendor."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_active
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:15
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:294
|
||||
#, python-format
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_alert_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_alerts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_alert_menu
|
||||
msgid "Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Alerts are used to warn employee from possible issues concerning the lunch orders.\n"
|
||||
" To create a lunch alert you have to define its recurrence, the time interval during which the alert should be executed and the message to display."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_amount
|
||||
msgid "Amount"
|
||||
msgstr "Iznos"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_end_hour
|
||||
msgid "And"
|
||||
msgstr "I"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arhivirani"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_balance_visible
|
||||
msgid "Balance Visible"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_start_hour
|
||||
msgid "Between"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_alert_kanban
|
||||
msgid "Between:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "By Employee"
|
||||
msgstr "Po radniku"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "By User"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "By Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_description
|
||||
msgid "Can be an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_cashmove_amount
|
||||
msgid ""
|
||||
"Can be positive (payment) or negative (order or payment if user wants to get"
|
||||
" his money back)"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr "Poništeno"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_cashmove
|
||||
msgid "Cash Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_cash_move_balance
|
||||
msgid "Cash Move Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Category"
|
||||
msgstr "Категорија"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid "Click to create a lunch alert."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Click to create a lunch category."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_control_accounts
|
||||
msgid "Click to create a new payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid "Click to create a payment."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_action
|
||||
msgid "Click to create a product for lunch."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_company_id
|
||||
msgid "Company"
|
||||
msgstr "Preduzeće"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_config
|
||||
msgid "Configuration"
|
||||
msgstr "Postavka"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_control_accounts
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_control_accounts
|
||||
msgid "Control Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Control Vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_create_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Datum kreiranja"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_currency_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_currency_id
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_date
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_specific_day
|
||||
msgid "Day"
|
||||
msgstr "Dan"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_description
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_description
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display
|
||||
msgid "Display"
|
||||
msgstr "Prikaz"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_display_name
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:7
|
||||
#, python-format
|
||||
msgid "Don't forget the alerts displayed in the reddish area"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_payment
|
||||
msgid "Employee Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "Enable this option to set a maximal budget for your lucky order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Every Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_alert_action
|
||||
msgid ""
|
||||
"Example: <br>\n"
|
||||
" - Recurency: Everyday<br>\n"
|
||||
" - Time interval: from 00h00 am to 11h59 pm<br>\n"
|
||||
" - Message: \"You must order before 10h30 am\""
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Feeling Lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_friday
|
||||
msgid "Friday"
|
||||
msgstr "Petak"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Grupiši po"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,description:lunch.module_lunch_category
|
||||
msgid ""
|
||||
"Helps you handle your lunch needs, if you are a manager you will be able to "
|
||||
"create new products, cashmoves and to confirm or cancel orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_product_category_action
|
||||
msgid "Here you can access all categories for the lunch products."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_payment
|
||||
msgid ""
|
||||
"Here you can see the employees' payment. A payment is a cash move from the "
|
||||
"employee to the company."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_by_supplier
|
||||
msgid "Here you can see today's orders grouped by vendors."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_cashmove_action_account
|
||||
msgid ""
|
||||
"Here you can see your cash moves.<br>A cash moves can be either an expense or a payment.\n"
|
||||
" An expense is automatically created when an order is received while a payment is a reimbursement to the company encoded by the manager."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.action_lunch_order_line_lucky
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "I'm feeling lucky today !"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_is_max_budget
|
||||
msgid "I'm not feeling rich"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_id_1786
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_state
|
||||
msgid "Is an order or a payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product___last_update
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promena"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_uid
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promenio"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_category_write_date
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vreme promene"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "List"
|
||||
msgstr "Spisak"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.module.category,name:lunch.module_lunch_category
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch
|
||||
msgid "Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_alert
|
||||
msgid "Lunch Alert"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:265
|
||||
#, python-format
|
||||
msgid "Lunch Cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:66
|
||||
#: model:ir.actions.report,name:lunch.action_report_lunch_order
|
||||
#: model:ir.model,name:lunch.model_lunch_order
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#, python-format
|
||||
msgid "Lunch Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.action_server_lunch_archive_product
|
||||
msgid "Lunch: Archive/Restore products"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_cancel
|
||||
msgid "Lunch: Cancel meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_order
|
||||
msgid "Lunch: Order meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.server,name:lunch.lunch_order_line_action_confirm
|
||||
msgid "Lunch: Receive meals"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_admin
|
||||
#: model:res.groups,name:lunch.group_lunch_manager
|
||||
msgid "Manager"
|
||||
msgstr "Nadzor"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_max_budget
|
||||
msgid "Max Budget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_message
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Message"
|
||||
msgstr "Poruka"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_monday
|
||||
msgid "Monday"
|
||||
msgstr "Ponedeljak"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "My Account grouped"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.menu_lunch_title
|
||||
msgid "My Lunch"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "My Orders"
|
||||
msgstr "Moji prodajni nalozi"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Name/Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "New"
|
||||
msgstr "Novi"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_action_form
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_form
|
||||
msgid "New Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/wizard/lucky_order.py:39
|
||||
#, python-format
|
||||
msgid "No product is matching your request. Now you will starve to death."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Not Received"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_note
|
||||
msgid "Note"
|
||||
msgstr "Zabilješka"
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:225
|
||||
#, python-format
|
||||
msgid "Only your lunch manager cancels the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:194
|
||||
#, python-format
|
||||
msgid "Only your lunch manager processes the orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:214
|
||||
#, python-format
|
||||
msgid "Only your lunch manager sets the orders as received."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_order_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_order_id
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Order"
|
||||
msgstr "Nalog"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Order Month"
|
||||
msgstr "Mjesec naloga"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Order lines Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.order.line,state:0
|
||||
msgid "Ordered"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Orders Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Orders Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action_by_supplier
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_control_suppliers
|
||||
msgid "Orders by Vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
#: selection:lunch.cashmove,state:0
|
||||
msgid "Payment"
|
||||
msgstr "Plaćanje"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_ids
|
||||
msgid "Previous Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_previous_order_widget
|
||||
msgid "Previous Order Widget"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_menu_tree
|
||||
msgid "Previous Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_price
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_price
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Price"
|
||||
msgstr "Cijena"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_product_kanban
|
||||
msgid "Price:"
|
||||
msgstr "Cijena:"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_product_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_name
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_category_action
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_category_menu
|
||||
msgid "Product Categories"
|
||||
msgstr "Kategorije proizvoda"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_category_id
|
||||
msgid "Product Category"
|
||||
msgstr "Grupa proizvoda"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
msgid "Product Category:"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_name
|
||||
msgid "Product Name"
|
||||
msgstr "Naziv proizvoda"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Product Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_product_action
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_order_line_ids
|
||||
#: model:ir.ui.menu,name:lunch.lunch_product_menu
|
||||
msgid "Products"
|
||||
msgstr "Proizvodi"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_category_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_form
|
||||
msgid "Products Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_tree
|
||||
msgid "Products Tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
msgid "Receive"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
#: selection:lunch.order,state:0 selection:lunch.order.line,state:0
|
||||
msgid "Received"
|
||||
msgstr "Primljeno"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_alert_type
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_payment
|
||||
msgid "Register Cash Moves"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_saturday
|
||||
msgid "Saturday"
|
||||
msgstr "Subota"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Schedule Hour"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Search"
|
||||
msgstr "Pronađi"
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:5
|
||||
#, python-format
|
||||
msgid "Select a product and put your order comments on the note."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form
|
||||
msgid "Select your order"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.view_lunch_order_line_lucky
|
||||
msgid "Select your vendor"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: selection:lunch.alert,alert_type:0
|
||||
msgid "Specific Day"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_state
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_state
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action_control_suppliers
|
||||
msgid "Summary of all lunch orders, grouped by vendor and by date."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_sunday
|
||||
msgid "Sunday"
|
||||
msgstr "Nedelja"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,help:lunch.field_lunch_order_company_id
|
||||
msgid "The company this user is currently working for."
|
||||
msgstr "Preduzeće ovog korisnika"
|
||||
|
||||
#. module: lunch
|
||||
#: code:addons/lunch/models/lunch.py:129
|
||||
#, python-format
|
||||
msgid "The date of your order is in the past."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.actions.act_window,help:lunch.lunch_order_line_action
|
||||
msgid ""
|
||||
"There is no previous order recorded. Click on \"My Lunch\" and then create a"
|
||||
" new lunch order."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:4
|
||||
#, python-format
|
||||
msgid "This is the first time you order a meal"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_thursday
|
||||
msgid "Thursday"
|
||||
msgstr "Četvrtak"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Today"
|
||||
msgstr "Danas"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_order_line_menu_by_supplier
|
||||
msgid "Today's Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_total
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree
|
||||
msgid "Total"
|
||||
msgstr "Ukupno"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_tuesday
|
||||
msgid "Tuesday"
|
||||
msgstr "Utorak"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.report_lunch_order
|
||||
msgid "Unit Price"
|
||||
msgstr "Jed. cena"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_cashmove_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_user_id
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_user_id
|
||||
#: model:res.groups,name:lunch.group_lunch_user
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_lucky_supplier_ids
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_order_line_supplier
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_product_supplier
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search
|
||||
msgid "Vendor"
|
||||
msgstr "Dobavljač"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_order_line_view_search
|
||||
msgid "Vendor Orders by Month"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model.fields,field_description:lunch.field_lunch_alert_wednesday
|
||||
msgid "Wednesday"
|
||||
msgstr "Sreda"
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_alert_view_form
|
||||
msgid "Write the message you want to display during the defined period..."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_cashmove_action_account
|
||||
msgid "Your Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.ui.menu,name:lunch.lunch_cashmove_menu_form
|
||||
msgid "Your Lunch Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.actions.act_window,name:lunch.lunch_order_line_action
|
||||
msgid "Your Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#. openerp-web
|
||||
#: code:addons/lunch/static/src/xml/lunch.xml:6
|
||||
#, python-format
|
||||
msgid "Your favorite meals will be created based on your last orders."
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_form
|
||||
msgid "cashmove form"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree_2
|
||||
msgid "cashmove tree"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_cashmove
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search_2
|
||||
msgid "lunch cashmove"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_search
|
||||
msgid "lunch employee payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line
|
||||
msgid "lunch order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product
|
||||
msgid "lunch product"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_product_category
|
||||
msgid "lunch product category"
|
||||
msgstr ""
|
||||
|
||||
#. module: lunch
|
||||
#: model:ir.model,name:lunch.model_lunch_order_line_lucky
|
||||
msgid "lunch.order.line.lucky"
|
||||
msgstr ""
|
||||
2351
odoo-bringout-oca-ocb-lunch/lunch/i18n/sv.po
Normal file
2351
odoo-bringout-oca-ocb-lunch/lunch/i18n/sv.po
Normal file
File diff suppressed because it is too large
Load diff
2265
odoo-bringout-oca-ocb-lunch/lunch/i18n/sw.po
Normal file
2265
odoo-bringout-oca-ocb-lunch/lunch/i18n/sw.po
Normal file
File diff suppressed because it is too large
Load diff
2265
odoo-bringout-oca-ocb-lunch/lunch/i18n/ta.po
Normal file
2265
odoo-bringout-oca-ocb-lunch/lunch/i18n/ta.po
Normal file
File diff suppressed because it is too large
Load diff
2342
odoo-bringout-oca-ocb-lunch/lunch/i18n/th.po
Normal file
2342
odoo-bringout-oca-ocb-lunch/lunch/i18n/th.po
Normal file
File diff suppressed because it is too large
Load diff
2364
odoo-bringout-oca-ocb-lunch/lunch/i18n/tr.po
Normal file
2364
odoo-bringout-oca-ocb-lunch/lunch/i18n/tr.po
Normal file
File diff suppressed because it is too large
Load diff
2473
odoo-bringout-oca-ocb-lunch/lunch/i18n/uk.po
Normal file
2473
odoo-bringout-oca-ocb-lunch/lunch/i18n/uk.po
Normal file
File diff suppressed because it is too large
Load diff
2338
odoo-bringout-oca-ocb-lunch/lunch/i18n/vi.po
Normal file
2338
odoo-bringout-oca-ocb-lunch/lunch/i18n/vi.po
Normal file
File diff suppressed because it is too large
Load diff
2457
odoo-bringout-oca-ocb-lunch/lunch/i18n/zh_CN.po
Normal file
2457
odoo-bringout-oca-ocb-lunch/lunch/i18n/zh_CN.po
Normal file
File diff suppressed because it is too large
Load diff
2448
odoo-bringout-oca-ocb-lunch/lunch/i18n/zh_TW.po
Normal file
2448
odoo-bringout-oca-ocb-lunch/lunch/i18n/zh_TW.po
Normal file
File diff suppressed because it is too large
Load diff
14
odoo-bringout-oca-ocb-lunch/lunch/models/__init__.py
Normal file
14
odoo-bringout-oca-ocb-lunch/lunch/models/__init__.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import lunch_alert
|
||||
from . import lunch_cashmove
|
||||
from . import lunch_location
|
||||
from . import lunch_order
|
||||
from . import lunch_product
|
||||
from . import lunch_product_category
|
||||
from . import lunch_topping
|
||||
from . import lunch_supplier
|
||||
from . import res_company
|
||||
from . import res_config_settings
|
||||
from . import res_users
|
||||
198
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_alert.py
Normal file
198
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_alert.py
Normal file
|
|
@ -0,0 +1,198 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
import pytz
|
||||
import logging
|
||||
|
||||
from odoo import api, fields, models
|
||||
from odoo.osv import expression
|
||||
|
||||
from .lunch_supplier import float_to_time
|
||||
from datetime import datetime, timedelta
|
||||
from textwrap import dedent
|
||||
|
||||
from odoo.addons.base.models.res_partner import _tz_get
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
WEEKDAY_TO_NAME = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']
|
||||
CRON_DEPENDS = {'name', 'active', 'mode', 'until', 'notification_time', 'notification_moment', 'tz'}
|
||||
|
||||
|
||||
class LunchAlert(models.Model):
|
||||
""" Alerts to display during a lunch order. An alert can be specific to a
|
||||
given day, weekly or daily. The alert is displayed from start to end hour. """
|
||||
_name = 'lunch.alert'
|
||||
_description = 'Lunch Alert'
|
||||
_order = 'write_date desc, id'
|
||||
|
||||
name = fields.Char('Alert Name', required=True, translate=True)
|
||||
message = fields.Html('Message', required=True, translate=True)
|
||||
|
||||
mode = fields.Selection([
|
||||
('alert', 'Alert in app'),
|
||||
('chat', 'Chat notification')], string='Display', default='alert')
|
||||
recipients = fields.Selection([
|
||||
('everyone', 'Everyone'),
|
||||
('last_week', 'Employee who ordered last week'),
|
||||
('last_month', 'Employee who ordered last month'),
|
||||
('last_year', 'Employee who ordered last year')], string='Recipients', default='everyone')
|
||||
notification_time = fields.Float(default=10.0, string='Notification Time')
|
||||
notification_moment = fields.Selection([
|
||||
('am', 'AM'),
|
||||
('pm', 'PM')], default='am', required=True)
|
||||
tz = fields.Selection(_tz_get, string='Timezone', required=True, default=lambda self: self.env.user.tz or 'UTC')
|
||||
cron_id = fields.Many2one('ir.cron', ondelete='cascade', required=True, readonly=True)
|
||||
|
||||
until = fields.Date('Show Until')
|
||||
mon = fields.Boolean(default=True)
|
||||
tue = fields.Boolean(default=True)
|
||||
wed = fields.Boolean(default=True)
|
||||
thu = fields.Boolean(default=True)
|
||||
fri = fields.Boolean(default=True)
|
||||
sat = fields.Boolean(default=True)
|
||||
sun = fields.Boolean(default=True)
|
||||
|
||||
available_today = fields.Boolean('Is Displayed Today',
|
||||
compute='_compute_available_today', search='_search_available_today')
|
||||
|
||||
active = fields.Boolean('Active', default=True)
|
||||
|
||||
location_ids = fields.Many2many('lunch.location', string='Location')
|
||||
|
||||
_sql_constraints = [
|
||||
('notification_time_range',
|
||||
'CHECK(notification_time >= 0 and notification_time <= 12)',
|
||||
'Notification time must be between 0 and 12')
|
||||
]
|
||||
|
||||
@api.depends('mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun')
|
||||
def _compute_available_today(self):
|
||||
today = fields.Date.context_today(self)
|
||||
fieldname = WEEKDAY_TO_NAME[today.weekday()]
|
||||
|
||||
for alert in self:
|
||||
alert.available_today = alert.until > today if alert.until else True and alert[fieldname]
|
||||
|
||||
def _search_available_today(self, operator, value):
|
||||
if (not operator in ['=', '!=']) or (not value in [True, False]):
|
||||
return []
|
||||
|
||||
searching_for_true = (operator == '=' and value) or (operator == '!=' and not value)
|
||||
today = fields.Date.context_today(self)
|
||||
fieldname = WEEKDAY_TO_NAME[today.weekday()]
|
||||
|
||||
return expression.AND([
|
||||
[(fieldname, operator, value)],
|
||||
expression.OR([
|
||||
[('until', '=', False)],
|
||||
[('until', '>' if searching_for_true else '<', today)],
|
||||
])
|
||||
])
|
||||
|
||||
def _sync_cron(self):
|
||||
""" Synchronise the related cron fields to reflect this alert """
|
||||
for alert in self:
|
||||
alert = alert.with_context(tz=alert.tz)
|
||||
|
||||
cron_required = (
|
||||
alert.active
|
||||
and alert.mode == 'chat'
|
||||
and (not alert.until or fields.Date.context_today(alert) <= alert.until)
|
||||
)
|
||||
|
||||
sendat_tz = pytz.timezone(alert.tz).localize(datetime.combine(
|
||||
fields.Date.context_today(alert, fields.Datetime.now()),
|
||||
float_to_time(alert.notification_time, alert.notification_moment)))
|
||||
cron = alert.cron_id.sudo()
|
||||
lc = cron.lastcall
|
||||
if ((
|
||||
lc and sendat_tz.date() <= fields.Datetime.context_timestamp(alert, lc).date()
|
||||
) or (
|
||||
not lc and sendat_tz <= fields.Datetime.context_timestamp(alert, fields.Datetime.now())
|
||||
)):
|
||||
sendat_tz += timedelta(days=1)
|
||||
sendat_utc = sendat_tz.astimezone(pytz.UTC).replace(tzinfo=None)
|
||||
|
||||
cron.name = f"Lunch: alert chat notification ({alert.name})"
|
||||
cron.active = cron_required
|
||||
cron.nextcall = sendat_utc
|
||||
cron.code = dedent(f"""\
|
||||
# This cron is dynamically controlled by {self._description}.
|
||||
# Do NOT modify this cron, modify the related record instead.
|
||||
env['{self._name}'].browse([{alert.id}])._notify_chat()""")
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
crons = self.env['ir.cron'].sudo().create([
|
||||
{
|
||||
'user_id': self.env.ref('base.user_root').id,
|
||||
'active': False,
|
||||
'interval_type': 'days',
|
||||
'interval_number': 1,
|
||||
'numbercall': -1,
|
||||
'doall': False,
|
||||
'name': "Lunch: alert chat notification",
|
||||
'model_id': self.env['ir.model']._get_id(self._name),
|
||||
'state': 'code',
|
||||
'code': "",
|
||||
}
|
||||
for _ in range(len(vals_list))
|
||||
])
|
||||
self.env['ir.model.data'].sudo().create([{
|
||||
'name': f'lunch_alert_cron_sa_{cron.ir_actions_server_id.id}',
|
||||
'module': 'lunch',
|
||||
'res_id': cron.ir_actions_server_id.id,
|
||||
'model': 'ir.actions.server',
|
||||
# noupdate is set to true to avoid to delete record at module update
|
||||
'noupdate': True,
|
||||
} for cron in crons])
|
||||
for vals, cron in zip(vals_list, crons):
|
||||
vals['cron_id'] = cron.id
|
||||
|
||||
alerts = super().create(vals_list)
|
||||
alerts._sync_cron()
|
||||
return alerts
|
||||
|
||||
def write(self, values):
|
||||
super().write(values)
|
||||
if not CRON_DEPENDS.isdisjoint(values):
|
||||
self._sync_cron()
|
||||
|
||||
def unlink(self):
|
||||
crons = self.cron_id.sudo()
|
||||
server_actions = crons.ir_actions_server_id
|
||||
super().unlink()
|
||||
crons.unlink()
|
||||
server_actions.unlink()
|
||||
|
||||
def _notify_chat(self):
|
||||
# Called daily by cron
|
||||
self.ensure_one()
|
||||
|
||||
if not self.available_today:
|
||||
_logger.warning("cancelled, not available today")
|
||||
if self.cron_id and self.until and fields.Date.context_today(self) > self.until:
|
||||
self.cron_id.unlink()
|
||||
self.cron_id = False
|
||||
return
|
||||
|
||||
if not self.active or self.mode != 'chat':
|
||||
raise ValueError("Cannot send a chat notification in the current state")
|
||||
|
||||
order_domain = [('state', '!=', 'cancelled')]
|
||||
|
||||
if self.location_ids.ids:
|
||||
order_domain = expression.AND([order_domain, [('user_id.last_lunch_location_id', 'in', self.location_ids.ids)]])
|
||||
|
||||
if self.recipients != 'everyone':
|
||||
weeksago = fields.Date.today() - timedelta(weeks=(
|
||||
1 if self.recipients == 'last_week' else
|
||||
4 if self.recipients == 'last_month' else
|
||||
52 # if self.recipients == 'last_year'
|
||||
))
|
||||
order_domain = expression.AND([order_domain, [('date', '>=', weeksago)]])
|
||||
|
||||
partners = self.env['lunch.order'].search(order_domain).user_id.partner_id
|
||||
if partners:
|
||||
self.env['mail.thread'].message_notify(
|
||||
body=self.message,
|
||||
partner_ids=partners.ids
|
||||
)
|
||||
30
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_cashmove.py
Normal file
30
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_cashmove.py
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.tools import float_round
|
||||
|
||||
|
||||
class LunchCashMove(models.Model):
|
||||
""" Two types of cashmoves: payment (credit) or order (debit) """
|
||||
_name = 'lunch.cashmove'
|
||||
_description = 'Lunch Cashmove'
|
||||
_order = 'date desc'
|
||||
|
||||
currency_id = fields.Many2one('res.currency', default=lambda self: self.env.company.currency_id, required=True)
|
||||
user_id = fields.Many2one('res.users', 'User',
|
||||
default=lambda self: self.env.uid)
|
||||
date = fields.Date('Date', required=True, default=fields.Date.context_today)
|
||||
amount = fields.Float('Amount', required=True)
|
||||
description = fields.Text('Description')
|
||||
|
||||
def name_get(self):
|
||||
return [(cashmove.id, '%s %s' % (_('Lunch Cashmove'), '#%d' % cashmove.id)) for cashmove in self]
|
||||
|
||||
@api.model
|
||||
def get_wallet_balance(self, user, include_config=True):
|
||||
result = float_round(sum(move['amount'] for move in self.env['lunch.cashmove.report'].search_read(
|
||||
[('user_id', '=', user.id)], ['amount'])), precision_digits=2)
|
||||
if include_config:
|
||||
result += user.company_id.lunch_minimum_threshold
|
||||
return result
|
||||
13
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_location.py
Normal file
13
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_location.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class LunchLocation(models.Model):
|
||||
_name = 'lunch.location'
|
||||
_description = 'Lunch Locations'
|
||||
|
||||
name = fields.Char('Location Name', required=True)
|
||||
address = fields.Text('Address')
|
||||
company_id = fields.Many2one('res.company', default=lambda self: self.env.company)
|
||||
275
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_order.py
Normal file
275
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_order.py
Normal file
|
|
@ -0,0 +1,275 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import ValidationError, UserError
|
||||
|
||||
|
||||
class LunchOrder(models.Model):
|
||||
_name = 'lunch.order'
|
||||
_description = 'Lunch Order'
|
||||
_order = 'id desc'
|
||||
_display_name = 'product_id'
|
||||
|
||||
name = fields.Char(related='product_id.name', string="Product Name", store=True, readonly=True)
|
||||
topping_ids_1 = fields.Many2many('lunch.topping', 'lunch_order_topping', 'order_id', 'topping_id', string='Extras 1', domain=[('topping_category', '=', 1)])
|
||||
topping_ids_2 = fields.Many2many('lunch.topping', 'lunch_order_topping', 'order_id', 'topping_id', string='Extras 2', domain=[('topping_category', '=', 2)])
|
||||
topping_ids_3 = fields.Many2many('lunch.topping', 'lunch_order_topping', 'order_id', 'topping_id', string='Extras 3', domain=[('topping_category', '=', 3)])
|
||||
product_id = fields.Many2one('lunch.product', string="Product", required=True)
|
||||
category_id = fields.Many2one(
|
||||
string='Product Category', related='product_id.category_id', store=True)
|
||||
date = fields.Date('Order Date', required=True, readonly=True,
|
||||
states={'new': [('readonly', False)]},
|
||||
default=fields.Date.context_today)
|
||||
supplier_id = fields.Many2one(
|
||||
string='Vendor', related='product_id.supplier_id', store=True, index=True)
|
||||
available_today = fields.Boolean(related='supplier_id.available_today')
|
||||
order_deadline_passed = fields.Boolean(related='supplier_id.order_deadline_passed')
|
||||
user_id = fields.Many2one('res.users', 'User', readonly=True,
|
||||
states={'new': [('readonly', False)]},
|
||||
default=lambda self: self.env.uid)
|
||||
lunch_location_id = fields.Many2one('lunch.location', default=lambda self: self.env.user.last_lunch_location_id)
|
||||
note = fields.Text('Notes')
|
||||
price = fields.Monetary('Total Price', compute='_compute_total_price', readonly=True, store=True)
|
||||
active = fields.Boolean('Active', default=True)
|
||||
state = fields.Selection([('new', 'To Order'),
|
||||
('ordered', 'Ordered'), # "Internally" ordered
|
||||
('sent', 'Sent'), # Order sent to the supplier
|
||||
('confirmed', 'Received'), # Order received
|
||||
('cancelled', 'Cancelled')],
|
||||
'Status', readonly=True, index=True, default='new')
|
||||
notified = fields.Boolean(default=False)
|
||||
company_id = fields.Many2one('res.company', default=lambda self: self.env.company.id)
|
||||
currency_id = fields.Many2one(related='company_id.currency_id', store=True)
|
||||
quantity = fields.Float('Quantity', required=True, default=1)
|
||||
|
||||
display_toppings = fields.Text('Extras', compute='_compute_display_toppings', store=True)
|
||||
|
||||
product_description = fields.Html('Description', related='product_id.description')
|
||||
topping_label_1 = fields.Char(related='product_id.supplier_id.topping_label_1')
|
||||
topping_label_2 = fields.Char(related='product_id.supplier_id.topping_label_2')
|
||||
topping_label_3 = fields.Char(related='product_id.supplier_id.topping_label_3')
|
||||
topping_quantity_1 = fields.Selection(related='product_id.supplier_id.topping_quantity_1')
|
||||
topping_quantity_2 = fields.Selection(related='product_id.supplier_id.topping_quantity_2')
|
||||
topping_quantity_3 = fields.Selection(related='product_id.supplier_id.topping_quantity_3')
|
||||
image_1920 = fields.Image(compute='_compute_product_images')
|
||||
image_128 = fields.Image(compute='_compute_product_images')
|
||||
|
||||
available_toppings_1 = fields.Boolean(help='Are extras available for this product', compute='_compute_available_toppings')
|
||||
available_toppings_2 = fields.Boolean(help='Are extras available for this product', compute='_compute_available_toppings')
|
||||
available_toppings_3 = fields.Boolean(help='Are extras available for this product', compute='_compute_available_toppings')
|
||||
display_reorder_button = fields.Boolean(compute='_compute_display_reorder_button')
|
||||
|
||||
@api.depends('product_id')
|
||||
def _compute_product_images(self):
|
||||
for line in self:
|
||||
line.image_1920 = line.product_id.image_1920 or line.category_id.image_1920
|
||||
line.image_128 = line.product_id.image_128 or line.category_id.image_128
|
||||
|
||||
@api.depends('category_id')
|
||||
def _compute_available_toppings(self):
|
||||
for order in self:
|
||||
order.available_toppings_1 = bool(order.env['lunch.topping'].search_count([('supplier_id', '=', order.supplier_id.id), ('topping_category', '=', 1)]))
|
||||
order.available_toppings_2 = bool(order.env['lunch.topping'].search_count([('supplier_id', '=', order.supplier_id.id), ('topping_category', '=', 2)]))
|
||||
order.available_toppings_3 = bool(order.env['lunch.topping'].search_count([('supplier_id', '=', order.supplier_id.id), ('topping_category', '=', 3)]))
|
||||
|
||||
@api.depends_context('show_reorder_button')
|
||||
@api.depends('state')
|
||||
def _compute_display_reorder_button(self):
|
||||
show_button = self.env.context.get('show_reorder_button')
|
||||
for order in self:
|
||||
order.display_reorder_button = show_button and order.state == 'confirmed' and order.supplier_id.available_today
|
||||
|
||||
def init(self):
|
||||
self._cr.execute("""CREATE INDEX IF NOT EXISTS lunch_order_user_product_date ON %s (user_id, product_id, date)"""
|
||||
% self._table)
|
||||
|
||||
def _extract_toppings(self, values):
|
||||
"""
|
||||
If called in api.multi then it will pop topping_ids_1,2,3 from values
|
||||
"""
|
||||
if self.ids:
|
||||
# TODO This is not taking into account all the toppings for each individual order, this is usually not a problem
|
||||
# since in the interface you usually don't update more than one order at a time but this is a bug nonetheless
|
||||
topping_1 = values.pop('topping_ids_1')[0][2] if 'topping_ids_1' in values else self[:1].topping_ids_1.ids
|
||||
topping_2 = values.pop('topping_ids_2')[0][2] if 'topping_ids_2' in values else self[:1].topping_ids_2.ids
|
||||
topping_3 = values.pop('topping_ids_3')[0][2] if 'topping_ids_3' in values else self[:1].topping_ids_3.ids
|
||||
else:
|
||||
topping_1 = values['topping_ids_1'][0][2] if 'topping_ids_1' in values else []
|
||||
topping_2 = values['topping_ids_2'][0][2] if 'topping_ids_2' in values else []
|
||||
topping_3 = values['topping_ids_3'][0][2] if 'topping_ids_3' in values else []
|
||||
|
||||
return topping_1 + topping_2 + topping_3
|
||||
|
||||
@api.constrains('topping_ids_1', 'topping_ids_2', 'topping_ids_3')
|
||||
def _check_topping_quantity(self):
|
||||
errors = {
|
||||
'1_more': _('You should order at least one %s'),
|
||||
'1': _('You have to order one and only one %s'),
|
||||
}
|
||||
for line in self:
|
||||
for index in range(1, 4):
|
||||
availability = line['available_toppings_%s' % index]
|
||||
quantity = line['topping_quantity_%s' % index]
|
||||
toppings = line['topping_ids_%s' % index].filtered(lambda x: x.topping_category == index)
|
||||
label = line['topping_label_%s' % index]
|
||||
|
||||
if availability and quantity != '0_more':
|
||||
check = bool(len(toppings) == 1 if quantity == '1' else toppings)
|
||||
if not check:
|
||||
raise ValidationError(errors[quantity] % label)
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
orders = self.env['lunch.order']
|
||||
for vals in vals_list:
|
||||
lines = self._find_matching_lines({
|
||||
**vals,
|
||||
'toppings': self._extract_toppings(vals),
|
||||
})
|
||||
if lines.filtered(lambda l: l.state not in ['sent', 'confirmed']):
|
||||
# YTI FIXME This will update multiple lines in the case there are multiple
|
||||
# matching lines which should not happen through the interface
|
||||
lines.update_quantity(1)
|
||||
orders |= lines[:1]
|
||||
else:
|
||||
orders |= super().create(vals)
|
||||
return orders
|
||||
|
||||
def write(self, values):
|
||||
merge_needed = 'note' in values or 'topping_ids_1' in values or 'topping_ids_2' in values or 'topping_ids_3' in values
|
||||
default_location_id = self.env.user.last_lunch_location_id and self.env.user.last_lunch_location_id.id or False
|
||||
|
||||
if merge_needed:
|
||||
lines_to_deactivate = self.env['lunch.order']
|
||||
for line in self:
|
||||
# Only write on topping_ids_1 because they all share the same table
|
||||
# and we don't want to remove all the records
|
||||
# _extract_toppings will pop topping_ids_1, topping_ids_2 and topping_ids_3 from values
|
||||
# This also forces us to invalidate the cache for topping_ids_2 and topping_ids_3 that
|
||||
# could have changed through topping_ids_1 without the cache knowing about it
|
||||
toppings = self._extract_toppings(values)
|
||||
self.invalidate_model(['topping_ids_2', 'topping_ids_3'])
|
||||
values['topping_ids_1'] = [(6, 0, toppings)]
|
||||
matching_lines = self._find_matching_lines({
|
||||
'user_id': values.get('user_id', line.user_id.id),
|
||||
'product_id': values.get('product_id', line.product_id.id),
|
||||
'note': values.get('note', line.note or False),
|
||||
'toppings': toppings,
|
||||
'lunch_location_id': values.get('lunch_location_id', default_location_id),
|
||||
})
|
||||
if matching_lines:
|
||||
lines_to_deactivate |= line
|
||||
matching_lines.update_quantity(line.quantity)
|
||||
lines_to_deactivate.write({'active': False})
|
||||
return super(LunchOrder, self - lines_to_deactivate).write(values)
|
||||
return super().write(values)
|
||||
|
||||
@api.model
|
||||
def _find_matching_lines(self, values):
|
||||
default_location_id = self.env.user.last_lunch_location_id and self.env.user.last_lunch_location_id.id or False
|
||||
domain = [
|
||||
('user_id', '=', values.get('user_id', self.default_get(['user_id'])['user_id'])),
|
||||
('product_id', '=', values.get('product_id', False)),
|
||||
('date', '=', fields.Date.today()),
|
||||
('note', '=', values.get('note', False)),
|
||||
('lunch_location_id', '=', values.get('lunch_location_id', default_location_id)),
|
||||
]
|
||||
toppings = values.get('toppings', [])
|
||||
return self.search(domain).filtered(lambda line: (line.topping_ids_1 | line.topping_ids_2 | line.topping_ids_3).ids == toppings)
|
||||
|
||||
@api.depends('topping_ids_1', 'topping_ids_2', 'topping_ids_3', 'product_id', 'quantity')
|
||||
def _compute_total_price(self):
|
||||
for line in self:
|
||||
line.price = line.quantity * (line.product_id.price + sum((line.topping_ids_1 | line.topping_ids_2 | line.topping_ids_3).mapped('price')))
|
||||
|
||||
@api.depends('topping_ids_1', 'topping_ids_2', 'topping_ids_3')
|
||||
def _compute_display_toppings(self):
|
||||
for line in self:
|
||||
toppings = line.topping_ids_1 | line.topping_ids_2 | line.topping_ids_3
|
||||
line.display_toppings = ' + '.join(toppings.mapped('name'))
|
||||
|
||||
def update_quantity(self, increment):
|
||||
for line in self.filtered(lambda line: line.state not in ['sent', 'confirmed']):
|
||||
if line.quantity <= -increment:
|
||||
# TODO: maybe unlink the order?
|
||||
line.active = False
|
||||
else:
|
||||
line.quantity += increment
|
||||
self._check_wallet()
|
||||
|
||||
def add_to_cart(self):
|
||||
"""
|
||||
This method currently does nothing, we currently need it in order to
|
||||
be able to reuse this model in place of a wizard
|
||||
"""
|
||||
# YTI FIXME: Find a way to drop this.
|
||||
return True
|
||||
|
||||
def _check_wallet(self):
|
||||
self.env.flush_all()
|
||||
for line in self:
|
||||
if self.env['lunch.cashmove'].get_wallet_balance(line.user_id) < 0:
|
||||
raise ValidationError(_('Your wallet does not contain enough money to order that. To add some money to your wallet, please contact your lunch manager.'))
|
||||
|
||||
def action_order(self):
|
||||
for order in self:
|
||||
if not order.supplier_id.available_today:
|
||||
raise UserError(_('The vendor related to this order is not available today.'))
|
||||
if self.filtered(lambda line: not line.product_id.active):
|
||||
raise ValidationError(_('Product is no longer available.'))
|
||||
self.write({
|
||||
'state': 'ordered',
|
||||
})
|
||||
for order in self:
|
||||
order.lunch_location_id = order.user_id.last_lunch_location_id
|
||||
self._check_wallet()
|
||||
|
||||
def action_reorder(self):
|
||||
self.ensure_one()
|
||||
if not self.supplier_id.available_today:
|
||||
raise UserError(_('The vendor related to this order is not available today.'))
|
||||
self.copy({
|
||||
'date': fields.Date.context_today(self),
|
||||
'state': 'ordered',
|
||||
})
|
||||
action = self.env['ir.actions.act_window']._for_xml_id('lunch.lunch_order_action')
|
||||
return action
|
||||
|
||||
def action_confirm(self):
|
||||
self.write({'state': 'confirmed'})
|
||||
|
||||
def action_cancel(self):
|
||||
self.write({'state': 'cancelled'})
|
||||
|
||||
def action_reset(self):
|
||||
self.write({'state': 'ordered'})
|
||||
|
||||
def action_send(self):
|
||||
self.state = 'sent'
|
||||
|
||||
def action_notify(self):
|
||||
self -= self.filtered('notified')
|
||||
if not self:
|
||||
return
|
||||
notified_users = set()
|
||||
# (company, lang): (subject, body)
|
||||
translate_cache = dict()
|
||||
for order in self:
|
||||
user = order.user_id
|
||||
if user in notified_users:
|
||||
continue
|
||||
_key = (order.company_id, user.lang)
|
||||
if _key not in translate_cache:
|
||||
context = {'lang': user.lang}
|
||||
translate_cache[_key] = (_('Lunch notification'), order.company_id.with_context(lang=user.lang).lunch_notify_message)
|
||||
del context
|
||||
subject, body = translate_cache[_key]
|
||||
user.partner_id.message_notify(
|
||||
subject=subject,
|
||||
body=body,
|
||||
partner_ids=user.partner_id.ids,
|
||||
email_layout_xmlid='mail.mail_notification_light',
|
||||
)
|
||||
notified_users.add(user)
|
||||
self.write({'notified': True})
|
||||
129
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_product.py
Normal file
129
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_product.py
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import base64
|
||||
|
||||
from collections import defaultdict
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.osv import expression
|
||||
|
||||
|
||||
class LunchProduct(models.Model):
|
||||
""" Products available to order. A product is linked to a specific vendor. """
|
||||
_name = 'lunch.product'
|
||||
_description = 'Lunch Product'
|
||||
_inherit = 'image.mixin'
|
||||
_order = 'name'
|
||||
_check_company_auto = True
|
||||
|
||||
name = fields.Char('Product Name', required=True, translate=True)
|
||||
category_id = fields.Many2one('lunch.product.category', 'Product Category', check_company=True, required=True)
|
||||
description = fields.Html('Description', translate=True)
|
||||
price = fields.Float('Price', digits='Account', required=True)
|
||||
supplier_id = fields.Many2one('lunch.supplier', 'Vendor', check_company=True, required=True)
|
||||
active = fields.Boolean(default=True)
|
||||
|
||||
company_id = fields.Many2one('res.company', related='supplier_id.company_id', readonly=False, store=True)
|
||||
currency_id = fields.Many2one('res.currency', related='company_id.currency_id')
|
||||
|
||||
new_until = fields.Date('New Until')
|
||||
is_new = fields.Boolean(compute='_compute_is_new')
|
||||
|
||||
favorite_user_ids = fields.Many2many('res.users', 'lunch_product_favorite_user_rel', 'product_id', 'user_id', check_company=True)
|
||||
is_favorite = fields.Boolean(compute='_compute_is_favorite', inverse='_inverse_is_favorite')
|
||||
|
||||
last_order_date = fields.Date(compute='_compute_last_order_date')
|
||||
|
||||
product_image = fields.Image(compute='_compute_product_image')
|
||||
# This field is used only for searching
|
||||
is_available_at = fields.Many2one('lunch.location', 'Product Availability', compute='_compute_is_available_at', search='_search_is_available_at')
|
||||
|
||||
@api.depends('image_128', 'category_id.image_128')
|
||||
def _compute_product_image(self):
|
||||
for product in self:
|
||||
product.product_image = product.image_128 or product.category_id.image_128
|
||||
|
||||
@api.depends('new_until')
|
||||
def _compute_is_new(self):
|
||||
today = fields.Date.context_today(self)
|
||||
for product in self:
|
||||
if product.new_until:
|
||||
product.is_new = today <= product.new_until
|
||||
else:
|
||||
product.is_new = False
|
||||
|
||||
@api.depends_context('uid')
|
||||
@api.depends('favorite_user_ids')
|
||||
def _compute_is_favorite(self):
|
||||
for product in self:
|
||||
product.is_favorite = self.env.user in product.favorite_user_ids
|
||||
|
||||
@api.depends_context('uid')
|
||||
def _compute_last_order_date(self):
|
||||
all_orders = self.env['lunch.order'].search([
|
||||
('user_id', '=', self.env.user.id),
|
||||
('product_id', 'in', self.ids),
|
||||
])
|
||||
mapped_orders = defaultdict(lambda: self.env['lunch.order'])
|
||||
for order in all_orders:
|
||||
mapped_orders[order.product_id] |= order
|
||||
for product in self:
|
||||
if not mapped_orders[product]:
|
||||
product.last_order_date = False
|
||||
else:
|
||||
product.last_order_date = max(mapped_orders[product].mapped('date'))
|
||||
|
||||
def _compute_is_available_at(self):
|
||||
"""
|
||||
Is available_at is always false when browsing it
|
||||
this field is there only to search (see _search_is_available_at)
|
||||
"""
|
||||
for product in self:
|
||||
product.is_available_at = False
|
||||
|
||||
def _search_is_available_at(self, operator, value):
|
||||
supported_operators = ['in', 'not in', '=', '!=']
|
||||
|
||||
if not operator in supported_operators:
|
||||
return expression.TRUE_DOMAIN
|
||||
|
||||
if isinstance(value, int):
|
||||
value = [value]
|
||||
|
||||
if operator in expression.NEGATIVE_TERM_OPERATORS:
|
||||
return expression.AND([[('supplier_id.available_location_ids', 'not in', value)], [('supplier_id.available_location_ids', '!=', False)]])
|
||||
|
||||
return expression.OR([[('supplier_id.available_location_ids', 'in', value)], [('supplier_id.available_location_ids', '=', False)]])
|
||||
|
||||
def _sync_active_from_related(self):
|
||||
""" Archive/unarchive product after related field is archived/unarchived """
|
||||
return self.filtered(lambda p: (p.category_id.active and p.supplier_id.active) != p.active).toggle_active()
|
||||
|
||||
def toggle_active(self):
|
||||
invalid_products = self.filtered(lambda product: not product.active and not product.category_id.active)
|
||||
if invalid_products:
|
||||
raise UserError(_("The following product categories are archived. You should either unarchive the categories or change the category of the product.\n%s", '\n'.join(invalid_products.category_id.mapped('name'))))
|
||||
invalid_products = self.filtered(lambda product: not product.active and not product.supplier_id.active)
|
||||
if invalid_products:
|
||||
raise UserError(_("The following suppliers are archived. You should either unarchive the suppliers or change the supplier of the product.\n%s", '\n'.join(invalid_products.supplier_id.mapped('name'))))
|
||||
return super().toggle_active()
|
||||
|
||||
def _inverse_is_favorite(self):
|
||||
""" Handled in the write() """
|
||||
return
|
||||
|
||||
def write(self, vals):
|
||||
if 'is_favorite' in vals:
|
||||
if vals.pop('is_favorite'):
|
||||
commands = [(4, product.id) for product in self]
|
||||
else:
|
||||
commands = [(3, product.id) for product in self]
|
||||
self.env.user.write({
|
||||
'favorite_lunch_product_ids': commands,
|
||||
})
|
||||
|
||||
if not vals:
|
||||
return True
|
||||
return super().write(vals)
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import base64
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
from odoo.modules.module import get_module_resource
|
||||
|
||||
|
||||
class LunchProductCategory(models.Model):
|
||||
""" Category of the product such as pizza, sandwich, pasta, chinese, burger... """
|
||||
_name = 'lunch.product.category'
|
||||
_inherit = 'image.mixin'
|
||||
_description = 'Lunch Product Category'
|
||||
|
||||
@api.model
|
||||
def _default_image(self):
|
||||
image_path = get_module_resource('lunch', 'static/img', 'lunch.png')
|
||||
return base64.b64encode(open(image_path, 'rb').read())
|
||||
|
||||
name = fields.Char('Product Category', required=True, translate=True)
|
||||
company_id = fields.Many2one('res.company')
|
||||
currency_id = fields.Many2one('res.currency', related='company_id.currency_id')
|
||||
product_count = fields.Integer(compute='_compute_product_count', help="The number of products related to this category")
|
||||
active = fields.Boolean(string='Active', default=True)
|
||||
image_1920 = fields.Image(default=_default_image)
|
||||
|
||||
def _compute_product_count(self):
|
||||
product_data = self.env['lunch.product']._read_group([('category_id', 'in', self.ids)], ['category_id'], ['category_id'])
|
||||
data = {product['category_id'][0]: product['category_id_count'] for product in product_data}
|
||||
for category in self:
|
||||
category.product_count = data.get(category.id, 0)
|
||||
|
||||
def toggle_active(self):
|
||||
""" Archiving related lunch product """
|
||||
res = super().toggle_active()
|
||||
Product = self.env['lunch.product'].with_context(active_test=False)
|
||||
all_products = Product.search([('category_id', 'in', self.ids)])
|
||||
all_products._sync_active_from_related()
|
||||
return res
|
||||
383
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_supplier.py
Normal file
383
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_supplier.py
Normal file
|
|
@ -0,0 +1,383 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import math
|
||||
import pytz
|
||||
|
||||
from collections import defaultdict
|
||||
from datetime import datetime, time, timedelta
|
||||
from textwrap import dedent
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.osv import expression
|
||||
from odoo.tools import float_round
|
||||
|
||||
from odoo.addons.base.models.res_partner import _tz_get
|
||||
|
||||
|
||||
WEEKDAY_TO_NAME = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']
|
||||
CRON_DEPENDS = {'name', 'active', 'send_by', 'automatic_email_time', 'moment', 'tz'}
|
||||
|
||||
def float_to_time(hours, moment='am'):
|
||||
""" Convert a number of hours into a time object. """
|
||||
if hours == 12.0 and moment == 'pm':
|
||||
return time.max
|
||||
fractional, integral = math.modf(hours)
|
||||
if moment == 'pm':
|
||||
integral += 12
|
||||
return time(int(integral), int(float_round(60 * fractional, precision_digits=0)), 0)
|
||||
|
||||
def time_to_float(t):
|
||||
return float_round(t.hour + t.minute/60 + t.second/3600, precision_digits=2)
|
||||
|
||||
class LunchSupplier(models.Model):
|
||||
_name = 'lunch.supplier'
|
||||
_description = 'Lunch Supplier'
|
||||
_inherit = ['mail.thread', 'mail.activity.mixin']
|
||||
|
||||
partner_id = fields.Many2one('res.partner', string='Vendor', required=True)
|
||||
|
||||
name = fields.Char('Name', related='partner_id.name', readonly=False)
|
||||
|
||||
email = fields.Char(related='partner_id.email', readonly=False)
|
||||
email_formatted = fields.Char(related='partner_id.email_formatted', readonly=True)
|
||||
phone = fields.Char(related='partner_id.phone', readonly=False)
|
||||
street = fields.Char(related='partner_id.street', readonly=False)
|
||||
street2 = fields.Char(related='partner_id.street2', readonly=False)
|
||||
zip_code = fields.Char(related='partner_id.zip', readonly=False)
|
||||
city = fields.Char(related='partner_id.city', readonly=False)
|
||||
state_id = fields.Many2one("res.country.state", related='partner_id.state_id', readonly=False)
|
||||
country_id = fields.Many2one('res.country', related='partner_id.country_id', readonly=False)
|
||||
company_id = fields.Many2one('res.company', related='partner_id.company_id', readonly=False, store=True)
|
||||
|
||||
responsible_id = fields.Many2one('res.users', string="Responsible", domain=lambda self: [('groups_id', 'in', self.env.ref('lunch.group_lunch_manager').id)],
|
||||
default=lambda self: self.env.user,
|
||||
help="The responsible is the person that will order lunch for everyone. It will be used as the 'from' when sending the automatic email.")
|
||||
|
||||
send_by = fields.Selection([
|
||||
('phone', 'Phone'),
|
||||
('mail', 'Email'),
|
||||
], 'Send Order By', default='phone')
|
||||
automatic_email_time = fields.Float('Order Time', default=12.0, required=True)
|
||||
cron_id = fields.Many2one('ir.cron', ondelete='cascade', required=True, readonly=True)
|
||||
|
||||
mon = fields.Boolean(default=True)
|
||||
tue = fields.Boolean(default=True)
|
||||
wed = fields.Boolean(default=True)
|
||||
thu = fields.Boolean(default=True)
|
||||
fri = fields.Boolean(default=True)
|
||||
sat = fields.Boolean()
|
||||
sun = fields.Boolean()
|
||||
|
||||
recurrency_end_date = fields.Date('Until', help="This field is used in order to ")
|
||||
|
||||
available_location_ids = fields.Many2many('lunch.location', string='Location')
|
||||
available_today = fields.Boolean('This is True when if the supplier is available today',
|
||||
compute='_compute_available_today', search='_search_available_today')
|
||||
order_deadline_passed = fields.Boolean(compute='_compute_order_deadline_passed')
|
||||
|
||||
tz = fields.Selection(_tz_get, string='Timezone', required=True, default=lambda self: self.env.user.tz or 'UTC')
|
||||
|
||||
active = fields.Boolean(default=True)
|
||||
|
||||
moment = fields.Selection([
|
||||
('am', 'AM'),
|
||||
('pm', 'PM'),
|
||||
], default='am', required=True)
|
||||
|
||||
delivery = fields.Selection([
|
||||
('delivery', 'Delivery'),
|
||||
('no_delivery', 'No Delivery')
|
||||
], default='no_delivery')
|
||||
|
||||
topping_label_1 = fields.Char('Extra 1 Label', required=True, default='Extras')
|
||||
topping_label_2 = fields.Char('Extra 2 Label', required=True, default='Beverages')
|
||||
topping_label_3 = fields.Char('Extra 3 Label', required=True, default='Extra Label 3')
|
||||
topping_ids_1 = fields.One2many('lunch.topping', 'supplier_id', domain=[('topping_category', '=', 1)])
|
||||
topping_ids_2 = fields.One2many('lunch.topping', 'supplier_id', domain=[('topping_category', '=', 2)])
|
||||
topping_ids_3 = fields.One2many('lunch.topping', 'supplier_id', domain=[('topping_category', '=', 3)])
|
||||
topping_quantity_1 = fields.Selection([
|
||||
('0_more', 'None or More'),
|
||||
('1_more', 'One or More'),
|
||||
('1', 'Only One')], 'Extra 1 Quantity', default='0_more', required=True)
|
||||
topping_quantity_2 = fields.Selection([
|
||||
('0_more', 'None or More'),
|
||||
('1_more', 'One or More'),
|
||||
('1', 'Only One')], 'Extra 2 Quantity', default='0_more', required=True)
|
||||
topping_quantity_3 = fields.Selection([
|
||||
('0_more', 'None or More'),
|
||||
('1_more', 'One or More'),
|
||||
('1', 'Only One')], 'Extra 3 Quantity', default='0_more', required=True)
|
||||
|
||||
show_order_button = fields.Boolean(compute='_compute_buttons')
|
||||
show_confirm_button = fields.Boolean(compute='_compute_buttons')
|
||||
|
||||
_sql_constraints = [
|
||||
('automatic_email_time_range',
|
||||
'CHECK(automatic_email_time >= 0 AND automatic_email_time <= 12)',
|
||||
'Automatic Email Sending Time should be between 0 and 12'),
|
||||
]
|
||||
|
||||
def name_get(self):
|
||||
res = []
|
||||
for supplier in self:
|
||||
if supplier.phone:
|
||||
res.append((supplier.id, '%s %s' % (supplier.name, supplier.phone)))
|
||||
else:
|
||||
res.append((supplier.id, supplier.name))
|
||||
return res
|
||||
|
||||
def _sync_cron(self):
|
||||
for supplier in self:
|
||||
supplier = supplier.with_context(tz=supplier.tz)
|
||||
|
||||
sendat_tz = pytz.timezone(supplier.tz).localize(datetime.combine(
|
||||
fields.Date.context_today(supplier),
|
||||
float_to_time(supplier.automatic_email_time, supplier.moment)))
|
||||
cron = supplier.cron_id.sudo()
|
||||
lc = cron.lastcall
|
||||
if ((
|
||||
lc and sendat_tz.date() <= fields.Datetime.context_timestamp(supplier, lc).date()
|
||||
) or (
|
||||
not lc and sendat_tz <= fields.Datetime.context_timestamp(supplier, fields.Datetime.now())
|
||||
)):
|
||||
sendat_tz += timedelta(days=1)
|
||||
sendat_utc = sendat_tz.astimezone(pytz.UTC).replace(tzinfo=None)
|
||||
|
||||
cron.active = supplier.active and supplier.send_by == 'mail'
|
||||
cron.name = f"Lunch: send automatic email to {supplier.name}"
|
||||
cron.nextcall = sendat_utc
|
||||
cron.code = dedent(f"""\
|
||||
# This cron is dynamically controlled by {self._description}.
|
||||
# Do NOT modify this cron, modify the related record instead.
|
||||
env['{self._name}'].browse([{supplier.id}])._send_auto_email()""")
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
for vals in vals_list:
|
||||
for topping in vals.get('topping_ids_2', []):
|
||||
topping[2].update({'topping_category': 2})
|
||||
for topping in vals.get('topping_ids_3', []):
|
||||
topping[2].update({'topping_category': 3})
|
||||
crons = self.env['ir.cron'].sudo().create([
|
||||
{
|
||||
'user_id': self.env.ref('base.user_root').id,
|
||||
'active': False,
|
||||
'interval_type': 'days',
|
||||
'interval_number': 1,
|
||||
'numbercall': -1,
|
||||
'doall': False,
|
||||
'name': "Lunch: send automatic email",
|
||||
'model_id': self.env['ir.model']._get_id(self._name),
|
||||
'state': 'code',
|
||||
'code': "",
|
||||
}
|
||||
for _ in range(len(vals_list))
|
||||
])
|
||||
self.env['ir.model.data'].sudo().create([{
|
||||
'name': f'lunch_supplier_cron_sa_{cron.ir_actions_server_id.id}',
|
||||
'module': 'lunch',
|
||||
'res_id': cron.ir_actions_server_id.id,
|
||||
'model': 'ir.actions.server',
|
||||
# noupdate is set to true to avoid to delete record at module update
|
||||
'noupdate': True,
|
||||
} for cron in crons])
|
||||
for vals, cron in zip(vals_list, crons):
|
||||
vals['cron_id'] = cron.id
|
||||
|
||||
suppliers = super().create(vals_list)
|
||||
suppliers._sync_cron()
|
||||
return suppliers
|
||||
|
||||
def write(self, values):
|
||||
for topping in values.get('topping_ids_2', []):
|
||||
topping_values = topping[2]
|
||||
if topping_values:
|
||||
topping_values.update({'topping_category': 2})
|
||||
for topping in values.get('topping_ids_3', []):
|
||||
topping_values = topping[2]
|
||||
if topping_values:
|
||||
topping_values.update({'topping_category': 3})
|
||||
if values.get('company_id'):
|
||||
self.env['lunch.order'].search([('supplier_id', 'in', self.ids)]).write({'company_id': values['company_id']})
|
||||
super().write(values)
|
||||
if not CRON_DEPENDS.isdisjoint(values):
|
||||
# flush automatic_email_time field to call _sql_constraints
|
||||
if 'automatic_email_time' in values:
|
||||
self.flush_model(['automatic_email_time'])
|
||||
self._sync_cron()
|
||||
|
||||
def unlink(self):
|
||||
crons = self.cron_id.sudo()
|
||||
server_actions = crons.ir_actions_server_id
|
||||
super().unlink()
|
||||
crons.unlink()
|
||||
server_actions.unlink()
|
||||
|
||||
def toggle_active(self):
|
||||
""" Archiving related lunch product """
|
||||
res = super().toggle_active()
|
||||
active_suppliers = self.filtered(lambda s: s.active)
|
||||
inactive_suppliers = self - active_suppliers
|
||||
Product = self.env['lunch.product'].with_context(active_test=False)
|
||||
Product.search([('supplier_id', 'in', active_suppliers.ids)]).write({'active': True})
|
||||
Product.search([('supplier_id', 'in', inactive_suppliers.ids)]).write({'active': False})
|
||||
return res
|
||||
|
||||
def _get_current_orders(self, state='ordered'):
|
||||
""" Returns today's orders """
|
||||
available_today = self.filtered('available_today')
|
||||
if not available_today:
|
||||
return self.env['lunch.order']
|
||||
|
||||
orders = self.env['lunch.order'].search([
|
||||
('supplier_id', 'in', available_today.ids),
|
||||
('state', '=', state),
|
||||
('date', '=', fields.Date.context_today(self.with_context(tz=self.tz))),
|
||||
], order="user_id, name")
|
||||
return orders
|
||||
|
||||
def _send_auto_email(self):
|
||||
""" Send an email to the supplier with the order of the day """
|
||||
# Called daily by cron
|
||||
self.ensure_one()
|
||||
|
||||
if not self.available_today:
|
||||
return
|
||||
|
||||
if self.send_by != 'mail':
|
||||
raise UserError(_("Cannot send an email to this supplier!"))
|
||||
|
||||
orders = self._get_current_orders()
|
||||
if not orders:
|
||||
return
|
||||
|
||||
order = {
|
||||
'company_name': orders[0].company_id.name,
|
||||
'currency_id': orders[0].currency_id.id,
|
||||
'supplier_id': self.partner_id.id,
|
||||
'supplier_name': self.name,
|
||||
'email_from': self.responsible_id.email_formatted,
|
||||
'amount_total': sum(order.price for order in orders),
|
||||
}
|
||||
|
||||
sites = orders.mapped('user_id.last_lunch_location_id').sorted(lambda x: x.name)
|
||||
orders_per_site = orders.sorted(lambda x: x.user_id.last_lunch_location_id.id)
|
||||
|
||||
email_orders = [{
|
||||
'product': order.product_id.name,
|
||||
'note': order.note,
|
||||
'quantity': order.quantity,
|
||||
'price': order.price,
|
||||
'toppings': order.display_toppings,
|
||||
'username': order.user_id.name,
|
||||
'site': order.user_id.last_lunch_location_id.name,
|
||||
} for order in orders_per_site]
|
||||
|
||||
email_sites = [{
|
||||
'name': site.name,
|
||||
'address': site.address,
|
||||
} for site in sites]
|
||||
|
||||
self.env.ref('lunch.lunch_order_mail_supplier').with_context(
|
||||
order=order, lines=email_orders, sites=email_sites
|
||||
).send_mail(self.id)
|
||||
|
||||
orders.action_send()
|
||||
|
||||
@api.depends('recurrency_end_date', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun')
|
||||
def _compute_available_today(self):
|
||||
now = fields.Datetime.now().replace(tzinfo=pytz.UTC)
|
||||
|
||||
for supplier in self:
|
||||
now = now.astimezone(pytz.timezone(supplier.tz))
|
||||
|
||||
supplier.available_today = supplier._available_on_date(now)
|
||||
|
||||
def _available_on_date(self, date):
|
||||
self.ensure_one()
|
||||
|
||||
fieldname = WEEKDAY_TO_NAME[date.weekday()]
|
||||
return not (self.recurrency_end_date and date.date() >= self.recurrency_end_date) and self[fieldname]
|
||||
|
||||
@api.depends('available_today', 'automatic_email_time', 'send_by')
|
||||
def _compute_order_deadline_passed(self):
|
||||
now = fields.Datetime.now().replace(tzinfo=pytz.UTC)
|
||||
|
||||
for supplier in self:
|
||||
if supplier.send_by == 'mail':
|
||||
now = now.astimezone(pytz.timezone(supplier.tz))
|
||||
email_time = pytz.timezone(supplier.tz).localize(datetime.combine(
|
||||
fields.Date.context_today(supplier),
|
||||
float_to_time(supplier.automatic_email_time, supplier.moment)))
|
||||
supplier.order_deadline_passed = supplier.available_today and now > email_time
|
||||
else:
|
||||
supplier.order_deadline_passed = not supplier.available_today
|
||||
|
||||
def _search_available_today(self, operator, value):
|
||||
if (not operator in ['=', '!=']) or (not value in [True, False]):
|
||||
return []
|
||||
|
||||
searching_for_true = (operator == '=' and value) or (operator == '!=' and not value)
|
||||
|
||||
now = fields.Datetime.now().replace(tzinfo=pytz.UTC).astimezone(pytz.timezone(self.env.user.tz or 'UTC'))
|
||||
fieldname = WEEKDAY_TO_NAME[now.weekday()]
|
||||
|
||||
recurrency_domain = expression.OR([
|
||||
[('recurrency_end_date', '=', False)],
|
||||
[('recurrency_end_date', '>' if searching_for_true else '<', now)]
|
||||
])
|
||||
|
||||
return expression.AND([
|
||||
recurrency_domain,
|
||||
[(fieldname, operator, value)]
|
||||
])
|
||||
|
||||
def _compute_buttons(self):
|
||||
self.env.cr.execute("""
|
||||
SELECT supplier_id, state, COUNT(*)
|
||||
FROM lunch_order
|
||||
WHERE supplier_id IN %s
|
||||
AND state in ('ordered', 'sent')
|
||||
AND date = %s
|
||||
AND active
|
||||
GROUP BY supplier_id, state
|
||||
""", (tuple(self.ids), fields.Date.context_today(self)))
|
||||
supplier_orders = defaultdict(dict)
|
||||
for order in self.env.cr.fetchall():
|
||||
supplier_orders[order[0]][order[1]] = order[2]
|
||||
for supplier in self:
|
||||
supplier.show_order_button = supplier_orders[supplier.id].get('ordered', False)
|
||||
supplier.show_confirm_button = supplier_orders[supplier.id].get('sent', False)
|
||||
|
||||
def action_send_orders(self):
|
||||
no_auto_mail = self.filtered(lambda s: s.send_by != 'mail')
|
||||
|
||||
for supplier in self - no_auto_mail:
|
||||
supplier._send_auto_email()
|
||||
orders = no_auto_mail._get_current_orders()
|
||||
orders.action_send()
|
||||
|
||||
return {
|
||||
'type': 'ir.actions.client',
|
||||
'tag': 'display_notification',
|
||||
'params': {
|
||||
'type': 'success',
|
||||
'message': _('The orders have been sent!'),
|
||||
'next': {'type': 'ir.actions.act_window_close'},
|
||||
}
|
||||
}
|
||||
|
||||
def action_confirm_orders(self):
|
||||
orders = self._get_current_orders(state='sent')
|
||||
orders.action_confirm()
|
||||
|
||||
return {
|
||||
'type': 'ir.actions.client',
|
||||
'tag': 'display_notification',
|
||||
'params': {
|
||||
'type': 'success',
|
||||
'message': _('The orders have been confirmed!'),
|
||||
'next': {'type': 'ir.actions.act_window_close'},
|
||||
}
|
||||
}
|
||||
26
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_topping.py
Normal file
26
odoo-bringout-oca-ocb-lunch/lunch/models/lunch_topping.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
from odoo.tools import formatLang
|
||||
|
||||
|
||||
class LunchTopping(models.Model):
|
||||
_name = 'lunch.topping'
|
||||
_description = 'Lunch Extras'
|
||||
|
||||
name = fields.Char('Name', required=True)
|
||||
company_id = fields.Many2one('res.company', default=lambda self: self.env.company)
|
||||
currency_id = fields.Many2one('res.currency', related='company_id.currency_id')
|
||||
price = fields.Monetary('Price', required=True)
|
||||
supplier_id = fields.Many2one('lunch.supplier', ondelete='cascade')
|
||||
topping_category = fields.Integer('Topping Category', required=True, default=1)
|
||||
|
||||
def name_get(self):
|
||||
currency_id = self.env.company.currency_id
|
||||
res = dict(super(LunchTopping, self).name_get())
|
||||
for topping in self:
|
||||
price = formatLang(self.env, topping.price, currency_obj=currency_id)
|
||||
res[topping.id] = '%s %s' % (topping.name, price)
|
||||
return list(res.items())
|
||||
13
odoo-bringout-oca-ocb-lunch/lunch/models/res_company.py
Normal file
13
odoo-bringout-oca-ocb-lunch/lunch/models/res_company.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class Company(models.Model):
|
||||
_inherit = 'res.company'
|
||||
|
||||
lunch_minimum_threshold = fields.Float()
|
||||
lunch_notify_message = fields.Html(
|
||||
default="""Your lunch has been delivered.
|
||||
Enjoy your meal!""", translate=True)
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = 'res.config.settings'
|
||||
|
||||
currency_id = fields.Many2one('res.currency', related='company_id.currency_id')
|
||||
company_lunch_minimum_threshold = fields.Float(string="Maximum Allowed Overdraft", readonly=False, related='company_id.lunch_minimum_threshold')
|
||||
company_lunch_notify_message = fields.Html(string="Lunch notification message", readonly=False, related="company_id.lunch_notify_message")
|
||||
11
odoo-bringout-oca-ocb-lunch/lunch/models/res_users.py
Normal file
11
odoo-bringout-oca-ocb-lunch/lunch/models/res_users.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = 'res.users'
|
||||
|
||||
last_lunch_location_id = fields.Many2one('lunch.location')
|
||||
favorite_lunch_product_ids = fields.Many2many('lunch.product', 'lunch_product_favorite_user_rel', 'user_id', 'product_id')
|
||||
1
odoo-bringout-oca-ocb-lunch/lunch/populate/__init__.py
Normal file
1
odoo-bringout-oca-ocb-lunch/lunch/populate/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
from . import lunch
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue