Skip to content

Commit

Permalink
Use emoji instead of emoji code
Browse files Browse the repository at this point in the history
Issue: #13
  • Loading branch information
matopeto committed Dec 29, 2020
1 parent 9d3af83 commit c064a56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sources/xcodeBuildTimes.1m.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ final class Strings
const WARNING_UNABLE_TO_READ_DATA_FILE = "Unable to read data file";
const WARNING_PROBLEM_WITH_DATA_FILE = "There is some problem with data";
const WARNING_NO_DATA = "No data";
const ROW_WARNING = ":warning: %s"; // %s will be replaced by warning message
const ROW_WARNING = "⚠️ %s"; // %s will be replaced by warning message

const ROW_HEADER_TODAY = "Today";
const ROW_HEADER_TODAY_FILTER = "Today (%s)"; // %s will be replaced with selected workspaces and projects
Expand Down Expand Up @@ -603,7 +603,7 @@ private function renderHeader()
$row .= $this->format($buildTime);

if (count($this->data->warnings) > 0) {
$row .= " :warning:";
$row .= " ⚠️";
}
$row .= " | templateImage=" . Config::ICON;

Expand Down Expand Up @@ -782,7 +782,7 @@ private function renderPreferences()

private function renderFilter()
{
$check = ":heavy_check_mark: ";
$check = " ";
$alternate = " alternate=true";
$allSelected = empty($this->data->selectedWorkspaces) && empty($this->data->selectedProjects);

Expand Down

0 comments on commit c064a56

Please sign in to comment.