Skip to content

Fix wrong CI workflow file name and other CI issues #337

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 2, 2022
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
4 changes: 2 additions & 2 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
path: beta/.next/cache
# change this if you prefer a more strict cache
key: ${{ runner.os }}-build-${{ env.cache-name }}
key: ${{ runner.os }}-build-${{ env.cache-name }}-reactjs-tr-org

- name: Build next.js app
# change this if your site requires a custom build command
Expand All @@ -54,7 +54,7 @@ jobs:
uses: dawidd6/action-download-artifact@v2
if: success() && github.event.number
with:
workflow: bundle_analysis_upload.yml
workflow: analyze.yml
branch: ${{ github.event.pull_request.base.ref }}
name: bundle_analysis.json
path: beta/.next/analyze/base/bundle
Expand Down
2 changes: 1 addition & 1 deletion examples/context/motivation-solution.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// highlight-range{1-4}
// Context her bir bileşenin içinden açıkça geçmeden,
// Context her bir bileşenin içinden açıkça geçmeden,
// bileşen ağacının derinliklerine bir value geçmemizi sağlar.
// Mevcut theme için bir context oluştur (varsayılan olarak "light" ile).
const ThemeContext = React.createContext('light');
Expand Down
2 changes: 1 addition & 1 deletion examples/context/updating-nested-context-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class App extends React.Component {
};

// highlight-range{1-2,5}
// State ayrıca güncelleme işlevini içerir,
// State ayrıca güncelleme işlevini içerir,
// böylece context provider'a aktarılır.
this.state = {
theme: themes.light,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {ThemeContext} from './theme-context';

function ThemeTogglerButton() {
// highlight-range{1-2,5}
// Tema Değiştirme Düğmesi yalnızca temayı değil,
// Tema Değiştirme Düğmesi yalnızca temayı değil,
// aynı zamanda context'ten bir toggleTheme methodu alır
return (
<ThemeContext.Consumer>
Expand Down
6 changes: 3 additions & 3 deletions src/components/ErrorDecoder/ErrorDecoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,16 @@ function ErrorResult(props: {|code: ?string, msg: string|}) {
if (!code) {
return (
<p>
Bir hata ile karşılaştığınızda, söz konusu hata için bu sayfaya
bir bağlantı alırsınız ve size tam hata metnini gösteririz.
{`Bir hata ile karşılaştığınızda, söz konusu hata için bu sayfaya bir
bağlantı alırsınız ve size tam hata metnini gösteririz.`}
</p>
);
}

return (
<div>
<p>
<b>Az önce karşılaştığınız hatanın tam metni:</b>
<b>{`Az önce karşılaştığınız hatanın tam metni:`}</b>
</p>
<code>
<b>{urlify(errorMsg)}</b>
Expand Down
4 changes: 2 additions & 2 deletions src/components/MarkdownPage/MarkdownPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ const MarkdownPage = ({
key={author.frontmatter.name}>
{author.frontmatter.name}
</a>
))}
{' '}tarafından
))}{' '}
tarafından
</span>
)}
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/components/TitleAndMetaTags/TitleAndMetaTags.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import {urlRoot} from 'site-constants';
// $FlowFixMe This is a valid path
import languages from '../../../content/languages.yml';

const defaultDescription = 'Kullanıcı arayüzleri geliştirebileceğiniz bir JavaScript kütüphanesi';
const defaultDescription =
'Kullanıcı arayüzleri geliştirebileceğiniz bir JavaScript kütüphanesi';

type Props = {
title: string,
Expand Down
3 changes: 2 additions & 1 deletion src/pages/404.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ const PageNotFound = ({location}: Props) => (
<div css={sharedStyles.markdown}>
<p>Aradığınız şeyi bulamadık.</p>
<p>
Lütfen sizi orijinal URL’e bağlayan sitenin sahibiyle iletişime geçin ve bağlantılarının bozuk olduğunu bildirin.
Lütfen sizi orijinal URL’e bağlayan sitenin sahibiyle iletişime
geçin ve bağlantılarının bozuk olduğunu bildirin.
</p>
</div>
</div>
Expand Down