Skip to content
This repository has been archived by the owner on Apr 1, 2022. It is now read-only.

Commit

Permalink
fix: removed full-stops after emojis (#97)
Browse files Browse the repository at this point in the history
* fix: removed full-stops after emojis

* fix: removed full-stops after emojis
  • Loading branch information
vj-codes authored Aug 4, 2020
1 parent d01a33f commit 174fa85
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions src/locales/fr/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,8 @@ msgstr ""
"ensemble:"

#: services/messenger.py:745
msgid "Time to get Git installed in your machine ⭕!."
msgstr "Il est temps d'installer Git sur ta machine ⭕ !."
msgid "Time to get Git installed in your machine ⭕!"
msgstr "Il est temps d'installer Git sur ta machine ⭕ !"

#: services/messenger.py:751
msgid "Download Git"
Expand All @@ -526,8 +526,8 @@ msgid "🧑‍🚀 Once done, let's configure Git"
msgstr "🧑‍🚀 Une fois terminé, configurons Git"

#: services/messenger.py:776
msgid "Great Progress so far 👨🏽‍🎓!."
msgstr "De grands progrès jusqu'à présent 👨🏽‍🎓!."
msgid "Great Progress so far 👨🏽‍🎓!"
msgstr "De grands progrès jusqu'à présent 👨🏽‍🎓!"

#: services/messenger.py:780
msgid ""
Expand Down
4 changes: 2 additions & 2 deletions src/locales/hi/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ msgid "Below other interesting stuff that we can explore together:"
msgstr "नीचे अन्य दिलचस्प चीजें हैं जिन्हें हम एक साथ देख सकते हैं:"

#: services/messenger.py:745
msgid "Time to get Git installed in your machine ⭕!."
msgid "Time to get Git installed in your machine ⭕!"
msgstr "गिट को अपनी मशीन में स्थापित करने का समय ⭕!"

#: services/messenger.py:751
Expand All @@ -511,7 +511,7 @@ msgid "🧑‍🚀 Once done, let's configure Git"
msgstr "🧑‍🚀 एक बार हो जाने के बाद, गिट में परिवर्तन करें"

#: services/messenger.py:776
msgid "Great Progress so far 👨🏽‍🎓!."
msgid "Great Progress so far 👨🏽‍🎓!"
msgstr "अब तक की शानदार प्रगति 👨🏽‍🎓!"

#: services/messenger.py:780
Expand Down
8 changes: 4 additions & 4 deletions src/locales/si/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@ msgid "Below other interesting stuff that we can explore together:"
msgstr "පහලින් ඔයාටයි මටයි ගවේශනය කරන්න පුලුවන් වටින දේවල් ටිකක් තියනව:"

#: services/messenger.py:745
msgid "Time to get Git installed in your machine ⭕!."
msgstr "GIt ඔයාගෙ පරිඝණකයේ ස්ථාපනය කරගන්න වෙලාව දැන් ⭕!."
msgid "Time to get Git installed in your machine ⭕!"
msgstr "GIt ඔයාගෙ පරිඝණකයේ ස්ථාපනය කරගන්න වෙලාව දැන් ⭕!"

#: services/messenger.py:751
msgid "Download Git"
Expand All @@ -458,8 +458,8 @@ msgid "🧑‍🚀 Once done, let's configure Git"
msgstr "🧑‍🚀 ඕක ඉවර උනාම අපි Git සකසමු"

#: services/messenger.py:776
msgid "Great Progress so far 👨🏽‍🎓!."
msgstr "හොඳට කරන් ආව මේදක්වා👨🏽‍🎓!."
msgid "Great Progress so far 👨🏽‍🎓!"
msgstr "හොඳට කරන් ආව මේදක්වා👨🏽‍🎓!"

#: services/messenger.py:780
msgid "Now let's configure your Git username and email using the following commands"
Expand Down
4 changes: 2 additions & 2 deletions src/services/messenger.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ def process_postback(messenger, payload):

if "INSTALL_GIT" in payload:

text = _(u"Time to get Git installed in your machine ⭕!.")
text = _(u"Time to get Git installed in your machine ⭕!")
messenger.send({"text": text}, "RESPONSE")
messenger.send_action(typing_on)
sleep(3)
Expand Down Expand Up @@ -773,7 +773,7 @@ def process_postback(messenger, payload):

if "CONF_GIT" in payload:

text = _(u"Great Progress so far 👨🏽‍🎓!.")
text = _(u"Great Progress so far 👨🏽‍🎓!")
messenger.send({"text": text}, "RESPONSE")
messenger.send_action(typing_on)
sleep(2)
Expand Down

0 comments on commit 174fa85

Please sign in to comment.