Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

fixed local keys #668

Merged
merged 1 commit into from
Mar 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Audioplayer/ScrollButton/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const style = require('../style.scss');

const ScrollButton = ({ shouldScroll, onScrollToggle }) => {
const tooltip = (
<Tooltip id="scroll-button-tooltip">
<Tooltip id="scroll-button-tooltip" placement="bottom">
<LocaleFormattedMessage
id="player.scrollButtonTip"
defaultMessage="Automatically scrolls to the currently playing ayah on transitions..."
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const Footer = () => (
</div>
<div className={`${styles.links} col-md-4 col-sm-12 col-xs-12`}>
<p className="monserrat">
<LocaleFormattedMessage id="nav.nav.aboutQuranProject" defaultMessage="QURAN.COM (ALSO KNOWN AS THE NOBLE QURAN, AL QURAN, HOLY QURAN, KORAN) IS A PRO BONO PROJECT." />.
<LocaleFormattedMessage id="nav.aboutQuranProject" defaultMessage="QURAN.COM (ALSO KNOWN AS THE NOBLE QURAN, AL QURAN, HOLY QURAN, KORAN) IS A PRO BONO PROJECT." />.
</p>
<p className="monserrat">
&copy; 2016 Quran.com. <LocaleFormattedMessage id="nav.rightsReserved" defaultMessage="All Rights Reserved" />.
Expand Down
2 changes: 1 addition & 1 deletion src/components/Home/LastVisit/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const LastVisit = (props) => {
return (
<div>
<h4 className={`text-muted ${styles.title}`}>
<LocaleFormattedMessage id="chapter.index.continue" defaultMessage="Continue" />{' '}
<LocaleFormattedMessage id="surah.index.continue" defaultMessage="Continue" />{' '}
<Link to={`/${props.chapter.chapterNumber}/${props.verse}`}>
<span>
{props.chapter.nameSimple} ({props.chapter.chapterNumber}:{props.verse})
Expand Down
2 changes: 1 addition & 1 deletion src/containers/Home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Home = (props) => {
}
<QuickSurahs />
<h4 className={`text-muted ${styles.title}`}>
<LocaleFormattedMessage id="chapter.index.heading" defaultMessage="SURAHS (CHAPTERS)" />
<LocaleFormattedMessage id="surah.index.heading" defaultMessage="SURAHS (CHAPTERS)" />
</h4>
<div className="row">
<SurahsList chapters={Object.values(props.chapters).slice(0, 38)} />
Expand Down