Compiled es translation of issue #1267 - Chat widget error "chat notice || Translation 'es' needed!".
This commit is contained in:
parent
1ae062f144
commit
243f8586e7
3 changed files with 81 additions and 73 deletions
|
@ -184,7 +184,6 @@ do($ = window.jQuery, window) ->
|
|||
'<strong>Chat</strong> with us!': '<strong>Chatte</strong> mit uns!'
|
||||
'Scroll down to see new messages': 'Scrolle nach unten um neue Nachrichten zu sehen'
|
||||
'Online': 'Online'
|
||||
'Online': 'Online'
|
||||
'Offline': 'Offline'
|
||||
'Connecting': 'Verbinden'
|
||||
'Connection re-established': 'Verbindung wiederhergestellt'
|
||||
|
@ -197,11 +196,10 @@ do($ = window.jQuery, window) ->
|
|||
'Since you didn\'t respond in the last %s minutes your conversation with <strong>%s</strong> got closed.': 'Da Sie in den letzten %s Minuten nichts geschrieben haben wurde Ihre Konversation mit <strong>%s</strong> geschlossen.'
|
||||
'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Da Sie in den letzten %s Minuten nichts geschrieben haben wurde Ihre Konversation geschlossen.'
|
||||
'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Es tut uns leid, es dauert länger als erwartet, um einen freien Platz zu erhalten. Bitte versuchen Sie es zu einem späteren Zeitpunkt noch einmal oder schicken Sie uns eine E-Mail. Vielen Dank!'
|
||||
'es'
|
||||
'es':
|
||||
'<strong>Chat</strong> with us!': '<strong>Chatee</strong> con nosotros!'
|
||||
'Scroll down to see new messages': 'Haga scroll hacia abajo para ver nuevos mensajes'
|
||||
'Online': 'En linea'
|
||||
'Online': 'En linea'
|
||||
'Offline': 'Desconectado'
|
||||
'Connecting': 'Conectando'
|
||||
'Connection re-established': 'Conexión restablecida'
|
||||
|
@ -218,7 +216,6 @@ do($ = window.jQuery, window) ->
|
|||
'<strong>Chat</strong> with us!': '<strong>Chattez</strong> avec nous!'
|
||||
'Scroll down to see new messages': 'Faites défiler pour lire les nouveaux messages'
|
||||
'Online': 'En-ligne'
|
||||
'Online': 'En-ligne'
|
||||
'Offline': 'Hors-ligne'
|
||||
'Connecting': 'Connexion en cours'
|
||||
'Connection re-established': 'Connexion rétablie'
|
||||
|
@ -235,7 +232,6 @@ do($ = window.jQuery, window) ->
|
|||
'<strong>Chat</strong> with us!': '发起<strong>即时对话</strong>!'
|
||||
'Scroll down to see new messages': '向下滚动以查看新消息'
|
||||
'Online': '在线'
|
||||
'Online': '在线'
|
||||
'Offline': '离线'
|
||||
'Connecting': '连接中'
|
||||
'Connection re-established': '正在重新建立连接'
|
||||
|
@ -252,7 +248,6 @@ do($ = window.jQuery, window) ->
|
|||
'<strong>Chat</strong> with us!': '開始<strong>即時對话</strong>!'
|
||||
'Scroll down to see new messages': '向下滑動以查看新訊息'
|
||||
'Online': '線上'
|
||||
'Online': '線上'
|
||||
'Offline': '离线'
|
||||
'Connecting': '連線中'
|
||||
'Connection re-established': '正在重新建立連線中'
|
||||
|
|
|
@ -1,64 +1,3 @@
|
|||
if (!window.zammadChatTemplates) {
|
||||
window.zammadChatTemplates = {};
|
||||
}
|
||||
window.zammadChatTemplates["agent"] = function (__obj) {
|
||||
if (!__obj) __obj = {};
|
||||
var __out = [], __capture = function(callback) {
|
||||
var out = __out, result;
|
||||
__out = [];
|
||||
callback.call(this);
|
||||
result = __out.join('');
|
||||
__out = out;
|
||||
return __safe(result);
|
||||
}, __sanitize = function(value) {
|
||||
if (value && value.ecoSafe) {
|
||||
return value;
|
||||
} else if (typeof value !== 'undefined' && value != null) {
|
||||
return __escape(value);
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
}, __safe, __objSafe = __obj.safe, __escape = __obj.escape;
|
||||
__safe = __obj.safe = function(value) {
|
||||
if (value && value.ecoSafe) {
|
||||
return value;
|
||||
} else {
|
||||
if (!(typeof value !== 'undefined' && value != null)) value = '';
|
||||
var result = new String(value);
|
||||
result.ecoSafe = true;
|
||||
return result;
|
||||
}
|
||||
};
|
||||
if (!__escape) {
|
||||
__escape = __obj.escape = function(value) {
|
||||
return ('' + value)
|
||||
.replace(/&/g, '&')
|
||||
.replace(/</g, '<')
|
||||
.replace(/>/g, '>')
|
||||
.replace(/"/g, '"');
|
||||
};
|
||||
}
|
||||
(function() {
|
||||
(function() {
|
||||
if (this.agent.avatar) {
|
||||
__out.push('\n<img class="zammad-chat-agent-avatar" src="');
|
||||
__out.push(__sanitize(this.agent.avatar));
|
||||
__out.push('">\n');
|
||||
}
|
||||
|
||||
__out.push('\n<span class="zammad-chat-agent-sentence">\n <span class="zammad-chat-agent-name">');
|
||||
|
||||
__out.push(__sanitize(this.agent.name));
|
||||
|
||||
__out.push('</span>\n</span>');
|
||||
|
||||
}).call(this);
|
||||
|
||||
}).call(__obj);
|
||||
__obj.safe = __objSafe, __obj.escape = __escape;
|
||||
return __out.join('');
|
||||
};
|
||||
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
|
||||
slice = [].slice,
|
||||
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
||||
|
@ -371,7 +310,6 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
|
|||
'<strong>Chat</strong> with us!': '<strong>Chatte</strong> mit uns!',
|
||||
'Scroll down to see new messages': 'Scrolle nach unten um neue Nachrichten zu sehen',
|
||||
'Online': 'Online',
|
||||
'Online': 'Online',
|
||||
'Offline': 'Offline',
|
||||
'Connecting': 'Verbinden',
|
||||
'Connection re-established': 'Verbindung wiederhergestellt',
|
||||
|
@ -385,11 +323,27 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
|
|||
'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Da Sie in den letzten %s Minuten nichts geschrieben haben wurde Ihre Konversation geschlossen.',
|
||||
'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Es tut uns leid, es dauert länger als erwartet, um einen freien Platz zu erhalten. Bitte versuchen Sie es zu einem späteren Zeitpunkt noch einmal oder schicken Sie uns eine E-Mail. Vielen Dank!'
|
||||
},
|
||||
'es': {
|
||||
'<strong>Chat</strong> with us!': '<strong>Chatee</strong> con nosotros!',
|
||||
'Scroll down to see new messages': 'Haga scroll hacia abajo para ver nuevos mensajes',
|
||||
'Online': 'En linea',
|
||||
'Offline': 'Desconectado',
|
||||
'Connecting': 'Conectando',
|
||||
'Connection re-established': 'Conexión restablecida',
|
||||
'Today': 'Hoy',
|
||||
'Send': 'Enviar',
|
||||
'Compose your message...': 'Escriba su mensaje...',
|
||||
'All colleagues are busy.': 'Todos los agentes están ocupados.',
|
||||
'You are on waiting list position <strong>%s</strong>.': 'Usted está en la posición <strong>%s</strong> de la lista de espera.',
|
||||
'Start new conversation': 'Iniciar nueva conversación',
|
||||
'Since you didn\'t respond in the last %s minutes your conversation with <strong>%s</strong> got closed.': 'Puesto que usted no respondió en los últimos %s minutos su conversación con <strong>%s</strong> se ha cerrado.',
|
||||
'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Puesto que usted no respondió en los últimos %s minutos su conversación se ha cerrado.',
|
||||
'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Lo sentimos, se tarda más tiempo de lo esperado para ser atendido por un agente. Inténtelo de nuevo más tarde o envíenos un correo electrónico. ¡Gracias!'
|
||||
},
|
||||
'fr': {
|
||||
'<strong>Chat</strong> with us!': '<strong>Chattez</strong> avec nous!',
|
||||
'Scroll down to see new messages': 'Faites défiler pour lire les nouveaux messages',
|
||||
'Online': 'En-ligne',
|
||||
'Online': 'En-ligne',
|
||||
'Offline': 'Hors-ligne',
|
||||
'Connecting': 'Connexion en cours',
|
||||
'Connection re-established': 'Connexion rétablie',
|
||||
|
@ -407,7 +361,6 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
|
|||
'<strong>Chat</strong> with us!': '发起<strong>即时对话</strong>!',
|
||||
'Scroll down to see new messages': '向下滚动以查看新消息',
|
||||
'Online': '在线',
|
||||
'Online': '在线',
|
||||
'Offline': '离线',
|
||||
'Connecting': '连接中',
|
||||
'Connection re-established': '正在重新建立连接',
|
||||
|
@ -425,7 +378,6 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
|
|||
'<strong>Chat</strong> with us!': '開始<strong>即時對话</strong>!',
|
||||
'Scroll down to see new messages': '向下滑動以查看新訊息',
|
||||
'Online': '線上',
|
||||
'Online': '線上',
|
||||
'Offline': '离线',
|
||||
'Connecting': '連線中',
|
||||
'Connection re-established': '正在重新建立連線中',
|
||||
|
@ -1805,6 +1757,67 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
|
|||
return window.ZammadChat = ZammadChat;
|
||||
})(window.jQuery, window);
|
||||
|
||||
if (!window.zammadChatTemplates) {
|
||||
window.zammadChatTemplates = {};
|
||||
}
|
||||
window.zammadChatTemplates["agent"] = function (__obj) {
|
||||
if (!__obj) __obj = {};
|
||||
var __out = [], __capture = function(callback) {
|
||||
var out = __out, result;
|
||||
__out = [];
|
||||
callback.call(this);
|
||||
result = __out.join('');
|
||||
__out = out;
|
||||
return __safe(result);
|
||||
}, __sanitize = function(value) {
|
||||
if (value && value.ecoSafe) {
|
||||
return value;
|
||||
} else if (typeof value !== 'undefined' && value != null) {
|
||||
return __escape(value);
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
}, __safe, __objSafe = __obj.safe, __escape = __obj.escape;
|
||||
__safe = __obj.safe = function(value) {
|
||||
if (value && value.ecoSafe) {
|
||||
return value;
|
||||
} else {
|
||||
if (!(typeof value !== 'undefined' && value != null)) value = '';
|
||||
var result = new String(value);
|
||||
result.ecoSafe = true;
|
||||
return result;
|
||||
}
|
||||
};
|
||||
if (!__escape) {
|
||||
__escape = __obj.escape = function(value) {
|
||||
return ('' + value)
|
||||
.replace(/&/g, '&')
|
||||
.replace(/</g, '<')
|
||||
.replace(/>/g, '>')
|
||||
.replace(/"/g, '"');
|
||||
};
|
||||
}
|
||||
(function() {
|
||||
(function() {
|
||||
if (this.agent.avatar) {
|
||||
__out.push('\n<img class="zammad-chat-agent-avatar" src="');
|
||||
__out.push(__sanitize(this.agent.avatar));
|
||||
__out.push('">\n');
|
||||
}
|
||||
|
||||
__out.push('\n<span class="zammad-chat-agent-sentence">\n <span class="zammad-chat-agent-name">');
|
||||
|
||||
__out.push(__sanitize(this.agent.name));
|
||||
|
||||
__out.push('</span>\n</span>');
|
||||
|
||||
}).call(this);
|
||||
|
||||
}).call(__obj);
|
||||
__obj.safe = __objSafe, __obj.escape = __escape;
|
||||
return __out.join('');
|
||||
};
|
||||
|
||||
if (!window.zammadChatTemplates) {
|
||||
window.zammadChatTemplates = {};
|
||||
}
|
||||
|
|
4
public/assets/chat/chat.min.js
vendored
4
public/assets/chat/chat.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue