mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-23 08:12:02 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
4
odoo-bringout-oca-ocb-bus/bus/__init__.py
Normal file
4
odoo-bringout-oca-ocb-bus/bus/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import models
|
||||
from . import controllers
|
||||
from . import websocket
|
||||
39
odoo-bringout-oca-ocb-bus/bus/__manifest__.py
Normal file
39
odoo-bringout-oca-ocb-bus/bus/__manifest__.py
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
'name' : 'IM Bus',
|
||||
'version': '1.0',
|
||||
'category': 'Hidden',
|
||||
'description': "Instant Messaging Bus allow you to send messages to users, in live.",
|
||||
'depends': ['base', 'web'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'assets': {
|
||||
'web.assets_common': [
|
||||
'bus/static/src/*.js',
|
||||
'bus/static/src/services/**/*.js',
|
||||
'bus/static/src/workers/websocket_worker.js',
|
||||
'bus/static/src/workers/websocket_worker_utils.js',
|
||||
],
|
||||
'web.assets_frontend': [
|
||||
'bus/static/src/*.js',
|
||||
'bus/static/src/services/**/*.js',
|
||||
('remove', 'bus/static/src/services/assets_watchdog_service.js'),
|
||||
'bus/static/src/workers/websocket_worker.js',
|
||||
'bus/static/src/workers/websocket_worker_utils.js',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'bus/static/tests/**/*.js',
|
||||
],
|
||||
'web.qunit_mobile_suite_tests': [
|
||||
'bus/static/tests/helpers/**/*.js',
|
||||
],
|
||||
'bus.websocket_worker_assets': [
|
||||
'web/static/src/legacy/js/promise_extension.js',
|
||||
'web/static/src/boot.js',
|
||||
'bus/static/src/workers/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
3
odoo-bringout-oca-ocb-bus/bus/controllers/__init__.py
Normal file
3
odoo-bringout-oca-ocb-bus/bus/controllers/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import main
|
||||
from . import websocket
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
13
odoo-bringout-oca-ocb-bus/bus/controllers/main.py
Normal file
13
odoo-bringout-oca-ocb-bus/bus/controllers/main.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
|
||||
from odoo.http import Controller, request, route
|
||||
|
||||
|
||||
class BusController(Controller):
|
||||
@route('/bus/get_model_definitions', methods=['POST'], type='http', auth='user')
|
||||
def get_model_definitions(self, model_names_to_fetch, **kwargs):
|
||||
return request.make_response(json.dumps(
|
||||
request.env['ir.model']._get_model_definitions(json.loads(model_names_to_fetch)),
|
||||
))
|
||||
67
odoo-bringout-oca-ocb-bus/bus/controllers/websocket.py
Normal file
67
odoo-bringout-oca-ocb-bus/bus/controllers/websocket.py
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
|
||||
from odoo.http import Controller, request, route, SessionExpiredException
|
||||
from odoo.addons.base.models.assetsbundle import AssetsBundle
|
||||
from ..models.bus import channel_with_db
|
||||
from ..websocket import WebsocketConnectionHandler
|
||||
|
||||
|
||||
class WebsocketController(Controller):
|
||||
@route('/websocket', type="http", auth="public", cors='*', websocket=True)
|
||||
def websocket(self):
|
||||
"""
|
||||
Handle the websocket handshake, upgrade the connection if
|
||||
successfull.
|
||||
"""
|
||||
return WebsocketConnectionHandler.open_connection(request)
|
||||
|
||||
@route('/websocket/health', type='http', auth='none', save_session=False)
|
||||
def health(self):
|
||||
data = json.dumps({
|
||||
'status': 'pass',
|
||||
})
|
||||
headers = [('Content-Type', 'application/json'),
|
||||
('Cache-Control', 'no-store')]
|
||||
return request.make_response(data, headers)
|
||||
|
||||
@route('/websocket/peek_notifications', type='json', auth='public', cors='*')
|
||||
def peek_notifications(self, channels, last, is_first_poll=False):
|
||||
if not all(isinstance(c, str) for c in channels):
|
||||
raise ValueError("bus.Bus only string channels are allowed.")
|
||||
if is_first_poll:
|
||||
# Used to detect when the current session is expired.
|
||||
request.session['is_websocket_session'] = True
|
||||
elif 'is_websocket_session' not in request.session:
|
||||
raise SessionExpiredException()
|
||||
channels = list(set(
|
||||
channel_with_db(request.db, c)
|
||||
for c in request.env['ir.websocket']._build_bus_channel_list(channels)
|
||||
))
|
||||
last_known_notification_id = request.env['bus.bus'].sudo().search([], limit=1, order='id desc').id or 0
|
||||
if last > last_known_notification_id:
|
||||
last = 0
|
||||
notifications = request.env['bus.bus']._poll(channels, last)
|
||||
return {'channels': channels, 'notifications': notifications}
|
||||
|
||||
@route('/websocket/update_bus_presence', type='json', auth='public', cors='*')
|
||||
def update_bus_presence(self, inactivity_period, im_status_ids_by_model):
|
||||
if 'is_websocket_session' not in request.session:
|
||||
raise SessionExpiredException()
|
||||
request.env['ir.websocket']._update_bus_presence(int(inactivity_period), im_status_ids_by_model)
|
||||
return {}
|
||||
|
||||
@route('/bus/websocket_worker_bundle', type='http', auth='public', cors='*')
|
||||
def get_websocket_worker_bundle(self, v=None): # pylint: disable=unused-argument
|
||||
"""
|
||||
:param str v: Version of the worker, frontend only argument used to
|
||||
prevent new worker versions to be loaded from the browser cache.
|
||||
"""
|
||||
bundle = 'bus.websocket_worker_assets'
|
||||
files, _ = request.env["ir.qweb"]._get_asset_content(bundle)
|
||||
asset = AssetsBundle(bundle, files)
|
||||
stream = request.env['ir.binary']._get_stream_from(asset.js(
|
||||
is_minified="assets" not in request.session.debug
|
||||
))
|
||||
return stream.get_response(content_security_policy=None)
|
||||
150
odoo-bringout-oca-ocb-bus/bus/i18n/af.po
Normal file
150
odoo-bringout-oca-ocb-bus/bus/i18n/af.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Geskep deur"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep op"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laas Gewysig op"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laas Opgedateer deur"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laas Opgedateer op"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Boodskap"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Gebruikers"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
146
odoo-bringout-oca-ocb-bus/bus/i18n/am.po
Normal file
146
odoo-bringout-oca-ocb-bus/bus/i18n/am.po
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/ar.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/ar.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "بعيد"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "القناة"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "ناقل الاتصالات"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "جهة الاتصال"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "حالة المحادثات الفورية"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "آخر استطلاع"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "آخر حضور"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "رسالة "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "النماذج "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "غير متصل بالإنترنت "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "عبر الإنترنت "
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "تحديث "
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "يبدو أن هذه الصفحة قديمة. "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "المستخدم"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "وجود المستخدم"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "المستخدمين "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "التعامل مع رسائل websocket "
|
||||
152
odoo-bringout-oca-ocb-bus/bus/i18n/az.po
Normal file
152
odoo-bringout-oca-ocb-bus/bus/i18n/az.po
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# Nurlan Farajov <coolinuxoid@gmail.com>, 2025
|
||||
# erpgo translator <jumshud@erpgo.az>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2025\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Uzaq"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Kommunikasiya Şini"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tərəfindən yaradılıb"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tarixdə yaradıldı"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ekran Adı"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Dəyişdirilmə tarixi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Son Sorğu- sual"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Son İştirak"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Yeniləyən"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Yenilənmə tarixi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mesaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modellər"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Oflayn"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Onlayn"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Yeniləmə"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "İstifadəçi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "İstifadəçi İştirakı"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "İstifadəçilər"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket mesajlarının idarə edilməsi"
|
||||
150
odoo-bringout-oca-ocb-bus/bus/i18n/be.po
Normal file
150
odoo-bringout-oca-ocb-bus/bus/i18n/be.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Кантакт"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Стварыў"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створана"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для адлюстравання"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Апошняя мадыфікацыя"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Апошні абнавіў"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Апошняе абнаўленне"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Карыстальнік"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
154
odoo-bringout-oca-ocb-bus/bus/i18n/bg.po
Normal file
154
odoo-bringout-oca-ocb-bus/bus/i18n/bg.po
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Petko Karamotchev, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Petko Karamotchev, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Извън"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Канал"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Статус IM "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промяна на"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Последна анкета"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Последно присъствие"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно актуализирано от"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно актуализирано на"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Съобщение"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Модели"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Офлайн"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Онлайн"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Опресни"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Потребител"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Потребителско присъствие"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Потребители"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
146
odoo-bringout-oca-ocb-bus/bus/i18n/bs.po
Normal file
146
odoo-bringout-oca-ocb-bus/bus/i18n/bs.po
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Odsutan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Korisnik može imati samo jedan IM status."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Zadnji pokušaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Zadnja prijava"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Poruka"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Van mreže"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Na mreži"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Osvježi"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Stranica se čini zastarjela."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Prisutnost korisnika"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "bus.Bus not Dostupan in test mode"
|
||||
146
odoo-bringout-oca-ocb-bus/bus/i18n/bus.pot
Normal file
146
odoo-bringout-oca-ocb-bus/bus/i18n/bus.pot
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
158
odoo-bringout-oca-ocb-bus/bus/i18n/ca.po
Normal file
158
odoo-bringout-oca-ocb-bus/bus/i18n/ca.po
Normal file
|
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Arnau Ros, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Sandra Franch <sandra.franch@upc.edu>, 2022
|
||||
# Jonatan Gk, 2022
|
||||
# marcescu, 2022
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Cristian Cruz, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Cristian Cruz, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Absent"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus de comunicació "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacte"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Estat de la conversa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificació el "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última conversa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Última presencia"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualització per"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualització el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Missatge"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Models"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Fora de línia"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "En línia"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Refresca"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Sembla que la pàgina està desactualitzada."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Presència del usuari"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuaris"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "gestió de missatges websocket"
|
||||
156
odoo-bringout-oca-ocb-bus/bus/i18n/cs.po
Normal file
156
odoo-bringout-oca-ocb-bus/bus/i18n/cs.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Jaroslav Helemik Nemec <nemec@helemik.cz>, 2022
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2022
|
||||
# Jiří Podhorecký, 2022
|
||||
# Michal Veselý <michal@veselyberanek.net>, 2022
|
||||
# Jakub Smolka, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jakub Smolka, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Pryč"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanál"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Komunikační sběrnice"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořeno od"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled změněno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Poslední průzkum"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Poslední přítomnost"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno od"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Zpráva"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modely"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Nepřipojeno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Obnovit"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Stránka se zdá být zastaralá."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Přítomnost uživatele"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Uživatelé"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "zpráva zpracování websocketu"
|
||||
150
odoo-bringout-oca-ocb-bus/bus/i18n/da.po
Normal file
150
odoo-bringout-oca-ocb-bus/bus/i18n/da.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Væk"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Kommunikations Bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Seneste meningsmåling"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Sidste tilstedeværelse"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Besked"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Genopfrisk"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Siden ser ud til at være forældet."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruger"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Bruger tilstedeværelse"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Brugere"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
150
odoo-bringout-oca-ocb-bus/bus/i18n/de.po
Normal file
150
odoo-bringout-oca-ocb-bus/bus/i18n/de.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Abwesend"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Kommunikationsbus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Status der Sofortnachricht"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Letzte Änderung am"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Letzte Befragung"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Letzte Anwesenheit"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Nachricht"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modelle"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Die Seite scheint veraltet zu sein."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Benutzer-Anwesenheit"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "Websocket-Nachrichtbearbeitung"
|
||||
133
odoo-bringout-oca-ocb-bus/bus/i18n/el.po
Normal file
133
odoo-bringout-oca-ocb-bus/bus/i18n/el.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-21 13:17+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr "Ένας χρήστης μπορεί να έχει μόνο μία κατάσταση Άμεσης Συνομιλίας"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr "Εκτός"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Κανάλι"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Επαφή"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Κατάσταση Άμεσης Συνομιλίας"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Τελευταία τροποποίηση στις"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Τελευταία Δημοσκόπηση"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Τελευταία Παρουσία"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία Ενημέρωση από"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία Ενημέρωση στις"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Μήνυμα"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Παρουσία Χρήστη"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Χρήστες"
|
||||
|
||||
#. module: bus
|
||||
#: code:addons/bus/controllers/main.py:41
|
||||
#, python-format
|
||||
msgid "bus.Bus not available in test mode"
|
||||
msgstr ""
|
||||
143
odoo-bringout-oca-ocb-bus/bus/i18n/en_AU.po
Normal file
143
odoo-bringout-oca-ocb-bus/bus/i18n/en_AU.po
Normal file
|
|
@ -0,0 +1,143 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:42+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_latitude
|
||||
msgid "Geo Latitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_longitude
|
||||
msgid "Geo Longitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_date_localization
|
||||
msgid "Geolocation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Created on"
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/en_GB.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/en_GB.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
152
odoo-bringout-oca-ocb-bus/bus/i18n/es.po
Normal file
152
odoo-bringout-oca-ocb-bus/bus/i18n/es.po
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Ausente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus de comunicación"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Estado de mensajería instantanea"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última encuesta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Última conexión"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mensaje"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Desconectado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "En línea"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Actualizar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Parece que la página no está actualizada."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Conexión del usuario"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuarios"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "gestión de mensajes de WebSocket"
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_BO.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_BO.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_CL.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_CL.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_CO.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_CO.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_CR.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_CR.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_DO.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_DO.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_EC.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_EC.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por:"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Fecha de modificación"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima Actualización por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
152
odoo-bringout-oca-ocb-bus/bus/i18n/es_MX.po
Normal file
152
odoo-bringout-oca-ocb-bus/bus/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
|
||||
# Fernanda Alvarez, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2024\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Ausente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus de comunicación"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Estado de mensajería instantánea"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última encuesta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Última conexión"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mensaje"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Desconectado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "En línea"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Actualizar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Parece que la página no está actualizada."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Conexión del usuario"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuarios"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "gestión de mensajes de WebSocket"
|
||||
143
odoo-bringout-oca-ocb-bus/bus/i18n/es_PA.po
Normal file
143
odoo-bringout-oca-ocb-bus/bus/i18n/es_PA.po
Normal file
|
|
@ -0,0 +1,143 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:42+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_PA/)\n"
|
||||
"Language: es_PA\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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_latitude
|
||||
msgid "Geo Latitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_longitude
|
||||
msgid "Geo Longitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_date_localization
|
||||
msgid "Geolocation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_PE.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_PE.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_PY.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_PY.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_VE.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/es_VE.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
158
odoo-bringout-oca-ocb-bus/bus/i18n/et.po
Normal file
158
odoo-bringout-oca-ocb-bus/bus/i18n/et.po
Normal file
|
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Marek Pontus, 2022
|
||||
# Martin Aavastik <martin@avalah.ee>, 2022
|
||||
# Andre Roomet <andreroomet@gmail.com>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Maidu Targama <m.targama@gmail.com>, 2022
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# JanaAvalah, 2022
|
||||
# Anna, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Anna, 2024\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Eemal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Allikas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Kommunikatsioonibuss"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loomise kuupäev"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Last Poll"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Last Presence"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Sõnum"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Mudelid"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Võrguühenduseta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Uuenda"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Leht on aegunud. "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kasutaja"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Kasutaja kohalolek"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Kasutajad"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket sõnumite käsitlus"
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/eu.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/eu.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
156
odoo-bringout-oca-ocb-bus/bus/i18n/fa.po
Normal file
156
odoo-bringout-oca-ocb-bus/bus/i18n/fa.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# F Hariri <fhari1234@gmail.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "دور از کار"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "کانال"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "ارتباطات Bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "مخاطب"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجادشده در"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "وضعیت پیام رسانی"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخرین اصلاح در"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "آخرین رایگیری"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "آخرین حضور"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین تغییر توسط"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین بروز رسانی در"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "پیام"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "مدل ها"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "آفلاین"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "آنلاین"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "تازه سازی"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "صفحه به نظر میرسد قدیمی است."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "کاربر"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "حضور کاربر"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "کاربران"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "مدیریت پیام وب سوکت"
|
||||
156
odoo-bringout-oca-ocb-bus/bus/i18n/fi.po
Normal file
156
odoo-bringout-oca-ocb-bus/bus/i18n/fi.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Miku Laitinen <miku.laitinen@gmail.com>, 2022
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Poissa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanava"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Viestintäväylä"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakti"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Pikaviestimen tila"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Viimeisin kysely"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Viimeksi läsnä"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Viesti"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Mallit"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Poissa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Verkossa"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Päivitä"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Sivu näyttää vanhentuneelta."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Käyttäjän läsnäolo"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Käyttäjät"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket-viestien käsittely"
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/fo.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/fo.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Byrjað av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Seinast rættað tann"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Seinast dagført av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Seinast dagført tann"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/fr.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/fr.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Absent"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus de communication"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Statut de messagerie instantanée"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Dernier sondage"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Dernière présence en ligne"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Message"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modèles"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Hors ligne"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "En ligne"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Actualiser"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "La page semble obsolète."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Présence de l'utilisateur"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilisateurs"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "traitement des messages du websocket "
|
||||
143
odoo-bringout-oca-ocb-bus/bus/i18n/fr_BE.po
Normal file
143
odoo-bringout-oca-ocb-bus/bus/i18n/fr_BE.po
Normal file
|
|
@ -0,0 +1,143 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:42+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/fr_BE/)\n"
|
||||
"Language: fr_BE\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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_latitude
|
||||
msgid "Geo Latitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_longitude
|
||||
msgid "Geo Longitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_date_localization
|
||||
msgid "Geolocation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Derniere fois mis à jour par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mis à jour le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr "Message"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partenaire"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilisateurs"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Créé le"
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/fr_CA.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/fr_CA.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/gl.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/gl.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
150
odoo-bringout-oca-ocb-bus/bus/i18n/gu.po
Normal file
150
odoo-bringout-oca-ocb-bus/bus/i18n/gu.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "User"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
156
odoo-bringout-oca-ocb-bus/bus/i18n/he.po
Normal file
156
odoo-bringout-oca-ocb-bus/bus/i18n/he.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# NoaFarkash, 2022
|
||||
# Fishfur A Banter <fishfurbanter@gmail.com>, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ha Ketem <haketem@gmail.com>, 2022\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "רחוק"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "ערוץ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "אפיק תקשורת"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "איש קשר"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על-ידי"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "סטטוס IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "שינוי אחרון ב"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "סקר אחרון"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "נוכחות אחרונה"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על-ידי"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עדכון אחרון ב"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "הודעה"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "דגמים"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "לא מקוון"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "מקוון"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "רענן"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "נראה שהדף הינו מיושן."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "משתמש"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "נוכחות משתמש"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "משתמשים"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
152
odoo-bringout-oca-ocb-bus/bus/i18n/hi.po
Normal file
152
odoo-bringout-oca-ocb-bus/bus/i18n/hi.po
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Manav Shah, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "संपर्क"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "द्वारा निर्मित"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "इस तारीख को बनाया गया"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले नाम"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "इन्होंने आखिरी बार अपडेट किया"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "आखिरी बार अपडेट हुआ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "मैसेज"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "मॉडल"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "रीफ्रेश करें"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "उपयोगकर्ता"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
152
odoo-bringout-oca-ocb-bus/bus/i18n/hr.po
Normal file
152
odoo-bringout-oca-ocb-bus/bus/i18n/hr.po
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2023\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\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: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Odsutan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Kanal komunikacije"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Zadnji pokušaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Zadnja prijava"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Poruka"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Odspojen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Osvježi"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Stranica se čini zastarjela."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Prisutnost korisnika"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "upravljanje porukama websocketa"
|
||||
155
odoo-bringout-oca-ocb-bus/bus/i18n/hu.po
Normal file
155
odoo-bringout-oca-ocb-bus/bus/i18n/hu.po
Normal file
|
|
@ -0,0 +1,155 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# krnkris, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Távol"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Csatorna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Kommunikációs busz"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kapcsolat"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Létrehozta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozva"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Üzenetküldési állapot"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Legutóbb frissítve"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Utolsó szavazás"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Utolsó jelenlét"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Frissítette"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Üzenet"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modellek"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Frissítés"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Felhasználói jelenlét"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Felhasználók"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
146
odoo-bringout-oca-ocb-bus/bus/i18n/hy.po
Normal file
146
odoo-bringout-oca-ocb-bus/bus/i18n/hy.po
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/id.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/id.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Menjauh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Saluran"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus Komunikasi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Status IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir diubah pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Poll terakhir"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Kehadiran terakhir"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Terakhir diperbarui oleh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir diperbarui pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Pesan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Model"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Luring"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Daring"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Refresh"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Halaman tersebut tampaknya sudah usang."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Kehadiran Pengguna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "penanganan pesan websocket"
|
||||
150
odoo-bringout-oca-ocb-bus/bus/i18n/is.po
Normal file
150
odoo-bringout-oca-ocb-bus/bus/i18n/is.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Hafa samband"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Búið til af"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Búið til þann"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Birtingarnafn"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Síðast uppfært af"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Síðast uppfært þann"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Skilaboð"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Notandi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
152
odoo-bringout-oca-ocb-bus/bus/i18n/it.po
Normal file
152
odoo-bringout-oca-ocb-bus/bus/i18n/it.po
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Luca Carlo, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Assente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canale"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus di comunicazione"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contatto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data creazione"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Stato IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Ultima interrogazione"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Ultima presenza"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Messaggio"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modelli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Non in linea"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "In linea"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Ricarica"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "La pagina non sembra essere aggiornata."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Presenza utente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utenti"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "Gestione dei messaggi websocket"
|
||||
153
odoo-bringout-oca-ocb-bus/bus/i18n/ja.po
Normal file
153
odoo-bringout-oca-ocb-bus/bus/i18n/ja.po
Normal file
|
|
@ -0,0 +1,153 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 江口和志 <sandwhale1010@gmail.com>, 2022
|
||||
# Andy Yiu, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "外出"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "チャネル"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "コミュニケーションバス"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "連絡先"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IMステータス"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "最終返信"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "最終在席"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "メッセージ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "モデル"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "オフライン"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "オンライン"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "更新"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "ページが古くなっているようです。"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ユーザ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "ユーザプレゼンス"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "ユーザ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "WebSocketメッセージ処理"
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/ka.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/ka.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "შემქმნელი"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "იდენტიფიკატორი"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ბოლოს განაახლა"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/kab.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/kab.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Yerna-t"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
152
odoo-bringout-oca-ocb-bus/bus/i18n/km.po
Normal file
152
odoo-bringout-oca-ocb-bus/bus/i18n/km.po
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Chan Nath <channath@gmail.com>, 2023
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "មិននៅកន្លែង"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "ឆានែល"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "រថយន្តទំនាក់ទំនង"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "ទំនាក់ទំនង"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "បង្កើតដោយ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "បង្កើតនៅ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "ស្ថានភាព IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "ការស្ទង់មតិចុងក្រោយ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "វត្តមានចុងក្រោយ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "សារ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "ម៉ូត"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "បិទប្រពន្ឋ័សេវា"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "បើកប្រពន្ឋ័ទាក់ទង"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "អ្នកប្រើប្រាស់"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "វត្តមានរបស់អ្នកប្រើ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "អ្នកប្រើ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/ko.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/ko.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "자리 비움"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "채널"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "커뮤니케이션 버스"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "연락처"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "작성일자"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "메신저 상태"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정일"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "최근 투표"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "최근 출석"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 일자"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "메시지"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "모델"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "오프라인"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "온라인"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "새로 고침"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "페이지가 오래된 것 같습니다."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "사용자"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "사용자 출석"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "사용자"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "웹소켓 메시지 처리"
|
||||
133
odoo-bringout-oca-ocb-bus/bus/i18n/lb.po
Normal file
133
odoo-bringout-oca-ocb-bus/bus/i18n/lb.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:09+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.constraint,message:bus.constraint_bus_presence_bus_user_presence_unique
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_autovacuum
|
||||
msgid "Automatic Vacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: code:addons/bus/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "bus.Bus not available in test mode"
|
||||
msgstr ""
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/lo.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/lo.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "ຊ່ອງ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "ຂໍ້ມູນຕິດຕໍ່ພົວພັນ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ສ້າງໂດຍ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ສ້າງເມື່ອ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ຊື່ເຕັມ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ແກ້ໄຂລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ປັບປຸງລ້າສຸດໂດຍ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ປັບປຸງລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ຜູ້ໃຊ້"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "ຜູ້ໃຊ້ງານ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
156
odoo-bringout-oca-ocb-bus/bus/i18n/lt.po
Normal file
156
odoo-bringout-oca-ocb-bus/bus/i18n/lt.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2022
|
||||
# Audrius Palenskis <audrius.palenskis@gmail.com>, 2022
|
||||
# Arunas V. <arunas@devoro.com>, 2022
|
||||
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Išėjęs"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanalas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Komunikacijos magistralė"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontaktas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM būsena"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Paskutinė apklausa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Paskutinį kartą matytas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Žinutė"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeliai"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Atsijungęs"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Prisijungęs"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Vartotojas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Vartotojo aktyvumas"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Vartotojai"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
154
odoo-bringout-oca-ocb-bus/bus/i18n/lv.po
Normal file
154
odoo-bringout-oca-ocb-bus/bus/i18n/lv.po
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Anzelika Adejanova, 2022
|
||||
# JanisJanis <jbojars@gmail.com>, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Projām"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanāls"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakts"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Parādīt vārdu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Pēdējoreiz mainīts"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējoreiz atjaunoja"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējoreiz atjaunots"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Ziņojums"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Models"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Bezsaiste"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Tiešsaiste"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Atsvaidzināt"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Šī lappuse izskatās, ka ir novecojusi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Lietotājs"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Lietotāji"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
125
odoo-bringout-oca-ocb-bus/bus/i18n/mk.po
Normal file
125
odoo-bringout-oca-ocb-bus/bus/i18n/mk.po
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# 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-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
150
odoo-bringout-oca-ocb-bus/bus/i18n/ml.po
Normal file
150
odoo-bringout-oca-ocb-bus/bus/i18n/ml.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "ചാനൽ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "കോൺടാക്ട് "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ഉണ്ടാക്കിയത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "സൃഷ്ടിച്ചത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ഡിസ്പ്ലേ നെയിം"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "സന്ദേശം"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "മോഡൽസ്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "ഓഫ്ലൈൻ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "യൂസർ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "യൂസർ സാന്നിധ്യം"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "യൂസേഴ്സ് "
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
143
odoo-bringout-oca-ocb-bus/bus/i18n/ml_IN.po
Normal file
143
odoo-bringout-oca-ocb-bus/bus/i18n/ml_IN.po
Normal file
|
|
@ -0,0 +1,143 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2016-04-22 12:13+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Malayalam (India) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/ml_IN/)\n"
|
||||
"Language: ml_IN\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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "രൂപപ്പെടുത്തിയത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_latitude
|
||||
msgid "Geo Latitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_partner_longitude
|
||||
msgid "Geo Longitude"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_date_localization
|
||||
msgid "Geolocation Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്ത ദിവസം"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "നിർമിച്ച ദിവസം"
|
||||
152
odoo-bringout-oca-ocb-bus/bus/i18n/mn.po
Normal file
152
odoo-bringout-oca-ocb-bus/bus/i18n/mn.po
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Batmunkh Ganbat <batmunkh2522@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Batmunkh Ganbat <batmunkh2522@gmail.com>, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Хол байна"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Суваг"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Харилцааны цуваа"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Харилцах хаяг"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэсэн этгээд"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн огноо"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "ШХ Төлөв"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Сүүлийн Санал"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Сүүлийн Оролцоо"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлд зассан этгээд"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Зурвас"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Модел"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Оффлайн"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Онлайн"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Хэрэглэгч"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Хэрэглэгчийн Оролцоо"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Хэрэглэгчид"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
150
odoo-bringout-oca-ocb-bus/bus/i18n/ms.po
Normal file
150
odoo-bringout-oca-ocb-bus/bus/i18n/ms.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kenalan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dicipta oleh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama paparan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Diubah suai pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Kemas Kini Terakhir oleh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir pada"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mesej"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Model"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Dalam talian"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "pengguna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
152
odoo-bringout-oca-ocb-bus/bus/i18n/nb.po
Normal file
152
odoo-bringout-oca-ocb-bus/bus/i18n/nb.po
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rune Restad, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Rune Restad, 2025\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Borte"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Chattestatus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Sist kontaktet"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Sist tilstede"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Melding"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Frakoblet"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "På nett"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Oppdater"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruker"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Bruker tilstede"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Brukere"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "Håndtering av WebSocket-meldinger"
|
||||
122
odoo-bringout-oca-ocb-bus/bus/i18n/ne.po
Normal file
122
odoo-bringout-oca-ocb-bus/bus/i18n/ne.po
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr ""
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/nl.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/nl.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2022\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Afwezig"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanaal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Communicatiebus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Laatste pol"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Laatst aanwezig"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Bericht"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modellen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Vernieuw"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "De pagina lijkt verouderd."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Gebruiker aanwezig"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Gebruikers"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket berichtafhandeling"
|
||||
146
odoo-bringout-oca-ocb-bus/bus/i18n/no.po
Normal file
146
odoo-bringout-oca-ocb-bus/bus/i18n/no.po
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
157
odoo-bringout-oca-ocb-bus/bus/i18n/pl.po
Normal file
157
odoo-bringout-oca-ocb-bus/bus/i18n/pl.po
Normal file
|
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Andrzej Wiśniewski <a.wisniewski@hadron.eu.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2022
|
||||
# Mariusz, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2022
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Zaraz wracam"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanał"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Magistrala komunikacyjna"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzył(a)"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data utworzenia"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Status komunikatora"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Data ostatniej modyfikacji"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Ostatnia ankieta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Ostatnia obecność"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio aktualizowane przez"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Data ostatniej aktualizacji"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Wiadomość"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modele"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Niedostępny"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Dostępny"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Odśwież"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Strona wydaje się być nieaktualna."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Obecność użytkownika"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Użytkownicy"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "obsługa komunikatów websocket"
|
||||
156
odoo-bringout-oca-ocb-bus/bus/i18n/pt.po
Normal file
156
odoo-bringout-oca-ocb-bus/bus/i18n/pt.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Ricardo Correia <rcorreiavv@gmail.com>, 2022
|
||||
# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Nuno Silva <nuno.silva@arxi.pt>, 2024\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Ausente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Estado IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última Votação"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Última Presença"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última Atualização por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Atualização em"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mensagem"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Desligado"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Atualizar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "A página parece estar desatualizada."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Presença de utilizador"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilizadores"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/pt_BR.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Ausente"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Barramento de Comunicação"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contato"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Status do mensageiro"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificação em"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Última votação"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Última presença"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mensagem"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Atualizar"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "A página parece estar desatualizada."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Presença do Usuário"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Usuários"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "Tratamento de mensagens via websocket"
|
||||
153
odoo-bringout-oca-ocb-bus/bus/i18n/ro.po
Normal file
153
odoo-bringout-oca-ocb-bus/bus/i18n/ro.po
Normal file
|
|
@ -0,0 +1,153 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Alin Miclea, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Alin Miclea, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Absent"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Magistrală de comunicații"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Status IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Ultimul sondaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Ultima prezență"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mesaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modele"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Deconectat"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Activ"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Actualizare"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Pagina pare să nu fie actualizată."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Prezență utilizator"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Utilizatori"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "gestionarea mesajelor websocket"
|
||||
155
odoo-bringout-oca-ocb-bus/bus/i18n/ru.po
Normal file
155
odoo-bringout-oca-ocb-bus/bus/i18n/ru.po
Normal file
|
|
@ -0,0 +1,155 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2024
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Далеко"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Канал"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus коммуникация"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создал"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата создания"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "Идентификатор"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM статус"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последнее изменение"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Последний опрос"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Последнее присутствие"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновил"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последнее обновление"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Сообщение"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Модели"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Офлайн"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Онлайн"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Обновить"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Система была обновлена на сервере."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Пользователь"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Присутствие пользователя"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Пользователи"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "обработка сообщений в сокетах"
|
||||
150
odoo-bringout-oca-ocb-bus/bus/i18n/sk.po
Normal file
150
odoo-bringout-oca-ocb-bus/bus/i18n/sk.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Neprítomný"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanál"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Komunikačná zbernica"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná úprava"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Posledný prieskum"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Posledná prítomnosť"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Správa"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modely"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Obnoviť"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Zdá sa, že stránka je zastaraná."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Užívateľ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Užívateľova prítomnosť"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Užívatelia"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
155
odoo-bringout-oca-ocb-bus/bus/i18n/sl.po
Normal file
155
odoo-bringout-oca-ocb-bus/bus/i18n/sl.po
Normal file
|
|
@ -0,0 +1,155 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# laznikd <laznik@mentis.si>, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Katja Deržič, 2024
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Odsoten"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Komunikacija Bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Stik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Zadnje glasovanje"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Zadnja prisotnost"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Sporočilo"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Brez povezave"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Spletno"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Osvežite"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Zdi se, da je stran zastarela."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Uporabniki"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "obravnavanje sporočil spletnega vtičnika"
|
||||
146
odoo-bringout-oca-ocb-bus/bus/i18n/sq.po
Normal file
146
odoo-bringout-oca-ocb-bus/bus/i18n/sq.po
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
154
odoo-bringout-oca-ocb-bus/bus/i18n/sr.po
Normal file
154
odoo-bringout-oca-ocb-bus/bus/i18n/sr.po
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\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: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Daleko"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Komunikacioni Bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM Status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Poslednja izmena dana"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Poslednje istraživanje."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Poslednja prisutnost"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Poruka"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeli"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Van mreže"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Osveži"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Stranica izgleda zastarelo."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Prisustvo korisnika"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket rukovanje porukama"
|
||||
128
odoo-bringout-oca-ocb-bus/bus/i18n/sr@latin.po
Normal file
128
odoo-bringout-oca-ocb-bus/bus/i18n/sr@latin.po
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Nemanja Dragovic <nemanjadragovic94@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: bus
|
||||
#: sql_constraint:bus.presence:0
|
||||
msgid "A user can only have one IM status."
|
||||
msgstr "Korisnik može imati samo jedan IM status."
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Away"
|
||||
msgstr "Odsutan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_date
|
||||
msgid "Create date"
|
||||
msgstr "Datum kreiranja"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner_im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users_im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus___last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promena"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Zadnja dojava"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Zadnji put prisutan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promenio"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vreme promene"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus_message
|
||||
msgid "Message"
|
||||
msgstr "Poruka"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: selection:bus.presence,status:0
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Prisustvo korisnika"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence_user_id
|
||||
msgid "Users"
|
||||
msgstr "Korisnici"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "bus.bus"
|
||||
msgstr "bus.bus"
|
||||
157
odoo-bringout-oca-ocb-bus/bus/i18n/sv.po
Normal file
157
odoo-bringout-oca-ocb-bus/bus/i18n/sv.po
Normal file
|
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Simon S, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Moa Nicklasson <Moa.nicklasson@hotmail.se>, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Simon Nilsson, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Simon Nilsson, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Borta"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Kommunikationsbuss"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM-status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad den"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Senaste undersökning"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Sågs senast"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad på"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Meddelande"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Offline"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Uppkopplad"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Ladda om"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Sidan verkar vara föråldrad."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Användarens närvaro/status"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Användare"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket meddelandehantering"
|
||||
146
odoo-bringout-oca-ocb-bus/bus/i18n/sw.po
Normal file
146
odoo-bringout-oca-ocb-bus/bus/i18n/sw.po
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
146
odoo-bringout-oca-ocb-bus/bus/i18n/ta.po
Normal file
146
odoo-bringout-oca-ocb-bus/bus/i18n/ta.po
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr ""
|
||||
152
odoo-bringout-oca-ocb-bus/bus/i18n/th.po
Normal file
152
odoo-bringout-oca-ocb-bus/bus/i18n/th.po
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "ห่างออกไป"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "ช่อง"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "รถบัสสื่อสาร"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "ติดต่อ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "สถานะ IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "โพลครั้งล่าสุด"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "การแสดงตนครั้งสุดท้าย"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัปเดตครั้งล่าสุดโดย"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัปเดตครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "ข้อความ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "โมเดล"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "ออฟไลน์"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "ออนไลน์"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "รีเฟรช"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "ดูเหมือนเพจจะล้าสมัยแล้ว"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ผู้ใช้"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "การแสดงตนของผู้ใช้"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "ผู้ใช้"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "การจัดการข้อความของ websocket"
|
||||
159
odoo-bringout-oca-ocb-bus/bus/i18n/tr.po
Normal file
159
odoo-bringout-oca-ocb-bus/bus/i18n/tr.po
Normal file
|
|
@ -0,0 +1,159 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Ozlem Cikrikci <ozlemc@eskayazilim.com.tr>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Ramiz Deniz Öner <deniz@denizoner.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tugay Hatıl <tugayh@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Dışarıda"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "İletişim Veriyolu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Anlık İleti Durumu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Düzenleme"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Son Anket"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Son Durum"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Güncelleyen"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Mesaj"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Çevrimdışı"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Çevrimiçi"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Refresh"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Sayfa güncel değil gibi görünüyor."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Kullanıcı Durumu"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Kullanıcılar"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "websocket mesaj işleme"
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/uk.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/uk.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Відійшов"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Канал"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Bus комунікація"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створено"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Статус у миттєвих повідомленнях"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Останнє опитування"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Остання присутність"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Повідомлення"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Моделі"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Офлайн"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Онлайн"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Оновити"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "Сторінка, здається, застаріла."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Користувач"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Присутність користувача"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Користувачі"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "обробка повідомлень websocket"
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/vi.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/vi.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "Away"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "Kênh"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "Communication Bus"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Liên hệ"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "Tình trạng IM"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "Last Poll"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "Xuất hiện lần cuối"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "Thông báo"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "Mô hình"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "Ngoại tuyến"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "Trực tuyến"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "Refresh"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "The page appears to be out of date."
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "Người dùng hiện diện"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "xử lý thông báo websocket"
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/zh_CN.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Raymond Yu <cl_yu@hotmail.com>, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "离开"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "频道"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "通讯总线"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "联系人"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建人"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM的状态"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "最后在线"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "最后登录"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新人"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "消息"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "模型"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "离线"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "线上"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "刷新"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "该页面似乎已过期。"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "用户"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "用户上线"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "用户"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "网页登录消息处理"
|
||||
151
odoo-bringout-oca-ocb-bus/bus/i18n/zh_TW.po
Normal file
151
odoo-bringout-oca-ocb-bus/bus/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * bus
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__away
|
||||
msgid "Away"
|
||||
msgstr "離開"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__channel
|
||||
msgid "Channel"
|
||||
msgstr "群組"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_bus
|
||||
msgid "Communication Bus"
|
||||
msgstr "通信匯流排"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "聯絡人"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "創立者"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__create_date
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__display_name
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__id
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_partner__im_status
|
||||
#: model:ir.model.fields,field_description:bus.field_res_users__im_status
|
||||
msgid "IM Status"
|
||||
msgstr "IM的狀態"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus____last_update
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改於"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_poll
|
||||
msgid "Last Poll"
|
||||
msgstr "最後線上"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__last_presence
|
||||
msgid "Last Presence"
|
||||
msgstr "最後出席"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新者"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_bus__message
|
||||
msgid "Message"
|
||||
msgstr "消息"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_model
|
||||
msgid "Models"
|
||||
msgstr "模型"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__offline
|
||||
msgid "Offline"
|
||||
msgstr "離線"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields.selection,name:bus.selection__bus_presence__status__online
|
||||
msgid "Online"
|
||||
msgstr "線上"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "Refresh"
|
||||
msgstr "重新載入"
|
||||
|
||||
#. module: bus
|
||||
#. odoo-javascript
|
||||
#: code:addons/bus/static/src/services/assets_watchdog_service.js:0
|
||||
#, python-format
|
||||
msgid "The page appears to be out of date."
|
||||
msgstr "該頁面似乎已逾時"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_res_users
|
||||
msgid "User"
|
||||
msgstr "使用者"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_bus_presence
|
||||
msgid "User Presence"
|
||||
msgstr "使用者出現"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model.fields,field_description:bus.field_bus_presence__user_id
|
||||
msgid "Users"
|
||||
msgstr "使用者"
|
||||
|
||||
#. module: bus
|
||||
#: model:ir.model,name:bus.model_ir_websocket
|
||||
msgid "websocket message handling"
|
||||
msgstr "WebSocket 訊息處理"
|
||||
7
odoo-bringout-oca-ocb-bus/bus/models/__init__.py
Normal file
7
odoo-bringout-oca-ocb-bus/bus/models/__init__.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import bus
|
||||
from . import bus_presence
|
||||
from . import ir_model
|
||||
from . import ir_websocket
|
||||
from . import res_users
|
||||
from . import res_partner
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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