aboutsummaryrefslogtreecommitdiffstats
path: root/langs/fr
Commit message (Collapse)AuthorAgeFilesLines
* Update French translationYuri Chornoivan2018-08-231-18/+28
|
* Update French translationYuri Chornoivan2018-08-231-18/+18
|
* sync translationsfilip2018-04-281-31/+44
|
* sync community.pot and news.potfilip2018-04-282-93/+97
|
* Update French translationYuri Chornoivan2018-02-191-23/+50
|
* Fix typoManuel Hiebel2018-02-171-2/+2
|
* Update lang fileManuel Hiebel2018-02-171-81/+62
|
* Update French translationYuri Chornoivan2018-02-091-11/+13
|
* EOL changed to EOS (end of support)filip2018-01-241-83/+31
|
* added CC-By-SA licensefilip2018-01-241-37/+40
|
* Update French translationYuri Chornoivan2018-01-131-37/+84
|
* Update French translationYuri Chornoivan2017-12-291-10/+10
|
* Update French translationYuri Chornoivan2017-12-291-26/+21
|
* sync l10nfilip2017-12-281-20/+56
|
* sync l10nfilip2017-12-281-26/+48
|
* refresh hardware requirementsfilip2017-12-101-81/+44
|
* Update French translationYuri Chornoivan2017-11-231-3/+3
|
* Update French translationYuri Chornoivan2017-11-091-4/+5
|
* Update French translationYuri Chornoivan2017-11-091-40/+80
|
* Fix the sentence according to David W. Hodgins proposalYuri Chornoivan2017-11-091-2/+2
|
* push mga5 support from October 31th, 2017 to December 31st, 2017filip2017-11-081-105/+79
|
* Update French translationYuri Chornoivan2017-10-271-56/+119
|
* sync l10nfilip2017-10-251-178/+91
|
* Update French translationYuri Chornoivan2017-09-021-3/+4
|
* Update French translationYuri Chornoivan2017-08-121-7/+8
|
* Update French translationYuri Chornoivan2017-07-249-31/+34
|
* Update French translationYuri Chornoivan2017-07-189-146/+246
|
* synch about, map and timeline translationsfilip2017-07-173-92/+89
|
* preparing text for l10n (Network installation)filip2017-07-171-48/+36
|
* improving social network text suggested by Akienfilip2017-07-171-37/+41
| | | | + fixing one note
* sync l10n with supportManuel Hiebel2017-07-161-93/+59
|
* Sync l10n with last changeManuel Hiebel2017-07-162-96/+80
|
* Update French translationYuri Chornoivan2017-05-261-33/+82
|
* release date i18n fix addedfilip2017-05-251-83/+34
|
* Update French translationYuri Chornoivan2017-05-151-3/+3
|
* Update French translationYuri Chornoivan2017-03-274-15/+19
|
* Update French translationYuri Chornoivan2017-03-271-20/+42
|
* Improving a sentence according to report on MLfilip2017-03-261-57/+36
| | | | https://ml.mageia.org/l/arc/atelier-discuss/2017-03/msg00043.html
* Update cauldron page for various langsYuri Chornoivan2017-03-151-40/+87
|
* Update i18n stringManuel Hiebel2017-03-071-113/+72
| | | | sync with text (new xfce iso)
* Update French translationYuri Chornoivan2017-02-101-18/+34
|
* sync l10n files for documentation web page(s)filip2017-02-081-35/+27
|
* Update French translationYuri Chornoivan2017-01-101-31/+16
|
* Update French translationYuri Chornoivan2016-12-161-101/+146
|
* Update string for Mageia 5.1Manuel Hiebel2016-12-132-7/+12
|
* Update French translationYuri Chornoivan2016-12-081-13/+13
|
* mga4.1 and mga5.1 added to timelinefilip2016-12-071-42/+54
|
* update po files for mga5 dl pageManuel Hiebel2016-12-021-278/+173
|
* Update French translationYuri Chornoivan2016-11-191-28/+76
|
* Fixed support date for mga5filip2016-11-151-72/+30
|
kwd">rewind(FILE *stream) __THROW; int fgetpos(FILE *stream, fpos_t *pos) __THROW; int fsetpos(FILE *stream, fpos_t *pos) __THROW; size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream) __THROW; size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream) __THROW; int fflush(FILE *stream) __THROW; int fclose(FILE *stream) __THROW; int feof (FILE *stream) __THROW; int ferror(FILE *stream) __THROW; int fileno(FILE *stream) __THROW; void clearerr(FILE *stream) __THROW; int remove(const char *pathname) __THROW; void perror(const char *s) __THROW; extern FILE *stdin, *stdout, *stderr; #define EOF (-1) #define BUFSIZ 128 #define _IONBF 0 #define _IOLBF 1 #define _IOFBF 2 int setvbuf(FILE *stream, char *buf, int mode , size_t size) __THROW; #define setbuf(stream,buf) setvbuf(stream,buf,buf?_IOFBF:_IONBF,BUFSIZ) #define setbuffer(stream,buf,size) setvbuf(stream,buf,buf?_IOFBF:_IONBF,size) #define setlinebuf(stream) setvbuf(stream,0,_IOLBF,BUFSIZ) FILE *popen(const char *command, const char *type) __THROW; int pclose(FILE *stream) __THROW; #ifndef SEEK_SET #define SEEK_SET 0 #define SEEK_CUR 1 #define SEEK_END 2 #endif #define L_tmpnam 128 #define P_tmpdir "/tmp" char* tmpnam(char *s) __THROW; /* DO NOT USE!!! Use mkstemp instead! */ char* tempnam(char* dir,char* _template); /* dito */ FILE* tmpfile(void) __THROW; #define FILENAME_MAX 4095 #define FOPEN_MAX 16 #ifdef _POSIX_SOURCE #define L_ctermid 9 #define L_cuserid 9 #endif void flockfile(FILE* f) __THROW; void funlockfile(FILE* f) __THROW; #ifdef _GNU_SOURCE ssize_t getline(char **lineptr, size_t *n, FILE *stream); ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream); #define getline(lineptr,n,stream) getdelim(lineptr,n,'\n',stream) #endif #endif