Fix translation key

This commit is contained in:
yflory 2019-06-18 12:06:17 +02:00
parent 1f5eb66fe0
commit 0df7cd67a9

View File

@ -1777,7 +1777,8 @@ define([
} }
if (history.isHistoryMode && history.sfId) { if (history.isHistoryMode && history.sfId) {
// Shared folder history: always display the warning // Shared folder history: always display the warning
msg = Messages.fm_info_sharedFolderHistory; var sfName = (manager.getSharedFolderData(history.sfId) || {}).title || Messages.fm_sharedFolderName;
msg = Messages._getKey('fm_info_sharedFolderHistory', [sfName]);
return $(common.fixLinks($box.html(msg))); return $(common.fixLinks($box.html(msg)));
} }
if (!APP.loggedIn) { if (!APP.loggedIn) {