import personalMenuTemplate from '!!raw-loader!../includes/templates/PersonalMenu.mustache'; import { htmluserlangattributes } from './utils'; const loggedOut = { 'msg-label': 'Personal tools', 'html-userlangattributes': htmluserlangattributes, 'html-loggedin': '
  • Not logged in
  • ', 'html-personal-tools': `
  • Talk
  • Contributions
  • Create account
  • Log in
  • ` }; const loggedInWithEcho = { 'msg-label': 'Personal tools', 'html-userlangattributes': htmluserlangattributes, 'html-loggedin': '', 'html-personal-tools': `
  • Jdlrobson
  • Alerts (0)
  • Notices (3)
  • Talk
  • Sandbox
  • Preferences
  • Beta
  • Watchlist
  • Contributions
  • Log out
  • ` }; const loggedInWithULS = { 'msg-label': 'Personal tools', 'html-userlangattributes': htmluserlangattributes, 'html-lang-selector': '
  • English
  • ', 'html-loggedin': '', 'html-personal-tools': `
  • Jdlrobson
  • Alerts (0)
  • Notices (3)
  • Talk
  • Sandbox
  • Preferences
  • Beta
  • Watchlist
  • Contributions
  • Log out
  • ` }; const PERSONAL_MENU_TEMPLATE_DATA = { loggedOut, loggedInWithEcho, loggedInWithULS }; export { PERSONAL_MENU_TEMPLATE_DATA, personalMenuTemplate };