Skip to content

Commit bbde1b0

Browse files
authored
Merge pull request #930 from Xymph/update-renamed-repos
Update links to redirected GH repos
2 parents 7efc40e + 1990b26 commit bbde1b0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

_posts/05-06-01-Internationalization-and-Localization.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ PHP core, but here we list others for completion:
4343
- [aura/intl][aura-intl]: Provides internationalization (I18N) tools, specifically package-oriented per-locale message
4444
translation. It uses array formats for messages. Does not provide a message extractor, but does provide advanced
4545
message formatting via the `intl` extension (including pluralized messages).
46-
- [oscarotero/Gettext][oscarotero]: Gettext support with an OO interface; includes improved helper functions, powerful
46+
- [php-gettext/Gettext][php-gettext]: Gettext support with an OO interface; includes improved helper functions, powerful
4747
extractors for several file formats (some of them not supported natively by the `gettext` command), and can also export
4848
to other formats besides `.mo/.po` files. Can be useful if you need to integrate your translation files into other
4949
parts of the system, like a JavaScript interface.
@@ -373,7 +373,7 @@ As preferred by many people, it is easier to use `_()` instead of `gettext()`. M
373373
frameworks use something similar to `t()` as well, to make translated code shorter. However, that is the only function
374374
that sports a shortcut. You might want to add in your project some others, such as `__()` or `_n()` for `ngettext()`,
375375
or maybe a fancy `_r()` that would join `gettext()` and `sprintf()` calls. Other libraries, such as
376-
[oscarotero's Gettext][oscarotero] also provide helper functions like these.
376+
[php-gettext's Gettext][php-gettext] also provide helper functions like these.
377377

378378
In those cases, you'll need to instruct the Gettext utility on how to extract the strings from those new functions.
379379
Don't be afraid; it is very easy. It is just a field in the `.po` file, or a Settings screen on Poedit. In the editor,
@@ -411,7 +411,7 @@ After including those new rules in the `.po` file, a new scan will bring in your
411411
[rare]: https://www.gnu.org/software/gettext/manual/gettext.html#Rare-Language-Codes
412412
[func_format]: https://www.gnu.org/software/gettext/manual/gettext.html#Language-specific-options
413413
[aura-intl]: https://github.com/auraphp/Aura.Intl
414-
[oscarotero]: https://github.com/oscarotero/Gettext
414+
[php-gettext]: https://github.com/php-gettext/Gettext
415415
[symfony]: https://symfony.com/components/Translation
416416
[laminas]: https://docs.laminas.dev/laminas-i18n/
417417
[laravel]: https://laravel.com/docs/master/localization

_posts/11-02-01-Test-Driven-Development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ which accepts pull requests then you should suggest this as a requirement.
3636
are several alternatives:
3737

3838
* [atoum](https://github.com/atoum/atoum)
39-
* [Kahlan](https://github.com/crysalead/kahlan)
39+
* [Kahlan](https://github.com/kahlan/kahlan)
4040
* [Peridot](https://peridot-php.github.io/)
4141
* [SimpleTest](https://github.com/simpletest/simpletest)
4242

_posts/12-05-01-Building-your-Application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ PHP.
9191
[phpdeploy_deployer]: https://www.sitepoint.com/deploying-php-applications-with-deployer/
9292
[Chef]: https://www.chef.io/
9393
[chef_vagrant_and_ec2]: https://web.archive.org/web/20190307220000/http://www.jasongrimes.org/2012/06/managing-lamp-environments-with-chef-vagrant-and-ec2-1-of-3/
94-
[Chef_cookbook]: https://github.com/chef-cookbooks/php
94+
[Chef_cookbook]: https://github.com/sous-chefs/php
9595
[Chef_tutorial]: https://www.youtube.com/playlist?list=PL11cZfNdwNyNYcpntVe6js-prb80LBZuc
9696
[apache_ant_tutorial]: https://code.tutsplus.com/tutorials/automate-your-projects-with-apache-ant--net-18595
9797
[Travis CI]: https://www.travis-ci.com/

0 commit comments

Comments
 (0)