first commit

This commit is contained in:
root
2026-03-14 09:42:12 +00:00
commit 0adbd20c2c
10991 changed files with 1646955 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

View File

@@ -0,0 +1,33 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import hashlib
from zeep import Client
from zeep.transports import Transport
import trytond.config as config
URLS = {
'testing': 'https://api.test.mygls.%(country)s/%(service)s.svc?singleWsdl',
'production': 'https://api.mygls.%(country)s/%(service)s.svc?singleWsdl',
}
def get_client(credential, service):
url = URLS[credential.server] % {
'country': credential.country,
'service': service,
}
timeout = config.get(
'stock_package_shipping_mygls', 'requests_timeout', default=300)
return Client(url, transport=Transport(operation_timeout=timeout))
def get_request(credential, name, **kwargs):
return {
name: {
'Username': credential.username,
'Password': hashlib.sha512(credential.password.encode()).digest(),
**kwargs,
},
}

View File

@@ -0,0 +1,130 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.i18n import gettext
from trytond.model import (
MatchMixin, ModelSQL, ModelView, fields, sequence_ordered)
from trytond.pool import Pool, PoolMeta
from trytond.pyson import Eval, If
from .exceptions import MyGLSCredentialWarning
class CredentialMyGLS(sequence_ordered(), ModelSQL, ModelView, MatchMixin):
__name__ = 'carrier.credential.mygls'
company = fields.Many2One('company.company', "Company")
server = fields.Selection([
('testing', "Testing"),
('production', "Production"),
], "Server", required=True)
country = fields.Selection([
('hr', "Croatia"),
('cz', "Czechia"),
('hu', "Hungary"),
('ro', "Romania"),
('si', "Slovenia"),
('sk', "Slovakia"),
], "Country", required=True)
username = fields.Char("Username", required=True, strip=False)
password = fields.Char("Password", required=True, strip=False)
client_number = fields.Integer("Client Number", required=True)
@classmethod
def default_server(cls):
return 'testing'
@classmethod
def check_modification(
cls, mode, credentials, values=None, external=False):
pool = Pool()
Warning = pool.get('res.user.warning')
super().check_modification(
mode, credentials, values=values, external=external)
if (mode == 'write'
and external
and values.keys() & {
'server', 'username', 'password', 'client_number'}):
warning_name = Warning.format('mygls_credential', credentials)
if Warning.check(warning_name):
raise MyGLSCredentialWarning(
warning_name,
gettext('stock_package_shipping_mygls'
'.msg_mygls_credential_modified'))
class Carrier(metaclass=PoolMeta):
__name__ = 'carrier'
mygls_type_of_printer = fields.Selection([
(None, ''),
('A4_2x2', "A4 2x2"),
('A4_4x1', "A4 4x1"),
('Connect', "Connect"),
('Thermo', "Thermo"),
], "Type of Printer", sort=False, translate=False,
states={
'invisible': Eval('shipping_service') != 'mygls',
})
mygls_print_position = fields.Integer(
"Print Position",
domain=[
If(Eval('mygls_type_of_printer') == 'A4_2x2',
('mygls_print_position', 'in', [1, 2, 3, 4]),
('mygls_print_position', '=', None)),
],
states={
'required': Eval('mygls_type_of_printer') == 'A4_2x2',
'invisible': (
(Eval('mygls_type_of_printer') != 'A4_2x2')
| (Eval('shipping_service') != 'mygls')),
})
mygls_services = fields.MultiSelection([
('24h', "Service guaranteed delivery shipment in 24 Hours"),
('AOS', "Addressee Only Service"),
('CS1', "Contact Service"),
('FDS', "Flexible Delivery Service"),
('FSS', "Flexible delivery Sms Service"),
('PRS', "Pick & Return Services"),
('PSS', "Pick & Ship Service"),
('SAT', "Saturday service"),
('SBS', "Stand By Service"),
('SM1', "SMS service"),
('SM2', "SMS pre-advice"),
('T09', "Express service (T09)"),
('T10', "Express service (T10)"),
('T12', "Express service (T12)"),
('TGS', "Think Green Service"),
('XS', "Exchange Service"),
], "Services",
states={
'invisible': Eval('shipping_service') != 'mygls',
})
mygls_sms = fields.Char(
"SMS", translate=True,
states={
'invisible': Eval('shipping_service') != 'mygls',
'required': Eval('mygls_services', []).contains('SM1'),
},
help="Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#")
@classmethod
def __setup__(cls):
super().__setup__()
cls.shipping_service.selection.append(('mygls', "MyGLS"))
@classmethod
def view_attributes(cls):
return super().view_attributes() + [
("/form/separator[@id='mygls']", 'states', {
'invisible': Eval('shipping_service') != 'mygls',
}),
]
@property
def shipping_label_mimetype(self):
mimetype = super().shipping_label_mimetype
if self.shipping_service == 'mygls':
mimetype = 'application/pdf'
return mimetype

View File

