mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
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:
parent
c5a017d0df
commit
96af536f0c
5 changed files with 6 additions and 6 deletions
|
@ -29,6 +29,6 @@ In addition to Wallabag core features, the following are made available with thi
|
||||||
|
|
||||||
### Upgrade from v1.x
|
### 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).
|
Please take a look at the [official documentation](https://doc.wallabag.org/en/user/import/wallabagv1.html).
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,6 @@ En plus des fonctionnalités principales de Wallabag, ce paquet propose égaleme
|
||||||
|
|
||||||
### Mettre à niveau depuis la v1.x
|
### 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).
|
de Wallabag](https://doc.wallabag.org/fr/user/import/wallabagv1.html).
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* [Writing documentation](/write_documentation)
|
* [Writing documentation](/write_documentation)
|
||||||
* [Documentation writing guide](/doc_writing_guide)
|
* [Documentation writing guide](/doc_writing_guide)
|
||||||
* [Markdown guide](/doc_markdown_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)
|
* [Chat rooms](/chat_rooms)
|
||||||
* Application packaging
|
* Application packaging
|
||||||
* [Apps wishlist](/apps_wishlist)
|
* [Apps wishlist](/apps_wishlist)
|
||||||
|
|
|
@ -169,7 +169,7 @@ name = "Leed configuration"
|
||||||
|
|
||||||
Will be available under this name in the config script:
|
Will be available under this name in the config script:
|
||||||
|
|
||||||
```
|
```bash
|
||||||
YNH_CONFIG_MAIN_IS_PUBLIC_IS_PUBLIC
|
YNH_CONFIG_MAIN_IS_PUBLIC_IS_PUBLIC
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ returncode=0
|
||||||
for LINK in $(grep -nr -o -E "\]\(\/?(\w|-)+\)" ./*.md | tr -d ']()/')
|
for LINK in $(grep -nr -o -E "\]\(\/?(\w|-)+\)" ./*.md | tr -d ']()/')
|
||||||
do
|
do
|
||||||
PAGE=$(echo $LINK | awk -F: '{print $3}')
|
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
|
[ -e "$PAGE.md" ] || returncode=1
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ done
|
||||||
for LINK in $(grep -nr -o -E 'href="\/?(\w|-)+\"' ./*.md | sed -E 's@href="/?@@g' | tr -d '"')
|
for LINK in $(grep -nr -o -E 'href="\/?(\w|-)+\"' ./*.md | sed -E 's@href="/?@@g' | tr -d '"')
|
||||||
do
|
do
|
||||||
PAGE=$(echo $LINK | awk -F: '{print $3}')
|
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
|
[ -e "$PAGE.md" ] || returncode=1
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue