mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
The `emoji` library has been removed, in favor of using constants for the few emojis used in the codebase. This reduces memory usage, and avoids calling `emojize` for Python to discover where to replace emojis in pre-defined strings.
9 lines
241 B
Python
9 lines
241 B
Python
EMOJI_ALIEN_MONSTER = "👾"
|
|
EMOJI_CHECK_MARK = "✔\ufe0f"
|
|
EMOJI_CROSS_MARK = "❌"
|
|
EMOJI_MAGNIFYING_GLASS_TILTED_RIGHT = "🔎"
|
|
EMOJI_STOP_BUTTON = "⏹\ufe0f"
|
|
EMOJI_STOP_SIGN = "🛑"
|
|
EMOJI_VIDEO_GAME = "🎮"
|
|
EMOJI_WARNING = "⚠\ufe0f"
|