@@ -0,0 +1,60 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.ui.view" id="credential_view_form">
<field name="model">carrier.credential.mygls</field>
<field name="type">form</field>
<field name="name">credential_form</field>
</record>
<record model="ir.ui.view" id="credential_view_tree">
<field name="model">carrier.credential.mygls</field>
<field name="type">tree</field>
<field name="name">credential_list</field>
</record>
<record model="ir.action.act_window" id="act_credential_form">
<field name="name">MyGLS Credentials</field>
<field name="res_model">carrier.credential.mygls</field>
</record>
<record model="ir.action.act_window.view" id="act_credential_form_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="credential_view_tree"/>
<field name="act_window" ref="act_credential_form"/>
</record>
<record model="ir.action.act_window.view" id="act_credential_form_view2">
<field name="sequence" eval="20"/>
<field name="view" ref="credential_view_form"/>
<field name="act_window" ref="act_credential_form"/>
</record>
<menuitem
parent="carrier.menu_configuration"
action="act_credential_form"
sequence="50"
id="menu_credential_form"/>
<record model="ir.model.access" id="access_carrier_credential">
<field name="model">carrier.credential.mygls</field>
<field name="perm_read" eval="False"/>
<field name="perm_write" eval="False"/>
<field name="perm_create" eval="False"/>
<field name="perm_delete" eval="False"/>
</record>
<record model="ir.model.access" id="access_carrier_credential_carrier_admin">
<field name="model">carrier.credential.mygls</field>
<field name="group" ref="carrier.group_carrier_admin"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="True"/>
<field name="perm_create" eval="True"/>
<field name="perm_delete" eval="True"/>
</record>
<record model="ir.ui.view" id="carrier_view_form">
<field name="model">carrier</field>
<field name="inherit" ref="carrier.carrier_view_form"/>
<field name="name">carrier_form</field>
</record>
</data>
</tryton>

View File

@@ -0,0 +1,11 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.exceptions import UserError, UserWarning
class MyGLSError(UserError):
pass
class MyGLSCredentialWarning(UserWarning):
pass

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,255 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr "Posició dimpressió"
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr "Serveis"
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr "SMS"
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr "Tipus dimpressora"
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr "Número de client"
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr "Empresa"
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr "País"
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr "Contrasenya"
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr "Servidor"
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr "Nom d'usuari"
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr "ID"
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
"Variables que es poden utilitzar al text de l'SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr "Credencials transportista MyGLS"
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr "Crear enviaments MyGLS pels paquets"
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr "Credencials MyGLS"
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
"Per validar l'albarà \"%(shipment)s\", heu d'afegir un correu electrònic a "
"l'adreça \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
"Per validar l'albarà \"%(shipment)s\", heu d'afegir un número de mòbil a "
"l'adreça \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
"La crida de l'API MyGLS ha fallat amb el següent missatge d'error:\n"
"%(message)s"
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr "Estàs segur que vols modificar les credencials de MyGLS?"
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
"Per validar l'albarà \"%(shipment)s\", heu d'afegir un número de telèfon o "
"mòbil a l'adreça \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
"No podeu crear una etiqueta d'enviament per l'albarà \"%(shipment)s\" perquè"
" ja té un número de referència de l'enviament."
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
"Per validar l'albarà \"%(shipment)s\", heu d'establir un codi de país a "
"l'adreça de destinació."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
"Per validar l'albarà \"%(shipment)s\", heu d'establir un codi de país a "
"l'adreça del magatzem \"%(warehouse)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
"Per validar l'albarà \"%(shipment)s\" heu d'establir una adreça al magatzem "
"\"%(warehouse)s\"."
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr "Credencials MyGLS"
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr "Servei només destinatari"
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr "Servei de contacte"
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr "Servei dintercanvi"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr "Servei exprés (T09)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr "Servei exprés (T10)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr "Servei exprés (T12)"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr "Servei de lliurament flexible"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr "Servei SMS de lliurament flexible"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr "Serveis de recollida i devolució"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr "Servei de recollida i enviament"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr "Preavís per SMS"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr "Servei SMS"
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr "Servei de dissabte"
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr "Servei de lliurament garantit en 24 hores"
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr "Servei de guàrdia"
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr "Servei de pensa en verd"
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr "MyGLS"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr "Croàcia"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr "Txèquia"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr "Hongria"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr "Romania"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr "Eslovàquia"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr "Eslovènia"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr "Producció"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr "Proves"
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr "Informació de les credencials"
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr "MyGLS"

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,256 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr "Druckposition"
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr "Dienstleistungen"
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr "SMS"
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr "Druckertyp"
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr "Kundennummer"
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr "Unternehmen"
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr "Land"
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr "Passwort"
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr "Server"
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr "Benutzername"
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr "ID"
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
"Variablen, die im Text der SMS verwendet werden können:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr "Versanddienstleister Anmeldedaten Mygls"
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr "MyGLS Versandauftrag für Pakete erstellen"
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr "MyGLS Anmeldedaten"
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
"Damit die Lieferung \"%(shipment)s\" validiert werden kann, muss eine "
"E-Mail-Adresse für Adresse \"%(address)s\" erfasst werden."
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
"Damit die Lieferung \"%(shipment)s\" validiert werden kann, muss eine "
"Mobilnummer für die Adresse \"%(address)s\" erfasst werden."
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
"Beim Aufruf der MyGLS API ist folgender Fehler aufgetreten:\n"
"%(message)s"
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr "Möchten Sie die MyGLS-Anmeldeinformationen wirklich ändern?"
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
"Damit die Lieferung \"%(shipment)s\" validiert werden kann muss eine "
"Telefonnummer oder eine Mobilnummer für die Adresse \"%(address)s\" erfasst "
"werden."
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
"Es kann kein Versandetikett für die Lieferung \"%(shipment)s\" erstellt "
"werden, weil bereits eine Versandreferenznummer vorhanden ist."
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
"Damit die Lieferung \"%(shipment)s\" validiert werden kann, muss ein Land "
"auf der Empfängeradresse erfasst werden."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
"Damit die Lieferung \"%(shipment)s\" validiert werden kann, muss ein Land "
"für Adresse des Logistikstandorts \"%(warehouse)s\" erfasst werden."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
"Damit die Lieferung \"%(shipment)s\" validiert werden kann, muss eine "
"Adresse für den Logistikstandort \"%(warehouse)s\" erfasst werden."
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr "MyGLS Anmeldedaten"
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr "Zusatzleistung Eigenhändig"
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr "Zusatzleistung Anruf"
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr "Austausch"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr "Express (T09)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr "Express (T10)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr "Express (T12)"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr "FlexDeliveryService"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr "FlexDeliverySMSService"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr "Pick&ReturnService"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr "Pick&ShipService"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr "SMS Vorankündigung"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr "Zusatzleistung SMS"
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr "Samstagszustellung"
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr "Garantierte Zustellung innerhalb von 24 Stunden"
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr "Abholung durch den Empfänger"
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr "ThinkGreenService"
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr "MyGLS"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr "Kroatien"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr "Tschechien"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr "Ungarn"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr "Rumänien"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr "Slowakei"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr "Slowenien"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr "Produktivumgebung"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr "Testumgebung"
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr "Benutzeranmeldeinformationen"
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr "MyGLS"

