update langs

This commit is contained in:
bettina 2001-06-10 04:53:48 +00:00
parent 48d6e28f5b
commit d1ed14ae63
10 changed files with 58 additions and 40 deletions

View File

@ -28,7 +28,7 @@
if (!$cat_name) if (!$cat_name)
{ {
$error[$errorcount++] = lang('Please enter a name for that category !'); $error[$errorcount++] = lang('Please enter a name');
} }
if (!$error) if (!$error)
@ -44,7 +44,7 @@
if ($exists == True) if ($exists == True)
{ {
$error[$errorcount++] = lang('That category name has been used already !'); $error[$errorcount++] = lang('That name has been used already');
} }
} }
@ -53,7 +53,7 @@
$main = $c->return_main($cat_parent); $main = $c->return_main($cat_parent);
if ($main != $cat_main) if ($main != $cat_main)
{ {
$error[$errorcount++] = lang('You selected an invalid main category !'); $error[$errorcount++] = lang('You have selected an invalid main category !');
} }
} }
@ -90,10 +90,10 @@
$t->set_var('lang_new_main',lang('New main category')); $t->set_var('lang_new_main',lang('New main category'));
$t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main)); $t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main));
$t->set_var('lang_parent',lang('Parent category')); $t->set_var('lang_parent',lang('Parent category'));
$t->set_var('lang_select_parent',lang('Select parent category')); $t->set_var('lang_select_parent',lang('Choose the parent category'));
$t->set_var('category_list',$c->formated_list('select','all',$cat_parent)); $t->set_var('category_list',$c->formated_list('select','all',$cat_parent));
$t->set_var('lang_name',lang('Category name')); $t->set_var('lang_name',lang('Name'));
$t->set_var('lang_descr',lang('Category description')); $t->set_var('lang_descr',lang('Description'));
$t->set_var('cat_name',$cat_name); $t->set_var('cat_name',$cat_name);
$t->set_var('cat_description',$cat_description); $t->set_var('cat_description',$cat_description);
$t->set_var('lang_add',lang('Add')); $t->set_var('lang_add',lang('Add'));

View File

@ -115,7 +115,8 @@
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id']) if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'])
{ {
$t->set_var('edit',$phpgw->link('/admin/editcategory.php',"cat_id=$cat_id&start=$start&query=$query&sort=$sort&order=$order&filter=$filter")); $t->set_var('edit',$phpgw->link('/admin/editcategory.php','cat_id=' . $cat_id . '&start=' . $start . '&query=' . $query . '&sort=' . $sort
. '&order=' . $order . '&filter=' . $filter));
$t->set_var('lang_edit_entry',lang('Edit')); $t->set_var('lang_edit_entry',lang('Edit'));
} }
else else
@ -126,7 +127,8 @@
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id']) if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'])
{ {
$t->set_var('delete',$phpgw->link('/admin/deletecategory.php',"cat_id=$cat_id&start=$start&query=$query&sort=$sort&order=$order&filter=$filter")); $t->set_var('delete',$phpgw->link('/admin/deletecategory.php','cat_id=' . $cat_id . '&start=' . $start . '&query=' . $query . '&sort=' . $sort . '&order='
. $order . '&filter=' . $filter));
$t->set_var('lang_delete_entry',lang('Delete')); $t->set_var('lang_delete_entry',lang('Delete'));
} }
else else

View File

