Updated french text in english doc

This fixes a potential leftover from the original translation.

Other changes:
- Some Travis-reported errors are also fixed as a result, this helps lowering
  the associated failure count.
- The dead_links.sh script error message is improved to better pinpoint
  the kind of reported error (Markdown vs HTML link).
This commit is contained in:
Vincent Rubiolo 2020-05-24 16:59:52 +02:00
parent c5a017d0df
commit 96af536f0c
5 changed files with 6 additions and 6 deletions

View file

@ -29,6 +29,6 @@ In addition to Wallabag core features, the following are made available with thi
### Upgrade from v1.x
No automatic upgrade process is available. You need a manual (but simple) migration from [Wallabag v1](/app_wallabag).
No automatic upgrade process is available. You need a manual (but simple) migration from Wallabag v1.
Please take a look at the [official documentation](https://doc.wallabag.org/en/user/import/wallabagv1.html).

View file

@ -28,6 +28,6 @@ En plus des fonctionnalités principales de Wallabag, ce paquet propose égaleme
### Mettre à niveau depuis la v1.x
La mise à niveau depuis le paquet Yunohost de [Wallabag v1](/app_wallabag) demande une opération manuelle, c'est pourquoi un nouveau paquet est fourni. Pour le processus de migration, merci de vous référer à [la documentation officielle
La mise à niveau depuis le paquet Yunohost de Wallabag v1 demande une opération manuelle, c'est pourquoi un nouveau paquet est fourni. Pour le processus de migration, merci de vous référer à [la documentation officielle
de Wallabag](https://doc.wallabag.org/fr/user/import/wallabagv1.html).

View file

@ -4,7 +4,7 @@
* [Writing documentation](/write_documentation)
* [Documentation writing guide](/doc_writing_guide)
* [Markdown guide](/doc_markdown_guide)
* [Propulser son code avec Git & GitHub](/doc_use_git)
* [Power your code using Git & GitHub](/doc_use_git)
* [Chat rooms](/chat_rooms)
* Application packaging
* [Apps wishlist](/apps_wishlist)

View file

@ -169,7 +169,7 @@ name = "Leed configuration"
Will be available under this name in the config script:
```
```bash
YNH_CONFIG_MAIN_IS_PUBLIC_IS_PUBLIC
```

View file

@ -4,7 +4,7 @@ returncode=0
for LINK in $(grep -nr -o -E "\]\(\/?(\w|-)+\)" ./*.md | tr -d ']()/')
do
PAGE=$(echo $LINK | awk -F: '{print $3}')
[ -e "$PAGE.md" ] || echo "This link looks dead (page doesn't exist in english?) $LINK"
[ -e "$PAGE.md" ] || echo "This Markdown link looks dead (page doesn't exist in english?) $LINK"
[ -e "$PAGE.md" ] || returncode=1
done
@ -12,7 +12,7 @@ done
for LINK in $(grep -nr -o -E 'href="\/?(\w|-)+\"' ./*.md | sed -E 's@href="/?@@g' | tr -d '"')
do
PAGE=$(echo $LINK | awk -F: '{print $3}')
[ -e "$PAGE.md" ] || echo "This link looks dead (page doesn't exist in english?) $LINK"
[ -e "$PAGE.md" ] || echo "This HTML link looks dead (page doesn't exist in english?) $LINK"
[ -e "$PAGE.md" ] || returncode=1
done