Skip to content

Commit

Permalink
Merge pull request #277 from step0ne/russian_emoji_v2
Browse files Browse the repository at this point in the history
Add Russian emoji language
  • Loading branch information
TahirJalilov committed Dec 5, 2023
2 parents d97e3d4 + 91ddb34 commit 1846483
Show file tree
Hide file tree
Showing 8 changed files with 9,490 additions and 4,736 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ var/
*.egg-info/
.installed.cfg
*.egg
*.DS_Store

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
emoji
=====

v2.9.0 (2023-12-05)
-----
* Added Russian translation

v2.8.0 (2023-08-16)
-----
* Update translations to unicode release-43-1
Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ By default, the language is English (``language='en'``) but also supported langu
* Simplified Chinese (``'zh'``)
* Japanese (``'ja'``)
* Korean (``'ko'``)
* Russian (``'ru'``)


.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion emoji/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'EMOJI_DATA', 'STATUS', 'LANGUAGES',
]

__version__ = '2.8.0'
__version__ = '2.9.0'
__author__ = 'Taehoon Kim, Kevin Wurster'
__email__ = 'carpedm20@gmail.com'
# and wursterk@gmail.com, tahir.jalilov@gmail.com
Expand Down
2 changes: 1 addition & 1 deletion emoji/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
]

_DEFAULT_DELIMITER = ':'
_EMOJI_NAME_PATTERN = '\\w\\-&.’”“()!#*+,/«»\u0300\u0301\u0302\u0303\u0308\u030a\u0327\u064b\u064e\u064f\u0650\u0653\u0654\u3099\u30fb\u309a'
_EMOJI_NAME_PATTERN = '\\w\\-&.’”“()!#*+,/«»\u0300\u0301\u0302\u0303\u0306\u0308\u030a\u0327\u064b\u064e\u064f\u0650\u0653\u0654\u3099\u30fb\u309a'


class config():
Expand Down

0 comments on commit 1846483

Please sign in to comment.