summaryrefslogtreecommitdiffstats
path: root/source/web/neg_lang.c
Commit message (Collapse)AuthorAgeFilesLines
* people should be happier now.Simo Sorce2002-07-291-23/+33
| | | | | changed strtof with sscanf to make things working on all platforms. changed auto-made bubble sort for more efficient and clean qsort()
* found nasty bug in intl/lang_tdb.c tdb structure was not tested to not be ↵Simo Sorce2002-07-281-5/+45
| | | | | | | | | | | | null before close this one fixes swat not working with browsers that set more then one language. along the way implemented language priority in web/neg_lang.c with bubble sort also changet str_list_make to be able to use a different separator string Simo.
* Break up samba's object dependencies, and its prototype includes.Andrew Bartlett2002-06-251-0/+1
| | | | | | | | | | | | | | | | Now smbclient, net, and swat use their own proto files - now the global proto.h The change to libads/kerberos.c was to break up the dependency on secrets.c - we want to be able to write an ADS client that doesn't need local secrets. I have other breakups in the works - I will remove the dependency of rpc_parse on passdb (and therefore secrets.c) shortly. (NOTE: This patch does *not* break up includes.h, or other such forbidden actions). Andrew Bartlett
* Removed version number from file header.Tim Potter2002-01-301-2/+1
| | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header.
* the next step in the intl changeover. This should get us compiling agian,Andrew Tridgell2001-10-141-239/+35
| | | | | | | and also completes the switch to lang_tdb.c. SWAT should now work with a po file in the lib/ directory also removed useless SYSLOG defines in many files
* first step in converting the head branch to use lang_tdb.c insteadAndrew Tridgell2001-10-111-107/+0
| | | | of gettext for internationalisation support. There is more to do
* Added SWAT i18n feature:Motonobu Takahashi2001-09-241-0/+378
TO enable configure with --with-i18n-swat to support this gettext is integrated and a new directories name "po" and "intl" are created. now these languages are supported: en - English (default) ja - Japanese po - Polish tr - Turkish To add your language, to create ${your_language}.po by translating source/po/en.po into your language is needed. some of html and image files of various language version are not included yet, though message catalogue files are installed. you need to copy files manually under ${swatdir}/lang/$ln/{help,images,included,using_samba} And also added a option to intall manual pages: of various lang version To enable configure with --with-manlangs but manual pages themself are not included yet.