Commit Graph

268 Commits

Author SHA1 Message Date
Ralf Becker
940deb08a9 finished DB backup and restore for eGW:
- the backup is independent of the used DB and can eg. be used to port an install to an other DB type
- autom. backup before upgrades of the DB structure
- installing backups instead an installation from scratch
- own backup screen in setup and admin to:
  + shedule repeating backups
  + up- and download of backups
  + creating and restoring backups
2004-10-15 23:06:34 +00:00
reinerj
7a15b26136 Lang file update traditional Chinese from Finjon Kiang 2004-10-01 10:36:56 +00:00
Oscar Manuel Gómez Senovilla
df8f5a858c *** empty log message *** 2004-09-17 09:36:18 +00:00
reinerj
8564a78d9a update lang file from Theytaz Antoine 2004-08-28 13:03:41 +00:00
ak703
d2586ba500 improvements of the ui and some error checking for emtpy fields, implemented
tooltip info images for better explanation of the module. Started the README
2004-08-26 21:11:25 +00:00
reinerj
d47313617f lang file update from Theytaz Antoine 2004-08-26 21:02:07 +00:00
ak703
eabf6925b5 Added an admin module for ldap based email settings (based on emailadmin)
but reduced to those functions, which are needed to manage ldap entries, which
rely only on standard schemas (core, qmail) which are not considered "experimental"
and without the need to add a separate schema.

This modul will be extended whenever possible and approved for more values.

Main goal here is: Ability to easily use eGW Admin for account management with
LDAP beackend and to comply with those schemas, the distros are delivering.