@ -38,7 +38,8 @@
{ {
$c->delete($cat_id); $c->delete($cat_id);
} }
Header('Location: ' . $phpgw->link('/admin/categories.php',"start=$start&query=$query&sort=$sort&order=$order&filter=$filter")); Header('Location: ' . $phpgw->link('/admin/categories.php','start=' . $start . '&query=' . $query . '&sort=' . $sort . '&order=' . $order
. '&filter=' . $filter));
} }
else else
{ {
@ -54,13 +55,14 @@
$t->set_block('category_delete','delete','deletehandle'); $t->set_block('category_delete','delete','deletehandle');
$t->set_block('category_delete','done','donehandle'); $t->set_block('category_delete','done','donehandle');
$nolink = $phpgw->link('/admin/categories.php',"cat_id=$cat_id&start=$start&query=$query&sort=$sort&order=$order&filter=$filter"); $nolink = $phpgw->link('/admin/categories.php','cat_id=' . $cat_id . '&start=' . $start . '&query=' . $query . '&sort=' . $sort . '&order=' . $order
. '&filter=' . $filter);
$apps_cats = $c->exists('subs',$cat_name='',$cat_id); $apps_cats = $c->exists('subs',$cat_name='',$cat_id);
if ($apps_cats==True) if ($apps_cats==True)
{ {
$t->set_var('messages',lang('This category is currently being used by applications as a parent category.<br>You will need to remove the subcategories before you can delete the parent category !')); $t->set_var('messages',lang('This category is currently being used by applications as a parent category.<br>You will need to remove the subcategories before you can delete the parent category'));
$t->set_var('hidden_vars',$hidden_vars); $t->set_var('hidden_vars',$hidden_vars);
$t->set_var('lang_subs',''); $t->set_var('lang_subs','');
$t->set_var('subs',''); $t->set_var('subs','');

View File

@ -13,8 +13,8 @@
if (! $cat_id) if (! $cat_id)
{ {
Header('Location: ' . $phpgw->link('/admin/categories.php',"sort=$sort&order=$order&query=$query&start=$start" Header('Location: ' . $phpgw->link('/admin/categories.php','sort=' . $sort . '&order=' . $order . '&query=' . $query
. "&filter=$filter")); . '&start=' . $start . '&filter=' . $filter));
} }
$phpgw_info['flags']['currentapp'] = 'admin'; $phpgw_info['flags']['currentapp'] = 'admin';
@ -41,7 +41,7 @@
if (!$cat_name) if (!$cat_name)
{ {
$error[$errorcount++] = lang('Please enter a name for that category !'); $error[$errorcount++] = lang('Please enter a name');
} }
if (!$error) if (!$error)
@ -57,7 +57,7 @@
if ($exists == True) if ($exists == True)
{ {
$error[$errorcount++] = lang('That category name has been used already !'); $error[$errorcount++] = lang('That name has been used already');
} }
} }
@ -66,7 +66,7 @@
$main = $c->return_main($cat_parent); $main = $c->return_main($cat_parent);
if ($main != $cat_main) if ($main != $cat_main)
{ {
$error[$errorcount++] = lang('You selected an invalid main category !'); $error[$errorcount++] = lang('You have selected an invalid main category !');
} }
} }
@ -99,13 +99,14 @@
$t->set_var('title_categories',lang('Edit global category')); $t->set_var('title_categories',lang('Edit global category'));
$t->set_var('lang_parent',lang('Parent category')); $t->set_var('lang_parent',lang('Parent category'));
$t->set_var('lang_select_parent',lang('Select parent category')); $t->set_var('lang_select_parent',lang('Choose the parent category'));
$t->set_var('actionurl',$phpgw->link('/admin/editcategory.php')); $t->set_var('actionurl',$phpgw->link('/admin/editcategory.php'));
$t->set_var('deleteurl',$phpgw->link('/admin/deletecategory.php',"cat_id=$cat_id&start=$start&query=$query&sort=$sort&order=$order&filter=$filter")); $t->set_var('deleteurl',$phpgw->link('/admin/deletecategory.php','cat_id=' . $cat_id . '&start=' . $start . '&query=' . $query . '&sort=' . $sort
$t->set_var('doneurl',$phpgw->link('/admin/categories.php',"start=$start&query=$query&sort=$sort&order=$order&filter=$filter")); . '&order=' . $order . '&filter=' . $filter));
$t->set_var('doneurl',$phpgw->link('/admin/categories.php','start=' . $start . '&query=' . $query . '&sort=' . $sort . '&order=' . $order . '&filter=' . $filter));
$t->set_var('hidden_vars',$hidden_vars); $t->set_var('hidden_vars',$hidden_vars);
$t->set_var('lang_name',lang('Category name')); $t->set_var('lang_name',lang('Name'));
$t->set_var('lang_descr',lang('Category description')); $t->set_var('lang_descr',lang('Description'));
$t->set_var('lang_done',lang('Done')); $t->set_var('lang_done',lang('Done'));
$t->set_var('lang_edit',lang('Edit')); $t->set_var('lang_edit',lang('Edit'));
$t->set_var('lang_delete',lang('Delete')); $t->set_var('lang_delete',lang('Delete'));

