-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert curl-getinfo() constant list to table #779
Convert curl-getinfo() constant list to table #779
Conversation
Note, there is a comment at the top of translations which has a revcheck which takes the git hash to which commit this is syncing the file. Here it should be |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, spotted some mistakes here (unrelated to the change).
Maybe we must handle it in another PR ?
Avec l'option | ||
<constant>CURLOPT_FOLLOWLOCATION</constant> désactivée : URL de | ||
redirection trouvée dans la dernière transaction, qui devra être | ||
interrogé manuellement par la suite. Si l'option |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
interrogé manuellement par la suite. Si l'option | |
interrogée manuellement par la suite. Si l'option |
<row> | ||
<entry><constant>CURLINFO_HTTPAUTH_AVAIL</constant></entry> | ||
<entry> | ||
Masque binaire indiquant la(/les) méthode(s) d'authentification disponbile en accord avec la réponse précédente |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Masque binaire indiquant la(/les) méthode(s) d'authentification disponbile en accord avec la réponse précédente | |
Masque binaire indiquant la(/les) méthode(s) d'authentification disponible en accord avec la réponse précédente |
<row> | ||
<entry><constant>CURLINFO_PROXYAUTH_AVAIL</constant></entry> | ||
<entry> | ||
Masque binaire indiquant la(/les) méthode(s) d'authentification proxy disponbile en accord avec la réponse précédente |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Masque binaire indiquant la(/les) méthode(s) d'authentification proxy disponbile en accord avec la réponse précédente | |
Masque binaire indiquant la(/les) méthode(s) d'authentification proxy disponible en accord avec la réponse précédente |
<row> | ||
<entry><constant>CURLINFO_COOKIELIST</constant></entry> | ||
<entry> | ||
Tous les cookies connue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tous les cookies connue | |
Tous les cookies connus |
<entry><constant>CURLINFO_CONTENT_LENGTH_DOWNLOAD_T</constant></entry> | ||
<entry> | ||
Le | ||
content-length du téléchargement. Cette valeur est lu depuis le champ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
content-length du téléchargement. Cette valeur est lu depuis le champ | |
content-length du téléchargement. Cette valeur est lue depuis le champ |
<entry><constant>CURLINFO_CONTENT_LENGTH_UPLOAD_T</constant></entry> | ||
<entry> | ||
La taille | ||
spécifié pour le téléversment. -1 si la taille est inconnue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
spécifié pour le téléversment. -1 si la taille est inconnue | |
spécifiée pour le téléversement. -1 si la taille est inconnue |
The grammar fixes should be done in a seperate PR |
This PR converts the constant list for the second (
option
) parameter ofcurl_getinfo()
to a table (as it was done indoc-en
here).