Skip to content

Commit

Permalink
update localization files and bug fix for log format
Browse files Browse the repository at this point in the history
  • Loading branch information
bluebamus committed Aug 27, 2024
1 parent 9f31183 commit 115e93d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
Binary file modified config/locale/ko/LC_MESSAGES/django.mo
Binary file not shown.
8 changes: 4 additions & 4 deletions config/locale/ko/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -750,12 +750,12 @@ msgid " Full-Stack Developer "
msgstr " 풀 스택 개발자"

#: .\templates\home\index.html:21
msgid " Online Brand Marketer "
msgstr " 온라인 마케터"
msgid " Digital Brand Marketer "
msgstr " 디지털 브랜드 마케터"

#: .\templates\home\index.html:22
msgid " led startups 5 times "
msgstr "5번의 스타트업 경험자"
msgid " led startups 6 times "
msgstr "6번의 스타트업 경험자"

#: .\templates\home\index.html:25
msgid ""
Expand Down
6 changes: 3 additions & 3 deletions templates/home/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ <h1 class="animated animated-text">
<span class="mr-2">{% trans "Hey folks"%}, {% trans "I'm"%}</span>
<div class="animated-info">
<span class="animated-item">{% trans " Full-Stack Developer "%}</span>
<span class="animated-item">{% trans " Online Brand Marketer "%}</span>
<span class="animated-item">{% trans " led startups 5 times "%}</span>
<span class="animated-item">{% trans " Digital Brand Marketer "%}</span>
<span class="animated-item">{% trans " led startups 6 times "%}</span>
</div>
</h1>
{% blocktrans %}
Expand Down Expand Up @@ -54,7 +54,7 @@ <h1 class="animated animated-text">
<h1>{% blocktrans %}Portfolio{% endblocktrans %}</h1>
{% blocktrans %}
<p>I am a <strong>pull-stack developer</strong> and interested in <u>django,fast-api,Huge Traffic Handling,AI,CI/CD</u>
so doing open source activities. I ran an <u>online branding marketing startup</u> and collaborated with various companies.</p>
so doing open source activities. I ran an <u>digital branding marketing startup</u> and collaborated with various companies.</p>
{% endblocktrans %}
<a href="{% url 'portfolio:portfolio' %}" class="main-btn btn-hover">{% blocktrans %}See Portfolio{% endblocktrans %}</a>

Expand Down
8 changes: 6 additions & 2 deletions users/views/users_forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,15 @@ class RegisterForm(forms.Form):

def check_email_validation_with_dns(self, email: str) -> [str, bool]:
try:
logger.debug("check_email_validation_with_dns email :", extra={email})
logger.debug(
"check_email_validation_with_dns email :", extra={"email": email}
)
emailinfo = validate_email(
email, check_deliverability=True, dns_resolver=resolver
)
logger.debug("emailinfo.normalized :", extra={emailinfo.normalized})
logger.debug(
"emailinfo.normalized :", extra={"normalized": emailinfo.normalized}
)
return emailinfo.normalized, True

except EmailNotValidError as e:
Expand Down

0 comments on commit 115e93d

Please sign in to comment.