View File

@@ -0,0 +1,255 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr "Posición de impresión"
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr "Servicios"
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr "SMS"
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr "Tipo de impresora"
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr "Número de cliente"
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr "Empresa"
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr "País"
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr "Contraseña"
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr "Servidor"
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr "Nombre de usuario"
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr "ID"
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
"Variables que se pueden utilizar en el texto del SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr "Credenciales transportista MyGLS"
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr "Crear envíos MyGLS para paquetes"
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr "Credenciales MyGLS"
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
"Para validar el albarán \"%(shipment)s\" debe agregar un correo electrónico "
"a la dirección \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
"Para validar el albarán \"%(shipment)s\" debe agregar un número de móvil a "
"la dirección \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
"La llamada de la API de MyGLS ha fallado con el siguiente mensaje de error:\n"
"%(message)s"
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr "¿Está seguro de que desea modificar las credenciales de MyGLS?"
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
"Para validar el albarán \"%(shipment)s\" debe agregar un número de teléfono "
"o móvil la dirección \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
"No puedes crear una etiqueta de envío para el albarán \"%(shipment)s\" "
"porque ya tiene un número de referencia del envío."
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
"Para validar el albarán \"%(shipment)s\" debe establecer un código de país "
"en la dirección de destino."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
"Para validar el albarán \"%(shipment)s\" debe establecer un código de país "
"en la dirección del almacén \"%(warehouse)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
"Para validar el albarán \"%(shipment)s\" debe establecer una dirección en el"
" almacén \"%(warehouse)s\"."
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr "Credenciales MyGLS"
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr "Servicio solo destinatario"
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr "Servicio de contacto"
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr "Servicio de intercambio"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr "Servicio exprés (T09)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr "Servicio exprés (T10)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr "Servicio exprés (T12)"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr "Servicio de entrega flexible"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr "Servicio SMS de entrega flexible"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr "Servicios de recogida y devolución"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr "Servicio de recogida y envío"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr "Preaviso por SMS"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr "Servicio SMS"
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr "Servicio de sábado"
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr "Servicio de entrega garantizada en 24 horas"
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr "Servicio de guardia"
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr "Servicio de piensa en verde"
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr "MyGLS"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr "Croacia"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr "Chequia"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr "Hungría"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr "Rumanía"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr "Eslovaquia"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr "Eslovenia"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr "Producción"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr "Pruebas"
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr "Información de las credenciales"
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr "MyGLS"

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,255 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr "Position d'impression"
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr "Services"
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr "SMS"
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr "Type d'imprimante"
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr "Numéro client"
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr "Société"
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr "Pays"
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr "Mot de passe"
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr "Serveur"
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr "Nom d'utilisateur"
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr "ID"
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
"Variables utilisables dans le texte du SMS :\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr "Identifiant de transporteur Mygls"
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr "Créer la livraison MyGLS pour les emballages"
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr "Identifiants MyGLS"
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
"Pour valider l'expédition « %(shipment)s », vous devez ajouter une adresse "
"électronique à l'adresse « %(address)s »."
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
"Pour valider l'expédition « %(shipment)s », vous devez ajouter un numéro de "
"téléphone mobile pour l'adresse « %(address)s »."
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
"L'appel de l'API MyGLS a échoué avec le message d'erreur suivant :\n"
"%(message)s"
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr "Êtes-vous sûr de vouloir modifier les identifiants de MyGLS ?"
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
"Pour valider l'expédition « %(shipment)s », vous devez ajouter un numéro de "
"téléphone ou mobile à l'adresse « %(address)s »."
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
"Vous ne pouvez pas créer d'étiquette de livraison pour l'expédition "
"« %(shipment)s » car elle a déjà un numéro de référence de livraison."
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
"Pour valider l'expédition « %(shipment)s », vous devez remplir un code pays "
"à l'adresse de destination."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
"Pour valider l'expédition « %(shipment)s », vous devez remplir un code pays "
"à l'adresse de l'entrepôt « %(warehouse)s »."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
"Pour validé l'expédition « %(shipment)s », vous devez définir une adresse "
"pour l'entrepôt « %(warehouse)s »."
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr "Identifiants MyGLS"
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr "Service au destinataire uniquement"
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr "Service de contact"
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr "Service d'échange"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr "Service express (T09)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr "Service express (T10)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr "Service express (T12)"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr "Service de livraison flexible"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr "Service de livraison Sms flexible"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr "Services de prélèvement et de retour"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr "Service de prélèvement et d'expédition"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr "Pré-avis SMS"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr "Service SMS"
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr "Service du samedi"
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr "Service de livraison garantie expédition en 24 heures"
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr "Service d'attente"
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr "Service penser vert"
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr "MyGLS"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr "Croatie"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr "Tchéquie"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr "Hongrie"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr "Roumanie"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr "Slovaquie"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr "Slovénie"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr "Production"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr "Essai"
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr "Informations d'identification"
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr "MyGLS"

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr "Perusahaan"
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr "Produksi"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr "Testing"
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,239 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
"Non puoi creare un'etichetta di spedizione per la spedizione "
"\"%(shipment)s\" perché ha già un numero di riferimento."
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,255 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr "Afdrukpositie"
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr "Diensten"
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr "SMS"
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr "Type printer"
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr "Klantnummer"
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr "Bedrijf"
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr "Land"
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr "Wachtwoord"
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr "Server"
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr "Gebruikersnaam"
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr "ID"
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
"Variabelen die gebruikt kunnen worden in de tekst van de SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr "Transporteur aanmeldgegevens MyGLS"
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr "Creëer MyGLS-verzending voor pakketten"
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr "MyGLS-referentie"
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
"Om zending \"%(shipment)s\" te valideren, moet u een e-mailadres toevoegen "
"voor adres \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
"Om zending \"%(shipment)s\" te valideren, moet u een mobiel nummer toevoegen"
" aan adres\"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
"Bij het aanroepen van de MyGLS API is de volgende fout opgetreden:\n"
"%(message)s"
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr "Weet u zeker dat u de inloggegevens bij MyGLS wilt wijzigen?"
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
"Om zending \"%(shipment)s\"\" te valideren, moet u een telefoon- of mobiel "
"nummer toevoegen aan adres \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
"U kunt geen verzendlabel maken voor verzending \"%(shipment)s\", omdat deze "
"al een referentienummer heeft."
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
"Om verzending \"%(shipment)s\" te valideren, moet u een landcode instellen "
"op het bestemmingsadres."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
"Om verzending \"%(shipment)s\" te valideren, moet u een landcode instellen "
"op het adres van het magazijn \"%(warehouse)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
"Om zending \"%(shipment)s\" te valideren, moet u een adres voor magazijn "
"\"%(warehouse)s\" instellen."
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr "MijnGLS-referentie"
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr "Service alleen voor geadresseerde"
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr "Neem contact op met de dienst"
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr "Wissel dienst"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr "Expresdienst (T09)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr "Expresdienst (T10)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr "Expresdienst (T12)"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr "Flexibele bezorgservice"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr "Flexibele levering Sms-service"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr "Pick & Return-services"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr "Ophaal- en verzendservice"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr "SMS pre-advies"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr "SMS-dienst"
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr "Zaterdagdienst"
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr "Service gegarandeerde levering verzending in 24 uur"
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr "Stand-by-service"
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr "Milieuvriendelijke Dienst"
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr "MyGLS"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr "Kroatië"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr "Tsjechië"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr "Hongarije"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr "Roemenië"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr "Slowakije"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr "Slovenië"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr "Productie"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr "Testen"
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr "Referentiegegevens"
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr "MyGLS"

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,255 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr "Poziţia Printare"
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr "Servicii"
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr "SMS"
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr "Tip de Imprimanta"
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr "Număr Client"
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr "Societate"
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr "Țară"
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr "Parola"
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr "Server"
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr "Utilizator"
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr "ID"
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
"Variabile care pot fi utilizate în textul SMS-ului:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr "Creare Expediere MyGLS pentru Colete"
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr "Credenţiale MyGLS"
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
"Pentru a valida expedierea \"%(shipment)s\" trebuie adăugat un e-mail pentru"
" adresă \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
"Pentru a valida expedierea\"%(shipment)s\" trebuie adăugat un mobil pentru "
"adresa \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
"Interogarea API MyGLS a eşuat cu următorul mesaj:\n"
"%(message)s"
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr "Sigur doriţi sa modificaţi credenţialele MyGLS?"
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
"Pentru a valida expedierea \"%(shipment)s\" trebuie adăugat un număr de "
"telefon sau mobil pentru adresa \"%(address)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
"Nu se poate crea o eticheta pentru expedierea \"%(shipment)s\" pentru că are"
" deja un număr de referinţa."
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
"Pentru a valida expedierea \"%(shipment)s\" trebuie sa fie setat un cod de "
"ţara la adresă al destinatarului."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
"Pentru a valida expedierea \"%(shipment)s\" trebuie sa fie setat un cod de "
"ţara la adresa al depozitului \"%(warehouse)s\"."
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
"Pentru a valida expedierea \"%(shipment)s\" trebuie setata o adresa la "
"depozit \"%(warehouse)s\"."
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr "Credenţiale MyGLS"
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr "Serviciul Exclusiv Destinatarului"
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr "Serviciul Contact"
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr "Serviciul de Schimb"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr "Serviciul Expres (T9)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr "Serviciul Expres (T10)"
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr "Serviciul Expres (T12)"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr "Serviciul Livrare Flexibila"
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr "Serviciul Livrare Flexibila cu SMS"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr "Serviciul Ridicare & Retur"
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr "Serviciul Ridicare & Expediere"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr "Avertizare în prealabil prin SMS"
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr "Serviciul SMS"
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr "Serviciul Sămbata"
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr "Serviciul cu garanţie livrării în 24 Ore"
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr "Serviciul În Aşteptare"
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr "Serviciul Gândeşte Verde"
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr "MyGLS"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr "Croaţia"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr "Cehia"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr "Ungaria"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr "România"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr "Slovacia"
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr "Slovenia"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr "Producţie"
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr "Testare"
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr "Informaţii Credenţiale"
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr "MyGLS"

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,237 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:carrier,mygls_print_position:"
msgid "Print Position"
msgstr ""
msgctxt "field:carrier,mygls_services:"
msgid "Services"
msgstr ""
msgctxt "field:carrier,mygls_sms:"
msgid "SMS"
msgstr ""
msgctxt "field:carrier,mygls_type_of_printer:"
msgid "Type of Printer"
msgstr ""
msgctxt "field:carrier.credential.mygls,client_number:"
msgid "Client Number"
msgstr ""
msgctxt "field:carrier.credential.mygls,company:"
msgid "Company"
msgstr ""
msgctxt "field:carrier.credential.mygls,country:"
msgid "Country"
msgstr ""
msgctxt "field:carrier.credential.mygls,password:"
msgid "Password"
msgstr ""
msgctxt "field:carrier.credential.mygls,server:"
msgid "Server"
msgstr ""
msgctxt "field:carrier.credential.mygls,username:"
msgid "Username"
msgstr ""
msgctxt "field:stock.package,mygls_shipping_id:"
msgid "ID"
msgstr ""
msgctxt "help:carrier,mygls_sms:"
msgid ""
"Variables that can be used in the text of the SMS:\n"
"ParcelNr#, #COD#, #PickupDate#, #From_Name#, #ClientRef#"
msgstr ""
msgctxt "model:carrier.credential.mygls,string:"
msgid "Carrier Credential Mygls"
msgstr ""
msgctxt "model:ir.action,name:act_create_shipping_mygls_wizard"
msgid "Create MyGLS Shipping for Packages"
msgstr ""
msgctxt "model:ir.action,name:act_credential_form"
msgid "MyGLS Credentials"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_email_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add an email for address "
"\"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a mobile number for "
"address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_mygls_api_error"
msgid ""
"MyGLS API call failed with the following error message:\n"
"%(message)s"
msgstr ""
msgctxt "model:ir.message,text:msg_mygls_credential_modified"
msgid "Are you sure you want to modify MyGLS credentials?"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_phone_mobile_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must add a phone or mobile number "
"for address \"%(address)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipment_has_shipping_reference_number"
msgid ""
"You cannot create a shipping label for shipment \"%(shipment)s\" because it "
"already has a shipping reference number."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_shipping_to_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"destination address."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_country_code_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set a country code to the "
"address of warehouse \"%(warehouse)s\"."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_warehouse_address_required"
msgid ""
"To validate shipment \"%(shipment)s\" you must set an address on warehouse "
"\"%(warehouse)s\"."
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_credential_form"
msgid "MyGLS Credentials"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Addressee Only Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Contact Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Exchange Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T09)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T10)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Express service (T12)"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible Delivery Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Flexible delivery Sms Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Return Services"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Pick & Ship Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS pre-advice"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "SMS service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Saturday service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Service guaranteed delivery shipment in 24 Hours"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Stand By Service"
msgstr ""
msgctxt "selection:carrier,mygls_services:"
msgid "Think Green Service"
msgstr ""
msgctxt "selection:carrier,shipping_service:"
msgid "MyGLS"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Croatia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Czechia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Hungary"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Romania"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovakia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,country:"
msgid "Slovenia"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Production"
msgstr ""
msgctxt "selection:carrier.credential.mygls,server:"
msgid "Testing"
msgstr ""
msgctxt "view:carrier.credential.mygls:"
msgid "Credential Information"
msgstr ""
msgctxt "view:carrier:"
msgid "MyGLS"
msgstr ""

