From 5920e1bc08e0044cb500844d9a5c181c98b928ca Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Thu, 25 May 2023 23:54:58 +0300 Subject: [PATCH] [fix/typo] Fix the `tafseer` word typos --- .../ayah/dialogs/AyahDetailsDialog.form | 6 ++--- .../ayah/dialogs/AyahDetailsDialog.java | 22 +++++++++---------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/main/java/com/anas/intellij/plugins/ayah/dialogs/AyahDetailsDialog.form b/src/main/java/com/anas/intellij/plugins/ayah/dialogs/AyahDetailsDialog.form index e67e2e2..ce5d260 100644 --- a/src/main/java/com/anas/intellij/plugins/ayah/dialogs/AyahDetailsDialog.form +++ b/src/main/java/com/anas/intellij/plugins/ayah/dialogs/AyahDetailsDialog.form @@ -73,11 +73,11 @@ - + - + @@ -196,7 +196,7 @@ - + diff --git a/src/main/java/com/anas/intellij/plugins/ayah/dialogs/AyahDetailsDialog.java b/src/main/java/com/anas/intellij/plugins/ayah/dialogs/AyahDetailsDialog.java index 31ff0b6..c1d08f4 100644 --- a/src/main/java/com/anas/intellij/plugins/ayah/dialogs/AyahDetailsDialog.java +++ b/src/main/java/com/anas/intellij/plugins/ayah/dialogs/AyahDetailsDialog.java @@ -32,8 +32,8 @@ public class AyahDetailsDialog extends JDialog implements PlayerListener { private JButton previousButton; private JButton nextButton; private JCheckBox autoPlayCheckBox; - private JTextArea tafserTextArea; - private JComboBox tafserAndTranslationComboBox; + private JTextArea tafseerTextArea; + private JComboBox tafseerAndTranslationComboBox; private JComboBox editionComboBox; private boolean isPlaying; private AudioPlayer audioPlayer; @@ -76,7 +76,7 @@ public class AyahDetailsDialog extends JDialog implements PlayerListener { } }); - tafserAndTranslationComboBox.setModel(tafserAndTranslationComboBoxModel); + tafseerAndTranslationComboBox.setModel(tafserAndTranslationComboBoxModel); editionComboBox.setModel(editionComboBoxModel); // Set the default selected item for the editionComboBox @@ -91,8 +91,8 @@ public class AyahDetailsDialog extends JDialog implements PlayerListener { surahNameLabel.setText(ayah.getSurah().getName()); numberOfAyahInSuarhLabel.setText("آية رقم: " + ayah.getNumberInSurah()); ayahRevelationType.setText(ayah.getSurah().getRevelationType().getArabicName()); - // Update the tafser or translation - updateTheTauserTextArea(); + // Update the tafseer or translation + updateTheTauseerTextArea(); } private void addListeners() { @@ -133,8 +133,8 @@ public class AyahDetailsDialog extends JDialog implements PlayerListener { } }); - tafserAndTranslationComboBox.addActionListener(e -> { - updateTheTauserTextArea(); + tafseerAndTranslationComboBox.addActionListener(e -> { + updateTheTauseerTextArea(); }); editionComboBox.addActionListener(e -> { @@ -167,15 +167,15 @@ public class AyahDetailsDialog extends JDialog implements PlayerListener { JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT); } - private void updateTheTauserTextArea() { + private void updateTheTauseerTextArea() { final var selectedEdition = ((ReadableEdition) Objects.requireNonNull( - tafserAndTranslationComboBox.getSelectedItem())).getEdition(); + tafseerAndTranslationComboBox.getSelectedItem())).getEdition(); try { - tafserTextArea.setText(Ayah.getAyah(ayah.getNumber(), selectedEdition).getText()); + tafseerTextArea.setText(Ayah.getAyah(ayah.getNumber(), selectedEdition).getText()); } catch (final IOException ioException) { ioException.printStackTrace(); JOptionPane.showMessageDialog(this, - "Error while loading the tafser - check your internet connection", + "Error while loading the tafseer - check your internet connection", "Error", JOptionPane.ERROR_MESSAGE); } }