diff --git a/content/community/nav.yml b/content/community/nav.yml index eed62682b..34acf1cc2 100644 --- a/content/community/nav.yml +++ b/content/community/nav.yml @@ -1,4 +1,4 @@ -- title: Community Resources +- title: Resursi zajednice items: - id: support title: Support diff --git a/content/docs/nav.yml b/content/docs/nav.yml index 09f73ca6a..f3f28d23b 100644 --- a/content/docs/nav.yml +++ b/content/docs/nav.yml @@ -1,89 +1,89 @@ -- title: Installation +- title: Instalacija items: - id: getting-started - title: Getting Started + title: Prvi koraci - id: add-react-to-a-website - title: Add React to a Website + title: Dodavanje React-a - id: create-a-new-react-app - title: Create a New React App + title: Nova React aplikacija - id: cdn-links - title: CDN Links + title: CDN linkovi - id: release-channels title: Release Channels -- title: Main Concepts +- title: Glavni koncepti isOrdered: true items: - id: hello-world - title: Hello World + title: Zdravo, svete - id: introducing-jsx - title: Introducing JSX + title: Upoznavanje JSX - id: rendering-elements - title: Rendering Elements + title: Prikazivanje elemenata - id: components-and-props - title: Components and Props + title: Komponente i svojstva - id: state-and-lifecycle - title: State and Lifecycle + title: Stanje i životni vek - id: handling-events - title: Handling Events + title: Rukovanje događajima - id: conditional-rendering - title: Conditional Rendering + title: Uslovno prikazivanje - id: lists-and-keys - title: Lists and Keys + title: Liste i ključevi - id: forms - title: Forms + title: Forme - id: lifting-state-up - title: Lifting State Up + title: Prenošenje stanja naviše - id: composition-vs-inheritance - title: Composition vs Inheritance + title: Kompozicija vs Nasleđivanje - id: thinking-in-react - title: Thinking In React -- title: Advanced Guides + title: Razmišljanje u React-u +- title: Napredni vodič items: - id: accessibility - title: Accessibility + title: Pristupačnost - id: code-splitting - title: Code-Splitting + title: Razdvanjanje koda - id: context - title: Context + title: Kontekst - id: error-boundaries - title: Error Boundaries + title: Granice grešaka - id: forwarding-refs - title: Forwarding Refs + title: Prosleđivanje Ref-ova - id: fragments - title: Fragments + title: Fragmenti - id: higher-order-components - title: Higher-Order Components + title: Komponente višeg reda - id: integrating-with-other-libraries - title: Integrating with Other Libraries + title: Integracija sa drugim bibliotekama - id: jsx-in-depth - title: JSX In Depth + title: Napredni JSX - id: optimizing-performance - title: Optimizing Performance + title: Optimizacija performansi - id: portals - title: Portals + title: Portali - id: profiler title: Profiler - id: react-without-es6 - title: React Without ES6 + title: React bez ES6 - id: react-without-jsx - title: React Without JSX + title: React bez JSX - id: reconciliation title: Reconciliation - id: refs-and-the-dom - title: Refs and the DOM + title: Ref-ovi i DOM - id: render-props title: Render Props - id: static-type-checking - title: Static Type Checking + title: Statička tipizacija - id: strict-mode - title: Strict Mode + title: Striktni režim - id: typechecking-with-proptypes - title: Typechecking With PropTypes + title: Tipizacija sa PropTypes - id: uncontrolled-components - title: Uncontrolled Components + title: Nekontrolisane komponente - id: web-components - title: Web Components -- title: API Reference + title: Veb komponente +- title: API priručnik items: - id: react-api title: React diff --git a/content/footerNav.yml b/content/footerNav.yml index edd2c3313..59f555d57 100644 --- a/content/footerNav.yml +++ b/content/footerNav.yml @@ -1,24 +1,24 @@ community: - title: Community + title: Zajednica docs: - title: Docs + title: Dokumentacija more: - title: More + title: Dodatno items: - - title: Tutorial + - title: Tutorijal to: /tutorial/tutorial.html - title: Blog to: /blog - - title: Acknowledgements + - title: Priznanja to: /acknowledgements.html - title: React Native to: https://reactnative.dev/ external: true channels: - title: Channels + title: Kanali items: - title: GitHub to: https://github.com/facebook/react @@ -26,13 +26,13 @@ channels: - title: Stack Overflow to: https://stackoverflow.com/questions/tagged/reactjs external: true - - title: Discussion Forums + - title: Forumi za diskusiju to: https://reactjs.org/community/support.html#popular-discussion-forums external: true - title: Reactiflux Chat to: https://discord.gg/reactiflux external: true - - title: DEV Community + - title: DEV zajednica to: https://dev.to/t/react external: true - title: Facebook diff --git a/content/headerNav.yml b/content/headerNav.yml index 325a95c48..0e4f21c13 100644 --- a/content/headerNav.yml +++ b/content/headerNav.yml @@ -1,13 +1,13 @@ items: - - title: Docs + - title: Dokumentacija to: /docs/getting-started.html activeSelector: /docs/ - - title: Tutorial + - title: Tutorijal to: /tutorial/tutorial.html activeSelector: /tutorial - title: Blog to: /blog/ activeSelector: /blog - - title: Community + - title: Zajednica to: /community/support.html activeSelector: /community diff --git a/content/home/examples/a-component-using-external-plugins.js b/content/home/examples/a-component-using-external-plugins.js index 305efe61c..e7185e02c 100644 --- a/content/home/examples/a-component-using-external-plugins.js +++ b/content/home/examples/a-component-using-external-plugins.js @@ -3,7 +3,7 @@ class MarkdownEditor extends React.Component { super(props); this.md = new Remarkable(); this.handleChange = this.handleChange.bind(this); - this.state = { value: 'Hello, **world**!' }; + this.state = { value: 'Zdravo, **svete**!' }; } handleChange(e) { @@ -17,16 +17,16 @@ class MarkdownEditor extends React.Component { render() { return (