Skip to content

Commit 0157a05

Browse files
committed
fix img url
1 parent 7f73a88 commit 0157a05

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
**The easiest way to translate your Next.js apps *(with pages setup)*.**
99

1010
If you are using next-i18next *(pages directory)* in production and like to unleash some super powers, you may have a look at [this blog post](https://locize.com/blog/next-i18next/).
11-
[![](https://cdn.prod.website-files.com/67a323e323a50df7f24f0a94/67ab24f30259692f8593a923_next-i18next.jpg)](https://locize.com/blog/next-i18next/)
11+
[![](https://www.locize.com/img/blog/next-i18next/next-i18next.jpg)](https://locize.com/blog/next-i18next/)
1212

1313
If you're using Next.js 13/14/15/16/etc... with App Router, there is no need for next-i18next, you can directly use i18next and react-i18next, like described [in this blog post](https://www.locize.com/blog/i18n-next-app-router).
14-
[![](https://cdn.prod.website-files.com/67a323e323a50df7f24f0a94/67f268673fcfae53e5d4697c_i18n-next-app-router.jpg)](https://www.locize.com/blog/i18n-next-app-router)
14+
[![](https://www.locize.com/img/blog/i18n-next-app-router/i18n-next-app-router.jpg)](https://www.locize.com/blog/i18n-next-app-router)
1515

1616
## What is this?
1717

@@ -451,7 +451,7 @@ Are you trying to generate a [static HTML export](https://nextjs.org/docs/advanc
451451
452452
But there's a way to workaround that with the help of [next-language-detector](https://github.com/i18next/next-language-detector).
453453
Check out [this blog post](https://locize.com/blog/next-i18n-static/) and [this example project](./examples/ssg/).
454-
[![](https://cdn.prod.website-files.com/67a323e323a50df7f24f0a94/67a627037d01688d9ccb79dd_title%20(2).jpg)](https://locize.com/blog/next-i18n-static/)
454+
[![](https://www.locize.com/img/blog/next-i18n-static/title.jpg)](https://locize.com/blog/next-i18n-static/)
455455

456456
### Translate in child components
457457

@@ -513,7 +513,7 @@ This project follows the [all-contributors](https://github.com/kentcdodds/all-co
513513

514514
Needing a translation management? Want to edit your translations with an InContext Editor? Use the original provided to you by the maintainers of i18next!
515515

516-
![locize](https://cdn.prod.website-files.com/67a323e323a50df7f24f0a6f/67b8bbb29365c3a3c21c0898_github_locize.png)
516+
![locize](https://www.locize.com/img/ads/github_locize.png)
517517

518518
With using [locize](http://locize.com/?utm_source=next_i18next_readme&utm_medium=github) you directly support the future of i18next and next-i18next.
519519

examples/auto-static-optimize/pages/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const Homepage = (
5050
<a href={t('blog.appDir.link')}>
5151
<img
5252
style={{ width: '50%' }}
53-
src="https://cdn.prod.website-files.com/67a323e323a50df7f24f0a94/67ab23a11128dcf4b9533ed0_next-app-dir-i18n.jpg"
53+
src="https://www.locize.com/img/blog/i18n-next-app-router/i18n-next-app-router.jpg"
5454
/>
5555
</a>
5656
</div>
@@ -68,7 +68,7 @@ const Homepage = (
6868
<a href={t('blog.optimized.link')}>
6969
<img
7070
style={{ width: '50%' }}
71-
src="https://cdn.prod.website-files.com/67a323e323a50df7f24f0a94/67ab24f30259692f8593a923_next-i18next.jpg"
71+
src="https://www.locize.com/img/blog/next-i18next/next-i18next.jpg"
7272
/>
7373
</a>
7474
</div>
@@ -85,7 +85,7 @@ const Homepage = (
8585
<a href={t('blog.ssg.link')}>
8686
<img
8787
style={{ width: '50%' }}
88-
src="https://cdn.prod.website-files.com/67a323e323a50df7f24f0a94/67a627037d01688d9ccb79dd_title%20(2).jpg"
88+
src="https://www.locize.com/img/blog/next-i18n-static/title.jpg"
8989
/>
9090
</a>
9191
</div>

examples/simple/pages/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const Homepage = (
5050
<a href={t('blog.appDir.link')}>
5151
<img
5252
className="card-img"
53-
src="https://cdn.prod.website-files.com/67a323e323a50df7f24f0a94/67f268673fcfae53e5d4697c_i18n-next-app-router.jpg"
53+
src="https://www.locize.com/img/blog/i18n-next-app-router/i18n-next-app-router.jpg"
5454
/>
5555
</a>
5656
</div>
@@ -69,7 +69,7 @@ const Homepage = (
6969
<a href={t('blog.optimized.link')}>
7070
<img
7171
className="card-img"
72-
src="https://cdn.prod.website-files.com/67a323e323a50df7f24f0a94/67ab24f30259692f8593a923_next-i18next.jpg"
72+
src="https://www.locize.com/img/blog/next-i18next/next-i18next.jpg"
7373
/>
7474
</a>
7575
</div>
@@ -84,7 +84,7 @@ const Homepage = (
8484
<a href={t('blog.ssg.link')}>
8585
<img
8686
className="card-img"
87-
src="https://cdn.prod.website-files.com/67a323e323a50df7f24f0a94/67a627037d01688d9ccb79dd_title%20(2).jpg"
87+
src="https://www.locize.com/img/blog/next-i18n-static/title.jpg"
8888
/>
8989
</a>
9090
</div>

0 commit comments

Comments
 (0)