Skip to content

Commit

Permalink
Github.ist -> GitHub.ist alpcanaydin#1
Browse files Browse the repository at this point in the history
  • Loading branch information
vvscode committed Sep 25, 2019
1 parent 72665f8 commit fa38da7
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Github.ist
# GitHub.ist

This is the Web application repo for https://github.ist. You may also want to take a look to [API](https://github.com/alpcanaydin/githubist-api) and [Fetcher](https://github.com/alpcanaydin/githubist-fetcher)

Expand Down
4 changes: 2 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import './App.scss';
import Routes from './routes';
import { Header, Footer, ScrollToTop } from './components';

const metaTitle = 'Github.ist';
const metaTitle = 'GitHub.ist';
const metaDesc =
'Github üzerinde lokasyonu Türkiye olarak gözüken geliştiriciler için şehir, dil, repo ve geliştirici istatistikleri.';

const App = () => (
<Fragment>
<Helmet titleTemplate="%s - Github.ist" defaultTitle="Github.ist">
<Helmet titleTemplate="%s - GitHub.ist" defaultTitle="GitHub.ist">
<html lang="tr" />

<meta name="description" content={metaDesc} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Logo/Logo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Logo = ({ className, alt }: Props) => {

Logo.defaultProps = {
className: '',
alt: 'Github.ist',
alt: 'GitHub.ist',
};

export default Logo;
2 changes: 1 addition & 1 deletion src/components/Logo/__snapshots__/Logo.test.jsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`renders correctly 1`] = `
<img
alt="Github.ist"
alt="GitHub.ist"
className=""
src={
Object {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Developer/Developer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Developer = ({ match }: Props) => (
return <ErrorState />;
}

const metaTitle = `${data.developer.name} - Github.ist`;
const metaTitle = `${data.developer.name} - GitHub.ist`;
const metaDesc = `${data.developer.name} için Github Türkiye istatistikleri`;

return (
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Developer/tabs/GeneralInfo/GeneralInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const GeneralInfo = ({ match }: Props) => (
<List columns={2}>
<Highlight
subject={data.developer.stats.rank.toLocaleString()}
title="Github.ist Sıralaması"
title="GitHub.ist Sıralaması"
/>
<Highlight
subject={data.developer.stats.locationRank.toLocaleString()}
Expand Down
4 changes: 2 additions & 2 deletions src/routes/Developers/Developers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Developers = () => (
return <ErrorState />;
}

const metaTitle = 'Geliştiriciler - Github.ist';
const metaTitle = 'Geliştiriciler - GitHub.ist';
const metaDesc =
'Github üzerinde lokasyonu Türkiye olarak gözüken geliştiriciler için istatistikler.';

Expand All @@ -51,7 +51,7 @@ const Developers = () => (
<Container>
<PageHeading
title="Geliştiriciler"
subtitle={`Github.ist üzerinde toplam ${data.turkey.totalDevelopers.toLocaleString()} geliştirici bulunuyor.`}
subtitle={`GitHub.ist üzerinde toplam ${data.turkey.totalDevelopers.toLocaleString()} geliştirici bulunuyor.`}
/>

<LinkBar>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Language/Language.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Language = ({ match }: Props) => (
return <ErrorState />;
}

const metaTitle = `${data.language.name} - Github.ist`;
const metaTitle = `${data.language.name} - GitHub.ist`;
const metaDesc = `${data.language.name} dili için Github Türkiye istatistikleri`;

return (
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Language/tabs/GeneralInfo/GeneralInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const GeneralInfo = ({ match }: Props) => (
<List columns={3}>
<Highlight
subject={data.language.stats.rank.toLocaleString()}
title="Github.ist Sıralaması"
title="GitHub.ist Sıralaması"
/>
<Highlight
subject={data.language.stats.developersCountRank.toLocaleString()}
Expand Down
4 changes: 2 additions & 2 deletions src/routes/Languages/Languages.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Languages = () => (
return <ErrorState />;
}

const metaTitle = 'Diller - Github.ist';
const metaTitle = 'Diller - GitHub.ist';
const metaDesc =
'Github üzerinde lokasyonu Türkiye olarak gözüken geliştiriciler için dil istatikleri.';

Expand All @@ -50,7 +50,7 @@ const Languages = () => (
<Container>
<PageHeading
title="Diller"
subtitle={`Github.ist üzerinde toplam ${data.turkey.totalLanguages.toLocaleString()} dil bulunuyor.`}
subtitle={`GitHub.ist üzerinde toplam ${data.turkey.totalLanguages.toLocaleString()} dil bulunuyor.`}
/>

<LinkBar>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Location/Location.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Location = ({ match }: Props) => (
return <ErrorState />;
}

const metaTitle = `${data.location.name} - Github.ist`;
const metaTitle = `${data.location.name} - GitHub.ist`;
const metaDesc = `${data.location.name} için Github Türkiye istatistikleri`;

return (
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Location/tabs/GeneralInfo/GeneralInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const GeneralInfo = ({ match }: Props) => (
<List columns={2}>
<Highlight
subject={data.location.stats.rank.toLocaleString()}
title="Github.ist Sıralaması"
title="GitHub.ist Sıralaması"
/>
<Highlight
subject={data.location.totalDevelopers.toLocaleString()}
Expand Down
4 changes: 2 additions & 2 deletions src/routes/Locations/Locations.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Locations = () => (
return <ErrorState />;
}

const metaTitle = 'Şehirler - Github.ist';
const metaTitle = 'Şehirler - GitHub.ist';
const metaDesc = 'Github için Türkiye şehirleri için istatikler.';

return (
Expand All @@ -49,7 +49,7 @@ const Locations = () => (
<Container>
<PageHeading
title="Şehirler"
subtitle={`Github.ist üzerinde toplam ${data.turkey.totalLocations.toLocaleString()} şehir bulunuyor.`}
subtitle={`GitHub.ist üzerinde toplam ${data.turkey.totalLocations.toLocaleString()} şehir bulunuyor.`}
/>

<LinkBar>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/Repositories/Repositories.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Repos = () => (
return <ErrorState />;
}

const metaTitle = 'Repolar - Github.ist';
const metaTitle = 'Repolar - GitHub.ist';
const metaDesc =
'Github üzerinde lokasyonu Türkiye olarak gözüken geliştiriciler için repository istatistikleri.';

Expand All @@ -50,7 +50,7 @@ const Repos = () => (
<Container>
<PageHeading
title="Repolar"
subtitle={`Github.ist üzerinde toplam ${data.turkey.totalRepositories.toLocaleString()} repository bulunuyor.`}
subtitle={`GitHub.ist üzerinde toplam ${data.turkey.totalRepositories.toLocaleString()} repository bulunuyor.`}
/>

<LinkBar>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/Repository/Repository.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const Repository = ({ match }: Props) => (
return <ErrorState />;
}

const metaTitle = `${data.repository.slug} - Github.ist`;
const metaTitle = `${data.repository.slug} - GitHub.ist`;
const metaDesc = `${data.repository.slug} için Github Türkiye istatistikleri`;

return (
Expand Down Expand Up @@ -84,7 +84,7 @@ const Repository = ({ match }: Props) => (
<Highlight subject={data.repository.language.name.toLocaleString()} title="Dil" />
<Highlight
subject={data.repository.stats.rank.toLocaleString()}
title="Github.ist Sıralaması"
title="GitHub.ist Sıralaması"
/>
<Highlight
subject={data.repository.stats.languageRank.toLocaleString()}
Expand Down

0 comments on commit fa38da7

Please sign in to comment.