-
Notifications
You must be signed in to change notification settings - Fork 892
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
503 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent"> | ||
<ScrollView | ||
android:id="@+id/scrollViewPlay" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content"> | ||
<RadioGroup android:id="@+id/radioGroupPlay" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:isScrollContainer="true"> | ||
<TextView android:text="@string/play_dialog_message" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="center_horizontal"/> | ||
<RadioButton android:id="@+id/radioPlayPage" android:text="Start of Page" android:checked="true"/> | ||
<RadioButton android:id="@+id/radioPlayLast" android:text="Last Played Ayah"/> | ||
</RadioGroup> | ||
</ScrollView> | ||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="actionbar_separator">#0f2d4d</color> | ||
<color name="actionbar_separator">#0f2d4d</color> | ||
<color name="page_border_color">#802A2A</color> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,9 +46,12 @@ | |
<string name="email_to">[email protected]</string> | ||
<string name="aboutUs">Quran Android is a free, open source Quran | ||
application for Android. The images used are from the quran.com | ||
project, and the data used in the translations and Arabic comes from | ||
project, the audio comes from everyayah.com, | ||
the data used in the translations and Arabic comes from | ||
tanzil.net. | ||
\n\nCredits: | ||
\n Ahmed Farra - bugfixes and many contributions. | ||
\n Mahmoud Hossam - bugfixes. | ||
\n @fo2ad - audio recitation support | ||
\n @wnafee - page flip animation (based on android-page-curl project) | ||
\n @hams_rrr - arabic support for non-arabic phones | ||
|
@@ -62,9 +65,8 @@ | |
</string> | ||
<string name="help_title">Quran Android Help</string> | ||
<string name="help">- Flip your screen to landscape mode for a zoomed in version. | ||
\n- Change pages by tapping the right or left side of the screen, or by | ||
swiping your finger across the screen. | ||
\n- Tap the center of the screen to get a slider for switching pages. | ||
\n- Change pages by swiping your finger across the screen. | ||
\n- Tap the screen to get a bookmark button, a slider for switching pages and audio. | ||
\n- You can fix the orientation in either landscape or portrait modes. | ||
\n- Browse and download available translations (choose Menu > Get Translations). | ||
\n- You can download as many translations as you want, yet only one translation | ||
|
@@ -83,6 +85,7 @@ | |
<string name="prefs_use_arabic_names">useArabicNames</string> | ||
<string name="prefs_keep_screen_on">keepScreenOn</string> | ||
<string name="prefs_display_marker_popup">displayMarkerPopup</string> | ||
<string name="prefs_auto_scroll">autoScroll</string> | ||
<string name="prefs_lock_orientation">lockOrientation</string> | ||
<string name="prefs_landscape_orientation">landscapeOrientation</string> | ||
<string name="prefs_translation_text_size">translationTextSize</string> | ||
|
@@ -118,5 +121,10 @@ | |
<string name="set_active">Set Active</string> | ||
<string name="prompt_select_ayah">Select Ayah</string> | ||
<string name="prompt_select_sura">Select Sura</string> | ||
<string name="radio_download_message">Choose download option</string> | ||
<string name="prompt_select_reciter">Select Reciter</string> | ||
<string name="play_dialog_message">Start playing from...</string> | ||
<string name="play_dialog_page">Current Page (%s)</string> | ||
<string name="play_dialog_resume">Resume %1$s : %2$s</string> | ||
<string name="download_dialog_message">Choose download option</string> | ||
<string name="download_dialog_page">Current Page (%s)</string> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.