Skip to content

Commit

Permalink
Fixing grammar
Browse files Browse the repository at this point in the history
Some texts inside weren't in acord with design suggests
  • Loading branch information
gutaolox authored and vcasadei committed Apr 2, 2020
1 parent c9cb22f commit 14df0bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/home/home.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ export class HomePage implements OnInit {
if (missionsToday === 0) {
const daysAgoMissions = this.getLastUpdateChallenge(contactValue.challenges);
if (daysAgoMissions < 3) {
contactValue.mission = "Você fez " + missionsToday.toString() + " missões hoje.";
contactValue.mission = "Você fez " + missionsToday.toString() + " missões hoje!";
contactValue.mission_label_color = "dark";
contactValue.mission_color = "dark";
contactValue.color = '';
}
else {
contactValue.mission = daysAgoMissions.toString() + " Dias sem missão.";
contactValue.mission = daysAgoMissions.toString() + " dias sem missão.";
contactValue.mission_label_color = "danger";
contactValue.mission_color = "danger";
contactValue.color = '#eb445a';
Expand Down

0 comments on commit 14df0bf

Please sign in to comment.