View File

@@ -0,0 +1,35 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data grouped="1">
<record model="ir.message" id="msg_mygls_credential_modified">
<field name="text">Are you sure you want to modify MyGLS credentials?</field>
</record>
<record model="ir.message" id="msg_warehouse_address_required">
<field name="text">To validate shipment "%(shipment)s" you must set an address on warehouse "%(warehouse)s".</field>
</record>
<record model="ir.message" id="msg_warehouse_address_country_code_required">
<field name="text">To validate shipment "%(shipment)s" you must set a country code to the address of warehouse "%(warehouse)s".</field>
</record>
<record model="ir.message" id="msg_shipping_to_address_country_code_required">
<field name="text">To validate shipment "%(shipment)s" you must set a country code to the destination address.</field>
</record>
<record model="ir.message" id="msg_phone_mobile_required">
<field name="text">To validate shipment "%(shipment)s" you must add a phone or mobile number for address "%(address)s".</field>
</record>
<record model="ir.message" id="msg_email_required">
<field name="text">To validate shipment "%(shipment)s" you must add an email for address "%(address)s".</field>
</record>
<record model="ir.message" id="msg_mobile_required">
<field name="text">To validate shipment "%(shipment)s" you must add a mobile number for address "%(address)s".</field>
</record>
<record model="ir.message" id="msg_shipment_has_shipping_reference_number">
<field name="text">You cannot create a shipping label for shipment "%(shipment)s" because it already has a shipping reference number.</field>
</record>
<record model="ir.message" id="msg_mygls_api_error">
<field name="text">MyGLS API call failed with the following error message:
%(message)s</field>
</record>
</data>
</tryton>

