|
2 | 2 | * Copyright (c) Facebook, Inc. and its affiliates. |
3 | 3 | */ |
4 | 4 |
|
5 | | -import * as React from 'react'; |
6 | | -import NextLink from 'next/link'; |
7 | 5 | import cn from 'classnames'; |
8 | 6 | import {ExternalLink} from 'components/ExternalLink'; |
9 | 7 | import {IconFacebookCircle} from 'components/Icon/IconFacebookCircle'; |
10 | | -import {IconTwitter} from 'components/Icon/IconTwitter'; |
11 | 8 | import {IconGitHub} from 'components/Icon/IconGitHub'; |
| 9 | +import {IconTwitter} from 'components/Icon/IconTwitter'; |
| 10 | +import NextLink from 'next/link'; |
| 11 | +import * as React from 'react'; |
12 | 12 |
|
13 | 13 | export function Footer() { |
14 | 14 | const socialLinkClasses = 'hover:text-primary dark:text-primary-dark'; |
@@ -288,66 +288,66 @@ export function Footer() { |
288 | 288 | </div> |
289 | 289 | <div className="flex flex-col"> |
290 | 290 | <FooterLink href="/learn" isHeader={true}> |
291 | | - Learn React |
| 291 | + Opettele Reactia |
292 | 292 | </FooterLink> |
293 | | - <FooterLink href="/learn/">Quick Start</FooterLink> |
294 | | - <FooterLink href="/learn/installation">Installation</FooterLink> |
| 293 | + <FooterLink href="/learn/">Pika-aloitus</FooterLink> |
| 294 | + <FooterLink href="/learn/installation">Asennus</FooterLink> |
295 | 295 | <FooterLink href="/learn/describing-the-ui"> |
296 | | - Describing the UI |
| 296 | + Käyttöliittymän kuvaus |
297 | 297 | </FooterLink> |
298 | 298 | <FooterLink href="/learn/adding-interactivity"> |
299 | | - Adding Interactivity |
| 299 | + Interaktiivisuuden lisääminen |
300 | 300 | </FooterLink> |
301 | | - <FooterLink href="/learn/managing-state">Managing State</FooterLink> |
302 | | - <FooterLink href="/learn/escape-hatches">Escape Hatches</FooterLink> |
| 301 | + <FooterLink href="/learn/managing-state">Tilan hallinta</FooterLink> |
| 302 | + <FooterLink href="/learn/escape-hatches">Pelastusluukut</FooterLink> |
303 | 303 | </div> |
304 | 304 | <div className="flex flex-col"> |
305 | 305 | <FooterLink href="/reference/react" isHeader={true}> |
306 | | - API Reference |
| 306 | + API viite |
307 | 307 | </FooterLink> |
308 | | - <FooterLink href="/reference/react">React APIs</FooterLink> |
309 | | - <FooterLink href="/reference/react-dom">React DOM APIs</FooterLink> |
| 308 | + <FooterLink href="/reference/react">React APIt</FooterLink> |
| 309 | + <FooterLink href="/reference/react-dom">React DOM APIt</FooterLink> |
310 | 310 | </div> |
311 | 311 | <div className="md:col-start-2 xl:col-start-4 flex flex-col"> |
312 | 312 | <FooterLink href="/community" isHeader={true}> |
313 | | - Community |
| 313 | + Yhteisö |
314 | 314 | </FooterLink> |
315 | 315 | <FooterLink href="https://github.com/facebook/react/blob/main/CODE_OF_CONDUCT.md"> |
316 | | - Code of Conduct |
| 316 | + Toimintaohjeet |
317 | 317 | </FooterLink> |
318 | 318 | <FooterLink href="/community/team">Meet the Team</FooterLink> |
319 | 319 | <FooterLink href="/community/docs-contributors"> |
320 | | - Docs Contributors |
| 320 | + Dokumentaation kehittäjät |
321 | 321 | </FooterLink> |
322 | 322 | <FooterLink href="/community/acknowledgements"> |
323 | | - Acknowledgements |
| 323 | + Tunnustukset |
324 | 324 | </FooterLink> |
325 | 325 | </div> |
326 | 326 | <div className="flex flex-col"> |
327 | | - <FooterLink isHeader={true}>More</FooterLink> |
328 | | - <FooterLink href="/blog">Blog</FooterLink> |
| 327 | + <FooterLink isHeader={true}>Lisää</FooterLink> |
| 328 | + <FooterLink href="/blog">Blogi</FooterLink> |
329 | 329 | <FooterLink href="https://reactnative.dev/">React Native</FooterLink> |
330 | 330 | <FooterLink href="https://opensource.facebook.com/legal/privacy"> |
331 | | - Privacy |
| 331 | + Yksityisyys |
332 | 332 | </FooterLink> |
333 | 333 | <FooterLink href="https://opensource.fb.com/legal/terms/"> |
334 | | - Terms |
| 334 | + Ehdot |
335 | 335 | </FooterLink> |
336 | 336 | <div className="flex flex-row mt-8 gap-x-2"> |
337 | 337 | <ExternalLink |
338 | | - aria-label="React on Facebook" |
| 338 | + aria-label="React Facebookissa" |
339 | 339 | href="https://www.facebook.com/react" |
340 | 340 | className={socialLinkClasses}> |
341 | 341 | <IconFacebookCircle /> |
342 | 342 | </ExternalLink> |
343 | 343 | <ExternalLink |
344 | | - aria-label="React on Twitter" |
| 344 | + aria-label="React Twitterissä" |
345 | 345 | href="https://twitter.com/reactjs" |
346 | 346 | className={socialLinkClasses}> |
347 | 347 | <IconTwitter /> |
348 | 348 | </ExternalLink> |
349 | 349 | <ExternalLink |
350 | | - aria-label="React on Github" |
| 350 | + aria-label="React GitHubissa" |
351 | 351 | href="https://github.com/facebook/react" |
352 | 352 | className={socialLinkClasses}> |
353 | 353 | <IconGitHub /> |
|
0 commit comments