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

Commit

Permalink
MCKIN-17583: add korean translations (#220)
Browse files Browse the repository at this point in the history
* add korean translations

* bump version
  • Loading branch information
msaqib52 authored Jun 9, 2020
1 parent 11273ab commit 3787b04
Show file tree
Hide file tree
Showing 8 changed files with 106 additions and 1 deletion.
Binary file not shown.
41 changes: 41 additions & 0 deletions edx_notifications/server/web/locale/ko/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgstr ""
"Project-Id-Version: edx-notifications\n"
"POT-Creation-Date: 2017-06-08 14:59+0000\n"
"PO-Revision-Date: 2017-03-16 12:39+0000\n"
"Last-Translator: \n"
"Language-Team: Korean (Korea)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ko_KR\n"
"Plural-Forms: nplurals=1; plural=0;\n"

#: templates/django/notifications_widget_header.html:26
msgid "View unread"
msgstr "읽지 않은 알림 보기"

#: templates/django/notifications_widget_header.html:27
msgid "View all"
msgstr "모두 보기"

#: templates/django/notifications_widget_header.html:28
msgid "Mark as read"
msgstr "읽은 상태로 표시"

#: templates/django/notifications_widget_header.html:31
msgid "Hide"
msgstr "숨김"

#: templates/django/notifications_widget_header.html:44
msgid "You have no unread notifications."
msgstr "읽지 않은 알림이 없습니다."

#: templates/django/notifications_widget_preferences_header.html:11
msgid "Notification preferences"
msgstr "알림 기본 설정"
Binary file not shown.
61 changes: 61 additions & 0 deletions edx_notifications/server/web/locale/ko/LC_MESSAGES/djangojs.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: edx-notifications\n"
"POT-Creation-Date: 2017-06-08 14:58+0000\n"
"PO-Revision-Date: 2017-06-08 15:04+0000\n"
"Language-Team: Korean (Korea)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ko_KR\n"
"Plural-Forms: nplurals=1; plural=0;\n"

#: static/edx_notifications/js/views/notification_pane_view.js:181
msgid "Announcements"
msgstr "공지사항"

#: static/edx_notifications/templates/renderers/course_announcements/new_announcement.underscore:2
msgid "Announcement"
msgstr "공지사항"

#: static/edx_notifications/js/views/notification_pane_view.js:186
msgid "Group Work"
msgstr "그룹 과제"

#: static/edx_notifications/js/views/notification_pane_view.js:191
msgid "Leaderboards"
msgstr "리더보드"

#: static/edx_notifications/js/views/notification_pane_view.js:196
msgid "Discussion"
msgstr "토론"

#: static/edx_notifications/js/views/notification_pane_view.js:201
msgid "Other"
msgstr "기타"

#: static/edx_notifications/templates/renderers/leaderboard/rank_changed.underscore:3
msgid "You are now"
msgstr "현재:"

#: static/edx_notifications/templates/renderers/leaderboard/rank_changed.underscore:3
msgid "for"
msgstr "대상:"

#: static/edx_notifications/templates/renderers/leaderboard/rank_changed.underscore:3
msgid "in the cohort!"
msgstr "(집단 내)"

#: static/edx_notifications/templates/renderers/leaderboard/rank_changed.underscore:3
msgid "Progress"
msgstr "진도율"

#: static/edx_notifications/js/views/notification_pane_view.js:383
msgid "Today at "
msgstr "시간(오늘):"
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ var NotificationPaneView = Backbone.View.extend({
'nl': 'nl-nl',
'pt': 'pt-br',
'zh': 'zh-cn',
'ko': 'ko-kr',
};
var self = this;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ var NotificationPreferencesView = Backbone.View.extend({
'nl': 'nl-nl',
'pt': 'pt-br',
'zh': 'zh-cn',
'ko': 'ko-kr',
};
/* set up our collection */
this.collection = new NotificationPreferencesCollection();
Expand Down
1 change: 1 addition & 0 deletions settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
('ES419', u'Latin Spanish'),
('es', u'Español'),
('ja', u'Japanese'),
('ko', u'한국어 (대한민국)'), # Korean (Korea)
('de', u'German'),
('fr', u'french'),
('nl', u'Dutch '),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def load_requirements(*requirements_paths):

setup(
name='edx-notifications',
version='1.2.0',
version='1.2.1',
description='Notification subsystem for Open edX',
long_description=open('README.md').read(),
author='edX',
Expand Down

0 comments on commit 3787b04

Please sign in to comment.