View File

@@ -0,0 +1,285 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from io import BytesIO
from itertools import zip_longest
from pypdf import PdfReader, PdfWriter
from trytond.i18n import gettext
from trytond.model import fields
from trytond.model.exceptions import AccessError
from trytond.modules.stock_package_shipping.exceptions import (
PackingValidationError)
from trytond.modules.stock_package_shipping.stock import address_name
from trytond.pool import Pool, PoolMeta
from trytond.transaction import Transaction
from trytond.wizard import StateAction, StateTransition, Wizard
from .api import get_client, get_request
from .exceptions import MyGLSError
def iter_pdf_pages(document):
if hasattr(document, 'pages'):
yield from document.pages
else:
for i in range(document.getNumPages()):
yield document.getPage(i)
class Package(metaclass=PoolMeta):
__name__ = 'stock.package'
mygls_shipping_id = fields.Integer("ID", readonly=True)
@classmethod
def copy(cls, packages, default=None):
default = {} if default is None else default.copy()
default.setdefault('mygls_shipping_id')
return super().copy(packages, default=default)
class ShippingMyGLSMixin:
__slots__ = ()
def get_mygls_credential(self):
pool = Pool()
Credential = pool.get('carrier.credential.mygls')
pattern = self._get_mygls_credential_pattern()
for credential in Credential.search([]):
if credential.match(pattern):
return credential
def _get_mygls_credential_pattern(self):
return {
'company': self.company.id,
'country': self.shipping_warehouse.address.country.code.lower(),
}
def validate_packing_mygls(self, usage=None):
warehouse = self.shipping_warehouse
if not warehouse.address:
raise PackingValidationError(
gettext('stock_package_shipping_mygls'
'.msg_warehouse_address_required',
shipment=self.rec_name,
warehouse=warehouse.rec_name))
if not warehouse.address.country or not warehouse.address.country.code:
raise PackingValidationError(
gettext('stock_package_shipping_mygls'
'.msg_warehouse_address_country_code_required',
shipment=self.rec_name,
warehouse=warehouse.rec_name))
shipping_to_address = self.shipping_to_address
if (not shipping_to_address.country
or not shipping_to_address.country.code):
raise PackingValidationError(
gettext('stock_package_shipping_mygls'
'.msg_shipping_to_address_country_code_required',
shipping=self.rec_name))
if (self.carrier.mygls_services
and 'CS1' in self.carrier.mygls_services):
if not shipping_to_address.contact_mechanism_get(
{'phone', 'mobile'}, usage=usage):
raise PackingValidationError(
gettext('stock_package_shipping_mygls'
'.msg_phone_mobile_required',
shipment=self.rec_name,
address=shipping_to_address.rec_name))
if (self.carrier.mygls_services
and 'FDS' in self.carrier.mygls_services):
if not shipping_to_address.contact_mechanism_get(
'email', usage=usage):
raise PackingValidationError(
gettext('stock_package_shipping_mygls'
'.msg_email_required',
shipment=self.rec_name,
address=shipping_to_address.rec_name))
if (self.carrier.mygls_services
and ('FSS' in self.carrier.mygls_services
or 'SM1' in self.carrier.mygls_services
or 'SM2' in self.carrier.mygls_services)):
if not shipping_to_address.contact_mechanism_get(
'mobile', usage=usage):
raise PackingValidationError(
gettext('stock_package_shipping_mygls'
'.msg_mobile_required',
shipment=self.rec_name,
address=shipping_to_address.rec_name))
class ShipmentCreateShipping(metaclass=PoolMeta):
__name__ = 'stock.shipment.create_shipping'
mygls = StateAction(
'stock_package_shipping_mygls.act_create_shipping_mygls_wizard')
def transition_start(self):
next_state = super().transition_start()
if self.record.carrier.shipping_service == 'mygls':
next_state = 'mygls'
return next_state
def do_mygls(self, action):
ctx = Transaction().context
return action, {
'model': ctx['active_model'],
'id': ctx['active_id'],
'ids': [ctx['active_id']],
}
class ShipmentCreateShippingMyGLS(Wizard):
__name__ = 'stock.shipment.create_shipping.mygls'
start = StateTransition()
def transition_start(self):
pool = Pool()
Package = pool.get('stock.package')
shipment = self.record
if shipment.shipping_reference:
raise AccessError(
gettext('stock_package_shipping_mygls'
'.msg_shipment_has_shipping_reference_number',
shipment=shipment.rec_name))
credential = shipment.get_mygls_credential()
client = get_client(credential, 'ParcelService')
carrier = shipment.carrier
packages = shipment.root_packages
parcel = self.get_parcel(shipment, packages, credential)
response = client.service.PrintLabels(**get_request(
credential, 'printLabelsRequest',
ParcelList=[{'Parcel': parcel}],
TypeOfPrinter=carrier.mygls_type_of_printer,
PrintPosition=carrier.mygls_print_position))
if response.PrintLabelsErrorList:
message = "\n".join(
e.ErrorDescription
for e in response.PrintLabelsErrorList.ErrorInfo)
raise MyGLSError(
gettext('stock_package_shipping_mygls.msg_mygls_api_error',
message=message))
labels = []
reader = PdfReader(BytesIO(response.Labels))
for i, page in enumerate(iter_pdf_pages(reader)):
pdf = PdfWriter()
label = BytesIO()
pdf.add_page(page)
pdf.write(label)
if carrier.mygls_type_of_printer in {'A4_2x2', 'A4_4x1'}:
if carrier.mygls_type_of_printer == 'A4_2x2':
gap = carrier.mygls_print_position - 1
else:
gap = 0
max_label = ((i + 1) * 4) - gap
n = 4
if i == 0:
n -= gap
if max_label > len(packages):
n -= max_label - len(packages)
labels.extend([label] * n)
else:
labels.append(label)
labels_info = response.PrintLabelsInfoList.PrintLabelsInfo
for package, label, info in zip_longest(
packages, labels, labels_info):
package.mygls_shipping_id = info.ParcelId
package.shipping_label = fields.Binary.cast(label.getvalue())
package.shipping_label_mimetype = carrier.shipping_label_mimetype
package.shipping_reference = info.ParcelNumber
if not shipment.shipping_reference:
shipment.shipping_reference = info.ParcelNumber
Package.save(packages)
shipment.save()
return 'end'
def get_parcel(self, shipment, packages, credential):
services = []
if shipment.carrier.mygls_services:
for code in shipment.carrier.mygls_services:
services.append({'Service': self.get_service(code, shipment)})
return {
'ClientNumber': credential.client_number,
'ClientReference': shipment.number,
'Count': len(packages),
'Content': shipment.shipping_description,
'PickupAddress': self.get_address(
shipment.company.party,
shipment.shipping_warehouse.address),
'DeliveryAddress': self.get_address(
shipment.shipping_to,
shipment.shipping_to_address),
'ServiceList': services,
}
def get_address(self, party, address, usage=None):
if address.street_unstructured:
street_name = address.street_single_line
house_number = ''
house_number_info = ''
else:
street_name = address.street_name or ''
house_number = address.numbers or ''
house_number_info = address.building_name or ''
phone = address.contact_mechanism_get({'phone', 'mobile'}, usage=usage)
email = address.contact_mechanism_get('email', usage=usage)
name = address_name(address, party)
contact_name = party.full_name if party.full_name != name else None
return {
'Name': name,
'Street': street_name,
'HouseNumber': house_number,
'HouseNumberInfo': house_number_info,
'City': address.city,
'ZipCode': address.postal_code,
'CountryIsoCode': address.country.code,
'ContactName': contact_name,
'ContactPhone': phone.value if phone else None,
'ContactEmail': email.value if email else None,
}
def get_service(self, code, shipment, usage=None):
pool = Pool()
Carrier = pool.get('carrier')
service = {'Code': code}
shipping_to_address = shipment.shipping_to_address
if code == 'AOS':
service['AOSParameter'] = shipment.shipping_to.full_name,
elif code == 'CS1':
phone = shipping_to_address.contact_mechanism_get(
{'phone', 'mobile'}, usage=usage)
service['CS1Parameter'] = phone.value
elif code == 'FDS':
email = shipping_to_address.contact_mechanism_get(
'email', usage=usage)
service['FDSParameter'] = email.value
elif code == 'FSS':
mobile = shipping_to_address.contact_mechanism_get(
'mobile', usage=usage)
service['FSSParameter'] = mobile.value
elif code == 'SM1':
if shipment.shipping_to.lang:
lang_code = shipment.shipping_to.lang.code
else:
lang_code = None
with Transaction().set_context(language=lang_code):
carrier = Carrier(shipment.carrier.id)
mobile = shipping_to_address.contact_mechanism_get(
'mobile', usage=usage)
service['SM1Parameter'] = '|'.join([
mobile.value, carrier.mygls_sms])
elif code == 'SM2':
mobile = shipping_to_address.contact_mechanism_get(
'mobile', usage=usage)
service['SM1Parameter'] = mobile.value
return service

