Commit Graph

502 Commits

Author SHA1 Message Date
65feffc4d4 New/updated Slovenian translations (by Matev� Bokal). 2004-08-23 14:11:00 +00:00
766ad46189 deleting all acl-entries of not (longer) existing accounts (users and groups), these entries have'nt got delete so far and cause a lot of mailfunctioning in the ACL class
==> update to version 1.0.1.002
2004-08-22 11:21:25 +00:00
d8d352955c fixed old update, which messed up the 1.0.0.004 update for LDAP 2004-08-22 11:13:15 +00:00
4278ea0a88 extensions and corrections from Kiang 2004-08-10 14:49:38 +00:00
febeab4d8d replace the crap 2004-08-09 13:46:03 +00:00
d18d0d397e replace the crap 2004-08-09 13:20:26 +00:00
addab52d39 replace the crap 2004-08-09 13:15:33 +00:00
fdad27697d replace the crap 2004-08-09 13:03:05 +00:00
8942603608 replace the crap 2004-08-09 12:40:51 +00:00
36d8ccb302 delete the crap 2004-08-08 21:09:16 +00:00
9772a1b82a updated api-version to 1.0.0.003 for the final 1.0
Yuhuuuu :-)
2004-08-07 18:38:43 +00:00
9449ea5afa *** empty log message *** 2004-08-07 10:22:51 +00:00
906dd66691 bulgarian translations from Iassen Pramatarov <turin-AT-fsa-bg.org> 2004-08-04 14:56:19 +00:00
fe44aa6f00 fix some wrong tabs in file which produce error messages 2004-07-31 18:02:58 +00:00
6afdef7f3a fix some wrong tabs in file which produce error messages 2004-07-31 17:15:12 +00:00
ffe12bd74a fix some wrong tabs in file which produce error messages 2004-07-31 17:12:55 +00:00
4656d2372a fix some wrong tabs in file which produce error messages 2004-07-31 17:12:46 +00:00
701dd6c67e fix some wrong tabs in file which produce error messages 2004-07-31 17:11:45 +00:00
2ced3f0bdd new version number for the next RC - hopefully the last one ;-) 2004-07-31 14:17:32 +00:00
ae31c0db04 *** empty log message *** 2004-07-26 19:48:49 +00:00
b23989981e added 'async_' prefix to column-names of phpgw_async, as 'id' is a reserved word in sapdb 2004-07-23 00:47:30 +00:00
29594f2771 added 'async_' prefix to column-names of phpgw_async, as 'id' is a reserved word in sapdb 2004-07-23 00:46:01 +00:00
edcda476b7 update brasilian translations 2004-07-21 21:18:18 +00:00
75c914ea31 patch from Erwan LE DISEZ 2004-07-21 17:01:51 +00:00
dff13373e1 1) fixed problem with not created account_email column, thanks to a direction from Manfred Usselmann
2) moved all pre-1.0.0 updates to new tables_updates_0_9_14.inc.php, which gets now included as all to other "old" updates
2004-07-15 06:47:34 +00:00
6666325a1e *** empty log message *** 2004-07-14 08:12:56 +00:00
ef61d8b6de *** empty log message *** 2004-07-12 16:03:27 +00:00
eabb97968b Ralph: you erased by mistake some parenthesis in last commit ;) 2004-07-11 14:48:00 +00:00
c1c5722f40 removed availible column from phpgw_languages 2004-07-11 10:16:30 +00:00
5ea042041c fixed not showing up langs like 'es-ca' which hasn't been in phpgw_languages (or only as just 'ca') 2004-07-10 10:59:37 +00:00
72217ccfb9 added updates for phpGW versions 0.9.14.006+7 2004-07-06 14:17:03 +00:00
8bfb6cfb07 added email-address to the accounts-data (ldap untested so far!) 2004-07-04 17:27:42 +00:00
5188c0a6a3 updating the missed sequenzes (postgres) and pushing all versions to 1.0.0 2004-07-02 22:25:26 +00:00
91966dd0f7 moved the manual translations to the manual app, changed the name of the manual app to 'manual / help' as it is both now manual and online-help 2004-06-29 18:21:56 +00:00
1d017e2a54 Bad translation, replace 2004-06-29 09:59:01 +00:00
a381073b69 added indices for the api tables 2004-06-27 10:02:57 +00:00
39515264eb updated all availible languages, even if they are not used any more ;-) 2004-06-13 21:33:18 +00:00
26507a6aa7 greek translations thanks to Nikolaos Batsis <nickthegreek-AT-yahoo.com> 2004-06-13 20:48:44 +00:00
a99697ae09 new account selection:
- search after different criteria: all fields, firstname, lastname, lid, starting with or exact match
- additional display of the current selection in the popup
2004-06-13 20:17:54 +00:00
d834017cff *** empty log message *** 2004-06-11 19:23:19 +00:00
21a24b8272 Translation improvements 2004-06-10 19:33:09 +00:00
cf19aae187 I merged the traditional Chinese translation into the simplified Chinese
translation file (only those not translated in simplified Chinese).

This is because
1) most simplified Chinese readers can read traditional
Chinese. If some phrase doesn't have simplified Chinese translation,
egroupware better fall back to traditional Chinese then English.
2) Translation can be easier (just pick up the unfamiliar traditional
translation and change to simplified form)

The change is made by using
> find . -type d -name "setup" -exec /tmp/merge_tradition.sh {} \;

where merge_tradition.sh is:

#!/bin/sh
cd $1
if [ -f phpgw_zh.lang ] && [ -f phpgw_zt.lang ]; then
mv phpgw_zh.lang phpgw_zh.lang.old
join -a 1 -t "	" phpgw_zt.lang phpgw_zh.lang.old | \
        awk -F "	" \
       '{ OFS = FS; if (NF == 7) print $1, $5, $6, $7; else print $0 ;}' \
                > phpgw_zh.lang
fi

Kiang if you like the idea you can merge my translation to your lang
file too. And it's even better if the language engine can be changed in
the way that, as a phrase has no translation for current language,
choose the nearest language before falling back to English. Say, when no
translation in zh, use zt before trying English.

Could it be better that this apply to pt too? (pt-br and pt)
2004-06-09 17:01:42 +00:00
471b312a67 Received new UTF-8 lang files from kiang.
----------------------------------------------------------------------
2004-06-09 04:16:56 +00:00
61f293dd9c added a german translation 2004-06-04 06:18:50 +00:00
87e8b9c917 update lang file from Tapio Kautto 2004-06-01 10:08:12 +00:00
d08ff634f8 update lang file from Tapio Kautto 2004-05-31 13:01:54 +00:00
e0a265d267 fix from Tapio Kautto 2004-05-31 11:30:25 +00:00
911bfdae1a *** empty log message *** 2004-05-28 18:58:43 +00:00
119e12eb8a Finnish translation extension from Tapio Kautto 2004-05-27 10:20:56 +00:00
34d0de6e9d Italien translation extension from Leo Amadori 2004-05-27 10:11:23 +00:00