Fix resources

This commit is contained in:
Paulo Gustavo Veiga 2022-01-07 17:47:23 -08:00
parent 29ea56aab0
commit 228fb4e185
2 changed files with 1 additions and 4 deletions

View File

@ -77,11 +77,8 @@ const EN = {
KEYBOARD_SHORTCUTS_MSG: 'Keyboard shortcuts can help you save time by allowing you to never take your hands off the keyboard to use the mouse.',
COPY_AND_PASTE_TOPICS: 'Copy and Paste Topics',
MULTIPLE_LINES: 'Add multiple text lines',
BACK_TO_MAP_LIST: 'Back to Maps List',
KEYBOARD_SHOTCUTS: 'Keyboard Shorcuts',
ACCOUNT: 'Account',
};
export default EN;

View File

@ -422,7 +422,7 @@ class Menu extends IMenu {
event.preventDefault();
});
this._toolbarElems.push(new AccountSettingsPanel('account'));
Menu._registerTooltip('account', `${$msg('ACCOUNT')}: ${global.accountEmail}`);
Menu._registerTooltip('account', `${global.accountEmail}`);
}
this._registerEvents(designer);