View File

@@ -0,0 +1,11 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.action.wizard" id="act_create_shipping_mygls_wizard">
<field name="name">Create MyGLS Shipping for Packages</field>
<field name="wiz_name">stock.shipment.create_shipping.mygls</field>
</record>
</data>
</tryton>

View File

@@ -0,0 +1,2 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

View File

@@ -0,0 +1,205 @@
=====================================
Stock Package Shipping MyGLS Scenario
=====================================
Imports::
>>> import os
>>> import uuid
>>> from decimal import Decimal
>>> from proteus import Model
>>> from trytond.modules.account.tests.tools import (
... create_chart, create_fiscalyear, get_accounts)
>>> from trytond.modules.account_invoice.tests.tools import (
... set_fiscalyear_invoice_sequences)
>>> from trytond.modules.company.tests.tools import create_company, get_company
>>> from trytond.tests.tools import activate_modules
Activate modules::
>>> config = activate_modules(
... ['stock_package_shipping_mygls', 'sale', 'sale_shipment_cost'],
... create_company, create_chart)
>>> Address = Model.get('party.address')
>>> Carrier = Model.get('carrier')
>>> CarrierSelection = Model.get('carrier.selection')
>>> Country = Model.get('country.country')
>>> Credential = Model.get('carrier.credential.mygls')
>>> Inventory = Model.get('stock.inventory')
>>> Location = Model.get('stock.location')
>>> Party = Model.get('party.party')
>>> ProductCategory = Model.get('product.category')
>>> ProductTemplate = Model.get('product.template')
>>> ProductUom = Model.get('product.uom')
>>> Sale = Model.get('sale.sale')
Get company::
>>> company = get_company()
Create fiscal year::
>>> fiscalyear = set_fiscalyear_invoice_sequences(create_fiscalyear())
>>> fiscalyear.click('create_period')
Get accounts::
>>> accounts = get_accounts()
Create countries::
>>> hungary = Country(code='HU', name="Hungary")
>>> hungary.save()
Create parties::
>>> customer = Party(name='Customer')
>>> customer.save()
>>> customer_address = customer.addresses.new()
>>> customer_address.street = "Európa u., 2"
>>> customer_address.postal_code = "2351"
>>> customer_address.city = "Alsónémedi"
>>> customer_address.country = hungary
>>> customer_address.save()
>>> customer_phone = customer.contact_mechanisms.new()
>>> customer_phone.type = 'phone'
>>> customer_phone.value = "+36701234567"
>>> customer_phone.save()
Set the warehouse address::
>>> warehouse, = Location.find([('type', '=', 'warehouse')])
>>> company_address = Address()
>>> company_address.party = company.party
>>> company_address.street = "Európa u., 2"
>>> company_address.postal_code = "2351"
>>> company_address.city = "Alsónémedi"
>>> company_address.country = hungary
>>> company_address.save()
>>> company_phone = company.party.contact_mechanisms.new()
>>> company_phone.type = 'phone'
>>> company_phone.value = "+36701234567"
>>> company_phone.save()
>>> warehouse.address = company_address
>>> warehouse.save()
Create account category::
>>> account_category = ProductCategory(name="Account Category")
>>> account_category.accounting = True
>>> account_category.account_expense = accounts['expense']
>>> account_category.account_revenue = accounts['revenue']
>>> account_category.save()
Create product::
>>> unit, = ProductUom.find([('name', '=', 'Unit')])
>>> template = ProductTemplate()
>>> template.name = 'product'
>>> template.default_uom = unit
>>> template.type = 'goods'
>>> template.salable = True
>>> template.list_price = Decimal('10')
>>> template.account_category = account_category
>>> template.save()
>>> product, = template.products
Create an Inventory::
>>> storage, = Location.find([
... ('code', '=', 'STO'),
... ])
>>> inventory = Inventory()
>>> inventory.location = storage
>>> inventory_line = inventory.lines.new(product=product)
>>> inventory_line.quantity = 100.0
>>> inventory_line.expected_quantity = 0.0
>>> inventory.click('confirm')
>>> inventory.state
'done'
Create Package Type::
>>> PackageType = Model.get('stock.package.type')
>>> box = PackageType(name='Box')
>>> box.save()
Create a MyGLS carrier::
>>> credential = Credential()
>>> credential.company = company
>>> credential.server = 'testing'
>>> credential.country = 'hu'
>>> credential.username = os.getenv('MYGLS_USERNAME')
>>> credential.password = os.getenv('MYGLS_PASSWORD')
>>> credential.client_number = int(os.getenv('MYGLS_CLIENT_NUMBER'))
>>> credential.save()
>>> template = ProductTemplate()
>>> template.name = "GLS"
>>> template.default_uom = unit
>>> template.type = 'service'
>>> template.salable = True
>>> template.list_price = Decimal(20)
>>> template.account_category = account_category
>>> template.save()
>>> carrier_product, = template.products
>>> gls = Party(name="GLS")
>>> gls.save()
>>> carrier = Carrier()
>>> carrier.party = gls
>>> carrier.carrier_product = carrier_product
>>> carrier.shipping_service = 'mygls'
>>> carrier.mygls_type_of_printer = 'A4_2x2'
>>> carrier.mygls_print_position = 3
>>> carrier.mygls_services = ['CS1', 'TGS']
>>> carrier.save()
Create a sale and thus a shipment::
>>> sale = Sale()
>>> sale.party = customer
>>> sale.shipment_address = customer_address
>>> sale.invoice_method = 'order'
>>> sale.carrier = carrier
>>> sale_line = sale.lines.new()
>>> sale_line.product = product
>>> sale_line.quantity = 1.0
>>> sale_line = sale.lines.new()
>>> sale_line.product = product
>>> sale_line.quantity = 1.0
>>> sale.click('quote')
>>> sale.click('confirm')
>>> sale.click('process')
Create the packages and ship the shipment::
>>> shipment, = sale.shipments
>>> shipment.click('assign_force')
>>> shipment.click('pick')
>>> shipment.shipping_description = str(uuid.uuid4())
>>> pack = shipment.packages.new(type=box)
>>> pack_moves = pack.moves.find([])
>>> pack.moves.append(pack_moves[0])
>>> pack = shipment.packages.new(type=box)
>>> pack.moves.append(pack_moves[1])
>>> shipment.click('pack')
>>> create_shipping = shipment.click('create_shipping')
>>> shipment.reload()
>>> bool(shipment.shipping_reference)
True
>>> pack, _ = shipment.root_packages
>>> pack.shipping_label is not None
True
>>> pack.shipping_label_mimetype
'application/pdf'
>>> pack.mygls_shipping_id is not None
True
>>> bool(pack.shipping_reference)
True

