Skip to content

Commit

Permalink
Remove more emojis (I hate emojis)
Browse files Browse the repository at this point in the history
  • Loading branch information
solonovamax committed Mar 17, 2022
1 parent 854ff24 commit fbc6199
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,13 +281,13 @@ def generate_commit_list(tz):
title = translate['When I work']
subtitle = translate['I am an Early'] if morning + daytime >= evening + night else translate['I am a Night']
one_day = [
{"name": "🌞 " + translate['Morning'], "text": str(morning) + " commits",
{"name": translate['Morning'], "text": str(morning) + " commits",
"percent": round((morning / total_commits) * 100, 2)},
{"name": "🌆 " + translate['Daytime'], "text": str(daytime) + " commits",
{"name": translate['Daytime'], "text": str(daytime) + " commits",
"percent": round((daytime / total_commits) * 100, 2)},
{"name": "🌃 " + translate['Evening'], "text": str(evening) + " commits",
{"name": translate['Evening'], "text": str(evening) + " commits",
"percent": round((evening / total_commits) * 100, 2)},
{"name": "🌙 " + translate['Night'], "text": str(night) + " commits",
{"name": translate['Night'], "text": str(night) + " commits",
"percent": round((night / total_commits) * 100, 2)},
]
commits_by_day = [
Expand Down
4 changes: 2 additions & 2 deletions translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
"private repository": "%d Private Repository",
"private repositories": "%d Private Repositories",
"When I work": "When I work",
"I am an Early": "I'm an Early 🐤",
"I am a Night": "I'm a Night 🦉"
"I am an Early": "I work mostly in the mornings",
"I am a Night": "I work mostly in the evenings"
},
"bn": {
"Monday": "সোমবার",
Expand Down

0 comments on commit fbc6199

Please sign in to comment.