The link for this module will be shown in addition to Lars' EmailAdmin if LDAP
is used as account storage. So it will not break existing installation ;-)
2004-08-25 22:29:28 +00:00
reinerj
d03d7e0114 replace the bad word grrr 2004-08-25 14:28:16 +00:00
dragob
65feffc4d4 New/updated Slovenian translations (by Matev� Bokal). 2004-08-23 14:11:00 +00:00
reinerj
a898f0157b italien translations from leonardo amadori 2004-08-12 18:04:16 +00:00
reinerj
1c6aedeb7a extensions and corrections from Kiang 2004-08-10 12:51:47 +00:00
reinerj
761dd2f13c replace the crap 2004-08-08 23:15:33 +00:00
reinerj
0392a024fb replace the crap 2004-08-08 23:12:52 +00:00
reinerj
c4bfb8a3ec replace the crap 2004-08-08 22:50:50 +00:00
reinerj
689e559dcd replace the crap 2004-08-08 22:40:39 +00:00
reinerj
12ae81624b replace the crap 2004-08-08 22:24:54 +00:00
reinerj
1f1c58be46 update korea lang translation from Futurizer 2004-08-07 00:58:47 +00:00
Oscar Manuel Gómez Senovilla
26bf92520e *** empty log message *** 2004-08-04 20:59:09 +00:00
reinerj
ea33d7c050 update Korea translation futurizer 2004-08-04 10:06:58 +00:00
Ralf Becker
74fd47804a fixed asyncservices to run under the windows sheduler 2004-07-31 19:37:58 +00:00
reinerj
19ab1c069d fix some wrong tabs in file which produce error messages 2004-07-31 17:29:52 +00:00
reinerj
80b42dd956 fix some wrong tabs in file which produce error messages 2004-07-31 17:28:17 +00:00
shrykedude
ff34378a1e Fixed app dependencies for api-1.0.1 version change 2004-07-30 19:06:35 +00:00
Oscar Manuel Gómez Senovilla
53f44c8997 *** empty log message *** 2004-07-27 18:20:14 +00:00
Oscar Manuel Gómez Senovilla
ae31c0db04 *** empty log message *** 2004-07-26 19:48:49 +00:00
Ralf Becker
edcda476b7 update brasilian translations 2004-07-21 21:18:18 +00:00
Oscar Manuel Gómez Senovilla
6666325a1e *** empty log message *** 2004-07-14 08:12:56 +00:00
Ralf Becker
2323808812 cat icon, color and title 2004-07-12 22:03:57 +00:00
Lars Kneschke
390b648be1 modified some string to be not app specfic anymore 2004-07-12 14:05:59 +00:00
Ralf Becker
e5d689cb9f added smtp-auth configuration to email and API's send-class (translations for that are moved to admin, as the config is now in Admin >> Site config and only for confinience accessible via Admin >> Email >> Site config too 2004-07-11 08:33:28 +00:00
Ralf Becker
f6c07ba556 pushing all versions to 1.0.0 2004-07-02 22:32:53 +00:00
Oscar Manuel Gómez Senovilla
2d9373d120 *** empty log message *** 2004-06-16 16:04:06 +00:00
Ralf Becker
26507a6aa7 greek translations thanks to Nikolaos Batsis <nickthegreek-AT-yahoo.com> 2004-06-13 20:48:44 +00:00
Oscar Manuel Gómez Senovilla
d834017cff *** empty log message *** 2004-06-11 19:23:19 +00:00
zhangweiwu
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
zhangweiwu
471b312a67 Received new UTF-8 lang files from kiang.
----------------------------------------------------------------------
2004-06-09 04:16:56 +00:00
zhangweiwu
b68e50cd79 UTF-8 lang files. I missed this file last time commiting lang files. 2004-06-08 18:13:30 +00:00
reinerj
3ec6f18729 Italien translation extension from Leo Amadori 2004-05-26 20:03:39 +00:00
zhangweiwu
17f64562ad from kiang, to workaround 'the slash bug':
Translation of Traditional Chinese in UTF-8 version
I've tested it with the version RC5. Somebody in taiwan
who offered a series of functions to convert the
encoding from big5 to utf-8. It works fine~ Should I also
upload it for anyone who would like to understand the
big5 encoding??
2004-05-24 02:46:24 +00:00
Oscar Manuel Gómez Senovilla
b350dbadaa *** empty log message *** 2004-05-19 14:34:08 +00:00
Ralf Becker
f4361e3ca4 fixed not working scrolling and search for user-groups, fixed disabled search via admin-ACL's 2004-05-19 06:05:01 +00:00
petere78
ade32c3e64 Deutsche Sprache, schwere Sprache 2004-05-06 16:36:05 +00:00
Oscar Manuel Gómez Senovilla
99f5991189 *** empty log message *** 2004-05-04 19:11:45 +00:00
reinerj
92f09dfc3a new langfile Catalan from Xavier Navarro 2004-05-04 13:53:55 +00:00
Espen Laursen
45528fb2ec just a small update 2004-05-03 11:09:23 +00:00
Espen Laursen
e9aefa3ed5 Updated. 2004-04-29 21:16:12 +00:00
reinerj
a50b3d5383 update Polish langfiles from Michael Bielicki 2004-04-23 22:48:53 +00:00
Espen Laursen
55dfdaff5e Start of the danish translation. About 85% complete 2004-04-23 14:25:54 +00:00
reinerj
9e3acdfe11 update Dutch langfiles from G.G. van der Steen 2004-04-22 22:13:11 +00:00
Pim Snel
4c4913282f fix typo 2004-04-21 21:04:37 +00:00
mila76
c82ed9cf31 Update to 0.9.99.015 2004-04-19 21:23:46 +00:00
mila76
723f3e7211 removed double line 2004-04-19 20:06:54 +00:00
reinerj
0db350d980 update traditional Chinese langfiles from Finjon Kiang 2004-04-16 09:11:54 +00:00
Ralf Becker
0411643b27 implemented enble == 4 type apps - opened in a popup window - for the manual 2004-04-13 09:28:49 +00:00
Oscar Manuel Gómez Senovilla
0fb012f83c *** empty log message *** 2004-04-13 08:21:55 +00:00
Oscar Manuel Gómez Senovilla
c552995176 *** empty log message *** 2004-03-29 09:23:06 +00:00
reinerj
8574c44ae1 update to the next version from egw 2004-03-28 12:20:15 +00:00
petere78
0f8224fd47 Various spelling and grammar fixes 2004-03-27 01:15:04 +00:00
Ralf Becker
7a47184f12 change icon for Group-ACL to use the standard/API edit-icon, changed the title/tooltip to "Grant access: edit group ACL's" 2004-03-23 13:45:23 +00:00
Ralf Becker
2335e91857 added a (optional) language-select-box, eg. for demo-sites 2004-03-21 21:28:35 +00:00
Ralf Becker
2a95647df6 fixed:
- logo can be given now as URL or filename (in phpgwapi/templates/default/images)
- the logo url dont need a leading http://, if its not present, it will be added automaticaly (you can enter a https url)
- commented the not working bg-colors and the pure html complilans out
2004-03-21 15:01:28 +00:00
Ralf Becker
45df07162b removed the es translation, as es-es is used now 2004-03-21 10:59:53 +00:00
reinerj
be28d77fa9 update Brazil lang file translated from Orlando Gentil 2004-03-19 22:03:20 +00:00
Oscar Manuel Gómez Senovilla
51cd8367ba *** empty log message *** 2004-03-02 20:25:26 +00:00
reinerj
259d6ce8bf add some translations from Zhang Weiwu in Chinese 2004-02-20 09:46:20 +00:00
shrykedude
7db78820be translation updates 2004-01-28 06:14:51 +00:00
reinerj
27db6671b0 add translation from Andrei V. Smilianets for ukrain 2004-01-22 20:09:38 +00:00
Miles Lott
0b59aa5f49 rewording 2004-01-22 02:36:59 +00:00
Oscar Manuel Gómez Senovilla
fd95a1911b *** empty log message *** 2004-01-04 03:10:35 +00:00
Oscar Manuel Gómez Senovilla
0b8ecc7a8a *** empty log message *** 2004-01-03 00:04:16 +00:00
Oscar Manuel Gómez Senovilla
803a930a22 *** empty log message *** 2004-01-02 21:12:27 +00:00
Oscar Manuel Gómez Senovilla
a9bfb197e6 *** empty log message *** 2003-12-23 00:18:57 +00:00
reinerj
f75fd3b563 fix a typo 2003-12-14 12:03:39 +00:00
zhangweiwu
b8d36e17c2 New Translation. Blah. 2003-12-07 12:57:37 +00:00
zhangweiwu
c451623cf9 Translation translation blah ... 2003-12-03 03:08:09 +00:00
Lars Kneschke
b00035b95c empty file 2003-11-28 00:02:14 +00:00
zhangweiwu
edb7da7145 Newest translation.
This is not a copy-and-usable translation: you need to reinstall the language in setup.
This is because I changed charset to be utf8.
2003-11-24 03:33:35 +00:00
Pim Snel
85cb7ab6b0 removed typos 2003-11-17 22:04:58 +00:00
Pim Snel
4290a272f0 Dutch translation greatly updated for admin 2003-11-14 13:57:49 +00:00
Pim Snel
46e0d10d25 major update Dutch translations 2003-11-14 10:03:19 +00:00
dragob
f564d79dae Some cosmetics in translations. 2003-11-12 13:18:44 +00:00
reinerj
cee88d7aab updated Big5 lang file from Finjon Kiang 2003-11-04 09:55:37 +00:00
dragob
787827274b Some cosmetics in translations. 2003-10-16 20:43:20 +00:00
Ralf Becker
e7ffae02d3 moved the phrases 'site configuration' and 'global categories' from admin to common as many apps use it in there sidebox-menu now 2003-10-16 11:55:36 +00:00
dragob
94b87ed52d Added slovenian translation. 2003-10-14 21:10:54 +00:00
reinerj
62964576bd Translation update from Finjon Kiang 2003-10-14 09:58:13 +00:00
zhangweiwu
f886e06d3c Updated translation. 2003-10-03 20:06:26 +00:00
Ralf Becker
6c10e248d7 reverted the german lang-files to iso8859-1, as we want to make the conversation optional and while adding the files to the database 2003-10-03 11:47:09 +00:00
Lars Kneschke
e5373db2a2 moved german translation to UTF-8 2003-09-28 08:15:58 +00:00
Ralf Becker
948fe27751 applied Zhang Weiwu (zhangweiwu) chinese(simplified) translations 2003-09-25 07:19:12 +00:00
Ralf Becker
2c3c764d9f fix to call {edit|view]_user_hooks again: ACL-manager and access-control 2003-09-24 16:48:04 +00:00
Lars Kneschke
2f986a6667 fixed a problem with the primary group
fixed german translation
2003-09-19 20:43:04 +00:00
Lars Kneschke
7cfa6dc120 some missinging phrases 2003-09-14 16:51:21 +00:00
Ralf Becker
35674f5ca3 reverted kneckes exidential changes 2003-09-13 14:39:30 +00:00
Lars Kneschke
437b960836 adding a primary group to the admin pages 2003-09-13 14:09:41 +00:00
Ralf Becker
f4fd01dd10 added possebility to remove the crontab-line 2003-09-06 10:50:35 +00:00
Ralf Becker
922a4331a7 registered the sidebox_menu hook 2003-09-03 12:27:23 +00:00
reinerj
7115718dc4 update some phrases to German 2003-08-30 17:05:00 +00:00
Lars Kneschke
0cee6f2de4 make it install-able with 0.9.14 again 2003-08-30 06:08:42 +00:00
Ralf Becker
1f87ecc966 added config-switch to disable autoload of langfiles and added translations for some other new config-values 2003-08-10 10:45:49 +00:00