View File

@ -68,6 +68,7 @@ that loginid has already been taken admin de Diese LoginID ist bereits vergeben
that site has already been entered admin de Diese Site wurde bereits eingegeben that site has already been entered admin de Diese Site wurde bereits eingegeben
the login and password can not be the same admin de Login und Passwort dürfen nicht identisch sein the login and password can not be the same admin de Login und Passwort dürfen nicht identisch sein
they must be removed before you can continue admin de Sie müssen zuvor aus dieser entfernt werden they must be removed before you can continue admin de Sie müssen zuvor aus dieser entfernt werden
This category is currently being used by applications as a parent category.<br>You will need to remove the subcategories before you can delete the parent category admin de Diese Kategorie wird gegenw&auml;rtig als &uuml;bergeordnete Kategorie benutzt.<br>Sie m&uuml;ssen erst die untergeordneten Kategorien l&ouml;schen !
total records admin de Anzahl Datensätze insgesamt total records admin de Anzahl Datensätze insgesamt
user accounts admin de Benutzerkonten user accounts admin de Benutzerkonten
user groups admin de Benutzergruppen user groups admin de Benutzergruppen

View File

@ -16,14 +16,13 @@ are you sure you want to delete this group ? admin en Are you sure you want to d
are you sure you want to delete this news site ? admin en Are you sure you want to delete this news site ? are you sure you want to delete this news site ? admin en Are you sure you want to delete this news site ?
are you sure you want to kill this session ? admin en Are you sure you want to kill this session ? are you sure you want to kill this session ? admin en Are you sure you want to kill this session ?
base url admin en Base URL base url admin en Base URL
category description admin en Category description
category name admin en Category name
change main screen message admin en Change main screen message change main screen message admin en Change main screen message
city admin en City city admin en City
create group admin en Create Group create group admin en Create Group
disabled admin en Disabled disabled admin en Disabled
display admin en Display display admin en Display
edit application admin en Edit application edit application admin en Edit application
edit global category admin en Edit global category
edit group admin en Edit Group edit group admin en Edit Group
edit user account admin en Edit user account edit user account admin en Edit user account
enabled admin en Enabled enabled admin en Enabled
@ -65,7 +64,6 @@ percent of users that logged out admin en Percent of users that logged out
permissions admin en Permissions permissions admin en Permissions
permissions this group has admin en Permissions this group has permissions this group has admin en Permissions this group has
php information admin en PHP Information php information admin en PHP Information
please enter a name for that category ! admin en Please enter a name for that category !
re-enter password admin en Re-enter password re-enter password admin en Re-enter password
region admin en Region region admin en Region
regions admin en Regions regions admin en Regions
@ -80,11 +78,11 @@ station admin en Station
stations admin en Stations stations admin en Stations
submit changes admin en Submit Changes submit changes admin en Submit Changes
table admin en Table table admin en Table
that category name has been used already ! admin en That category name has been used already !
that loginid has already been taken admin en That loginid has already been taken that loginid has already been taken admin en That loginid has already been taken
that site has already been entered admin en That site has already been entered that site has already been entered admin en That site has already been entered
the login and password can not be the same admin en The login and password can not be the same the login and password can not be the same admin en The login and password can not be the same
they must be removed before you can continue admin en They must be removed before you can continue they must be removed before you can continue admin en They must be removed before you can continue
This category is currently being used by applications as a parent category.<br>You will need to remove the subcategories before you can delete the parent category admin en This category is currently being used by applications as a parent category.<br>You will need to remove the subcategories before you can delete the parent category !
total records admin en Total records total records admin en Total records
user accounts admin en User accounts user accounts admin en User accounts
user groups admin en User groups user groups admin en User groups