View File

@@ -0,0 +1,12 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.tests.test_tryton import ModuleTestCase
class StockPackageShippingMyglsTestCase(ModuleTestCase):
'Test Stock Package Shipping Mygls module'
module = 'stock_package_shipping_mygls'
del ModuleTestCase

View File

@@ -0,0 +1,16 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import os
from trytond.tests.test_tryton import TEST_NETWORK, load_doc_tests
def load_tests(*args, **kwargs):
if (not TEST_NETWORK
or not (os.getenv('MYGLS_USERNAME')
and os.getenv('MYGLS_PASSWORD')
and os.getenv('MYGLS_CLIENT_NUMBER'))):
kwargs.setdefault('skips', set()).add(
'scenario_stock_package_shipping_mygls.rst')
return load_doc_tests(__name__, __file__, *args, **kwargs)

View File

@@ -0,0 +1,24 @@
[tryton]
version=7.8.0
depends:
carrier
ir
stock
stock_package
stock_package_shipping
xml:
carrier.xml
stock.xml
message.xml
[register]
model:
carrier.CredentialMyGLS
carrier.Carrier
stock.Package
wizard:
stock.ShipmentCreateShipping
stock.ShipmentCreateShippingMyGLS
[register_mixin]
stock.ShippingMyGLSMixin: trytond.modules.stock_package_shipping.stock.ShippingMixin

View File

@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="/form/field[@name='shipping_service']" position="after">
<separator string="MyGLS" colspan="4" id="mygls"/>
<label name="mygls_type_of_printer"/>
<field name="mygls_type_of_printer"/>
<label name="mygls_print_position"/>
<field name="mygls_print_position"/>
<label name="mygls_services"/>
<field name="mygls_services" colspan="3"/>
<label name="mygls_sms"/>
<field name="mygls_sms" colspan="3"/>
</xpath>
</data>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form cursor="server">
<label name="company"/>
<field name="company"/>
<label name="sequence"/>
<field name="sequence"/>
<label name="server"/>
<field name="server"/>
<label name="country"/>
<field name="country"/>
<separator string="Credential Information" colspan="4" id="credential_info"/>
<label name="username"/>
<field name="username"/>
<label name="password"/>
<field name="password" widget="password"/>
<label name="client_number"/>
<field name="client_number" grouping="0" width="20"/>
</form>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tree sequence="sequence">
<field name="company" expand="1"/>
<field name="country"/>
<field name="username" expand="2"/>
<field name="server"/>
</tree>