diff --git a/src/js/controller/app/action-bar.js b/src/js/controller/app/action-bar.js index b24b146..dfaa147 100644 --- a/src/js/controller/app/action-bar.js +++ b/src/js/controller/app/action-bar.js @@ -169,7 +169,7 @@ var ActionBarCtrl = function($scope, email, dialog, statusDisplay) { return; } - statusDisplay.update(flagged ? 'Adding message to favorites...' : 'Removing message from favorites'); + statusDisplay.update(flagged ? 'Adding star to message...' : 'Removing star from message'); var originalState = message.flagged; message.flagged = flagged; @@ -180,7 +180,7 @@ var ActionBarCtrl = function($scope, email, dialog, statusDisplay) { if (err && err.code === 42) { // offline, restore message.unread = originalState; - statusDisplay.update('Unable to ' + (flagged ? 'add message to' : 'remove message from') + ' favorites in offline mode!'); + statusDisplay.update('Unable to ' + (flagged ? 'add star to' : 'remove star from') + ' message in offline mode!'); return; } diff --git a/src/sass/blocks/views/_mail-list.scss b/src/sass/blocks/views/_mail-list.scss index ad1919e..c1e493a 100755 --- a/src/sass/blocks/views/_mail-list.scss +++ b/src/sass/blocks/views/_mail-list.scss @@ -220,7 +220,7 @@ &__flags-checked { display: none; // feature on touch layout not available for now } - &__flags-favorite { + &__flags-flagged { display: none; // feature on touch layout not available for now } &__flags-encrypted { @@ -373,7 +373,7 @@ padding: 0.5em 0 0.5em 1em; } } - &__flags-favorite { + &__flags-flagged { // add invisible padding to increase clickable area around star margin: -0.5em 0 -0.5em; padding: 0.5em 0 0.5em; diff --git a/src/tpl/action-bar.html b/src/tpl/action-bar.html index 56f02ba..9091a2e 100644 --- a/src/tpl/action-bar.html +++ b/src/tpl/action-bar.html @@ -37,7 +37,7 @@ diff --git a/src/tpl/mail-list.html b/src/tpl/mail-list.html index ad720e7..64016e1 100644 --- a/src/tpl/mail-list.html +++ b/src/tpl/mail-list.html @@ -37,9 +37,9 @@ -
  • - Favorited - Not Favorited +
  • + Starred + Not Starred
  • Encrypted diff --git a/src/tpl/nav.html b/src/tpl/nav.html index 15222af..349683e 100644 --- a/src/tpl/nav.html +++ b/src/tpl/nav.html @@ -26,7 +26,7 @@ - {{folder.type}} + {{folder.type === 'Flagged' ? 'Starred' : folder.type}} {{folder.count}}