View File

@ -25,9 +25,13 @@ cancel common de Abbruch
category common de Kategorie category common de Kategorie
categories common de Kategorien categories common de Kategorien
categories for common de Kategorien für categories for common de Kategorien für
category x has been added ! common de Kategorie %1 wurde hinzugef&uuml;gt !
category x has been updated ! common de Kategorie %1 wurde &uuml;berarbeitet !
change common de Ändern change common de Ändern
charset common de iso-8859-1 charset common de iso-8859-1
chat common de Chat chat common de Chat
choose a category common de W&auml;hlen einer Kategorie
choose the parent category common de W&auml;hlen der &uuml;bergeordneten Kategorie
clear common de Zurücksetzen clear common de Zurücksetzen
clear form common de Eingaben löschen clear form common de Eingaben löschen
company common de Firma company common de Firma
@ -47,7 +51,9 @@ e-mail common de E-Mail
e-mail preferences common de E-Mail Einstellungen e-mail preferences common de E-Mail Einstellungen
edit common de Editieren edit common de Editieren
email common de E-Mail email common de E-Mail
edit category common de Kategorie editieren
edit categories common de Kategorien editieren edit categories common de Kategorien editieren
edit x category for common de %1 Kategorie editieren f&uuml;r
email signature common de E-Mail Signatur email signature common de E-Mail Signatur
email type common de E-Mail Typ email type common de E-Mail Typ
end date common de Enddatum end date common de Enddatum
@ -68,7 +74,7 @@ first page common de erste Seite
forum common de Forum forum common de Forum
friday common de Freitag friday common de Freitag
ftp common de FTP ftp common de FTP
global common de Globale global common de Global
global categories common de Globale Kategorien global categories common de Globale Kategorien
global public common de Global Public global public common de Global Public
global public and group public common de öffentliche und Gruppen global public and group public common de öffentliche und Gruppen
@ -103,6 +109,7 @@ last page common de letzte Seite
login common de Login login common de Login
logout common de Logout logout common de Logout
low common de Niedrig low common de Niedrig
main category common de Hauptkategorie
main screen common de Startseite main screen common de Startseite
manual common de Handbuch manual common de Handbuch
march common de März march common de März
@ -113,6 +120,7 @@ mobile phone common de Tel Funk
monday common de Montag monday common de Montag
name common de Name name common de Name
new entry added sucessfully common de Neuer Eintrag erfolgreich hinzugefügt new entry added sucessfully common de Neuer Eintrag erfolgreich hinzugefügt
new main category common de neue Hauptkategorie
news headlines common de News headlines news headlines common de News headlines
news reader common de News Reader news reader common de News Reader
newsgroups common de Newsgroups newsgroups common de Newsgroups
@ -131,10 +139,12 @@ only yours common de nur eigene
original common de Original original common de Original
other phone common de Tel sonst. other phone common de Tel sonst.
owner common de Besitzer owner common de Besitzer
parent category common de &Uuml;bergeordnete Kategorie
password common de Passwort password common de Passwort
password has been updated common de Passwort wurde aktualisiert password has been updated common de Passwort wurde aktualisiert
permissions to the files/users directory common de Zugriffsrechte für die Dateien/Benutzer-Verzeichnisse permissions to the files/users directory common de Zugriffsrechte für die Dateien/Benutzer-Verzeichnisse
please set your preferences for this app common de Bitte editieren Sie Ihre Einstellungen für diese Applikation! please enter a name common de Bitte geben Sie einen Namen ein !
please set your preferences for this application common de Bitte editieren Sie Ihre Einstellungen für diese Applikation!
please x by hand common de Bitte manuell %1 please x by hand common de Bitte manuell %1
powered by phpgroupware version x common de Powered by <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1 powered by phpgroupware version x common de Powered by <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
preferences common de Einstellungen preferences common de Einstellungen
@ -168,6 +178,7 @@ submit common de Absenden
sunday common de Sonntag sunday common de Sonntag
that phrase already exists common de Diese Phrase existiert bereits that phrase already exists common de Diese Phrase existiert bereits
the two passwords are not the same common de Die Eingaben stimmen nicht überein the two passwords are not the same common de Die Eingaben stimmen nicht überein
this name has been used already common de Dieser Name ist bereits in Benutzung !
thursday common de Donnerstag thursday common de Donnerstag
time common de Zeit time common de Zeit
time zone common de Zeitzone time zone common de Zeitzone
@ -201,6 +212,7 @@ you have 1 high priority event on your calendar today. common de Sie haben heute
you have 1 new message! common de Sie haben eine neue Nachricht! you have 1 new message! common de Sie haben eine neue Nachricht!
you have messages! common de Sie haben Nachrichten! you have messages! common de Sie haben Nachrichten!
you have no new messages common de Keine neuen Nachrichten you have no new messages common de Keine neuen Nachrichten
you have selected an invalid main category common de Sie haben eine ung&uuml;ltige Hauptkategorie gew&auml;hlt !
you have x high priority events on your calendar today. common de Sie haben heute %1 Einträge mit hoher Priorität auf Ihrer Liste! you have x high priority events on your calendar today. common de Sie haben heute %1 Einträge mit hoher Priorität auf Ihrer Liste!
you have x new messages! common de Sie haben %1 neue Nachrichten! you have x new messages! common de Sie haben %1 neue Nachrichten!
your message has been sent common de Ihre Nachricht wurde versandt your message has been sent common de Ihre Nachricht wurde versandt

