diff --git a/chat/locale/ko/LC_MESSAGES/django.po b/chat/locale/ko/LC_MESSAGES/django.po new file mode 100644 index 0000000..dbfc5d5 --- /dev/null +++ b/chat/locale/ko/LC_MESSAGES/django.po @@ -0,0 +1,57 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-21 12:26+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: forms.py:10 +msgid "date" +msgstr "" + +#: templates/chat/chat_conversejs.html:15 +msgid "chat_title" +msgstr "" + +#: templates/chat/entries.html:4 templates/chat/entries.html:11 +msgid "logs_title" +msgstr "" + +#: templates/chat/entries.html:21 +msgid "logs_no_logs_available" +msgstr "" + +#: templates/chat/entries.html:33 +msgid "go" +msgstr "" + +#: templates/chat/entries.html:40 +#, python-format +msgid "%(name)s is hidden." +msgstr "" + +#: templates/chat/entries.html:41 +msgid "show" +msgstr "" + +#: templates/chat/entries.html:43 +#, python-format +msgid "%(name)s is published." +msgstr "" + +#: templates/chat/entries.html:44 +msgid "hide" +msgstr "" diff --git a/chat/locale/ru/LC_MESSAGES/django.po b/chat/locale/ru/LC_MESSAGES/django.po new file mode 100644 index 0000000..d35f24c --- /dev/null +++ b/chat/locale/ru/LC_MESSAGES/django.po @@ -0,0 +1,59 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-21 12:26+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#: forms.py:10 +msgid "date" +msgstr "" + +#: templates/chat/chat_conversejs.html:15 +msgid "chat_title" +msgstr "" + +#: templates/chat/entries.html:4 templates/chat/entries.html:11 +msgid "logs_title" +msgstr "" + +#: templates/chat/entries.html:21 +msgid "logs_no_logs_available" +msgstr "" + +#: templates/chat/entries.html:33 +msgid "go" +msgstr "" + +#: templates/chat/entries.html:40 +#, python-format +msgid "%(name)s is hidden." +msgstr "" + +#: templates/chat/entries.html:41 +msgid "show" +msgstr "" + +#: templates/chat/entries.html:43 +#, python-format +msgid "%(name)s is published." +msgstr "" + +#: templates/chat/entries.html:44 +msgid "hide" +msgstr "" diff --git a/khaganat/settings.py b/khaganat/settings.py index a33d2ad..70b4ceb 100644 --- a/khaganat/settings.py +++ b/khaganat/settings.py @@ -143,7 +143,12 @@ LANGUAGE_CODE = config("KHAGANAT_LANGUAGE_CODE", default="fr") # https://github.com/django/django/blob/master/django/conf/global_settings.py -LANGUAGES = [("en", _("English")), ("fr", _("French"))] +LANGUAGES = [ + ("en", _("English")), + ("fr", _("French")), + ("ko", _("Korean")), + ("ru", _("Russian")), +] TIME_ZONE = config("KHAGANAT_TIME_ZONE", default="Europe/Paris") diff --git a/navbar/locale/ko/LC_MESSAGES/django.po b/navbar/locale/ko/LC_MESSAGES/django.po new file mode 100644 index 0000000..309c3c3 --- /dev/null +++ b/navbar/locale/ko/LC_MESSAGES/django.po @@ -0,0 +1,47 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-21 12:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/navbar/navbar.html:45 +msgid "my_account" +msgstr "" + +#: templates/navbar/navbar.html:47 +msgid "settings" +msgstr "" + +#: templates/navbar/navbar.html:49 +msgid "administration" +msgstr "" + +#: templates/navbar/navbar.html:52 +msgid "shared_passwords" +msgstr "" + +#: templates/navbar/navbar.html:54 +msgid "logout" +msgstr "" + +#: templates/navbar/navbar.html:60 +msgid "login" +msgstr "" + +#: templates/navbar/navbar.html:61 +msgid "register" +msgstr "" diff --git a/navbar/locale/ru/LC_MESSAGES/django.po b/navbar/locale/ru/LC_MESSAGES/django.po new file mode 100644 index 0000000..7109a2d --- /dev/null +++ b/navbar/locale/ru/LC_MESSAGES/django.po @@ -0,0 +1,49 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-21 12:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#: templates/navbar/navbar.html:45 +msgid "my_account" +msgstr "" + +#: templates/navbar/navbar.html:47 +msgid "settings" +msgstr "" + +#: templates/navbar/navbar.html:49 +msgid "administration" +msgstr "" + +#: templates/navbar/navbar.html:52 +msgid "shared_passwords" +msgstr "" + +#: templates/navbar/navbar.html:54 +msgid "logout" +msgstr "" + +#: templates/navbar/navbar.html:60 +msgid "login" +msgstr "" + +#: templates/navbar/navbar.html:61 +msgid "register" +msgstr "" diff --git a/neluser/locale/ko/LC_MESSAGES/django.po b/neluser/locale/ko/LC_MESSAGES/django.po new file mode 100644 index 0000000..c3f5fff --- /dev/null +++ b/neluser/locale/ko/LC_MESSAGES/django.po @@ -0,0 +1,259 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-21 12:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin.py:20 +msgid "info" +msgstr "" + +#: admin.py:22 +msgid "user_permissions" +msgstr "" + +#: admin.py:25 +msgid "misc" +msgstr "" + +#: admin.py:38 +msgid "resend_activation_link" +msgstr "" + +#: forms.py:18 forms.py:49 +msgid "current_password" +msgstr "" + +#: forms.py:20 +msgid "new_password" +msgstr "" + +#: forms.py:22 +msgid "new_password_confirm" +msgstr "" + +#: forms.py:36 +msgid "The new password does not match its confirmation." +msgstr "" + +#: forms.py:43 forms.py:61 +msgid "The current password is incorrect." +msgstr "" + +#: models.py:40 +msgid "email" +msgstr "" + +#: models.py:42 +msgid "staff status" +msgstr "" + +#: models.py:44 +msgid "Designates whether the user can log into this admin site." +msgstr "" + +#: models.py:47 +msgid "active" +msgstr "" + +#: models.py:50 +msgid "" +"Designates whether this user should be treated as active. Unselect this " +"instead of deleting accounts." +msgstr "" + +#: models.py:54 +msgid "date joined" +msgstr "" + +#: models.py:56 +msgid "NSFW flag" +msgstr "" + +#: models.py:59 +msgid "Indicate whether or not adult or sensitive content should be displayed." +msgstr "" + +#: models.py:70 +msgid "user" +msgstr "" + +#: models.py:71 +msgid "users" +msgstr "" + +#: templates/neluser/activate_done.html:4 templates/neluser/login.html:15 +#: templates/neluser/register.html:5 templates/neluser/register.html:13 +msgid "register" +msgstr "" + +#: templates/neluser/activate_done.html:8 +msgid "account_activated" +msgstr "" + +#: templates/neluser/activate_done.html:9 templates/neluser/login.html:5 +#: templates/neluser/login.html:13 templates/neluser/password_reset_done.html:9 +msgid "login" +msgstr "" + +#: templates/neluser/activate_email.html:5 +#: templates/neluser/activate_email.txt:2 +#, python-format +msgid "" +"You're receiving this email because you created an account at %(site_name)s." +msgstr "" + +#: templates/neluser/activate_email.html:7 +#: templates/neluser/activate_email.txt:4 +msgid "Please go to the following page to activate your account:" +msgstr "" + +#: templates/neluser/activate_email.html:13 +#: templates/neluser/activate_email.txt:9 +#: templates/neluser/password_reset_email.html:13 +#: templates/neluser/password_reset_email.txt:9 +msgid "Thanks for using our site!" +msgstr "" + +#: templates/neluser/activate_email.html:14 +#: templates/neluser/activate_email.txt:10 +#: templates/neluser/password_reset_email.html:14 +#: templates/neluser/password_reset_email.txt:10 +#, python-format +msgid "The %(site_name)s team" +msgstr "" + +#: templates/neluser/activate_email_subject.txt:2 +#, python-format +msgid "Account activation on %(site_name)s" +msgstr "" + +#: templates/neluser/login.html:14 +msgid "forgotten_password" +msgstr "" + +#: templates/neluser/password_reset.html:5 +#: templates/neluser/password_reset_confirm.html:5 +#: templates/neluser/password_reset_done.html:4 +#: templates/neluser/password_reset_email_sent.html:4 +msgid "password_reset" +msgstr "" + +#: templates/neluser/password_reset.html:12 +msgid "reset_my_password" +msgstr "" + +#: templates/neluser/password_reset_confirm.html:5 +msgid "set_new_password" +msgstr "" + +#: templates/neluser/password_reset_confirm.html:13 +#: templates/neluser/settings/security/password.html:11 +msgid "change_my_password" +msgstr "" + +#: templates/neluser/password_reset_confirm.html:16 +msgid "reset_password_invalid_link" +msgstr "" + +#: templates/neluser/password_reset_done.html:8 +msgid "password_reset_success" +msgstr "" + +#: templates/neluser/password_reset_email.html:5 +#: templates/neluser/password_reset_email.txt:2 +#, python-format +msgid "" +"You're receiving this email because you requested a password reset for your " +"user account at %(site_name)s." +msgstr "" + +#: templates/neluser/password_reset_email.html:7 +#: templates/neluser/password_reset_email.txt:4 +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: templates/neluser/password_reset_email_sent.html:8 +msgid "password_reset_success_email" +msgstr "" + +#: templates/neluser/password_reset_email_sent.html:9 +msgid "Go back home" +msgstr "" + +#: templates/neluser/password_reset_email_subject.txt:2 +#, python-format +msgid "Password reset on %(site_name)s" +msgstr "" + +#: templates/neluser/register_done.html:4 +msgid "almost_there" +msgstr "" + +#: templates/neluser/register_done.html:8 +msgid "activate_your_account" +msgstr "" + +#: templates/neluser/register_done.html:9 +msgid "take_me_home" +msgstr "" + +#: templates/neluser/settings/base.html:9 +#: templates/neluser/settings/preferences/base.html:8 +msgid "preferences" +msgstr "" + +#: templates/neluser/settings/base.html:11 +#: templates/neluser/settings/security/base.html:8 +msgid "security" +msgstr "" + +#: templates/neluser/settings/preferences/base.html:9 +msgid "nsfw_filter" +msgstr "" + +#: templates/neluser/settings/preferences/nsfw.html:5 +msgid "NSFW content" +msgstr "" + +#: templates/neluser/settings/preferences/nsfw.html:9 +msgid "Safe mode is disabled, you may see not safe for work content." +msgstr "" + +#: templates/neluser/settings/preferences/nsfw.html:11 +msgid "Enable safe mode" +msgstr "" + +#: templates/neluser/settings/preferences/nsfw.html:14 +msgid "Safe mode enabled, not safe for work content is hidden." +msgstr "" + +#: templates/neluser/settings/security/delete_account.html:5 +msgid "delete_account" +msgstr "" + +#: templates/neluser/settings/security/delete_account.html:11 +msgid "Permanently delete my account" +msgstr "" + +#: templates/neluser/settings/security/password.html:5 +msgid "Password" +msgstr "" + +#: views.py:82 +msgid "Your account has been deleted." +msgstr "" diff --git a/neluser/locale/ru/LC_MESSAGES/django.po b/neluser/locale/ru/LC_MESSAGES/django.po new file mode 100644 index 0000000..c73d4c5 --- /dev/null +++ b/neluser/locale/ru/LC_MESSAGES/django.po @@ -0,0 +1,261 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-21 12:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#: admin.py:20 +msgid "info" +msgstr "" + +#: admin.py:22 +msgid "user_permissions" +msgstr "" + +#: admin.py:25 +msgid "misc" +msgstr "" + +#: admin.py:38 +msgid "resend_activation_link" +msgstr "" + +#: forms.py:18 forms.py:49 +msgid "current_password" +msgstr "" + +#: forms.py:20 +msgid "new_password" +msgstr "" + +#: forms.py:22 +msgid "new_password_confirm" +msgstr "" + +#: forms.py:36 +msgid "The new password does not match its confirmation." +msgstr "" + +#: forms.py:43 forms.py:61 +msgid "The current password is incorrect." +msgstr "" + +#: models.py:40 +msgid "email" +msgstr "" + +#: models.py:42 +msgid "staff status" +msgstr "" + +#: models.py:44 +msgid "Designates whether the user can log into this admin site." +msgstr "" + +#: models.py:47 +msgid "active" +msgstr "" + +#: models.py:50 +msgid "" +"Designates whether this user should be treated as active. Unselect this " +"instead of deleting accounts." +msgstr "" + +#: models.py:54 +msgid "date joined" +msgstr "" + +#: models.py:56 +msgid "NSFW flag" +msgstr "" + +#: models.py:59 +msgid "Indicate whether or not adult or sensitive content should be displayed." +msgstr "" + +#: models.py:70 +msgid "user" +msgstr "" + +#: models.py:71 +msgid "users" +msgstr "" + +#: templates/neluser/activate_done.html:4 templates/neluser/login.html:15 +#: templates/neluser/register.html:5 templates/neluser/register.html:13 +msgid "register" +msgstr "" + +#: templates/neluser/activate_done.html:8 +msgid "account_activated" +msgstr "" + +#: templates/neluser/activate_done.html:9 templates/neluser/login.html:5 +#: templates/neluser/login.html:13 templates/neluser/password_reset_done.html:9 +msgid "login" +msgstr "" + +#: templates/neluser/activate_email.html:5 +#: templates/neluser/activate_email.txt:2 +#, python-format +msgid "" +"You're receiving this email because you created an account at %(site_name)s." +msgstr "" + +#: templates/neluser/activate_email.html:7 +#: templates/neluser/activate_email.txt:4 +msgid "Please go to the following page to activate your account:" +msgstr "" + +#: templates/neluser/activate_email.html:13 +#: templates/neluser/activate_email.txt:9 +#: templates/neluser/password_reset_email.html:13 +#: templates/neluser/password_reset_email.txt:9 +msgid "Thanks for using our site!" +msgstr "" + +#: templates/neluser/activate_email.html:14 +#: templates/neluser/activate_email.txt:10 +#: templates/neluser/password_reset_email.html:14 +#: templates/neluser/password_reset_email.txt:10 +#, python-format +msgid "The %(site_name)s team" +msgstr "" + +#: templates/neluser/activate_email_subject.txt:2 +#, python-format +msgid "Account activation on %(site_name)s" +msgstr "" + +#: templates/neluser/login.html:14 +msgid "forgotten_password" +msgstr "" + +#: templates/neluser/password_reset.html:5 +#: templates/neluser/password_reset_confirm.html:5 +#: templates/neluser/password_reset_done.html:4 +#: templates/neluser/password_reset_email_sent.html:4 +msgid "password_reset" +msgstr "" + +#: templates/neluser/password_reset.html:12 +msgid "reset_my_password" +msgstr "" + +#: templates/neluser/password_reset_confirm.html:5 +msgid "set_new_password" +msgstr "" + +#: templates/neluser/password_reset_confirm.html:13 +#: templates/neluser/settings/security/password.html:11 +msgid "change_my_password" +msgstr "" + +#: templates/neluser/password_reset_confirm.html:16 +msgid "reset_password_invalid_link" +msgstr "" + +#: templates/neluser/password_reset_done.html:8 +msgid "password_reset_success" +msgstr "" + +#: templates/neluser/password_reset_email.html:5 +#: templates/neluser/password_reset_email.txt:2 +#, python-format +msgid "" +"You're receiving this email because you requested a password reset for your " +"user account at %(site_name)s." +msgstr "" + +#: templates/neluser/password_reset_email.html:7 +#: templates/neluser/password_reset_email.txt:4 +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: templates/neluser/password_reset_email_sent.html:8 +msgid "password_reset_success_email" +msgstr "" + +#: templates/neluser/password_reset_email_sent.html:9 +msgid "Go back home" +msgstr "" + +#: templates/neluser/password_reset_email_subject.txt:2 +#, python-format +msgid "Password reset on %(site_name)s" +msgstr "" + +#: templates/neluser/register_done.html:4 +msgid "almost_there" +msgstr "" + +#: templates/neluser/register_done.html:8 +msgid "activate_your_account" +msgstr "" + +#: templates/neluser/register_done.html:9 +msgid "take_me_home" +msgstr "" + +#: templates/neluser/settings/base.html:9 +#: templates/neluser/settings/preferences/base.html:8 +msgid "preferences" +msgstr "" + +#: templates/neluser/settings/base.html:11 +#: templates/neluser/settings/security/base.html:8 +msgid "security" +msgstr "" + +#: templates/neluser/settings/preferences/base.html:9 +msgid "nsfw_filter" +msgstr "" + +#: templates/neluser/settings/preferences/nsfw.html:5 +msgid "NSFW content" +msgstr "" + +#: templates/neluser/settings/preferences/nsfw.html:9 +msgid "Safe mode is disabled, you may see not safe for work content." +msgstr "" + +#: templates/neluser/settings/preferences/nsfw.html:11 +msgid "Enable safe mode" +msgstr "" + +#: templates/neluser/settings/preferences/nsfw.html:14 +msgid "Safe mode enabled, not safe for work content is hidden." +msgstr "" + +#: templates/neluser/settings/security/delete_account.html:5 +msgid "delete_account" +msgstr "" + +#: templates/neluser/settings/security/delete_account.html:11 +msgid "Permanently delete my account" +msgstr "" + +#: templates/neluser/settings/security/password.html:5 +msgid "Password" +msgstr "" + +#: views.py:82 +msgid "Your account has been deleted." +msgstr "" diff --git a/nsfw/locale/ko/LC_MESSAGES/django.po b/nsfw/locale/ko/LC_MESSAGES/django.po new file mode 100644 index 0000000..08f095c --- /dev/null +++ b/nsfw/locale/ko/LC_MESSAGES/django.po @@ -0,0 +1,67 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-21 12:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/nsfw/alert.html:4 templates/nsfw/redirect_page.html:4 +msgid "NSFW content" +msgstr "" + +#: templates/nsfw/alert.html:7 +msgid "" +"The content you were about to see is flagged as sensitive and therefore " +"cannot be seen while the safe mode is activated." +msgstr "" + +#: templates/nsfw/alert.html:11 +msgid "Go back" +msgstr "" + +#: templates/nsfw/alert.html:13 +msgid "Go back home" +msgstr "" + +#: templates/nsfw/disabled_alert.html:2 +msgid "" +"This page contains sensitive content which is displayed because you disabled " +"the safe mode." +msgstr "" + +#: templates/nsfw/disabled_alert.html:3 +msgid "Enable safe mode" +msgstr "" + +#: templates/nsfw/duration.html:3 +msgid "Disable safe mode until further notice" +msgstr "" + +#: templates/nsfw/duration.html:6 +msgid "Or disable safe mode for:" +msgstr "" + +#: templates/nsfw/duration.html:7 +msgid "5 minutes" +msgstr "" + +#: templates/nsfw/duration.html:8 +msgid "1 hour" +msgstr "" + +#: templates/nsfw/duration.html:9 +msgid "1 day" +msgstr "" diff --git a/nsfw/locale/ru/LC_MESSAGES/django.po b/nsfw/locale/ru/LC_MESSAGES/django.po new file mode 100644 index 0000000..feefae5 --- /dev/null +++ b/nsfw/locale/ru/LC_MESSAGES/django.po @@ -0,0 +1,69 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-21 12:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#: templates/nsfw/alert.html:4 templates/nsfw/redirect_page.html:4 +msgid "NSFW content" +msgstr "" + +#: templates/nsfw/alert.html:7 +msgid "" +"The content you were about to see is flagged as sensitive and therefore " +"cannot be seen while the safe mode is activated." +msgstr "" + +#: templates/nsfw/alert.html:11 +msgid "Go back" +msgstr "" + +#: templates/nsfw/alert.html:13 +msgid "Go back home" +msgstr "" + +#: templates/nsfw/disabled_alert.html:2 +msgid "" +"This page contains sensitive content which is displayed because you disabled " +"the safe mode." +msgstr "" + +#: templates/nsfw/disabled_alert.html:3 +msgid "Enable safe mode" +msgstr "" + +#: templates/nsfw/duration.html:3 +msgid "Disable safe mode until further notice" +msgstr "" + +#: templates/nsfw/duration.html:6 +msgid "Or disable safe mode for:" +msgstr "" + +#: templates/nsfw/duration.html:7 +msgid "5 minutes" +msgstr "" + +#: templates/nsfw/duration.html:8 +msgid "1 hour" +msgstr "" + +#: templates/nsfw/duration.html:9 +msgid "1 day" +msgstr "" diff --git a/pwdb/locale/ko/LC_MESSAGES/django.po b/pwdb/locale/ko/LC_MESSAGES/django.po new file mode 100644 index 0000000..041b0de --- /dev/null +++ b/pwdb/locale/ko/LC_MESSAGES/django.po @@ -0,0 +1,75 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-21 12:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: forms.py:11 forms.py:50 templates/pwdb/list_passwords.html:12 +msgid "Name" +msgstr "" + +#: forms.py:16 templates/pwdb/list_passwords.html:13 +msgid "Description" +msgstr "" + +#: forms.py:19 forms.py:52 templates/pwdb/list_passwords.html:15 +msgid "Password" +msgstr "" + +#: models.py:103 +msgid "shared_password" +msgstr "" + +#: models.py:104 templates/pwdb/list_passwords.html:4 +msgid "shared_passwords" +msgstr "" + +#: models.py:117 +msgid "shared_password_access" +msgstr "" + +#: models.py:118 +msgid "shared_passwords_access" +msgstr "" + +#: templates/pwdb/authenticate.html:5 +msgid "authenticate" +msgstr "" + +#: templates/pwdb/authenticate.html:10 +msgid "safety_enter_password" +msgstr "" + +#: templates/pwdb/authenticate.html:15 +msgid "send" +msgstr "" + +#: templates/pwdb/list_passwords.html:16 +msgid "Actions" +msgstr "" + +#: templates/pwdb/list_passwords.html:26 +msgid "copy_password" +msgstr "" + +#: templates/pwdb/list_passwords.html:27 +msgid "show_password" +msgstr "" + +#: templates/pwdb/list_passwords.html:28 +msgid "hide_password" +msgstr "" diff --git a/pwdb/locale/ru/LC_MESSAGES/django.po b/pwdb/locale/ru/LC_MESSAGES/django.po new file mode 100644 index 0000000..38dcaa2 --- /dev/null +++ b/pwdb/locale/ru/LC_MESSAGES/django.po @@ -0,0 +1,77 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-21 12:27+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#: forms.py:11 forms.py:50 templates/pwdb/list_passwords.html:12 +msgid "Name" +msgstr "" + +#: forms.py:16 templates/pwdb/list_passwords.html:13 +msgid "Description" +msgstr "" + +#: forms.py:19 forms.py:52 templates/pwdb/list_passwords.html:15 +msgid "Password" +msgstr "" + +#: models.py:103 +msgid "shared_password" +msgstr "" + +#: models.py:104 templates/pwdb/list_passwords.html:4 +msgid "shared_passwords" +msgstr "" + +#: models.py:117 +msgid "shared_password_access" +msgstr "" + +#: models.py:118 +msgid "shared_passwords_access" +msgstr "" + +#: templates/pwdb/authenticate.html:5 +msgid "authenticate" +msgstr "" + +#: templates/pwdb/authenticate.html:10 +msgid "safety_enter_password" +msgstr "" + +#: templates/pwdb/authenticate.html:15 +msgid "send" +msgstr "" + +#: templates/pwdb/list_passwords.html:16 +msgid "Actions" +msgstr "" + +#: templates/pwdb/list_passwords.html:26 +msgid "copy_password" +msgstr "" + +#: templates/pwdb/list_passwords.html:27 +msgid "show_password" +msgstr "" + +#: templates/pwdb/list_passwords.html:28 +msgid "hide_password" +msgstr ""