Merge branch 'staging' of github.com:xwiki-labs/cryptpad into staging

pull/1/head
ansuz 7 years ago
commit e6ce06184a

@ -79,7 +79,7 @@ define(req, function(Util, Default, Language) {
}); });
Object.keys(translation).forEach(function (k) { Object.keys(translation).forEach(function (k) {
if (/^_/.test(k) || k === 'driveReadme') { return; } if (/^_/.test(k) || k === 'driveReadme') { return; }
if (!Default[k]) { if (typeof Default[k] === "undefined") {
missing.push([code, k, 0]); missing.push([code, k, 0]);
} }
}); });

@ -570,7 +570,9 @@ define(function () {
out.upload_uploadPending = "Vous avez déjà un fichier en cours d'importation. Souhaitez-vous l'annuler et importer ce nouveau fichier ?"; out.upload_uploadPending = "Vous avez déjà un fichier en cours d'importation. Souhaitez-vous l'annuler et importer ce nouveau fichier ?";
out.upload_success = "Votre fichier ({0}) a été importé avec succès et ajouté à votre CryptDrive."; out.upload_success = "Votre fichier ({0}) a été importé avec succès et ajouté à votre CryptDrive.";
out.upload_notEnoughSpace = "Il n'y a pas assez d'espace libre dans votre CryptDrive pour ce fichier."; out.upload_notEnoughSpace = "Il n'y a pas assez d'espace libre dans votre CryptDrive pour ce fichier.";
out.upload_notEnoughSpaceBrief = "Pas assez d'espace";
out.upload_tooLarge = "Ce fichier dépasse la taille maximale autorisée."; out.upload_tooLarge = "Ce fichier dépasse la taille maximale autorisée.";
out.upload_tooLargeBrief = 'Fichier trop volumineux';
out.upload_choose = "Choisir un fichier"; out.upload_choose = "Choisir un fichier";
out.upload_pending = "En attente"; out.upload_pending = "En attente";
out.upload_cancelled = "Annulé"; out.upload_cancelled = "Annulé";
@ -580,6 +582,7 @@ define(function () {
out.upload_mustLogin = "Vous devez vous connecter pour importer un fichier"; out.upload_mustLogin = "Vous devez vous connecter pour importer un fichier";
out.download_button = "Déchiffrer et télécharger"; out.download_button = "Déchiffrer et télécharger";
out.download_mt_button = "Télécharger"; out.download_mt_button = "Télécharger";
out.download_resourceNotAvailable = "Le fichier demandé n'est pas disponible...";
out.todo_title = "CryptTodo"; out.todo_title = "CryptTodo";
out.todo_newTodoNamePlaceholder = "Décrivez votre tâche..."; out.todo_newTodoNamePlaceholder = "Décrivez votre tâche...";

@ -742,6 +742,7 @@ define(function () {
out.features_f_multiple = "Use on multiple devices"; out.features_f_multiple = "Use on multiple devices";
out.features_f_multiple_notes = "Easy way to access your pads from any device"; out.features_f_multiple_notes = "Easy way to access your pads from any device";
out.features_f_logoutEverywhere = "Log out from other devices"; out.features_f_logoutEverywhere = "Log out from other devices";
out.features_f_logoutEverywhere_notes = ""; // Used in the French translation to explain
out.features_f_templates = "Use templates"; out.features_f_templates = "Use templates";
out.features_f_templates_notes = "Create templates and create new pads from your templates"; out.features_f_templates_notes = "Create templates and create new pads from your templates";
out.features_f_profile = "Create a profile"; out.features_f_profile = "Create a profile";

Loading…
Cancel
Save