View File

@ -21,8 +21,6 @@ april common en April
are you sure you want to delete this entry ? common en Are you sure you want to delete this entry ? are you sure you want to delete this entry ? common en Are you sure you want to delete this entry ?
august common en August august common en August
autosave default category common en Autosave Default Category autosave default category common en Autosave Default Category
bookkeeping admins common en Bookkeeping admins
bookkeeping common en Bookkeeping
book marks common en Book marks book marks common en Book marks
bookmarks common en Bookmarks bookmarks common en Bookmarks
business city common en Business City business city common en Business City
@ -47,7 +45,7 @@ change common en Change
charset common en iso-8859-1 charset common en iso-8859-1
chat common en Chat chat common en Chat
choose a category common en Choose a category choose a category common en Choose a category
choose the category common en Choose the category choose the parent category common en Choose the parent category
clear common en Clear clear common en Clear
clear form common en Clear Form clear form common en Clear Form
company common en Company company common en Company
@ -122,6 +120,7 @@ last page common en last page
login common en Login login common en Login
logout common en Logout logout common en Logout
low common en Low low common en Low
main category common en Main category
main screen common en Main screen main screen common en Main screen
manual common en Manual manual common en Manual
march common en March march common en March
@ -134,6 +133,7 @@ monday common en Monday
monitor common en Monitor monitor common en Monitor
name common en Name name common en Name
new entry added sucessfully common en New entry added sucessfully new entry added sucessfully common en New entry added sucessfully
new main category common en New main category
newsgroups common en Newsgroups newsgroups common en Newsgroups
news headlines common en News headlines news headlines common en News headlines
news reader common en News Reader news reader common en News Reader
@ -157,7 +157,8 @@ password common en Password
password has been updated common en Password has been updated password has been updated common en Password has been updated
permissions to the files/users directory common en permissions to the files/users directory permissions to the files/users directory common en permissions to the files/users directory
personal common en Personal personal common en Personal
please set your preferences for this app common en Please set your preferences for this application please enter a name common en Please enter a name !
please set your preferences for this application common en Please set your preferences for this application
please x by hand common en Please %1 by hand please x by hand common en Please %1 by hand
powered by phpgroupware version x common en Powered by <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1 powered by phpgroupware version x common en Powered by <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
pref common en pref pref common en pref
@ -175,7 +176,6 @@ save common en Save
search common en Search search common en Search
select category common en Select Category select category common en Select Category
select headline news sites common en Select Headline News sites select headline news sites common en Select Headline News sites
select parent category common en Select parent category
send updates via email common en Send updates via EMail send updates via email common en Send updates via EMail
september common en September september common en September
session has been killed common en Session has been killed session has been killed common en Session has been killed
@ -191,6 +191,7 @@ submit common en Submit
sunday common en Sunday sunday common en Sunday
that phrase already exists common en That phrase already exists that phrase already exists common en That phrase already exists
the two passwords are not the same common en The two passwords are not the same the two passwords are not the same common en The two passwords are not the same
this name has been used already common en This name has been used already !
thursday common en Thursday thursday common en Thursday
time common en Time time common en Time
time zone common en Timezone time zone common en Timezone
@ -220,6 +221,7 @@ you have 1 high priority event on your calendar today. common en You have 1 high
you have 1 new message! common en You have 1 new message! you have 1 new message! common en You have 1 new message!
you have messages! common en You have messages! you have messages! common en You have messages!
you have no new messages common en You have no new messages you have no new messages common en You have no new messages
you have selected an invalid main category common en You have selected an invalid main category !
you have x high priority events on your calendar today. common en You have %1 high priority events on your calendar today. you have x high priority events on your calendar today. common en You have %1 high priority events on your calendar today.
you have x new messages! common en You have %1 new messages! you have x new messages! common en You have %1 new messages!
you must enter a password common en You must enter a password you must enter a password common en You must enter a password

