From 28b365ec6faa5fa830a17c84c5b1ebe2a82c0541 Mon Sep 17 00:00:00 2001 From: Michael An <37589122+Michael18811380328@users.noreply.github.com> Date: Tue, 29 Jan 2019 15:53:22 +0800 Subject: [PATCH] fix translation (#2905) --- frontend/src/utils/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/utils/utils.js b/frontend/src/utils/utils.js index cb4b362e29..e348846f10 100644 --- a/frontend/src/utils/utils.js +++ b/frontend/src/utils/utils.js @@ -356,10 +356,10 @@ export const Utils = { title = gettext("Besides Write permission, user can also share the library."); break; case 'cloud-edit': - title = gettext("User can only view files online via browser. Files can't be downloaded."); + title = gettext("Same as Preview on cloud. But user can also edit files online via browser."); break; case 'preview': - title = gettext("Same as Preview on cloud. But user can also edit files online via browser."); + title = gettext("User can only view files online via browser. Files can't be downloaded."); break; } return title;