Skip to content

Commit 2c558cc

Browse files
committed
feat(i18n): add Ukrainian translation and update changelog
1 parent ec39913 commit 2c558cc

File tree

4 files changed

+123
-0
lines changed

4 files changed

+123
-0
lines changed

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ Authors
148148
- `Sridhar Marella <https://github.com/sridhar562345>`_
149149
- `Mattia Fantoni <https://github.com/MattFanto>`_
150150
- `Trent Holliday <https://github.com/trumpet2012>`_
151+
- Denys Rozum (`denusbtw <https://github.com/denusbtw>`_)
151152

152153
Background
153154
==========

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Unreleased
66

77
- Added support for Python 3.14
88
- Added support for Django 6.0
9+
- Added Ukrainian localization
910

1011
3.10.1 (2025-06-20)
1112
-------------------
2.41 KB
Binary file not shown.
Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3+
# This file is distributed under the same license as the PACKAGE package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
#, fuzzy
7+
msgid ""
8+
msgstr ""
9+
"Project-Id-Version: PACKAGE VERSION\n"
10+
"Report-Msgid-Bugs-To: \n"
11+
"POT-Creation-Date: 2025-11-10 00:42+0200\n"
12+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"Language-Team: LANGUAGE <[email protected]>\n"
15+
"Language: \n"
16+
"MIME-Version: 1.0\n"
17+
"Content-Type: text/plain; charset=UTF-8\n"
18+
"Content-Transfer-Encoding: 8bit\n"
19+
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
20+
"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
21+
"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
22+
"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
23+
24+
#: admin.py:77
25+
#, python-format
26+
msgid "Change history: %s"
27+
msgstr "Історія змін: %s"
28+
29+
#: admin.py:96
30+
#, python-format
31+
msgid "The %(name)s \"%(obj)s\" was changed successfully."
32+
msgstr "%(name)s \"%(obj)s\" було успішно змінено."
33+
34+
#: admin.py:102
35+
msgid "You may edit it again below"
36+
msgstr "Ви можете відредагувати його знову нижче"
37+
38+
#: admin.py:160
39+
#, python-format
40+
msgid "Revert %s"
41+
msgstr "Відновити %s"
42+
43+
#: models.py:304
44+
msgid "Created"
45+
msgstr "Створено"
46+
47+
#: models.py:305
48+
msgid "Changed"
49+
msgstr "Змінено"
50+
51+
#: models.py:306
52+
msgid "Deleted"
53+
msgstr "Видалено"
54+
55+
#: templates/simple_history/object_history.html:11
56+
msgid ""
57+
"Choose a date from the list below to revert to a previous version of this "
58+
"object."
59+
msgstr ""
60+
"Виберіть дату із списку нижче, щоб повернутись до минулої версії цього "
61+
"об’єкта."
62+
63+
#: templates/simple_history/object_history.html:17
64+
msgid "This object doesn't have a change history."
65+
msgstr "Цей об’єкт не має історії змін."
66+
67+
#: templates/simple_history/object_history_form.html:7
68+
msgid "Home"
69+
msgstr "Головна"
70+
71+
#: templates/simple_history/object_history_form.html:11
72+
msgid "History"
73+
msgstr "Історія"
74+
75+
#: templates/simple_history/object_history_form.html:12
76+
#, python-format
77+
msgid "Revert %(verbose_name)s"
78+
msgstr "Відновити %(verbose_name)s"
79+
80+
#: templates/simple_history/object_history_form.html:21
81+
msgid ""
82+
"Press the 'Revert' button below to revert to this version of the object."
83+
msgstr ""
84+
"Натисніть кнопку ‘Відновити’ нижче, щоб повернутись до цієї версії "
85+
"об’єкта."
86+
87+
#: templates/simple_history/object_history_form.html:21
88+
msgid "Or press the 'Change History' button to edit the history."
89+
msgstr "Або натисніть кнопку ‘Змінити запис’ щоб змінити історію."
90+
91+
#: templates/simple_history/object_history_list.html:9
92+
msgid "Object"
93+
msgstr "Об’єкт"
94+
95+
#: templates/simple_history/object_history_list.html:13
96+
msgid "Date/time"
97+
msgstr "Дата/час"
98+
99+
#: templates/simple_history/object_history_list.html:14
100+
msgid "Comment"
101+
msgstr "Коментар"
102+
103+
#: templates/simple_history/object_history_list.html:15
104+
msgid "Changed by"
105+
msgstr "Змінено"
106+
107+
#: templates/simple_history/object_history_list.html:16
108+
msgid "Change reason"
109+
msgstr "Причина зміни"
110+
111+
#: templates/simple_history/object_history_list.html:42
112+
msgid "None"
113+
msgstr "None"
114+
115+
#: templates/simple_history/submit_line.html:3
116+
msgid "Revert"
117+
msgstr "Відновити"
118+
119+
#: templates/simple_history/submit_line.html:4
120+
msgid "Change History"
121+
msgstr "Змінити історію."

0 commit comments

Comments
 (0)