Skip to content

Commit

Permalink
Fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeinabBahaa committed Dec 12, 2024
1 parent 2ca1761 commit 637c75f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion exceptions/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def title(self) -> str:
@property
def body(self) -> str:
Globals.effects_manager.play("error")
body = "حدث خطأ. يرجى الاتصال بالدعم للحصول على المساعدة."
body = "حدث خطأ، إذا استمرت المشكلة، يرجى تفعيل السجل وتكرار الإجراء الذي تسبب بالخطأ ومشاركة رمز الخطأ والسجل مع المطورين."
code = self.get_code()
if code:
body += f"\nرمز الخطأ: {code}"
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def main():
except Exception as e:
print(e)
Logger.error(str(e))
QMessageBox.critical(None, "Error", "حدث خطأ. يرجى الاتصال بالدعم للحصول على المساعدة.")
QMessageBox.critical(None, "Error", "حدث خطأ، إذا استمرت المشكلة، يرجى تفعيل السجل وتكرار الإجراء الذي تسبب بالخطأ ومشاركة رمز الخطأ والسجل مع المطورين.")

if __name__ == "__main__":
freeze_support()
Expand Down
2 changes: 1 addition & 1 deletion ui/quran_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def onContextMenu(self):
get_interpretation_verse = menu.addAction("تفسير الآية")
get_interpretation_verse.triggered.connect(self.OnInterpretation)

submenu = menu.addMenu("تفسير الآية")
submenu = menu.addMenu("التفسير")
arabic_categories = Category.get_categories_in_arabic()
for arabic_category in arabic_categories:
action = QAction(arabic_category, self)
Expand Down
2 changes: 1 addition & 1 deletion ui/widgets/menu_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def create_menu(self):
self.verse_tafsir_action.triggered.connect(self.parent.OnInterpretation)
self.verse_tafsir_action.setShortcut(QKeySequence("Ctrl+T"))

self.tafaseer_menu = QMenu("تفسير الآية")
self.tafaseer_menu = QMenu("التفسير")
self.tafaseer_menu.setAccessibleName("قائمة المفسرين")
tafaseershortcut = QShortcut(QKeySequence("Shift+T"), self)
tafaseershortcut.activated.connect(self.OnTafaseerMenu)
Expand Down
2 changes: 1 addition & 1 deletion utils/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ def my_excepthook(cls, exctype, value, tb):

cls.error(error_message)
print(error_message)
cls.show_error_message("حدث خطأ. يرجى الاتصال بالدعم للحصول على المساعدة.")
cls.show_error_message("حدث خطأ، إذا استمرت المشكلة، يرجى تفعيل السجل وتكرار الإجراء الذي تسبب بالخطأ ومشاركة رمز الخطأ والسجل مع المطورين.")

0 comments on commit 637c75f

Please sign in to comment.