Skip to content

Commit

Permalink
Upgrade neopia Lib to 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongJun-Lee committed Aug 10, 2024
1 parent 3b47cc9 commit e788aca
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__title__ = "mu-editor"
__description__ = "A simple Python editor for beginner programmers."

__version__ = "1.2.4"
__version__ = "1.2.5"

__license__ = "GPL3"
__url__ = "https://github.com/mu-editor/mu"
Expand Down
Binary file modified mu/locale/uz_UZ/LC_MESSAGES/mu.mo
Binary file not shown.
14 changes: 9 additions & 5 deletions mu/locale/uz_UZ/LC_MESSAGES/mu.po
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: mu-editor\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2023-11-25 00:20+0500\n"
"PO-Revision-Date: 2024-07-27 13:59\n"
"PO-Revision-Date: 2024-08-10 15:04\n"
"Last-Translator: \n"
"Language: uz\n"
"Language-Team: Uzbek\n"
Expand Down Expand Up @@ -436,7 +436,7 @@ msgstr "Qurilmadagi fayllar roʻyxatini olishda muammo yuz berdi. Iltimos, texni

#: mu/interface/panes.py:966
msgid "There was a problem copying the file '{}' onto the device. Please check Mu's logs for more information."
msgstr "“{}” faylini qurilmaga nusxalashda muammo yuz berdi. Qo'shimcha ma'lumot olish uchun Muning jurnallarini tekshiring."
msgstr "“{}” faylini qurilmaga nusxalashda muammo yuz berdi. Qaytadan o'rinib ko'ring. Va qo'shimcha ma'lumot olish uchun Muning jurnallarini tekshiring."

#: mu/interface/panes.py:978
msgid "There was a problem deleting '{}' from the device. Please check Mu's logs for more information."
Expand Down Expand Up @@ -943,7 +943,9 @@ msgstr "Qurilma ushbu kompyuterga ulanganligiga ishonch hosil qiling.\n\n"
msgid "Please make sure the device is plugged into this computer.\n\n"
"It must have a version of MicroPython (or CircuitPython) flashed onto it before the Plotter will work.\n\n"
"Finally, press the device's reset button and wait a few seconds before trying again."
msgstr ""
msgstr "Qurilma ushbu kompyuterga ulanganligiga ishonch hosil qiling.\n\n"
"Plotter ishlashidan oldin qurilmasi MicroPython (yoki CircuitPython) ga ega bo'lishi kerak.\n\n"
"Nihoyat, qurilmadagi qayta o'rnatish tugmasini bosing va qayta urinishdan oldin bir necha soniya kuting."

#: mu/modes/circuitpython.py:37
msgid "CircuitPython"
Expand Down Expand Up @@ -1129,13 +1131,15 @@ msgstr "Fayl tizimi va REPL va plotter bir xil USB serial ulanishidan foydalanad

#: mu/modes/esp.py:237
msgid "Could not find an attached {board_name}"
msgstr ""
msgstr "Ulangan {board_name} ni topolmadi."

#: mu/modes/esp.py:240 mu/modes/microbit.py:585
msgid "Please make sure the device is plugged into this computer.\n\n"
"The device must have MicroPython flashed onto it before the file system will work.\n\n"
"Finally, press the device's reset button and wait a few seconds before trying again."
msgstr ""
msgstr "Qurilma ushbu kompyuterga ulanganligiga ishonch hosil qiling.\n\n"
"Qurilma ishlashidan oldin qurilmasi MicroPython ga ega bo'lishi kerak.\n\n"
"Nihoyat, qurilmadagi qayta o'rnatish tugmasini bosing va qayta urinishdan oldin bir necha soniya kuting."

#: mu/modes/esp.py:265
msgid "{board_name} board"
Expand Down
1 change: 1 addition & 0 deletions mu/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1123,6 +1123,7 @@ def restore_session(self, paths=None):
if "locale" in old_session:
self.user_locale = old_session["locale"].strip()
if self.user_locale:
logging.info("locale in old session: {}".format(self.user_locale))
i18n.set_language(self.user_locale)

old_window = old_session.get("window", {})
Expand Down
2 changes: 1 addition & 1 deletion mu/wheels/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class WheelsBuildError(WheelsError):
# a workaround we need to manually specify it here
("ipython_genutils", ("ipython_genutils>=0.2.0",)),
# For Neopia mode
("neopia", ("neopia>=0.3.0",)),
("neopia", ("neopia>=0.3.2",)),
]


Expand Down

0 comments on commit e788aca

Please sign in to comment.