View File

@ -42,7 +42,7 @@
if (!$cat_name) if (!$cat_name)
{ {
$error[$errorcount++] = lang('Please enter a name for that category !'); $error[$errorcount++] = lang('Please enter a name');
} }
if (!$error) if (!$error)
@ -58,7 +58,7 @@
if ($exists == True) if ($exists == True)
{ {
$error[$errorcount++] = lang('That category name has been used already !'); $error[$errorcount++] = lang('That name has been used already');
} }
} }
@ -67,7 +67,7 @@
$main = $c->return_main($cat_parent); $main = $c->return_main($cat_parent);
if ($main != $cat_main) if ($main != $cat_main)
{ {
$error[$errorcount++] = lang('You selected an invalid main category !'); $error[$errorcount++] = lang('You have selected an invalid main category');
} }
} }
@ -133,7 +133,7 @@
$category_list = $c->formated_list('select','all',$cat_parent); $category_list = $c->formated_list('select','all',$cat_parent);
} }
$t->set_var('category_select','<select name="cat_parent"><option value="">' . lang('Select parent category') . '</option>' . $category_list .'</select>'); $t->set_var('category_select','<select name="cat_parent"><option value="">' . lang('Choose the parent category') . '</option>' . $category_list .'</select>');
$t->set_var('lang_parent',lang('Parent category')); $t->set_var('lang_parent',lang('Parent category'));
} }
else else

View File

@ -48,7 +48,7 @@
if (!$cat_name) if (!$cat_name)
{ {
$error[$errorcount++] = lang('Please enter a name for that category !'); $error[$errorcount++] = lang('Please enter a name');
} }
if (!$error) if (!$error)
@ -63,7 +63,7 @@
} }
if ($exists == True) if ($exists == True)
{ {
$error[$errorcount++] = lang('That category name has been used already !'); $error[$errorcount++] = lang('That name has been used already');
} }
} }
@ -72,7 +72,7 @@
$main = $c->return_main($cat_parent); $main = $c->return_main($cat_parent);
if ($main != $cat_main) if ($main != $cat_main)
{ {
$error[$errorcount++] = lang('You selected an invalid main category !'); $error[$errorcount++] = lang('You have selected an invalid main category');
} }
} }
@ -131,7 +131,7 @@
$category_list = $c->formated_list('select','all',$cats[0]['parent']); $category_list = $c->formated_list('select','all',$cats[0]['parent']);
} }
$t->set_var('category_select','<select name="cat_parent"><option value="">' . lang('Select parent category') . '</option>' . $category_list .'</select>'); $t->set_var('category_select','<select name="cat_parent"><option value="">' . lang('Choose the parent category') . '</option>' . $category_list .'</select>');
$t->set_var('lang_parent',lang('Parent category')); $t->set_var('lang_parent',lang('Parent category'));
} }
else else