mirror of https://github.com/xwiki-labs/cryptpad
Use the same disconnecter error translation key for all the apps
This commit is contained in:
parent
f8366e0cfc
commit
d54262c8df
|
@ -103,8 +103,6 @@
|
|||
out.notifyRenamed = "{0} heißt nun {1}";
|
||||
out.notifyLeft = "{0} hat die gemeinsame Sitzung verlassen";
|
||||
|
||||
out.disconnectAlert = 'Netzwerkverbindung verloren!';
|
||||
|
||||
out.tryIt = 'Probier\'s aus!';
|
||||
out.recentPads = 'Deine letzten Pads (diese Liste ist nur in deinem Browser gespeichert))';
|
||||
|
||||
|
|
|
@ -100,8 +100,6 @@ define(function () {
|
|||
out.notifyRenamed = "{0} ahora se conoce como {1}";
|
||||
out.notifyLeft = "{0} ha dejado la sesión de colaboración";
|
||||
|
||||
out.disconnectAlert = '¡Conexión a la red perdida!';
|
||||
|
||||
out.tryIt = '¡PROBARLO!';
|
||||
out.recentPads = 'Tus documentos recientes (almacenadas solo en el navegador)';
|
||||
|
||||
|
|
|
@ -118,8 +118,6 @@ define(function () {
|
|||
out.notifyRenamed = "{0} a changé son nom en {1}";
|
||||
out.notifyLeft = "{0} a quitté la session collaborative";
|
||||
|
||||
out.disconnectAlert = 'Perte de la connexion au réseau !';
|
||||
|
||||
out.okButton = 'OK (Entrée)';
|
||||
|
||||
out.cancel = "Annuler";
|
||||
|
|
|
@ -122,8 +122,6 @@ define(function () {
|
|||
out.notifyRenamed = "{0} is now known as {1}";
|
||||
out.notifyLeft = "{0} has left the collaborative session";
|
||||
|
||||
out.disconnectAlert = 'Network connection lost!';
|
||||
|
||||
out.okButton = 'OK (enter)';
|
||||
|
||||
out.cancel = "Cancel";
|
||||
|
|
|
@ -102,8 +102,6 @@ define(function () {
|
|||
out.notifyRenamed = "{0} jest teraz znany jako {1}";
|
||||
out.notifyLeft = "{0} opuścił sesję współpracy";
|
||||
|
||||
out.disconnectAlert = 'Utracono połączenie sieciowe!';
|
||||
|
||||
out.tryIt = 'Wypróbuj!';
|
||||
out.recentPads = 'Ostatnio otwarte dokumenty (przechowywane jedynie w twojej przeglądarce)';
|
||||
|
||||
|
|
|
@ -110,8 +110,6 @@ define(function () {
|
|||
out.notifyRenamed = "{0} agora é conhecido como {1}";
|
||||
out.notifyLeft = "{0} deixou essa sessão colaborativa";
|
||||
|
||||
out.disconnectAlert = 'Conexão de rede perdida!';
|
||||
|
||||
out.tryIt = 'Experimente!';
|
||||
out.recentPads = 'Seu bloco de nota recente (armazenado em seu navegador)';
|
||||
|
||||
|
|
|
@ -699,7 +699,7 @@ define([
|
|||
// inform of network disconnect
|
||||
setEditable(false);
|
||||
toolbar.failed();
|
||||
Cryptpad.alert(Messages.disconnectAlert);
|
||||
Cryptpad.alert(Messages.common_connectionLost);
|
||||
};
|
||||
|
||||
var onConnectionChange = config.onConnectionChange = function (info) {
|
||||
|
@ -710,7 +710,7 @@ define([
|
|||
toolbar.reconnecting(info.myId);
|
||||
Cryptpad.findOKButton().click();
|
||||
} else {
|
||||
Cryptpad.alert(Messages.disconnectAlert);
|
||||
Cryptpad.alert(Messages.common_connectionLost);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -739,7 +739,7 @@ define([
|
|||
setEditable(false);
|
||||
// TODO inform them that the session was torn down
|
||||
toolbar.failed();
|
||||
Cryptpad.alert(Messages.disconnectAlert);
|
||||
Cryptpad.alert(Messages.common_connectionLost);
|
||||
};
|
||||
|
||||
var onConnectionChange = realtimeOptions.onConnectionChange = function (info) {
|
||||
|
@ -750,7 +750,7 @@ define([
|
|||
toolbar.reconnecting(info.myId);
|
||||
Cryptpad.findOKButton().click();
|
||||
} else {
|
||||
Cryptpad.alert(Messages.disconnectAlert);
|
||||
Cryptpad.alert(Messages.common_connectionLost);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -782,7 +782,7 @@ define([
|
|||
// inform of network disconnect
|
||||
setEditable(false);
|
||||
toolbar.failed();
|
||||
Cryptpad.alert(Messages.disconnectAlert);
|
||||
Cryptpad.alert(Messages.common_connectionLost);
|
||||
};
|
||||
|
||||
var onConnectionChange = config.onConnectionChange = function (info) {
|
||||
|
@ -793,7 +793,7 @@ define([
|
|||
toolbar.reconnecting(info.myId);
|
||||
Cryptpad.findOKButton().click();
|
||||
} else {
|
||||
Cryptpad.alert(Messages.disconnectAlert);
|
||||
Cryptpad.alert(Messages.common_connectionLost);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue