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