XHTML 1.0 cleanup for setup application

This commit is contained in:
petere78
2005-07-11 18:02:19 +00:00
parent 61b954620e
commit 73d74fa0f3
60 changed files with 940 additions and 923 deletions

View File

@ -32,7 +32,7 @@
{ {
if ($config['mcrypt_algo'] == $value) if ($config['mcrypt_algo'] == $value)
{ {
$selected = ' selected'; $selected = ' selected="selected"';
} }
else else
{ {
@ -77,7 +77,7 @@
{ {
if ($config['mcrypt_mode'] == $value) if ($config['mcrypt_mode'] == $value)
{ {
$selected = ' selected'; $selected = ' selected="selected"';
} }
else else
{ {
@ -92,12 +92,12 @@
if(!$found) if(!$found)
{ {
/* Something is wrong with their mcrypt install or php.ini */ /* Something is wrong with their mcrypt install or php.ini */
$out = '<option value="" selected>' . lang('no modes available') . '</option>' . "\n"; $out = '<option value="" selected="selected">' . lang('no modes available') . '</option>' . "\n";
} }
} }
else else
{ {
$out = '<option value="cbc" selected>CBC</option>' . "\n"; $out = '<option value="cbc" selected="selected">CBC</option>' . "\n";
} }
return $out; return $out;
} }

View File

@ -798,17 +798,17 @@
if ($file) if ($file)
{ {
printf("<br><b>File:</b> %s",$file); printf("<br /><b>File:</b> %s",$file);
} }
if ($line) if ($line)
{ {
printf("<br><b>Line:</b> %s",$line); printf("<br /><b>Line:</b> %s",$line);
} }
printf("<br><b>Function:</b> %s\n",function_backtrace(2)); printf("<br /><b>Function:</b> %s</p>\n",function_backtrace(2));
if ($this->Halt_On_Error != "report") if ($this->Halt_On_Error != "report")
{ {
echo "<p><b>Session halted.</b>"; echo "<p><b>Session halted.</b></p>";
if (is_object($GLOBALS['egw']->common)) if (is_object($GLOBALS['egw']->common))
{ {
$GLOBALS['egw']->common->phpgw_exit(True); $GLOBALS['egw']->common->phpgw_exit(True);

View File

@ -349,7 +349,7 @@ class html
} }
} }
} }
return '<option value="'.$this->htmlspecialchars($value).'"'.($found ? ' selected="1"' : '') . return '<option value="'.$this->htmlspecialchars($value).'"'.($found ? ' selected="selected"' : '') .
($title ? ' title="'.$this->htmlspecialchars($no_lang ? $title : lang($title)).'"' : '') . '>'. ($title ? ' title="'.$this->htmlspecialchars($no_lang ? $title : lang($title)).'"' : '') . '>'.
$this->htmlspecialchars($no_lang || $label == '' ? $label : lang($label)) . "</option>\n"; $this->htmlspecialchars($no_lang || $label == '' ? $label : lang($label)) . "</option>\n";
} }

View File

@ -140,22 +140,22 @@
if ($setup_info[$appname]['tables']) if ($setup_info[$appname]['tables'])
{ {
$GLOBALS['egw_setup']->process->droptables($terror,$DEBUG); $GLOBALS['egw_setup']->process->droptables($terror,$DEBUG);
echo '<br>' . $app_title . ' ' . lang('tables dropped') . '.'; echo '<br />' . $app_title . ' ' . lang('tables dropped') . '.';
} }
$GLOBALS['egw_setup']->deregister_app($setup_info[$appname]['name']); $GLOBALS['egw_setup']->deregister_app($setup_info[$appname]['name']);
echo '<br>' . $app_title . ' ' . lang('deregistered') . '.'; echo '<br />' . $app_title . ' ' . lang('deregistered') . '.';
if ($setup_info[$appname]['hooks']) if ($setup_info[$appname]['hooks'])
{ {
$GLOBALS['egw_setup']->deregister_hooks($setup_info[$appname]['name']); $GLOBALS['egw_setup']->deregister_hooks($setup_info[$appname]['name']);
echo '<br>' . $app_title . ' ' . lang('hooks deregistered') . '.'; echo '<br />' . $app_title . ' ' . lang('hooks deregistered') . '.';
} }
$do_langs = true; $do_langs = true;
if ($historylog->delete($appname)) if ($historylog->delete($appname))
{ {
echo '<br>' . $app_title . ' ' . lang('Historylog removed') . '.'; echo '<br />' . $app_title . ' ' . lang('Historylog removed') . '.';
} }
// delete all application categories and ACL // delete all application categories and ACL
@ -176,7 +176,7 @@
{ {
$terror = $GLOBALS['egw_setup']->process->current($terror,$DEBUG); $terror = $GLOBALS['egw_setup']->process->current($terror,$DEBUG);
$terror = $GLOBALS['egw_setup']->process->default_records($terror,$DEBUG); $terror = $GLOBALS['egw_setup']->process->default_records($terror,$DEBUG);
echo '<br>' . $app_title . ' ' echo '<br />' . $app_title . ' '
. lang('tables installed, unless there are errors printed above') . '.'; . lang('tables installed, unless there are errors printed above') . '.';
} }
else else
@ -189,12 +189,12 @@
{ {
$GLOBALS['egw_setup']->register_app($setup_info[$appname]['name']); $GLOBALS['egw_setup']->register_app($setup_info[$appname]['name']);
} }
echo '<br>' . $app_title . ' ' . lang('registered') . '.'; echo '<br />' . $app_title . ' ' . lang('registered') . '.';
if ($setup_info[$appname]['hooks']) if ($setup_info[$appname]['hooks'])
{ {
$GLOBALS['egw_setup']->register_hooks($setup_info[$appname]['name']); $GLOBALS['egw_setup']->register_hooks($setup_info[$appname]['name']);
echo '<br>' . $app_title . ' ' . lang('hooks registered') . '.'; echo '<br />' . $app_title . ' ' . lang('hooks registered') . '.';
} }
} }
$do_langs = true; $do_langs = true;
@ -212,12 +212,12 @@
$GLOBALS['egw_setup']->process->upgrade($terror,$DEBUG); $GLOBALS['egw_setup']->process->upgrade($terror,$DEBUG);
if ($setup_info[$appname]['tables']) if ($setup_info[$appname]['tables'])
{ {
echo '<br>' . $app_title . ' ' . lang('tables upgraded') . '.'; echo '<br />' . $app_title . ' ' . lang('tables upgraded') . '.';
// The process_upgrade() function also handles registration // The process_upgrade() function also handles registration
} }
else else
{ {
echo '<br>' . $app_title . ' ' . lang('upgraded') . '.'; echo '<br />' . $app_title . ' ' . lang('upgraded') . '.';
} }
$do_langs = true; $do_langs = true;
} }
@ -227,7 +227,7 @@
$GLOBALS['egw_setup']->process->translation->drop_add_all_langs(); $GLOBALS['egw_setup']->process->translation->drop_add_all_langs();
} }
//$setup_tpl->set_var('goback', //$setup_tpl->set_var('goback',
echo '<br><a href="applications.php?debug='.$DEBUG.'">' . lang('Go back') . '</a>'; echo '<br /><a href="applications.php?debug='.$DEBUG.'">' . lang('Go back') . '</a>';
//$setup_tpl->pparse('out','submit'); //$setup_tpl->pparse('out','submit');
$setup_tpl->pparse('out','footer'); $setup_tpl->pparse('out','footer');
exit; exit;
@ -275,7 +275,7 @@
} }
} }
echo '<br><a href="applications.php?debug='.$DEBUG.'">' . lang('Go back') . '</a>'; echo '<br /><a href="applications.php?debug='.$DEBUG.'">' . lang('Go back') . '</a>';
$setup_tpl->pparse('out','footer'); $setup_tpl->pparse('out','footer');
exit; exit;
} }
@ -291,18 +291,18 @@
{ {
echo '"' . $app_title . '" ' . lang('may be broken') . ' '; echo '"' . $app_title . '" ' . lang('may be broken') . ' ';
echo lang('because an application it depends upon was upgraded'); echo lang('because an application it depends upon was upgraded');
echo '<br>'; echo '<br />';
echo lang('to a version it does not know about') . '.'; echo lang('to a version it does not know about') . '.';
echo '<br>'; echo '<br />';
echo lang('However, the application may still work') . '.'; echo lang('However, the application may still work') . '.';
} }
elseif(get_var('badinstall',Array('GET'))) elseif(get_var('badinstall',Array('GET')))
{ {
echo '"' . $app_title . '" ' . lang('is broken') . ' '; echo '"' . $app_title . '" ' . lang('is broken') . ' ';
echo lang('because of a failed upgrade or install') . '.'; echo lang('because of a failed upgrade or install') . '.';
echo '<br>'; echo '<br />';
echo lang('Some or all of its tables are missing') . '.'; echo lang('Some or all of its tables are missing') . '.';
echo '<br>'; echo '<br />';
echo lang('You should either uninstall and then reinstall it, or attempt manual repairs') . '.'; echo lang('You should either uninstall and then reinstall it, or attempt manual repairs') . '.';
} }
elseif (!$version) elseif (!$version)
@ -320,12 +320,12 @@
{ {
if($setup_info[$resolve]['status'] == 'D') if($setup_info[$resolve]['status'] == 'D')
{ {
echo lang('because it depends upon') . ':<br>' . "\n"; echo lang('because it depends upon') . ':<br />' . "\n";
list($depapp,$depver) = parsedep($setup_info[$resolve]['depends'],False); list($depapp,$depver) = parsedep($setup_info[$resolve]['depends'],False);
$depapp_count = count($depapp); $depapp_count = count($depapp);
for ($i=0; $i<$depapp_count; $i++) for ($i=0; $i<$depapp_count; $i++)
{ {
echo '<br>' . $depapp[$i] . ': '; echo '<br />' . $depapp[$i] . ': ';
$list = ''; $list = '';
foreach($depver[$i] as $x => $y) foreach($depver[$i] as $x => $y)
{ {
@ -334,7 +334,7 @@
$list = substr($list,0,-2); $list = substr($list,0,-2);
echo "$list\n"; echo "$list\n";
} }
echo '<br><br>' . lang('The table definition was correct, and the tables were installed') . '.'; echo '<br /><br />' . lang('The table definition was correct, and the tables were installed') . '.';
} }
else else
{ {
@ -351,32 +351,32 @@
} }
else else
{ {
echo lang('because it requires manual table installation, <br>or the table definition was incorrect') . ".\n" echo lang('because it requires manual table installation, <br />or the table definition was incorrect') . ".\n"
. lang("Please check for sql scripts within the application's directory") . '.'; . lang("Please check for sql scripts within the application's directory") . '.';
} }
echo '<br>' . lang('However, the application is otherwise installed') . '.'; echo '<br />' . lang('However, the application is otherwise installed') . '.';
} }
else else
{ {
echo $app_title . ' ' . lang('has a version mismatch') . ' '; echo $app_title . ' ' . lang('has a version mismatch') . ' ';
echo lang('because of a failed upgrade, or the database is newer than the installed version of this app') . '.'; echo lang('because of a failed upgrade, or the database is newer than the installed version of this app') . '.';
echo '<br>'; echo '<br />';
echo lang('If the application has no defined tables, selecting upgrade should remedy the problem') . '.'; echo lang('If the application has no defined tables, selecting upgrade should remedy the problem') . '.';
echo '<br>' . lang('However, the application is otherwise installed') . '.'; echo '<br />' . lang('However, the application is otherwise installed') . '.';
} }
echo '<br><a href="applications.php?debug='.$DEBUG.'">' . lang('Go back') . '</a>'; echo '<br /><a href="applications.php?debug='.$DEBUG.'">' . lang('Go back') . '</a>';
$setup_tpl->pparse('out','footer'); $setup_tpl->pparse('out','footer');
exit; exit;
} }
else else
{ {
$setup_tpl->set_var('description',lang('Select the desired action(s) from the available choices')); $setup_tpl->set_var('description',lang('Select the desired action(s) from the available choices'));
$setup_tpl->set_var('action_url','applications.php');
$setup_tpl->pparse('out','header'); $setup_tpl->pparse('out','header');
$setup_tpl->set_var('appdata',lang('Application Data')); $setup_tpl->set_var('appdata',lang('Application Data'));
$setup_tpl->set_var('actions',lang('Actions')); $setup_tpl->set_var('actions',lang('Actions'));
$setup_tpl->set_var('action_url','applications.php');
$setup_tpl->set_var('app_info',lang('Application Name and Status Information')); $setup_tpl->set_var('app_info',lang('Application Name and Status Information'));
$setup_tpl->set_var('app_title',lang('Application Title')); $setup_tpl->set_var('app_title',lang('Application Title'));
$setup_tpl->set_var('app_currentver',lang('Current Version')); $setup_tpl->set_var('app_currentver',lang('Current Version'));
@ -390,7 +390,7 @@
$setup_tpl->set_var('upgrade_all',lang('Upgrade All')); $setup_tpl->set_var('upgrade_all',lang('Upgrade All'));
$setup_tpl->set_var('remove_all',lang('Remove All')); $setup_tpl->set_var('remove_all',lang('Remove All'));
$setup_tpl->set_var('lang_debug',lang('enable for extra debug-messages')); $setup_tpl->set_var('lang_debug',lang('enable for extra debug-messages'));
$setup_tpl->set_var('debug','<input type="checkbox" name="debug" value="True"' .($DEBUG ? ' checked' : '') . '>'); $setup_tpl->set_var('debug','<input type="checkbox" name="debug" value="True"' .($DEBUG ? ' checked="checked"' : '') . ' />');
$setup_tpl->set_var('bg_color',$bgcolor[0]); $setup_tpl->set_var('bg_color',$bgcolor[0]);
$setup_tpl->pparse('out','app_header'); $setup_tpl->pparse('out','app_header');
@ -409,7 +409,7 @@
switch($value['status']) switch($value['status'])
{ {
case 'C': case 'C':
$setup_tpl->set_var('remove','<input type="checkbox" name="remove[' . $value['name'] . ']">'); $setup_tpl->set_var('remove','<input type="checkbox" name="remove[' . $value['name'] . ']" />');
$setup_tpl->set_var('upgrade','&nbsp;'); $setup_tpl->set_var('upgrade','&nbsp;');
if (!$GLOBALS['egw_setup']->detection->check_app_tables($value['name'])) if (!$GLOBALS['egw_setup']->detection->check_app_tables($value['name']))
{ {
@ -452,7 +452,7 @@
if ($value['tables'] && $GLOBALS['egw_setup']->detection->check_app_tables($value['name'],True)) if ($value['tables'] && $GLOBALS['egw_setup']->detection->check_app_tables($value['name'],True))
{ {
// Some tables missing // Some tables missing
$setup_tpl->set_var('remove','<input type="checkbox" name="remove[' . $value['name'] . ']">'); $setup_tpl->set_var('remove','<input type="checkbox" name="remove[' . $value['name'] . ']" />');
$setup_tpl->set_var('resolution','<a href="applications.php?resolve=' . $value['name'] . '&badinstall=True">' . lang('Potential Problem') . '</a>'); $setup_tpl->set_var('resolution','<a href="applications.php?resolve=' . $value['name'] . '&badinstall=True">' . lang('Potential Problem') . '</a>');
$status = lang('Requires reinstall or manual repair') . ' - ' . $value['status']; $status = lang('Requires reinstall or manual repair') . ' - ' . $value['status'];
} }
@ -463,7 +463,7 @@
$status = lang('Requires upgrade') . ' - ' . $value['status']; $status = lang('Requires upgrade') . ' - ' . $value['status'];
} }
$setup_tpl->set_var('bg_color','CCFFCC'); $setup_tpl->set_var('bg_color','CCFFCC');
$setup_tpl->set_var('install','<input type="checkbox" name="install[' . $value['name'] . ']">'); $setup_tpl->set_var('install','<input type="checkbox" name="install[' . $value['name'] . ']" />');
$setup_tpl->set_var('upgrade','&nbsp;'); $setup_tpl->set_var('upgrade','&nbsp;');
$status = lang('Please install') . ' - ' . $value['status']; $status = lang('Please install') . ' - ' . $value['status'];
} }
@ -472,8 +472,8 @@
$setup_tpl->set_var('bg_color','CCCCFF'); $setup_tpl->set_var('bg_color','CCCCFF');
$setup_tpl->set_var('install','&nbsp;'); $setup_tpl->set_var('install','&nbsp;');
// TODO display some info about breakage if you mess with this app // TODO display some info about breakage if you mess with this app
$setup_tpl->set_var('upgrade','<input type="checkbox" name="upgrade[' . $value['name'] . ']">'); $setup_tpl->set_var('upgrade','<input type="checkbox" name="upgrade[' . $value['name'] . ']" />');
$setup_tpl->set_var('remove','<input type="checkbox" name="remove[' . $value['name'] . ']">'); $setup_tpl->set_var('remove','<input type="checkbox" name="remove[' . $value['name'] . ']" />');
$setup_tpl->set_var('resolution',''); $setup_tpl->set_var('resolution','');
$status = lang('Requires upgrade') . ' - ' . $value['status']; $status = lang('Requires upgrade') . ' - ' . $value['status'];
} }
@ -482,8 +482,8 @@
$setup_tpl->set_var('instimg','incomplete.png'); $setup_tpl->set_var('instimg','incomplete.png');
$setup_tpl->set_var('instalt',lang('Not Completed')); $setup_tpl->set_var('instalt',lang('Not Completed'));
$setup_tpl->set_var('install','&nbsp;'); $setup_tpl->set_var('install','&nbsp;');
$setup_tpl->set_var('remove','<input type="checkbox" name="remove[' . $value['name'] . ']">'); $setup_tpl->set_var('remove','<input type="checkbox" name="remove[' . $value['name'] . ']" />');
$setup_tpl->set_var('upgrade','<input type="checkbox" name="upgrade[' . $value['name'] . ']">'); $setup_tpl->set_var('upgrade','<input type="checkbox" name="upgrade[' . $value['name'] . ']" />');
$setup_tpl->set_var('resolution','<a href="applications.php?resolve=' . $value['name'] . '&version=True">' . lang('Possible Solutions') . '</a>'); $setup_tpl->set_var('resolution','<a href="applications.php?resolve=' . $value['name'] . '&version=True">' . lang('Possible Solutions') . '</a>');
$status = lang('Version Mismatch') . ' - ' . $value['status']; $status = lang('Version Mismatch') . ' - ' . $value['status'];
break; break;

View File

@ -38,9 +38,9 @@
exit; exit;
} }
} }
$passed_icon = '<img src="templates/default/images/completed.png" title="Passed" align="middle"> '; $passed_icon = '<img src="templates/default/images/completed.png" title="Passed" alt="Passed" align="middle" />';
$error_icon = '<img src="templates/default/images/incomplete.png" title="Error" align="middle"><span id="setup_error">'; $error_icon = '<img src="templates/default/images/incomplete.png" title="Error" alt="Error" align="middle" />';
$warning_icon = '<img src="templates/default/images/dep.png" title="Warning" align="middle"><span id="setup_warning"> '; $warning_icon = '<img src="templates/default/images/dep.png" title="Warning" alt="Warning" align="middle" />';
} }
else else
{ {
@ -98,42 +98,42 @@
), ),
'mysql' => array( 'mysql' => array(
'func' => 'extension_check', 'func' => 'extension_check',
'warning' => "<div id='setup_info'>" . lang('The %1 extension is needed, if you plan to use a %2 database.','mysql','MySQL').'</div>' 'warning' => "<div class='setup_info'>" . lang('The %1 extension is needed, if you plan to use a %2 database.','mysql','MySQL').'</div>'
), ),
'pgsql' => array( 'pgsql' => array(
'func' => 'extension_check', 'func' => 'extension_check',
'warning' => '<div id="setup_info">' . lang('The %1 extension is needed, if you plan to use a %2 database.','pgsql','pgSQL').'</div>' 'warning' => '<div class="setup_info">' . lang('The %1 extension is needed, if you plan to use a %2 database.','pgsql','pgSQL').'</div>'
), ),
'mssql' => array( 'mssql' => array(
'func' => 'extension_check', 'func' => 'extension_check',
'warning' => '<div id="setup_info">' . lang('The %1 extension is needed, if you plan to use a %2 database.','mssql','MsSQL') . '</div>', 'warning' => '<div class="setup_info">' . lang('The %1 extension is needed, if you plan to use a %2 database.','mssql','MsSQL') . '</div>',
'win_only' => True 'win_only' => True
), ),
'odbc' => array( 'odbc' => array(
'func' => 'extension_check', 'func' => 'extension_check',
'warning' => '<div id="setup_info">' . lang('The %1 extension is needed, if you plan to use a %2 database.','odbc','MaxDB, MsSQL or Oracle') . '</div>', 'warning' => '<div class="setup_info">' . lang('The %1 extension is needed, if you plan to use a %2 database.','odbc','MaxDB, MsSQL or Oracle') . '</div>',
), ),
'oci8' => array( 'oci8' => array(
'func' => 'extension_check', 'func' => 'extension_check',
'warning' => '<div id="setup_info">' . lang('The %1 extension is needed, if you plan to use a %2 database.','oci','Oracle') . '</div>', 'warning' => '<div class="setup_info">' . lang('The %1 extension is needed, if you plan to use a %2 database.','oci','Oracle') . '</div>',
), ),
'mbstring' => array( 'mbstring' => array(
'func' => 'extension_check', 'func' => 'extension_check',
'warning' => '<div id="setup_info">' . lang('The mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets.') . "</div>" 'warning' => '<div class="setup_info">' . lang('The mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets.') . "</div>"
), ),
'mbstring.func_overload' => array( 'mbstring.func_overload' => array(
'func' => 'php_ini_check', 'func' => 'php_ini_check',
'value' => 7, 'value' => 7,
'warning' => '<div id="setup_info">' . lang('The mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets.') . "</div>", 'warning' => '<div class="setup_info">' . lang('The mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets.') . "</div>",
'change' => extension_loaded('mbstring') || function_exists('dl') && @dl(PHP_SHLIB_PREFIX.'mbstring.'.PHP_SHLIB_SUFFIX) ? 'mbstring.func_overload = 7' : '', 'change' => extension_loaded('mbstring') || function_exists('dl') && @dl(PHP_SHLIB_PREFIX.'mbstring.'.PHP_SHLIB_SUFFIX) ? 'mbstring.func_overload = 7' : '',
), ),
'imap' => array( 'imap' => array(
'func' => 'extension_check', 'func' => 'extension_check',
'warning' => '<div id="setup_info">' . lang('The imap extension is needed by the two email apps (even if you use email with pop3 as protocoll).') . '</div>' 'warning' => '<div class="setup_info">' . lang('The imap extension is needed by the two email apps (even if you use email with pop3 as protocoll).') . '</div>'
), ),
'session' => array( 'session' => array(
'func' => 'extension_check', 'func' => 'extension_check',
'warning' => '<div id="setup_info">' . lang('The session extension is needed to use php4 session (db-sessions work without).') . "</div>" 'warning' => '<div class="setup_info">' . lang('The session extension is needed to use php4 session (db-sessions work without).') . "</div>"
), ),
'.' => array( '.' => array(
'func' => 'permission_check', 'func' => 'permission_check',
@ -178,17 +178,17 @@
return True; // check only under windows return True; // check only under windows
} }
// we check for the existens of 'dl', as multithreaded webservers dont have it !!! // we check for the existens of 'dl', as multithreaded webservers dont have it !!!
$availible = extension_loaded($name) || function_exists('dl') && @dl(PHP_SHLIB_PREFIX.$name.'.'.PHP_SHLIB_SUFFIX); $available = extension_loaded($name) || function_exists('dl') && @dl(PHP_SHLIB_PREFIX.$name.'.'.PHP_SHLIB_SUFFIX);
echo ($availible ? $passed_icon : $warning_icon).' '.lang('Checking extension %1 is loaded or loadable',$name).': '.($availible ? lang('True') : lang('False'))."</span><br>\n"; echo '<div>'.($available ? $passed_icon : $warning_icon).' <span'.($available ? '' : ' class="setup_warning"').'>'.lang('Checking extension %1 is loaded or loadable',$name).': '.($available ? lang('True') : lang('False'))."</span></div>\n";
if (!$availible) if (!$available)
{ {
echo $args['warning']; echo $args['warning'];
} }
echo "\n"; echo "\n";
return $availible; return $available;
} }
function verbosePerms( $in_Perms ) function verbosePerms( $in_Perms )
@ -278,17 +278,17 @@
$checks = implode(', ',$checks); $checks = implode(', ',$checks);
$icon = $passed_icon; $icon = $passed_icon;
$msg = lang('Checking file-permissions of %1 for %2: %3',$rel_name,$checks,$perms)."<br>\n"; $msg = lang('Checking file-permissions of %1 for %2: %3',$rel_name,$checks,$perms)."<br />\n";
if (!file_exists($name)) if (!file_exists($name))
{ {
echo $error_icon . $msg . lang('%1 does not exist !!!',$rel_name)."</span><br/>\n"; echo '<div>'. $error_icon . '<span class="setup_error">' . $msg . lang('%1 does not exist !!!',$rel_name)."</span></div>\n";
return False; return False;
} }
$warning = False; $warning = False;
if (!$GLOBALS['run_by_webserver'] && (@$args['is_readable'] || @$args['is_writable'])) if (!$GLOBALS['run_by_webserver'] && (@$args['is_readable'] || @$args['is_writable']))
{ {
echo $warning_icon.' '.$msg. lang('Check can only be performed, if called via a webserver, as the user-id/-name of the webserver is not known.')."</span><br/>\n"; echo $warning_icon.' '.$msg. lang('Check can only be performed, if called via a webserver, as the user-id/-name of the webserver is not known.')."\n";
unset($args['is_readable']); unset($args['is_readable']);
unset($args['is_writable']); unset($args['is_writable']);
$warning = True; $warning = True;
@ -296,22 +296,22 @@
$Ok = True; $Ok = True;
if (isset($args['is_writable']) && is_writable($name) != $args['is_writable']) if (isset($args['is_writable']) && is_writable($name) != $args['is_writable'])
{ {
echo "$error_icon $msg ".lang('%1 is %2%3 !!!',$rel_name,$args['is_writable']?lang('not').' ':'',lang('writable by the webserver'))."</span><br/>\n"; echo '<div>'.$error_icon.' <span class="setup_error">'.$msg.' '.lang('%1 is %2%3 !!!',$rel_name,$args['is_writable']?lang('not').' ':'',lang('writable by the webserver'))."</span></div>\n";
$Ok = False; $Ok = False;
} }
if (isset($args['is_readable']) && is_readable($name) != $args['is_readable']) if (isset($args['is_readable']) && is_readable($name) != $args['is_readable'])
{ {
echo "$error_icon $msg ". lang('%1 is %2%3 !!!',$rel_name,$args['is_readable']?lang('not').' ':'',lang('readable by the webserver'))."</span><br/>\n"; echo '<div>'.$error_icon.' <span class="setup_error">'.$msg.' '.lang('%1 is %2%3 !!!',$rel_name,$args['is_readable']?lang('not').' ':'',lang('readable by the webserver'))."</span></div>\n";
$Ok = False; $Ok = False;
} }
if (!$is_windows && isset($args['is_world_readable']) && !(fileperms($name) & 04) == $args['is_world_readable']) if (!$is_windows && isset($args['is_world_readable']) && !(fileperms($name) & 04) == $args['is_world_readable'])
{ {
echo "$error_icon $msg" . lang('%1 is %2%3 !!!',$rel_name,$args['is_world_readable']?lang('not').' ':'',lang('world readable'))."</span><br/>\n"; echo '<div>'.$error_icon.' <span class="setup_error">'.$msg.' '.lang('%1 is %2%3 !!!',$rel_name,$args['is_world_readable']?lang('not').' ':'',lang('world readable'))."</span></div>\n";
$Ok = False; $Ok = False;
} }
if (!$is_windows && isset($args['is_world_writable']) && !(fileperms($name) & 02) == $args['is_world_writable']) if (!$is_windows && isset($args['is_world_writable']) && !(fileperms($name) & 02) == $args['is_world_writable'])
{ {
echo "$error_icon $msg " . lang('%1 is %2%3 !!!',$rel_name,$args['is_world_writable']?lang('not').' ':'',lang('world writable'))."</span><br/>\n"; echo '<div>'.$error_icon.' <span class="setup_error">'.$msg.' '.lang('%1 is %2%3 !!!',$rel_name,$args['is_world_writable']?lang('not').' ':'',lang('world writable'))."</span></div>\n";
$Ok = False; $Ok = False;
} }
if ($Ok && !$warning && $verbose) if ($Ok && !$warning && $verbose)
@ -322,7 +322,7 @@
{ {
if ($verbose) if ($verbose)
{ {
echo "<div id='setup_info'>" . lang('This might take a while, please wait ...')."</div>\n"; echo "<div class='setup_info'>" . lang('This might take a while, please wait ...')."</div>\n";
flush(); flush();
} }
@set_time_limit(0); @set_time_limit(0);
@ -386,30 +386,30 @@
$result = $ini_value == $args['value']; $result = $ini_value == $args['value'];
break; break;
} }
$msg = ' '.lang('Checking php.ini').": $name $check $verbose_value: <div id='setup_info'>ini_get('$name')='$ini_value'$ini_value_verbose</div>\n"; $msg = ' '.lang('Checking php.ini').": $name $check $verbose_value: <span class='setup_info'>ini_get('$name')='$ini_value'$ini_value_verbose</span>";
if ($result) if ($result)
{ {
echo $passed_icon.$msg; echo "<div>".$passed_icon.$msg."</div>\n";
} }
if (!$result) if (!$result)
{ {
if (isset($args['warning'])) if (isset($args['warning']))
{ {
echo $warning_icon.$msg.$args['warning']."<br/></span>\n"; echo "<div>".$warning_icon.' <span class="setup_warning">'.$msg.'</span><div class="setup_info">'.$args['warning']."</div></div>\n";
} }
if (isset($args['error'])) if (isset($args['error']))
{ {
echo $error_icon.$msg.$args['error']."</br></span>\n"; echo "<div>".$error_icon.' <span class="setup_error">'.$msg.'</span><div class="setup_info">'.$args['error']."</div></div>\n";
} }
if (isset($args['safe_mode']) && $safe_mode || @$args['change']) if (isset($args['safe_mode']) && $safe_mode || @$args['change'])
{ {
if (!isset($args['warning']) && !isset($args['error'])) if (!isset($args['warning']) && !isset($args['error']))
{ {
echo $error_icon.$msg."<br/></span>"; echo '<div>'.$error_icon.' <span class="setup_error">'.$msg.'</span></div>';
} }
echo "<div id='setup_error'>\n"; echo "<div class='setup_error'>\n";
echo '*** '.lang('Please make the following change in your php.ini').' ('.get_php_ini().'): '.(@$args['safe_mode']?$args['safe_mode']:$args['change'])."<br>\n"; echo '*** '.lang('Please make the following change in your php.ini').' ('.get_php_ini().'): '.(@$args['safe_mode']?$args['safe_mode']:$args['change'])."<br />\n";
echo '*** '.lang('AND reload your webserver, so the above changes take effect !!!')."</div>\n"; echo '*** '.lang('AND reload your webserver, so the above changes take effect !!!')."</div>\n";
} }
} }
@ -431,7 +431,7 @@
global $passed_icon, $warning_icon; global $passed_icon, $warning_icon;
$available = (function_exists('imagecopyresampled') || function_exists('imagecopyresized')); $available = (function_exists('imagecopyresampled') || function_exists('imagecopyresized'));
echo ($available ? $passed_icon : $warning_icon).' '.lang('Checking for GD support...').': '.($available ? lang('True') : lang('False'))."<br/></span>\n"; echo "<div>".($available ? $passed_icon : $warning_icon).' <span'.($available?'':' class="setup_warning"').'>'.lang('Checking for GD support...').': '.($available ? lang('True') : lang('False'))."</span></div>\n";
if (!$available) if (!$available)
{ {
@ -461,8 +461,8 @@
{ {
echo '<p><form action="check_install.php?intro=1" method="Post">Please Select your language '.lang_select(True,'en')."</form></p>\n"; echo '<p><form action="check_install.php?intro=1" method="Post">Please Select your language '.lang_select(True,'en')."</form></p>\n";
} }
echo '<p>'.lang('The first step in installing eGroupWare is to ensure your environment has the necessary settings to correctly run the application.'); echo '<p>'.lang('The first step in installing eGroupWare is to ensure your environment has the necessary settings to correctly run the application.').'</p>';
echo '<br /><br />'.lang('We will now run a series of tests, which may take a few minutes. Click the link below to proceed.'); echo '<p>'.lang('We will now run a series of tests, which may take a few minutes. Click the link below to proceed.').'</p>';
echo '<h3><a href="check_install.php">'.lang('Run installation tests').'</a></h3>'; echo '<h3><a href="check_install.php">'.lang('Run installation tests').'</a></h3>';
$setup_tpl->pparse('out','T_footer'); $setup_tpl->pparse('out','T_footer');
exit; exit;
@ -509,7 +509,7 @@
{ {
echo lang('Please fix the above errors (%1) and warnings(%2)',$error_icon,$warning_icon).'. '; echo lang('Please fix the above errors (%1) and warnings(%2)',$error_icon,$warning_icon).'. ';
} }
echo '<br><a href="'.str_replace('check_install.php','',$_SERVER['HTTP_REFERER']).'">'.lang('Return to Setup')."</a></h3>\n"; echo '<br /><a href="'.str_replace('check_install.php','',$_SERVER['HTTP_REFERER']).'">'.lang('Return to Setup')."</a></h3>\n";
} }
$setup_tpl->pparse('out','T_footer'); $setup_tpl->pparse('out','T_footer');
//echo "</body>\n</html>\n"; //echo "</body>\n</html>\n";

View File

@ -94,14 +94,14 @@
call_user_func($setting,$newsettings); call_user_func($setting,$newsettings);
if($GLOBALS['config_error']) if($GLOBALS['config_error'])
{ {
$GLOBALS['error'] .= '<br>' . lang($GLOBALS['config_error']) . '&nbsp;'; $GLOBALS['error'] .= '<br />' . lang($GLOBALS['config_error']) . '&nbsp;';
$GLOBALS['config_error'] = ''; $GLOBALS['config_error'] = '';
/* Bail out, stop writing config data */ /* Bail out, stop writing config data */
break; break;
} }
else else
{ {
/* echo '<br>Updating: ' . $setting . '=' . $value; */ /* echo '<br />Updating: ' . $setting . '=' . $value; */
/* Don't erase passwords, since we also do not print them below */ /* Don't erase passwords, since we also do not print them below */
if($value || (!stristr($setting,'passwd') && !stristr($setting,'password') && !stristr($setting,'root_pw'))) if($value || (!stristr($setting,'passwd') && !stristr($setting,'password') && !stristr($setting,'root_pw')))
{ {
@ -254,7 +254,7 @@
{ {
/* Please check the number and dial again :) */ /* Please check the number and dial again :) */
$GLOBALS['egw_setup']->html->show_alert_msg('Error', $GLOBALS['egw_setup']->html->show_alert_msg('Error',
lang('There was a problem trying to connect to your LDAP server. <br>' lang('There was a problem trying to connect to your LDAP server. <br />'
.'please check your LDAP server configuration') . '.'); .'please check your LDAP server configuration') . '.');
} }

View File

@ -218,7 +218,7 @@
'lang_year' => lang('year'), 'lang_year' => lang('year'),
'lang_month' => lang('month'), 'lang_month' => lang('month'),
'lang_day' => lang('day'), 'lang_day' => lang('day'),
'lang_dow' => lang('day of week<br>(0-6, 0=sunday)'), 'lang_dow' => lang('day of week<br />(0-6, 0=sunday)'),
'lang_hour' => lang('hour (0-24)'), 'lang_hour' => lang('hour (0-24)'),
'lang_minute' => lang('minute'), 'lang_minute' => lang('minute'),
'lang_next_run' => lang('next run'), 'lang_next_run' => lang('next run'),

View File

@ -181,12 +181,12 @@
$GLOBALS['setup_tpl']->pparse('out','T_alert_msg'); $GLOBALS['setup_tpl']->pparse('out','T_alert_msg');
} }
function make_frm_btn_simple($pre_frm_blurb='',$frm_method='POST',$frm_action='',$input_type='submit',$input_value='',$post_frm_blurb='') function make_frm_btn_simple($pre_frm_blurb='',$frm_method='post',$frm_action='',$input_type='submit',$input_value='',$post_frm_blurb='')
{ {
/* a simple form has simple components */ /* a simple form has simple components */
$simple_form = $pre_frm_blurb ."\n" $simple_form = $pre_frm_blurb ."\n"
. '<form method="' . $frm_method . '" action="' . $frm_action . '">' . "\n" . '<form method="' . $frm_method . '" action="' . $frm_action . '">' . "\n"
. '<input type="' . $input_type . '" value="' . $input_value . '">' . "\n" . '<input type="' . $input_type . '" value="' . $input_value . '" />' . "\n"
. '</form>' . "\n" . '</form>' . "\n"
. $post_frm_blurb . "\n"; . $post_frm_blurb . "\n";
return $simple_form; return $simple_form;
@ -226,7 +226,7 @@
{ {
foreach($GLOBALS['egw_domain'] as $domain => $data) foreach($GLOBALS['egw_domain'] as $domain => $data)
{ {
$domains .= "<option value=\"$domain\" ".($domain == @$GLOBALS['egw_info']['setup']['LastDomain'] ? ' SELECTED' : '').">$domain</option>\n"; $domains .= "<option value=\"$domain\" ".($domain == @$GLOBALS['egw_info']['setup']['LastDomain'] ? ' selected="selected"' : '').">$domain</option>\n";
} }
$GLOBALS['setup_tpl']->set_var('domains',$domains); $GLOBALS['setup_tpl']->set_var('domains',$domains);

View File

@ -101,7 +101,7 @@
{ {
$ConfigLang = get_var('ConfigLang',Array('POST','COOKIE')); $ConfigLang = get_var('ConfigLang',Array('POST','COOKIE'));
} }
$select = '<select name="ConfigLang"'.($onChange ? ' onChange="this.form.submit();"' : '').'>' . "\n"; $select = '<select name="ConfigLang"'.($onChange ? ' onchange="this.form.submit();"' : '').'>' . "\n";
$languages = get_langs(); $languages = get_langs();
usort($languages,create_function('$a,$b','return strcmp(@$a[\'descr\'],@$b[\'descr\']);')); usort($languages,create_function('$a,$b','return strcmp(@$a[\'descr\'],@$b[\'descr\']);'));
foreach($languages as $data) foreach($languages as $data)
@ -112,7 +112,7 @@
$short = substr($data['lang'],0,2); $short = substr($data['lang'],0,2);
if ($short == $ConfigLang || empty($ConfigLang) && $short == substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2)) if ($short == $ConfigLang || empty($ConfigLang) && $short == substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2))
{ {
$selected = ' selected'; $selected = ' selected="selected"';
} }
$select .= '<option value="' . $data['lang'] . '"' . $selected . '>' . $data['descr'] . '</option>' . "\n"; $select .= '<option value="' . $data['lang'] . '"' . $selected . '>' . $data['descr'] . '</option>' . "\n";
} }

View File

@ -33,7 +33,7 @@
{ {
if($config['mcrypt_algo'] == $value) if($config['mcrypt_algo'] == $value)
{ {
$selected = ' selected'; $selected = ' selected="selected"';
} }
else else
{ {
@ -79,7 +79,7 @@
{ {
if($config['mcrypt_mode'] == $value) if($config['mcrypt_mode'] == $value)
{ {
$selected = ' selected'; $selected = ' selected="selected"';
} }
else else
{ {
@ -94,12 +94,12 @@
if(!$found) if(!$found)
{ {
/* Something is wrong with their mcrypt install or php.ini */ /* Something is wrong with their mcrypt install or php.ini */
$out = '<option value="" selected>' . lang('no modes available') . '</option>' . "\n"; $out = '<option value="" selected="selected">' . lang('no modes available') . '</option>' . "\n";
} }
} }
else else
{ {
$out = '<option value="cbc" selected>CBC</option>' . "\n"; $out = '<option value="cbc" selected="selected">CBC</option>' . "\n";
} }
return $out; return $out;
} }
@ -123,7 +123,7 @@
{ {
if($config['ldap_encryption_type'] == $value) if($config['ldap_encryption_type'] == $value)
{ {
$selected = ' selected'; $selected = ' selected="selected"';
} }
else else
{ {
@ -173,7 +173,7 @@
{ {
if($config['sql_encryption_type'] == $value) if($config['sql_encryption_type'] == $value)
{ {
$selected = ' selected'; $selected = ' selected="selected"';
} }
else else
{ {

View File

@ -161,7 +161,7 @@
{ {
$GLOBALS['egw_setup']->html->show_header($GLOBALS['egw_info']['setup']['header_msg'],True); $GLOBALS['egw_setup']->html->show_header($GLOBALS['egw_info']['setup']['header_msg'],True);
$GLOBALS['egw_setup']->html->show_alert_msg('Error', $GLOBALS['egw_setup']->html->show_alert_msg('Error',
lang('You appear to be running an old version of PHP <br>It its recommend that you upgrade to a new version. <br>Older version of PHP might not run eGroupWare correctly, if at all. <br><br>Please upgrade to at least version %1','4.1')); lang('You appear to be running an old version of PHP <br />It its recommend that you upgrade to a new version. <br />Older version of PHP might not run eGroupWare correctly, if at all. <br /><br />Please upgrade to at least version %1','4.1'));
$GLOBALS['egw_setup']->html->show_footer(); $GLOBALS['egw_setup']->html->show_footer();
exit; exit;
} }
@ -193,21 +193,21 @@
case 'mysql': case 'mysql':
$setup_tpl->set_var('instr', $setup_tpl->set_var('instr',
lang("Instructions for creating the database in %1:",'MySql') lang("Instructions for creating the database in %1:",'MySql')
. '<br>'.lang('Login to mysql -') . '<br />'.lang('Login to mysql -')
. '<br><i>[user@server user]# mysql -u root -p</i><br>' . '<br /><i>[user@server user]# mysql -u root -p</i><br />'
. lang('Create the empty database and grant user permissions -') . lang('Create the empty database and grant user permissions -')
. "<br><i>mysql> create database $info[db_name];</i>" . "<br /><i>mysql> create database $info[db_name];</i>"
. "<br><i>mysql> grant all on " . $info['db_name'] . "<br /><i>mysql> grant all on " . $info['db_name']
. ".* to " . $info['db_user'] . "@localhost identified by '" . $info['db_pass'] . "';</i>"); . ".* to " . $info['db_user'] . "@localhost identified by '" . $info['db_pass'] . "';</i>");
$setup_tpl->parse('V_db_stage_1','B_db_stage_1'); $setup_tpl->parse('V_db_stage_1','B_db_stage_1');
break; break;
case 'pgsql': case 'pgsql':
$setup_tpl->set_var('instr', $setup_tpl->set_var('instr',
lang('Instructions for creating the database in %1:','PostgreSQL') lang('Instructions for creating the database in %1:','PostgreSQL')
. '<br>'.lang('Start the postmaster') . '<br />'.lang('Start the postmaster')
. "<br><i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br>" . "<br /><i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br />"
. lang('Create the empty database -') . lang('Create the empty database -')
. "<br><i>[user@server user]# createdb " . $info['db_name'] . "</i>"); . "<br /><i>[user@server user]# createdb " . $info['db_name'] . "</i>");
$setup_tpl->parse('V_db_stage_1','B_db_stage_1'); $setup_tpl->parse('V_db_stage_1','B_db_stage_1');
break; break;
default: default:
@ -217,7 +217,7 @@
$setup_tpl->set_var('V_db_filled_block',$db_filled_block); $setup_tpl->set_var('V_db_filled_block',$db_filled_block);
break; break;
case 2: case 2:
$setup_tpl->set_var('prebeta',lang('You appear to be running a pre-beta version of eGroupWare.<br>These versions are no longer supported, and there is no upgrade path for them in setup.<br> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version.')); $setup_tpl->set_var('prebeta',lang('You appear to be running a pre-beta version of eGroupWare.<br />These versions are no longer supported, and there is no upgrade path for them in setup.<br /> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version.'));
$setup_tpl->set_var('notcomplete',lang('not complete')); $setup_tpl->set_var('notcomplete',lang('not complete'));
$setup_tpl->parse('V_db_stage_2','B_db_stage_2'); $setup_tpl->parse('V_db_stage_2','B_db_stage_2');
$db_filled_block = $setup_tpl->get_var('V_db_stage_2'); $db_filled_block = $setup_tpl->get_var('V_db_stage_2');
@ -241,7 +241,7 @@
case 4: case 4:
$setup_tpl->set_var('oldver',lang('You appear to be running version %1 of eGroupWare',$setup_info['phpgwapi']['currentver'])); $setup_tpl->set_var('oldver',lang('You appear to be running version %1 of eGroupWare',$setup_info['phpgwapi']['currentver']));
$setup_tpl->set_var('automatic',lang('We will automatically update your tables/records to %1',$setup_info['phpgwapi']['version'])); $setup_tpl->set_var('automatic',lang('We will automatically update your tables/records to %1',$setup_info['phpgwapi']['version']));
$setup_tpl->set_var('backupwarn',lang('but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong>')); $setup_tpl->set_var('backupwarn',lang('but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong>'));
$setup_tpl->set_var('lang_backup',lang('create a backup before upgrading the DB')); $setup_tpl->set_var('lang_backup',lang('create a backup before upgrading the DB'));
$setup_tpl->set_var('lang_debug',lang('enable for extra debug-messages')); $setup_tpl->set_var('lang_debug',lang('enable for extra debug-messages'));
$setup_tpl->set_var('upgrade',lang('Upgrade')); $setup_tpl->set_var('upgrade',lang('Upgrade'));
@ -433,7 +433,7 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
case 1: case 1:
$btn_config_now = $GLOBALS['egw_setup']->html->make_frm_btn_simple( $btn_config_now = $GLOBALS['egw_setup']->html->make_frm_btn_simple(
lang('Please configure eGroupWare for your environment'), lang('Please configure eGroupWare for your environment'),
'POST','config.php', 'post','config.php',
'submit',lang('Configure Now'), 'submit',lang('Configure Now'),
''); '');
$setup_tpl->set_var('config_table_data',$btn_config_now); $setup_tpl->set_var('config_table_data',$btn_config_now);
@ -461,11 +461,11 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
} }
if (!check_dir($config['files_dir'],$error_msg,true)) if (!check_dir($config['files_dir'],$error_msg,true))
{ {
$config_msg .= ($config_msg?"<br>\n":'').lang("Your files directory '%1' %2",$config['files_dir'],$error_msg); $config_msg .= ($config_msg?"<br />\n":'').lang("Your files directory '%1' %2",$config['files_dir'],$error_msg);
} }
if (!check_dir($config['backup_dir'],$error_msg,true)) if (!check_dir($config['backup_dir'],$error_msg,true))
{ {
$config_msg .= ($config_msg?"<br>\n":'').lang("Your backup directory '%1' %2",$config['backup_dir'],$error_msg); $config_msg .= ($config_msg?"<br />\n":'').lang("Your backup directory '%1' %2",$config['backup_dir'],$error_msg);
} }
if (!$config_msg) if (!$config_msg)
{ {
@ -475,7 +475,7 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
} }
$btn_edit_config = $GLOBALS['egw_setup']->html->make_frm_btn_simple( $btn_edit_config = $GLOBALS['egw_setup']->html->make_frm_btn_simple(
$config_msg, $config_msg,
'POST','config.php', 'post','config.php',
'submit',lang('Edit Current Configuration'), 'submit',lang('Edit Current Configuration'),
'' ''
); );
@ -485,7 +485,7 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
{ {
$btn_config_ldap = $GLOBALS['egw_setup']->html->make_frm_btn_simple( $btn_config_ldap = $GLOBALS['egw_setup']->html->make_frm_btn_simple(
lang('LDAP account import/export'), lang('LDAP account import/export'),
'POST','ldap.php', 'post','ldap.php',
'submit',lang('Configure Now'), 'submit',lang('Configure Now'),
'' ''
); );
@ -519,7 +519,7 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
$setup_tpl->set_var('admin_status_alt',$no_accounts ? lang('not completed') : lang('completed')); $setup_tpl->set_var('admin_status_alt',$no_accounts ? lang('not completed') : lang('completed'));
$setup_tpl->set_var('admin_table_data',$GLOBALS['egw_setup']->html->make_frm_btn_simple( $setup_tpl->set_var('admin_table_data',$GLOBALS['egw_setup']->html->make_frm_btn_simple(
$no_accounts ? lang('No accounts existing') : lang('Accounts existing'), $no_accounts ? lang('No accounts existing') : lang('Accounts existing'),
'POST','setup_demo.php', 'post','setup_demo.php',
'submit',lang('Create admin account'), 'submit',lang('Create admin account'),
'' ''
)); ));
@ -545,8 +545,8 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
$setup_tpl->set_var('lang_status_img',$incomplete); $setup_tpl->set_var('lang_status_img',$incomplete);
$setup_tpl->set_var('lang_status_alt','not completed'); $setup_tpl->set_var('lang_status_alt','not completed');
$btn_install_lang = $GLOBALS['egw_setup']->html->make_frm_btn_simple( $btn_install_lang = $GLOBALS['egw_setup']->html->make_frm_btn_simple(
lang('You do not have any languages installed. Please install one now <br>'), lang('You do not have any languages installed. Please install one now <br />'),
'POST','lang.php', 'post','lang.php',
'submit',lang('Install Language'), 'submit',lang('Install Language'),
''); '');
$setup_tpl->set_var('lang_table_data',$btn_install_lang); $setup_tpl->set_var('lang_table_data',$btn_install_lang);
@ -561,8 +561,8 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
$setup_tpl->set_var('lang_status_img',$completed); $setup_tpl->set_var('lang_status_img',$completed);
$setup_tpl->set_var('lang_status_alt','completed'); $setup_tpl->set_var('lang_status_alt','completed');
$btn_manage_lang = $GLOBALS['egw_setup']->html->make_frm_btn_simple( $btn_manage_lang = $GLOBALS['egw_setup']->html->make_frm_btn_simple(
lang('This stage is completed<br>') . lang('Currently installed languages: %1 <br>',implode(', ',$langs_list)), lang('This stage is completed<br />') . lang('Currently installed languages: %1 <br />',implode(', ',$langs_list)),
'POST','lang.php', 'post','lang.php',
'submit',lang('Manage Languages'), 'submit',lang('Manage Languages'),
''); '');
// show system-charset and offer conversation // show system-charset and offer conversation
@ -598,8 +598,8 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
} }
$btn_manage_apps = $GLOBALS['egw_setup']->html->make_frm_btn_simple( $btn_manage_apps = $GLOBALS['egw_setup']->html->make_frm_btn_simple(
count($to_upgrade) ? '<b>'.lang('The following applications need to be upgraded:').'</b> '.implode(', ',$to_upgrade) : count($to_upgrade) ? '<b>'.lang('The following applications need to be upgraded:').'</b> '.implode(', ',$to_upgrade) :
lang('This stage is completed<br>'), lang('This stage is completed<br />'),
'','applications.php', 'post','applications.php',
'submit',lang('Manage Applications'), 'submit',lang('Manage Applications'),
''); '');
$setup_tpl->set_var('apps_table_data',$btn_manage_apps); $setup_tpl->set_var('apps_table_data',$btn_manage_apps);
@ -618,8 +618,8 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
$setup_tpl->set_var('backup_status_img',$completed); $setup_tpl->set_var('backup_status_img',$completed);
$setup_tpl->set_var('backup_status_alt',lang('completed')); $setup_tpl->set_var('backup_status_alt',lang('completed'));
$setup_tpl->set_var('backup_table_data',$GLOBALS['egw_setup']->html->make_frm_btn_simple( $setup_tpl->set_var('backup_table_data',$GLOBALS['egw_setup']->html->make_frm_btn_simple(
''/*lang('This stage is completed<br>')*/, ''/*lang('This stage is completed<br />')*/,
'','db_backup.php', 'post','db_backup.php',
'submit',lang('backup and restore'), 'submit',lang('backup and restore'),
'')); ''));
break; break;

View File

@ -57,7 +57,7 @@
$tbl_width = @$newinstall ? '60%' : '80%'; $tbl_width = @$newinstall ? '60%' : '80%';
$td_colspan = @$newinstall ? '1' : '2'; $td_colspan = @$newinstall ? '1' : '2';
$td_align = @$newinstall ? ' align="center"' : ''; $td_align = @$newinstall ? ' align="center"' : '';
$hidden_var1 = @$newinstall ? '<input type="hidden" name="newinstall" value="True">' : ''; $hidden_var1 = @$newinstall ? '<input type="hidden" name="newinstall" value="True" />' : '';
if (!@$newinstall && !isset($GLOBALS['egw_info']['setup']['installed_langs'])) if (!@$newinstall && !isset($GLOBALS['egw_info']['setup']['installed_langs']))
{ {
@ -72,7 +72,7 @@
$select_box_langs = $select_box_langs =
@$select_box_langs @$select_box_langs
.'<option value="' . $id . '"' .'<option value="' . $id . '"'
.(@$GLOBALS['egw_info']['setup']['installed_langs'][$id]?' SELECTED="1"':'').'>' .(@$GLOBALS['egw_info']['setup']['installed_langs'][$id]?' selected="selected"':'').'>'
. $data['descr'] . '</option>' . $data['descr'] . '</option>'
."\n"; ."\n";
} }
@ -104,7 +104,7 @@
{ {
$_f_buffer = split("[/\\]", $badline['appfile']); $_f_buffer = split("[/\\]", $badline['appfile']);
$str .= lang('Application: %1, File: %2, Line: "%3"','<b>'.$_f_buffer[count($_f_buffer)-3].'</b>', $str .= lang('Application: %1, File: %2, Line: "%3"','<b>'.$_f_buffer[count($_f_buffer)-3].'</b>',
'<b>'.$_f_buffer[count($_f_buffer)-1].'</b>',$badline['line'])."<br>\n"; '<b>'.$_f_buffer[count($_f_buffer)-1].'</b>',$badline['line'])."<br />\n";
} }
$setup_tpl->set_var('V_alert_word', lang('Rejected lines')); $setup_tpl->set_var('V_alert_word', lang('Rejected lines'));
$setup_tpl->set_var('V_alert_msg', $str); $setup_tpl->set_var('V_alert_msg', $str);

View File

@ -7,7 +7,7 @@
13 (ntp) setup de 13 (ntp) 13 (ntp) setup de 13 (ntp)
80 (http) setup de 80 (http) 80 (http) setup de 80 (http)
<b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup de <b>Zeichensatz</b> (benutzen sie utf-8 wenn sie planen Sprachen mit verschiedenen Zeichens<6E>tzen zu verwenden) <b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup de <b>Zeichensatz</b> (benutzen sie utf-8 wenn sie planen Sprachen mit verschiedenen Zeichens<6E>tzen zu verwenden)
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup de <b>Dies wird 1 Admin- und 3 Demo-Benutzerkonten anlegen.</b><br>Die Benutzernamen/Passw<73>rter sind: demo/guest, demo2/guest und demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup de <b>Dies wird 1 Admin- und 3 Demo-Benutzerkonten anlegen.</b><br />Die Benutzernamen/Passw<73>rter sind: demo/guest, demo2/guest und demo3/guest.
accounts existing setup de Benutzerkonten existieren accounts existing setup de Benutzerkonten existieren
actions setup de Aktionen actions setup de Aktionen
add a domain setup de Eine Domain hinzuf<75>gen add a domain setup de Eine Domain hinzuf<75>gen
@ -68,15 +68,15 @@ backup started, this might take a view minutes ... setup de Datensicherung gesta
because an application it depends upon was upgraded setup de da eine Anwendung von der sie abh<62>ngt upgegradet wurde because an application it depends upon was upgraded setup de da eine Anwendung von der sie abh<62>ngt upgegradet wurde
because it depends upon setup de weil es abh<62>ngt von because it depends upon setup de weil es abh<62>ngt von
because it is not a user application, or access is controlled via acl setup de weil es keine Benutzer-Anwendung ist, oder der Zugriff <20>ber ACL kontrolliert wird because it is not a user application, or access is controlled via acl setup de weil es keine Benutzer-Anwendung ist, oder der Zugriff <20>ber ACL kontrolliert wird
because it requires manual table installation, <br>or the table definition was incorrect setup de weil es manuelle Installation der Tabelle erfordert, <br>oder die Tabellen-definition war nicht korrekt because it requires manual table installation, <br />or the table definition was incorrect setup de weil es manuelle Installation der Tabelle erfordert, <br />oder die Tabellen-definition war nicht korrekt
because it was manually disabled setup de weil es manuell ausgeschaltet wurde because it was manually disabled setup de weil es manuell ausgeschaltet wurde
because of a failed upgrade or install setup de weil eine Aktualisierung oder eine Installation fehlgeschlug because of a failed upgrade or install setup de weil eine Aktualisierung oder eine Installation fehlgeschlug
because of a failed upgrade, or the database is newer than the installed version of this app setup de weil eine Aktualisierung fehlschlug, oder die Datenbank ist neuer als die installierte Version dieser Applikation because of a failed upgrade, or the database is newer than the installed version of this app setup de weil eine Aktualisierung fehlschlug, oder die Datenbank ist neuer als die installierte Version dieser Applikation
because the enable flag for this app is set to 0, or is undefined setup de weil der verf<72>gbar-Eintrag f<>r diese Applikation auf 0 gesetzt oder undefiniert ist because the enable flag for this app is set to 0, or is undefined setup de weil der verf<72>gbar-Eintrag f<>r diese Applikation auf 0 gesetzt oder undefiniert ist
bottom setup de unten bottom setup de unten
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>these automated scripts can easily destroy your data.</strong> setup de Aber wir <u>raten Ihnen dringend, eine Sicherungskopie</u> anzulegen f&uuml;r den Fall, dass dieses Skript Ihre bestehenden Daten besch&auml;digt!<br><strong>Diese automatisierten Skripts k&ouml;nnen leicht Ihre Daten besch&auml;digen!.</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>these automated scripts can easily destroy your data.</strong> setup de Aber wir <u>raten Ihnen dringend, eine Sicherungskopie</u> anzulegen f&uuml;r den Fall, dass dieses Skript Ihre bestehenden Daten besch&auml;digt!<br /><strong>Diese automatisierten Skripts k&ouml;nnen leicht Ihre Daten besch&auml;digen!.</strong>
cancel setup de Abbrechen cancel setup de Abbrechen
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup de Kann die Datei header.inc.php wegen unzureichenden Zugriffsrechten nicht erzeugen.<br>Stattdessen k<>nnen Sie die Datei %1. cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup de Kann die Datei header.inc.php wegen unzureichenden Zugriffsrechten nicht erzeugen.<br />Stattdessen k<>nnen Sie die Datei %1.
change system-charset setup de Systemzeichensatz wechseln change system-charset setup de Systemzeichensatz wechseln
charset setup de ISO-8859-1 charset setup de ISO-8859-1
charset to convert to setup de Zeichensatz in den konvertiert werden soll charset to convert to setup de Zeichensatz in den konvertiert werden soll
@ -121,11 +121,11 @@ creating tables setup de Erstelle Tabellen
current system-charset setup de Aktueller Systemzeichensatz current system-charset setup de Aktueller Systemzeichensatz
current system-charset is %1, click %2here%3 to change it. setup de Aktueller Systemzeichensatz ist %1, %2hier%3 klicken um ihn zu <20>ndern. current system-charset is %1, click %2here%3 to change it. setup de Aktueller Systemzeichensatz ist %1, %2hier%3 klicken um ihn zu <20>ndern.
current version setup de Gegenw<6E>rtige Version current version setup de Gegenw<6E>rtige Version
currently installed languages: %1 <br> setup de Gegenw<6E>rtig installierte Sprachen: %1 <br> currently installed languages: %1 <br /> setup de Gegenw<6E>rtig installierte Sprachen: %1 <br />
database successfully converted from '%1' to '%2' setup de Datenbank erfolgreich von "%1" nach "%2" konvertiert database successfully converted from '%1' to '%2' setup de Datenbank erfolgreich von "%1" nach "%2" konvertiert
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup de Port f<>r Datum/Zeitabfragen<br>Wenn der Port 13 verwendet wird, bitte VOR dem Absenden die Firewallregeln dementsprechend setzen.<br>(Port 13/Host: 129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup de Port f<>r Datum/Zeitabfragen<br />Wenn der Port 13 verwendet wird, bitte VOR dem Absenden die Firewallregeln dementsprechend setzen.<br />(Port 13/Host: 129.6.15.28)
day setup de Tag day setup de Tag
day of week<br>(0-6, 0=sunday) setup de Wochentag<br>(0-6, 0=Sonntag) day of week<br />(0-6, 0=sunday) setup de Wochentag<br />(0-6, 0=Sonntag)
db backup and restore setup de DB Datensicherung und Wiederherstellung db backup and restore setup de DB Datensicherung und Wiederherstellung
db host setup de Datenbank-Host db host setup de Datenbank-Host
db name setup de Datenbank-Name db name setup de Datenbank-Name
@ -165,14 +165,14 @@ enable for extra debug-messages setup de ankreuzen f
enable ldap version 3 setup de LDAP Version 3 verwenden enable ldap version 3 setup de LDAP Version 3 verwenden
enable mcrypt setup de MCrypt einschalten enable mcrypt setup de MCrypt einschalten
enter some random text for app session encryption setup de Zufallstext zur Verschl<68>sselung der Anwendungssitzung enter some random text for app session encryption setup de Zufallstext zur Verschl<68>sselung der Anwendungssitzung
enter some random text for app_session <br>encryption (requires mcrypt) setup de Zufallstext zur Verschl<68>sselung der Anwendungssitzung<br>(ben<65>tigt mcrypt) enter some random text for app_session <br />encryption (requires mcrypt) setup de Zufallstext zur Verschl<68>sselung der Anwendungssitzung<br />(ben<65>tigt mcrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup de Vollst<73>ndiger Pfad f<>r tempor<6F>re Dateien.<br>Beispiel: /tmp, C:\TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup de Vollst<73>ndiger Pfad f<>r tempor<6F>re Dateien.<br />Beispiel: /tmp, C:\TEMP
enter the full path for temporary files.<br>examples: /tmp, c:temp setup de Vollst<73>ndiger Pfad f<>r tempor<6F>re Dateien.<br>Beispiel: /tmp, C:\TEMP enter the full path for temporary files.<br />examples: /tmp, c:temp setup de Vollst<73>ndiger Pfad f<>r tempor<6F>re Dateien.<br />Beispiel: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup de Vollst<73>ndiger Pfad f<>r Benutzer- und Gruppendateien.<br>Beispiel: /files, E:\Files enter the full path for users and group files.<br />examples: /files, e:\files setup de Vollst<73>ndiger Pfad f<>r Benutzer- und Gruppendateien.<br />Beispiel: /files, E:\Files
enter the full path for users and group files.<br>examples: /files, e:files setup de Vollst<73>ndiger Pfad f<>r Benutzer- und Gruppendateien.<br>Beispiel: /files, E:\Files enter the full path for users and group files.<br />examples: /files, e:files setup de Vollst<73>ndiger Pfad f<>r Benutzer- und Gruppendateien.<br />Beispiel: /files, E:\Files
enter the full path to the backup directory.<br>if empty: files directory setup de Vollst<73>ndiger Pfad f<>r das Datensicherungsverzeichnis.<br>Wenn leer: Dateiverzeichnis enter the full path to the backup directory.<br />if empty: files directory setup de Vollst<73>ndiger Pfad f<>r das Datensicherungsverzeichnis.<br />Wenn leer: Dateiverzeichnis
enter the hostname of the machine on which this server is running setup de Hostname des Computers auf dem der Server l<>uft enter the hostname of the machine on which this server is running setup de Hostname des Computers auf dem der Server l<>uft
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup de URL zur eGroupWare Installation.<br>Beispiel: http://www.domain.com/egroupware or /egroupware<br><b>keinen nachfolgenden Slash /</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup de URL zur eGroupWare Installation.<br />Beispiel: http://www.domain.com/egroupware or /egroupware<br /><b>keinen nachfolgenden Slash /</b>
enter the site password for peer servers setup de Site Passwort f<>r Peer Server enter the site password for peer servers setup de Site Passwort f<>r Peer Server
enter the site username for peer servers setup de Site Benutzername f<>r Peer Server enter the site username for peer servers setup de Site Benutzername f<>r Peer Server
enter the title for your site setup de Titel der eGroupWare Installation enter the title for your site setup de Titel der eGroupWare Installation
@ -366,7 +366,7 @@ save setup de Speichern
save this text as contents of your header.inc.php setup de Speichern Sie diesen Text als Datei header.inc.php save this text as contents of your header.inc.php setup de Speichern Sie diesen Text als Datei header.inc.php
schedule setup de planen schedule setup de planen
scheduled backups setup de Regelm<6C><6D>ige Datensicherungen scheduled backups setup de Regelm<6C><6D>ige Datensicherungen
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup de W<>hlen Sie eine Applikation, geben Sie eine Zielversion ein, dann best<73>tigen Sie den Vorgang.<br>Wenn Sie keine Version angeben, werden nur die Basis-Tabellen der Applikation installiert werden.<br><blink>DIES WIRD ZUERST ALLE TABELLEN DER APPLI select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup de W<>hlen Sie eine Applikation, geben Sie eine Zielversion ein, dann best<73>tigen Sie den Vorgang.<br />Wenn Sie keine Version angeben, werden nur die Basis-Tabellen der Applikation installiert werden.<br /><blink>DIES WIRD ZUERST ALLE TABELLEN DER APPLI
select one... setup de Einen ausw<73>hlen... select one... setup de Einen ausw<73>hlen...
select the default applications to which your users will have access setup de W<>hlen Sie die voreingestellten Anwendungen, zu denen Ihre Benutzer Zugriff haben werden select the default applications to which your users will have access setup de W<>hlen Sie die voreingestellten Anwendungen, zu denen Ihre Benutzer Zugriff haben werden
select the desired action(s) from the available choices setup de W<>hlen Sie die verlangten Aktion(en) aus der verf<72>gbaren Auswahl select the desired action(s) from the available choices setup de W<>hlen Sie die verlangten Aktion(en) aus der verf<72>gbaren Auswahl
@ -390,7 +390,7 @@ selectbox setup de Auswahlfeld
server root setup de Server-Root server root setup de Server-Root
sessions type setup de Session-Typ sessions type setup de Session-Typ
set setup de gesetzt set setup de gesetzt
set this to "old" for versions &lt; 2.4, otherwise the exact mcrypt version you use. setup de Setzen Sie dies auf "old" f<>r Versionen < 2.4, ansonsten auf die exakte MCrypt Version die Sie benutzen. set this to "old" for versions &lt; 2.4, otherwise the exact mcrypt version you use. setup de Setzen Sie dies auf "old" f<>r Versionen &lt; 2.4, ansonsten auf die exakte MCrypt Version die Sie benutzen.
setting the system-charset to utf-8 (unicode) allows the coexistens of data from languages of different charsets. setup de Den Systemzeichensatz auf UTF-8 (unicode) zu setzten, erlaubt die Koexistenz von Daten in Sprachen mit verschiedenen Zeichens<6E>tzen. setting the system-charset to utf-8 (unicode) allows the coexistens of data from languages of different charsets. setup de Den Systemzeichensatz auf UTF-8 (unicode) zu setzten, erlaubt die Koexistenz von Daten in Sprachen mit verschiedenen Zeichens<6E>tzen.
settings setup de Einstellungen settings setup de Einstellungen
setup setup de Einrichtung setup setup de Einrichtung
@ -428,9 +428,9 @@ the mbstring extension is needed to fully support unicode (utf-8) or other multi
the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup de Die Einstellung mbstring.func_overload = 7 ist notwendig um Unicode (utf-8) oder andere mehr-byte (multibyte) Zeichens<6E>tze vollst<73>ndig zu unterst<73>tzen. the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup de Die Einstellung mbstring.func_overload = 7 ist notwendig um Unicode (utf-8) oder andere mehr-byte (multibyte) Zeichens<6E>tze vollst<73>ndig zu unterst<73>tzen.
the table definition was correct, and the tables were installed setup de Die Tabellen Definition war korrekt und die Tabellen wurden installiert the table definition was correct, and the tables were installed setup de Die Tabellen Definition war korrekt und die Tabellen wurden installiert
the tables setup de die Tabellen the tables setup de die Tabellen
there was a problem tring to connect to your ldap server. <br>please check your ldap server configuration setup de Es gab ein Problem bei dem Versuch, eine Verbindung mit Ihrem LDAP-Server aufzubauen. <br>Bitte &uuml;berpr&uuml;fen Sie die Konfiguration Ihres LDAP-Servers. there was a problem tring to connect to your ldap server. <br />please check your ldap server configuration setup de Es gab ein Problem bei dem Versuch, eine Verbindung mit Ihrem LDAP-Server aufzubauen. <br />Bitte &uuml;berpr&uuml;fen Sie die Konfiguration Ihres LDAP-Servers.
there was a problem trying to connect to your ldap server. <br> setup de Es gab ein Problem eine Verbindung zu Ihrem LDAP-Server herzustellen.<br> there was a problem trying to connect to your ldap server. <br /> setup de Es gab ein Problem eine Verbindung zu Ihrem LDAP-Server herzustellen.<br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup de Es gab ein Problem eine Verbindung zu Ihrem LDAP-Server herzustellen.<br>Bitte <20>berpr<70>fen Sie die Konfiguration Ihres LDAP-Servers. there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup de Es gab ein Problem eine Verbindung zu Ihrem LDAP-Server herzustellen.<br />Bitte <20>berpr<70>fen Sie die Konfiguration Ihres LDAP-Servers.
this has to be outside the webservers document-root!!! setup de Muss au&szlig;erhalb des Wurzelverzeichnisses (document root) des Webservers sein!!! this has to be outside the webservers document-root!!! setup de Muss au&szlig;erhalb des Wurzelverzeichnisses (document root) des Webservers sein!!!
this might take a while, please wait ... setup de Dieser Test braucht einige Zeit, bitte warten ... this might take a while, please wait ... setup de Dieser Test braucht einige Zeit, bitte warten ...
this program lets you backup your database, schedule a backup or restore it. setup de Mit diesem Programm k<>nnen Sie Ihre Datenbank sichern, eine regelm<6C><6D>ige Datensicherung planen oder sie zur<75>cksichern. this program lets you backup your database, schedule a backup or restore it. setup de Mit diesem Programm k<>nnen Sie Ihre Datenbank sichern, eine regelm<6C><6D>ige Datensicherung planen oder sie zur<75>cksichern.
@ -439,8 +439,8 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup de Dieser Abschnitt wird Ihnen beim Exportieren von Benutzern/Gruppen aus eGroupWare's Account-Tabellen in Ihren LDAP-Baum behilflich sein this section will help you export users and groups from egroupware's account tables into your ldap tree setup de Dieser Abschnitt wird Ihnen beim Exportieren von Benutzern/Gruppen aus eGroupWare's Account-Tabellen in Ihren LDAP-Baum behilflich sein
this section will help you import users and groups from your ldap tree into egroupware's account tables setup de Dieser Abschnitt wird Ihnen beim Importieren von Benutzern/Gruppen aus Ihrem LDAP-Baum in eGroupWare's Account-Tabellen behilflich sein this section will help you import users and groups from your ldap tree into egroupware's account tables setup de Dieser Abschnitt wird Ihnen beim Importieren von Benutzern/Gruppen aus Ihrem LDAP-Baum in eGroupWare's Account-Tabellen behilflich sein
this section will help you setup your ldap accounts for use with egroupware setup de Dieser Abschnitt wird Ihnen helfen Ihre LDAP-Benutzer f<>r eGroupWare vorzubereiten. this section will help you setup your ldap accounts for use with egroupware setup de Dieser Abschnitt wird Ihnen helfen Ihre LDAP-Benutzer f<>r eGroupWare vorzubereiten.
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup de Das sollte ungef<65>hr 30 Zeichen lang sein<br>Hinweis: Die Vorgabe wurde zuf<75>llig erzeugt. this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup de Das sollte ungef<65>hr 30 Zeichen lang sein<br />Hinweis: Die Vorgabe wurde zuf<75>llig erzeugt.
this stage is completed<br> setup de Dieser Schritt ist abgeschlossen<br> this stage is completed<br /> setup de Dieser Schritt ist abgeschlossen<br />
to a version it does not know about setup de auf eine Version von der nichts bekannt ist to a version it does not know about setup de auf eine Version von der nichts bekannt ist
to setup 1 admin account and 3 demo accounts. setup de zum Anlegen von eines Administratorkontos und ggf. 3 Demo-Benutzerkonten. to setup 1 admin account and 3 demo accounts. setup de zum Anlegen von eines Administratorkontos und ggf. 3 Demo-Benutzerkonten.
top setup de oben top setup de oben
@ -479,15 +479,15 @@ which database type do you want to use with egroupware? setup de Welchen Datenba
world readable setup de lesbar von jedem (world readable) world readable setup de lesbar von jedem (world readable)
world writable setup de schreibbar von jedem (world writeable) world writable setup de schreibbar von jedem (world writeable)
would you like egroupware to cache the phpgw info array ? setup de Soll eGroupWare das phpgw info Array cachen ? would you like egroupware to cache the phpgw info array ? setup de Soll eGroupWare das phpgw info Array cachen ?
would you like egroupware to check for a new version<br>when admins login ? setup de Soll eGroupWare nach neuen Versionen suchen,<br> wenn sich ein Administrator anmeldet ? would you like egroupware to check for a new version<br />when admins login ? setup de Soll eGroupWare nach neuen Versionen suchen,<br /> wenn sich ein Administrator anmeldet ?
would you like to show each application's upgrade status ? setup de Soll der Upgrade-Status aller Anwendungen angezeigt werden ? would you like to show each application's upgrade status ? setup de Soll der Upgrade-Status aller Anwendungen angezeigt werden ?
writable by the webserver setup de schreibar durch den Webserver writable by the webserver setup de schreibar durch den Webserver
write config setup de Konfiguration schreiben write config setup de Konfiguration schreiben
year setup de Jahr year setup de Jahr
yes setup de Ja yes setup de Ja
yes, with lowercase usernames setup de Ja, mit kleingeschriebenen Benutzernamen yes, with lowercase usernames setup de Ja, mit kleingeschriebenen Benutzernamen
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup de Es sieht so aus, als ob Sie eine vor-beta Version von eGroupWare benutzen.<br>Diese Versionen werden nicht l<>nger unterst<73>tzt, und es gibt keinen Aktualisierungs-Pfad f<>r Sie im Einrichtung-Programm.<br>Sie m<>chten vieleicht erst auf you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup de Es sieht so aus, als ob Sie eine vor-beta Version von eGroupWare benutzen.<br />Diese Versionen werden nicht l<>nger unterst<73>tzt, und es gibt keinen Aktualisierungs-Pfad f<>r Sie im Einrichtung-Programm.<br />Sie m<>chten vieleicht erst auf
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup de Es sieht so aus als ob Sie eine alte PHP-Version benutzen<br>Es ist notwendig auf eine neue Version zu aktualisieren.<br><3E>ltere PHP-Versionen k<>nnten eGroupWare (wenn <20>berhaupt) nicht korrekt ausf<73>hren. <br><br>Biite aktualisieren Sie mindestens auf Version %1 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup de Es sieht so aus als ob Sie eine alte PHP-Version benutzen<br />Es ist notwendig auf eine neue Version zu aktualisieren.<br /><3E>ltere PHP-Versionen k<>nnten eGroupWare (wenn <20>berhaupt) nicht korrekt ausf<73>hren. <br /><br />Biite aktualisieren Sie mindestens auf Version %1
you appear to be running version %1 of egroupware setup de Es sieht so aus als benutzen Sie Version %1 von eGroupWare you appear to be running version %1 of egroupware setup de Es sieht so aus als benutzen Sie Version %1 von eGroupWare
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup de Sie scheinen php in einer Version vor 4.1.0 zu verwenden. eGroupWare ben<65>tigt nun Version 4.1.0 oder h<>her. you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup de Sie scheinen php in einer Version vor 4.1.0 zu verwenden. eGroupWare ben<65>tigt nun Version 4.1.0 oder h<>her.
you appear to be using php3. disabling php4 sessions support setup de Sie scheinen PHP3 zu verwenden. Schalte PHP4 Session Unterst<73>tzung ab. you appear to be using php3. disabling php4 sessions support setup de Sie scheinen PHP3 zu verwenden. Schalte PHP4 Session Unterst<73>tzung ab.
@ -499,13 +499,13 @@ you appear to have oracle support enabled setup de Sie scheinen Oracle Unterst
you appear to have oracle v8 (oci) support enabled setup de Sie scheinen Oracle V8 (OCI) Unterst<73>tzung zu haben. you appear to have oracle v8 (oci) support enabled setup de Sie scheinen Oracle V8 (OCI) Unterst<73>tzung zu haben.
you appear to have postgresql support enabled setup de Sie scheinen PostgreSQL Unterst<73>tzung zu haben. you appear to have postgresql support enabled setup de Sie scheinen PostgreSQL Unterst<73>tzung zu haben.
you appear to have xml support enabled setup de Sie scheinen XML Unterst<73>tzung zu haben. you appear to have xml support enabled setup de Sie scheinen XML Unterst<73>tzung zu haben.
you are ready for this stage, but this stage is not yet written.<br> setup de Sie sind bereit f<>r diesen Schritt, aber dieser Abschnitt wurde noch nicht geschrieben.<br> you are ready for this stage, but this stage is not yet written.<br /> setup de Sie sind bereit f<>r diesen Schritt, aber dieser Abschnitt wurde noch nicht geschrieben.<br />
you didn't enter a config password for domain %1 setup de Sie haben kein Passwort f<>r die Domain %1 angegeben you didn't enter a config password for domain %1 setup de Sie haben kein Passwort f<>r die Domain %1 angegeben
you didn't enter a config username for domain %1 setup de Sie haben keinen Benutzernamen f<>r die Domain %1 angegeben you didn't enter a config username for domain %1 setup de Sie haben keinen Benutzernamen f<>r die Domain %1 angegeben
you didn't enter a header admin password setup de Sie haben kein Passwort f<>r die Headerverwaltung eingegeben you didn't enter a header admin password setup de Sie haben kein Passwort f<>r die Headerverwaltung eingegeben
you didn't enter a header admin username setup de Sie haben keinen Benutzernamen f<>r die Headerverwaltung eingegeben you didn't enter a header admin username setup de Sie haben keinen Benutzernamen f<>r die Headerverwaltung eingegeben
you do not have any languages installed. please install one now <br> setup de Sie installierten noch keine Sprache. bitte installieren Sie nun eine. <br> you do not have any languages installed. please install one now <br /> setup de Sie installierten noch keine Sprache. bitte installieren Sie nun eine. <br />
you have not created your header.inc.php yet!<br> you can create it now. setup de Sie haben bisher noch keine header.inc.php angelegt!<br>Sie k<>nnen sie jetzt anlegen. you have not created your header.inc.php yet!<br /> you can create it now. setup de Sie haben bisher noch keine header.inc.php angelegt!<br />Sie k<>nnen sie jetzt anlegen.
you have successfully logged out setup de Sie haben sich erfolgreich abgemeldet. you have successfully logged out setup de Sie haben sich erfolgreich abgemeldet.
you must enter a username for the admin setup de Sie m<>ssen einen Benutzernamen f<>r den Administrator eingeben! you must enter a username for the admin setup de Sie m<>ssen einen Benutzernamen f<>r den Administrator eingeben!
you need to add some domains to your header.inc.php. setup de Sie m<>ssen mindestens eine Domain zu Ihrer header.inc.php hinzuf<75>gen. you need to add some domains to your header.inc.php. setup de Sie m<>ssen mindestens eine Domain zu Ihrer header.inc.php hinzuf<75>gen.
@ -522,7 +522,7 @@ your database is working, but you dont have any applications installed setup de
your files directory '%1' %2 setup de Ihr Dateiverzeichnis '%1' %2 your files directory '%1' %2 setup de Ihr Dateiverzeichnis '%1' %2
your header admin password is not set. please set it now! setup de Ihr Headerverwaltungspasswort wurde NICHT gesetzt. Bitte setzen Sie es jetzt! your header admin password is not set. please set it now! setup de Ihr Headerverwaltungspasswort wurde NICHT gesetzt. Bitte setzen Sie es jetzt!
your header.inc.php needs upgrading. setup de Ihre header.inc.php muss aktualisiert werden. your header.inc.php needs upgrading. setup de Ihre header.inc.php muss aktualisiert werden.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup de Ihre header.inc.php muss aktualisiert werden.<br><blink><b class="msg">WARNUNG!</b></blink><br><b>MACHEN SIE EINE SICHERUNG!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup de Ihre header.inc.php muss aktualisiert werden.<br /><blink><b class="msg">WARNUNG!</b></blink><br /><b>MACHEN SIE EINE SICHERUNG!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup de Ihre PHP Installation hat nicht die ben<65>tigte GD Unterst<73>tzung. Die Anwendung Projekte ben<65>tigen die GD Bibliothek in der Version 1.8 um Gantcharts anzeigen zu k<>nnen. your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup de Ihre PHP Installation hat nicht die ben<65>tigte GD Unterst<73>tzung. Die Anwendung Projekte ben<65>tigen die GD Bibliothek in der Version 1.8 um Gantcharts anzeigen zu k<>nnen.
your tables are current setup de Ihre Tabellen sind aktuell your tables are current setup de Ihre Tabellen sind aktuell
your tables will be dropped and you will lose data setup de Ihre Tabellen werden gel<65>scht werden und Sie werden alle Daten verlieren! your tables will be dropped and you will lose data setup de Ihre Tabellen werden gel<65>scht werden und Sie werden alle Daten verlieren!

View File

@ -7,7 +7,7 @@
13 (ntp) setup en 13 (ntp) 13 (ntp) setup en 13 (ntp)
80 (http) setup en 80 (http) 80 (http) setup en 80 (http)
<b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup en <b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): <b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup en <b>charset to use</b> (use utf-8 if you plan to use languages with different charsets):
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup en <b>This will create 1 admin account and 3 demo accounts</b><br>The username/passwords are: demo/guest, demo2/guest and demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup en <b>This will create 1 admin account and 3 demo accounts</b><br />The username/passwords are: demo/guest, demo2/guest and demo3/guest.
accounts existing setup en Accounts existing accounts existing setup en Accounts existing
actions setup en Actions actions setup en Actions
add a domain setup en Add a domain add a domain setup en Add a domain
@ -67,15 +67,15 @@ backup started, this might take a view minutes ... setup en backup started, this
because an application it depends upon was upgraded setup en because an application it depends upon was upgraded because an application it depends upon was upgraded setup en because an application it depends upon was upgraded
because it depends upon setup en because it depends upon because it depends upon setup en because it depends upon
because it is not a user application, or access is controlled via acl setup en because it is not a user application, or access is controlled via acl because it is not a user application, or access is controlled via acl setup en because it is not a user application, or access is controlled via acl
because it requires manual table installation, <br>or the table definition was incorrect setup en because it requires manual table installation, <br>or the table definition was incorrect because it requires manual table installation, <br />or the table definition was incorrect setup en because it requires manual table installation, <br />or the table definition was incorrect
because it was manually disabled setup en because it was manually disabled because it was manually disabled setup en because it was manually disabled
because of a failed upgrade or install setup en because of a failed upgrade or install because of a failed upgrade or install setup en because of a failed upgrade or install
because of a failed upgrade, or the database is newer than the installed version of this app setup en because of a failed upgrade, or the database is newer than the installed version of this app because of a failed upgrade, or the database is newer than the installed version of this app setup en because of a failed upgrade, or the database is newer than the installed version of this app
because the enable flag for this app is set to 0, or is undefined setup en because the enable flag for this app is set to 0, or is undefined because the enable flag for this app is set to 0, or is undefined setup en because the enable flag for this app is set to 0, or is undefined
bottom setup en bottom bottom setup en bottom
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>these automated scripts can easily destroy your data.</strong> setup en but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>these automated scripts can easily destroy your data.</strong> setup en but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong>
cancel setup en Cancel cancel setup en Cancel
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup en Cannot create the header.inc.php due to file permission restrictions.<br> Instead you can %1 the file. cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup en Cannot create the header.inc.php due to file permission restrictions.<br /> Instead you can %1 the file.
change system-charset setup en Change system-charset change system-charset setup en Change system-charset
charset setup en ISO-8859-1 charset setup en ISO-8859-1
charset to convert to setup en Charset to convert to charset to convert to setup en Charset to convert to
@ -120,11 +120,11 @@ creating tables setup en Creating Tables
current system-charset setup en Current system-charset current system-charset setup en Current system-charset
current system-charset is %1, click %2here%3 to change it. setup en Current system-charset is %1, click %2here%3 to change it. current system-charset is %1, click %2here%3 to change it. setup en Current system-charset is %1, click %2here%3 to change it.
current version setup en Current Version current version setup en Current Version
currently installed languages: %1 <br> setup en Currently installed languages: %1 <br> currently installed languages: %1 <br /> setup en Currently installed languages: %1 <br />
database successfully converted from '%1' to '%2' setup en Database successfully converted from '%1' to '%2' database successfully converted from '%1' to '%2' setup en Database successfully converted from '%1' to '%2'
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup en Datetime port.<br>If using port 13, please set firewall rules appropriately before submitting this page.<br>(Port: 13 / Host: 129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup en Datetime port.<br />If using port 13, please set firewall rules appropriately before submitting this page.<br />(Port: 13 / Host: 129.6.15.28)
day setup en day day setup en day
day of week<br>(0-6, 0=sunday) setup en day of week<br>(0-6, 0=sunday) day of week<br />(0-6, 0=sunday) setup en day of week<br />(0-6, 0=sunday)
db backup and restore setup en DB backup and restore db backup and restore setup en DB backup and restore
db host setup en DB Host db host setup en DB Host
db name setup en DB Name db name setup en DB Name
@ -164,12 +164,12 @@ enable for extra debug-messages setup en enable for extra debug-messages
enable ldap version 3 setup en Enable LDAP Version 3 enable ldap version 3 setup en Enable LDAP Version 3
enable mcrypt setup en Enable MCrypt enable mcrypt setup en Enable MCrypt
enter some random text for app session encryption setup en Enter some random text for app session encryption enter some random text for app session encryption setup en Enter some random text for app session encryption
enter some random text for app_session <br>encryption (requires mcrypt) setup en Enter some random text for app_session <br>encryption (requires mcrypt) enter some random text for app_session <br />encryption (requires mcrypt) setup en Enter some random text for app_session <br />encryption (requires mcrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup en Enter the full path for temporary files.<br>Examples: /tmp, C:\TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup en Enter the full path for temporary files.<br />Examples: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup en Enter the full path for users and group files.<br>Examples: /files, E:\FILES enter the full path for users and group files.<br />examples: /files, e:\files setup en Enter the full path for users and group files.<br />Examples: /files, E:\FILES
enter the full path to the backup directory.<br>if empty: files directory setup en Enter the full path to the backup directory.<br>if empty: files directory enter the full path to the backup directory.<br />if empty: files directory setup en Enter the full path to the backup directory.<br />if empty: files directory
enter the hostname of the machine on which this server is running setup en Enter the hostname of the machine on which this server is running enter the hostname of the machine on which this server is running setup en Enter the hostname of the machine on which this server is running
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup en Enter the location of eGroupWare's URL.<br>Example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>No trailing slash</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup en Enter the location of eGroupWare's URL.<br />Example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>No trailing slash</b>
enter the site password for peer servers setup en Enter the site password for peer servers enter the site password for peer servers setup en Enter the site password for peer servers
enter the site username for peer servers setup en Enter the site username for peer servers enter the site username for peer servers setup en Enter the site username for peer servers
enter the title for your site setup en Enter the title for your site enter the title for your site setup en Enter the title for your site
@ -362,7 +362,7 @@ save setup en Save
save this text as contents of your header.inc.php setup en Save this text as contents of your header.inc.php save this text as contents of your header.inc.php setup en Save this text as contents of your header.inc.php
schedule setup en schedule schedule setup en schedule
scheduled backups setup en scheduled backups scheduled backups setup en scheduled backups
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup en Select an app, enter a target version, then submit to process to that version.<br>If you do not enter a version, only the baseline tables will be installed for the app.<br><blink>THIS WILL DROP ALL OF THE APPS' TABLES FIRST!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup en Select an app, enter a target version, then submit to process to that version.<br />If you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>THIS WILL DROP ALL OF THE APPS' TABLES FIRST!</blink>
select one... setup en select one... select one... setup en select one...
select the default applications to which your users will have access setup en Select the default applications to which your users will have access select the default applications to which your users will have access setup en Select the default applications to which your users will have access
select the desired action(s) from the available choices setup en Select the desired action(s) from the available choices select the desired action(s) from the available choices setup en Select the desired action(s) from the available choices
@ -424,8 +424,8 @@ the mbstring extension is needed to fully support unicode (utf-8) or other multi
the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup en The mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup en The mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets.
the table definition was correct, and the tables were installed setup en The table definition was correct, and the tables were installed the table definition was correct, and the tables were installed setup en The table definition was correct, and the tables were installed
the tables setup en the tables the tables setup en the tables
there was a problem trying to connect to your ldap server. <br> setup en There was a problem trying to connect to your LDAP server. <br> there was a problem trying to connect to your ldap server. <br /> setup en There was a problem trying to connect to your LDAP server. <br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup en There was a problem trying to connect to your LDAP server. <br>please check your LDAP server configuration there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup en There was a problem trying to connect to your LDAP server. <br />please check your LDAP server configuration
this has to be outside the webservers document-root!!! setup en This has to be outside the webservers document-root!!! this has to be outside the webservers document-root!!! setup en This has to be outside the webservers document-root!!!
this might take a while, please wait ... setup en This might take a while, please wait ... this might take a while, please wait ... setup en This might take a while, please wait ...
this program lets you backup your database, schedule a backup or restore it. setup en This program lets you backup your database, schedule a backup or restore it. this program lets you backup your database, schedule a backup or restore it. setup en This program lets you backup your database, schedule a backup or restore it.
@ -434,8 +434,8 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup en This section will help you export users and groups from eGroupWare's account tables into your LDAP tree this section will help you export users and groups from egroupware's account tables into your ldap tree setup en This section will help you export users and groups from eGroupWare's account tables into your LDAP tree
this section will help you import users and groups from your ldap tree into egroupware's account tables setup en This section will help you import users and groups from your LDAP tree into eGroupWare's account tables this section will help you import users and groups from your ldap tree into egroupware's account tables setup en This section will help you import users and groups from your LDAP tree into eGroupWare's account tables
this section will help you setup your ldap accounts for use with egroupware setup en This section will help you setup your LDAP accounts for use with eGroupWare this section will help you setup your ldap accounts for use with egroupware setup en This section will help you setup your LDAP accounts for use with eGroupWare
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup en This should be around 30 bytes in length.<br>Note: The default has been randomly generated. this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup en This should be around 30 bytes in length.<br />Note: The default has been randomly generated.
this stage is completed<br> setup en This stage is completed<br> this stage is completed<br /> setup en This stage is completed<br />
to a version it does not know about setup en to a version it does not know about to a version it does not know about setup en to a version it does not know about
to setup 1 admin account and 3 demo accounts. setup en to setup 1 admin account and 3 demo accounts. to setup 1 admin account and 3 demo accounts. setup en to setup 1 admin account and 3 demo accounts.
top setup en top top setup en top
@ -474,15 +474,15 @@ which database type do you want to use with egroupware? setup en Which database
world readable setup en world readable world readable setup en world readable
world writable setup en world writable world writable setup en world writable
would you like egroupware to cache the phpgw info array ? setup en Would you like eGroupWare to cache the phpgw info array ? would you like egroupware to cache the phpgw info array ? setup en Would you like eGroupWare to cache the phpgw info array ?
would you like egroupware to check for a new version<br>when admins login ? setup en Would you like eGroupWare to check for a new version<br>when admins login ? would you like egroupware to check for a new version<br />when admins login ? setup en Would you like eGroupWare to check for a new version<br />when admins login ?
would you like to show each application's upgrade status ? setup en Would you like to show each application's upgrade status ? would you like to show each application's upgrade status ? setup en Would you like to show each application's upgrade status ?
writable by the webserver setup en writable by the webserver writable by the webserver setup en writable by the webserver
write config setup en Write config write config setup en Write config
year setup en year year setup en year
yes setup en Yes yes setup en Yes
yes, with lowercase usernames setup en Yes, with lowercase usernames yes, with lowercase usernames setup en Yes, with lowercase usernames
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup en You appear to be running a pre-beta version of eGroupWare.<br>These versions are no longer supported, and there is no upgrade path for them in setup.<br> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup en You appear to be running a pre-beta version of eGroupWare.<br />These versions are no longer supported, and there is no upgrade path for them in setup.<br /> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup en You appear to be running an old version of PHP <br>It its recommend that you upgrade to a new version. <br>Older version of PHP might not run eGroupWare correctly, if at all. <br><br>Please upgrade to at least version %1 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup en You appear to be running an old version of PHP <br />It its recommend that you upgrade to a new version. <br />Older version of PHP might not run eGroupWare correctly, if at all. <br /><br />Please upgrade to at least version %1
you appear to be running version %1 of egroupware setup en You appear to be running version %1 of eGroupWare you appear to be running version %1 of egroupware setup en You appear to be running version %1 of eGroupWare
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup en You appear to be using PHP earlier than 4.1.0. eGroupWare now requires 4.1.0 or later you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup en You appear to be using PHP earlier than 4.1.0. eGroupWare now requires 4.1.0 or later
you appear to be using php3. disabling php4 sessions support setup en You appear to be using PHP3. Disabling PHP4 sessions support you appear to be using php3. disabling php4 sessions support setup en You appear to be using PHP3. Disabling PHP4 sessions support
@ -494,13 +494,13 @@ you appear to have oracle support enabled setup en You appear to have Oracle sup
you appear to have oracle v8 (oci) support enabled setup en You appear to have Oracle V8 (OCI) support enabled you appear to have oracle v8 (oci) support enabled setup en You appear to have Oracle V8 (OCI) support enabled
you appear to have postgresql support enabled setup en You appear to have PostgreSQL support enabled you appear to have postgresql support enabled setup en You appear to have PostgreSQL support enabled
you appear to have xml support enabled setup en You appear to have XML support enabled you appear to have xml support enabled setup en You appear to have XML support enabled
you are ready for this stage, but this stage is not yet written.<br> setup en You are ready for this stage, but this stage is not yet written.<br> you are ready for this stage, but this stage is not yet written.<br /> setup en You are ready for this stage, but this stage is not yet written.<br />
you didn't enter a config password for domain %1 setup en You didn't enter a config password for domain %1 you didn't enter a config password for domain %1 setup en You didn't enter a config password for domain %1
you didn't enter a config username for domain %1 setup en You didn't enter a config username for domain %1 you didn't enter a config username for domain %1 setup en You didn't enter a config username for domain %1
you didn't enter a header admin password setup en You didn't enter a header admin password you didn't enter a header admin password setup en You didn't enter a header admin password
you didn't enter a header admin username setup en You didn't enter a header admin username you didn't enter a header admin username setup en You didn't enter a header admin username
you do not have any languages installed. please install one now <br> setup en You do not have any languages installed. Please install one now <br> you do not have any languages installed. please install one now <br /> setup en You do not have any languages installed. Please install one now <br />
you have not created your header.inc.php yet!<br> you can create it now. setup en You have not created your header.inc.php yet!<br> You can create it now. you have not created your header.inc.php yet!<br /> you can create it now. setup en You have not created your header.inc.php yet!<br /> You can create it now.
you have successfully logged out setup en You have successfully logged out you have successfully logged out setup en You have successfully logged out
you must enter a username for the admin setup en You must enter a username for the admin you must enter a username for the admin setup en You must enter a username for the admin
you need to add some domains to your header.inc.php. setup en You need to add some domains to your header.inc.php. you need to add some domains to your header.inc.php. setup en You need to add some domains to your header.inc.php.
@ -517,7 +517,7 @@ your database is working, but you dont have any applications installed setup en
your files directory '%1' %2 setup en Your files directory '%1' %2 your files directory '%1' %2 setup en Your files directory '%1' %2
your header admin password is not set. please set it now! setup en Your header admin password is NOT set. Please set it now! your header admin password is not set. please set it now! setup en Your header admin password is NOT set. Please set it now!
your header.inc.php needs upgrading. setup en Your header.inc.php needs upgrading. your header.inc.php needs upgrading. setup en Your header.inc.php needs upgrading.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup en Your header.inc.php needs upgrading.<br><blink><b class="msg">WARNING!</b></blink><br><b>MAKE BACKUPS!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup en Your header.inc.php needs upgrading.<br /><blink><b class="msg">WARNING!</b></blink><br /><b>MAKE BACKUPS!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup en Your PHP installation does not have appropriate GD support. You need gd library version 1.8 or newer to see Gantt charts in projects. your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup en Your PHP installation does not have appropriate GD support. You need gd library version 1.8 or newer to see Gantt charts in projects.
your tables are current setup en Your tables are current your tables are current setup en Your tables are current
your tables will be dropped and you will lose data setup en Your tables will be dropped and you will lose data !! your tables will be dropped and you will lose data setup en Your tables will be dropped and you will lose data !!

View File

@ -7,7 +7,7 @@
13 (ntp) setup es-ca 13 (ntp) 13 (ntp) setup es-ca 13 (ntp)
80 (http) setup es-ca 80 (http) 80 (http) setup es-ca 80 (http)
<b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup es-ca <b>conjunt de car<61>cters a utilitzar</b> (utilitzeu utf-8 si heu fer servir llenguatges amb diferents conjunts de car<61>cters <b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup es-ca <b>conjunt de car<61>cters a utilitzar</b> (utilitzeu utf-8 si heu fer servir llenguatges amb diferents conjunts de car<61>cters
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup es-ca <b>Aix<69> crear<61> un compte d'administrador i 3 de demostraci<63></b><br>Els noms d'usuari i contrasenyes s<>n: demo/guest, demo2/guest i demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup es-ca <b>Aix<69> crear<61> un compte d'administrador i 3 de demostraci<63></b><br />Els noms d'usuari i contrasenyes s<>n: demo/guest, demo2/guest i demo3/guest.
accounts existing setup es-ca Comptes existents accounts existing setup es-ca Comptes existents
actions setup es-ca Accions actions setup es-ca Accions
add a domain setup es-ca Afegir un domini add a domain setup es-ca Afegir un domini
@ -67,15 +67,15 @@ backup started, this might take a view minutes ... setup es-ca c
because an application it depends upon was upgraded setup es-ca perqu<71> una aplicaci<63> de la que en dep<65>n s'ha actualitzat because an application it depends upon was upgraded setup es-ca perqu<71> una aplicaci<63> de la que en dep<65>n s'ha actualitzat
because it depends upon setup es-ca perqu<71> dep<65>n de because it depends upon setup es-ca perqu<71> dep<65>n de
because it is not a user application, or access is controlled via acl setup es-ca perqu<71> no <20>s una aplicaci<63> d'usuari, o b<> l'acc<63>s est<73> controlat per ACL because it is not a user application, or access is controlled via acl setup es-ca perqu<71> no <20>s una aplicaci<63> d'usuari, o b<> l'acc<63>s est<73> controlat per ACL
because it requires manual table installation, <br>or the table definition was incorrect setup es-ca perqu<71> necessita una instal<61>laci<63> manual de les taules,<br> o b<> la seva definici<63> fou incorrecta because it requires manual table installation, <br />or the table definition was incorrect setup es-ca perqu<71> necessita una instal<61>laci<63> manual de les taules,<br /> o b<> la seva definici<63> fou incorrecta
because it was manually disabled setup es-ca perqu<71> es desactiv<69> manualment because it was manually disabled setup es-ca perqu<71> es desactiv<69> manualment
because of a failed upgrade or install setup es-ca perqu<71> es va produir una errada en actualitzar o instal.lar because of a failed upgrade or install setup es-ca perqu<71> es va produir una errada en actualitzar o instal.lar
because of a failed upgrade, or the database is newer than the installed version of this app setup es-ca perqu<71> va fallar la actualitzaci<63>, o la base de dades <20>s m<>s nova que la versi<73> instal.lada d'aquesta aplicaci<63> because of a failed upgrade, or the database is newer than the installed version of this app setup es-ca perqu<71> va fallar la actualitzaci<63>, o la base de dades <20>s m<>s nova que la versi<73> instal.lada d'aquesta aplicaci<63>
because the enable flag for this app is set to 0, or is undefined setup es-ca perqu<71> la senyal d' "activada" d'aquesta aplicaci<63> est<73> a 0, o no est<73> definida because the enable flag for this app is set to 0, or is undefined setup es-ca perqu<71> la senyal d' "activada" d'aquesta aplicaci<63> est<73> a 0, o no est<73> definida
bottom setup es-ca peu bottom setup es-ca peu
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>these automated scripts can easily destroy your data.</strong> setup es-ca per<65> us <u>recomanem que feu copia de seguretat</u> de les taules per el cas que el script faci malb<6C> l'informaci<63>.<br><strong>Aquests scripts autom<6F>tics poden f<>cilment destruir la vostra informaci<63>.</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>these automated scripts can easily destroy your data.</strong> setup es-ca per<65> us <u>recomanem que feu copia de seguretat</u> de les taules per el cas que el script faci malb<6C> l'informaci<63>.<br /><strong>Aquests scripts autom<6F>tics poden f<>cilment destruir la vostra informaci<63>.</strong>
cancel setup es-ca Cancel<65>lar cancel setup es-ca Cancel<65>lar
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup es-ca No es pot crear l'arxiu header.inc.php degut als permisos d'arxius.<br> Altrament podeu %1 l'arxiu. cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup es-ca No es pot crear l'arxiu header.inc.php degut als permisos d'arxius.<br /> Altrament podeu %1 l'arxiu.
change system-charset setup es-ca Canviar el joc de car<61>cters del sistema change system-charset setup es-ca Canviar el joc de car<61>cters del sistema
charset setup es-ca ISO-8859-1 charset setup es-ca ISO-8859-1
charset to convert to setup es-ca Joc de car<61>cters al que convertir charset to convert to setup es-ca Joc de car<61>cters al que convertir
@ -120,11 +120,11 @@ creating tables setup es-ca Creant Taules
current system-charset setup es-ca Joc de car<61>cters actual del sistema current system-charset setup es-ca Joc de car<61>cters actual del sistema
current system-charset is %1, click %2here%3 to change it. setup es-ca El joc de car<61>cters del sistema actualment <20>s %1. Premeu %2aqu<71>%3 per canviar. current system-charset is %1, click %2here%3 to change it. setup es-ca El joc de car<61>cters del sistema actualment <20>s %1. Premeu %2aqu<71>%3 per canviar.
current version setup es-ca Versi<73> Actual current version setup es-ca Versi<73> Actual
currently installed languages: %1 <br> setup es-ca Idiomes actualment instal<61>lats: %1 <br> currently installed languages: %1 <br /> setup es-ca Idiomes actualment instal<61>lats: %1 <br />
database successfully converted from '%1' to '%2' setup es-ca Base de dades convertida correctament de '%1' a '%2' database successfully converted from '%1' to '%2' setup es-ca Base de dades convertida correctament de '%1' a '%2'
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup es-ca Port de l'hora.<br>Si utilitzeu el port 13, establiu les regles del tallafocs acuradament abans d'enviar aquesta plana. datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup es-ca Port de l'hora.<br />Si utilitzeu el port 13, establiu les regles del tallafocs acuradament abans d'enviar aquesta plana.
day setup es-ca dia day setup es-ca dia
day of week<br>(0-6, 0=sunday) setup es-ca dia de la setmana<br>(0-6. 0=diumenge) day of week<br />(0-6, 0=sunday) setup es-ca dia de la setmana<br />(0-6. 0=diumenge)
db backup and restore setup es-ca c<>pia de seguretat i restauraci<63> de la BBDD db backup and restore setup es-ca c<>pia de seguretat i restauraci<63> de la BBDD
db host setup es-ca Servidor de la base de dades db host setup es-ca Servidor de la base de dades
db name setup es-ca Nom de la base de dades db name setup es-ca Nom de la base de dades
@ -163,12 +163,12 @@ enable for extra debug-messages setup es-ca activar els missatges de depuraci
enable ldap version 3 setup es-ca Activar LDAP versi<73> 3 enable ldap version 3 setup es-ca Activar LDAP versi<73> 3
enable mcrypt setup es-ca Activar MCrypt enable mcrypt setup es-ca Activar MCrypt
enter some random text for app session encryption setup es-ca Introdu<64>u qualsevol text aleatori per el xifrat de la sessi<73> de l'aplicaci<63> enter some random text for app session encryption setup es-ca Introdu<64>u qualsevol text aleatori per el xifrat de la sessi<73> de l'aplicaci<63>
enter some random text for app_session <br>encryption (requires mcrypt) setup es-ca Introdu<64>u qualsevol text aleatori per el xifrat de la sessi<73><br> de l'aplicaci<63> (necessita mcrypt) enter some random text for app_session <br />encryption (requires mcrypt) setup es-ca Introdu<64>u qualsevol text aleatori per el xifrat de la sessi<73><br /> de l'aplicaci<63> (necessita mcrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup es-ca Introdu<64>u la ruta completa per als fitxers temporals.<br>Exemple: /tmp, C:TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup es-ca Introdu<64>u la ruta completa per als fitxers temporals.<br />Exemple: /tmp, C:TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup es-ca Introdu<64>u la ruta completa per als fitxers d'usuaris i grups.<br>Exemple: /files, E:FILES enter the full path for users and group files.<br />examples: /files, e:\files setup es-ca Introdu<64>u la ruta completa per als fitxers d'usuaris i grups.<br />Exemple: /files, E:FILES
enter the full path to the backup directory.<br>if empty: files directory setup es-ca Introdu<64>u la ruta completa per al directori de la c<>pia de seguretat.<br>si es deixa en blanc: directori dels fitxers enter the full path to the backup directory.<br />if empty: files directory setup es-ca Introdu<64>u la ruta completa per al directori de la c<>pia de seguretat.<br />si es deixa en blanc: directori dels fitxers
enter the hostname of the machine on which this server is running setup es-ca Introdu<64>u el nom de l'ordinador on s'executa aquest servidor enter the hostname of the machine on which this server is running setup es-ca Introdu<64>u el nom de l'ordinador on s'executa aquest servidor
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup es-ca Introdu<64>u l'adre<72>a URL d'eGroupWare.<br>Exemple: http://www.domini.com/egroupware o b<> &nbsp; /egroupware<br><b>Sense la barra final</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup es-ca Introdu<64>u l'adre<72>a URL d'eGroupWare.<br />Exemple: http://www.domini.com/egroupware o b<> &nbsp; /egroupware<br /><b>Sense la barra final</b>
enter the site password for peer servers setup es-ca Introdu<64>u la contrasenya del lloc per a servidors parells enter the site password for peer servers setup es-ca Introdu<64>u la contrasenya del lloc per a servidors parells
enter the site username for peer servers setup es-ca Introdu<64>u el nom d'usuari del lloc per a servidors parells enter the site username for peer servers setup es-ca Introdu<64>u el nom d'usuari del lloc per a servidors parells
enter the title for your site setup es-ca Introdu<64>u el t<>tol per al vostre lloc enter the title for your site setup es-ca Introdu<64>u el t<>tol per al vostre lloc
@ -359,7 +359,7 @@ save setup es-ca Desar
save this text as contents of your header.inc.php setup es-ca Desar aquest text com a contingut del vostre header.inc.php save this text as contents of your header.inc.php setup es-ca Desar aquest text com a contingut del vostre header.inc.php
schedule setup es-ca programar schedule setup es-ca programar
scheduled backups setup es-ca c<>pies de seguretat programades scheduled backups setup es-ca c<>pies de seguretat programades
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup es-ca Seleccioneu una aplicaci<63>, entreu una versi<73> dest<73>, llavors premeu "Enviar" per a processar l'actualitzaci<63> fins a aquesta versi<73>.<br>Si no entreu una versi<73>, nom<6F>s s'instal<61>laran les taules base per a l'aplicaci<63>.<br><blink>AIX<49> ESBORRAR<41> TOTES LES TAULES DE L'APLICACI<43> PRIMER!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup es-ca Seleccioneu una aplicaci<63>, entreu una versi<73> dest<73>, llavors premeu "Enviar" per a processar l'actualitzaci<63> fins a aquesta versi<73>.<br />Si no entreu una versi<73>, nom<6F>s s'instal<61>laran les taules base per a l'aplicaci<63>.<br /><blink>AIX<49> ESBORRAR<41> TOTES LES TAULES DE L'APLICACI<43> PRIMER!</blink>
select one... setup es-ca seleccionar un... select one... setup es-ca seleccionar un...
select the default applications to which your users will have access setup es-ca Seleccioneu les aplicacions predeterminades a les que tindran acc<63>s els usuaris select the default applications to which your users will have access setup es-ca Seleccioneu les aplicacions predeterminades a les que tindran acc<63>s els usuaris
select the desired action(s) from the available choices setup es-ca Seleccioneu les accion(s) desitjades de la llista d'opcions disponibles select the desired action(s) from the available choices setup es-ca Seleccioneu les accion(s) desitjades de la llista d'opcions disponibles
@ -421,8 +421,8 @@ the mbstring extension is needed to fully support unicode (utf-8) or other multi
the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup es-ca mbstring.func_overload = 7 <20>s necess<73>ria per a suportar completament l'unicode (utf-8) o altres conjunts de car<61>cters de m<>s d'un byte. the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup es-ca mbstring.func_overload = 7 <20>s necess<73>ria per a suportar completament l'unicode (utf-8) o altres conjunts de car<61>cters de m<>s d'un byte.
the table definition was correct, and the tables were installed setup es-ca La definici<63> de la taula ha estat correcta, i s'han instal<61>lat les taules the table definition was correct, and the tables were installed setup es-ca La definici<63> de la taula ha estat correcta, i s'han instal<61>lat les taules
the tables setup es-ca les taules the tables setup es-ca les taules
there was a problem trying to connect to your ldap server. <br> setup es-ca Hi ha un problema intentant connectar al servidor LDAP.<br> there was a problem trying to connect to your ldap server. <br /> setup es-ca Hi ha un problema intentant connectar al servidor LDAP.<br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup es-ca Hi ha un problema intentant connectar al servidor LDAP.<br>Si us plau, comproveu la configuraci<63> del servidor LDAP there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup es-ca Hi ha un problema intentant connectar al servidor LDAP.<br />Si us plau, comproveu la configuraci<63> del servidor LDAP
this has to be outside the webservers document-root!!! setup es-ca Aix<69> ha d'estar fora de l'arrel de documents dels servidors web!!! this has to be outside the webservers document-root!!! setup es-ca Aix<69> ha d'estar fora de l'arrel de documents dels servidors web!!!
this might take a while, please wait ... setup es-ca Aix<69> pot trigar una estona, espereu si us plau ... this might take a while, please wait ... setup es-ca Aix<69> pot trigar una estona, espereu si us plau ...
this program lets you backup your database, schedule a backup or restore it. setup es-ca Aquest programa et permet fer c<>pies de seguretat de la teva base de dades, programar una c<>pia de seguretat o restaurar-la. this program lets you backup your database, schedule a backup or restore it. setup es-ca Aquest programa et permet fer c<>pies de seguretat de la teva base de dades, programar una c<>pia de seguretat o restaurar-la.
@ -431,8 +431,8 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup es-ca Aquesta secci<63> intentar<61> exportar els usuaris i grups de les taules de comptes d'eGroupWare a l'arbre LDAP this section will help you export users and groups from egroupware's account tables into your ldap tree setup es-ca Aquesta secci<63> intentar<61> exportar els usuaris i grups de les taules de comptes d'eGroupWare a l'arbre LDAP
this section will help you import users and groups from your ldap tree into egroupware's account tables setup es-ca Aquesta secci<63> us ajudar<61> a importar usuaris i grups de l'arbre LDAP a les taules de comptes d'eGroupWare this section will help you import users and groups from your ldap tree into egroupware's account tables setup es-ca Aquesta secci<63> us ajudar<61> a importar usuaris i grups de l'arbre LDAP a les taules de comptes d'eGroupWare
this section will help you setup your ldap accounts for use with egroupware setup es-ca Aquesta secci<63> us ajudar<61> a configurar els comptes LDAP per a usar amb eGroupWare this section will help you setup your ldap accounts for use with egroupware setup es-ca Aquesta secci<63> us ajudar<61> a configurar els comptes LDAP per a usar amb eGroupWare
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup es-ca Ha de ser una cadena d'uns 30 car<61>cters.<br>Nota: la predeterminada s'ha generat aleat<61>riament. this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup es-ca Ha de ser una cadena d'uns 30 car<61>cters.<br />Nota: la predeterminada s'ha generat aleat<61>riament.
this stage is completed<br> setup es-ca Fase acabada<br> this stage is completed<br /> setup es-ca Fase acabada<br />
to a version it does not know about setup es-ca a una versi<73> que no coneix to a version it does not know about setup es-ca a una versi<73> que no coneix
to setup 1 admin account and 3 demo accounts. setup es-ca per a configurar un compte d'administrador i 3 de convidat to setup 1 admin account and 3 demo accounts. setup es-ca per a configurar un compte d'administrador i 3 de convidat
top setup es-ca cap<61>alera top setup es-ca cap<61>alera
@ -471,14 +471,14 @@ which database type do you want to use with egroupware? setup es-ca Quin tipus d
world readable setup es-ca pot ser llegit per tothom world readable setup es-ca pot ser llegit per tothom
world writable setup es-ca pot ser modificat per tothom world writable setup es-ca pot ser modificat per tothom
would you like egroupware to cache the phpgw info array ? setup es-ca Voleu que eGroupWare desi en mem<65>ria cau la matriu d'informaci<63> phpgw? would you like egroupware to cache the phpgw info array ? setup es-ca Voleu que eGroupWare desi en mem<65>ria cau la matriu d'informaci<63> phpgw?
would you like egroupware to check for a new version<br>when admins login ? setup es-ca Voleu que eGroupWare comprovi l'exist<73>ncia de noves versions<br>quan un administrador inic<69>i la sessi<73>? would you like egroupware to check for a new version<br />when admins login ? setup es-ca Voleu que eGroupWare comprovi l'exist<73>ncia de noves versions<br />quan un administrador inic<69>i la sessi<73>?
would you like to show each application's upgrade status ? setup es-ca Voleu mostrar l'estat de l'actualitzaci<63> de cada aplicaci<63>? would you like to show each application's upgrade status ? setup es-ca Voleu mostrar l'estat de l'actualitzaci<63> de cada aplicaci<63>?
writable by the webserver setup es-ca pot ser modificat pel servidor web writable by the webserver setup es-ca pot ser modificat pel servidor web
write config setup es-ca Escriure configuraci<63> write config setup es-ca Escriure configuraci<63>
year setup es-ca any year setup es-ca any
yes setup es-ca S<> yes setup es-ca S<>
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup es-ca Sembla que esteu executant una versi<73> pre-beta d'eGroupWare.<br>Aquestes versions ja no se suporten, i no hi ha cam<61> d'actualitzaci<63> per a elles a la instal<61>laci<63>.<br>Haur<75>eu d'actualitzar primer a la 0.9.10 (la darrera versi<73> amb suport d'actualitzacions pre-beta)<br>i despr<70>s actualitzar a la versi<73> actual. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup es-ca Sembla que esteu executant una versi<73> pre-beta d'eGroupWare.<br />Aquestes versions ja no se suporten, i no hi ha cam<61> d'actualitzaci<63> per a elles a la instal<61>laci<63>.<br />Haur<75>eu d'actualitzar primer a la 0.9.10 (la darrera versi<73> amb suport d'actualitzacions pre-beta)<br />i despr<70>s actualitzar a la versi<73> actual.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup es-ca Sembla que esteu executant una versi<73> antiga de PHP<br>Es recomana que actualitzeu a una nova versi<73>.<br>Les versions antiges de PHP pot ser que no funcionin correctament o ni siquiera funcionin a eGroupWare.<br><br>Si us plau, actualitzeu al menys a la versi<73> %1 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup es-ca Sembla que esteu executant una versi<73> antiga de PHP<br />Es recomana que actualitzeu a una nova versi<73>.<br />Les versions antiges de PHP pot ser que no funcionin correctament o ni siquiera funcionin a eGroupWare.<br /><br />Si us plau, actualitzeu al menys a la versi<73> %1
you appear to be running version %1 of egroupware setup es-ca Sembla que esteu executant la versi<73> %1 d'eGroupWare you appear to be running version %1 of egroupware setup es-ca Sembla que esteu executant la versi<73> %1 d'eGroupWare
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup es-ca Sembla que esteu usant una versi<73> de PHP anterior a la 4.1.0. Necessiteu tenir 4.1.0 o superior. you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup es-ca Sembla que esteu usant una versi<73> de PHP anterior a la 4.1.0. Necessiteu tenir 4.1.0 o superior.
you appear to be using php3. disabling php4 sessions support setup es-ca Sembla que esteu usant PHP3. Desactivant el suport de sessions PHP you appear to be using php3. disabling php4 sessions support setup es-ca Sembla que esteu usant PHP3. Desactivant el suport de sessions PHP
@ -490,13 +490,13 @@ you appear to have oracle support enabled setup es-ca Sembla que teniu activat e
you appear to have oracle v8 (oci) support enabled setup es-ca Sembla que teniu activat el suport d'Oracle V8 (OCI) you appear to have oracle v8 (oci) support enabled setup es-ca Sembla que teniu activat el suport d'Oracle V8 (OCI)
you appear to have postgresql support enabled setup es-ca Sembla que teniu activat el suport de PostgreSQL you appear to have postgresql support enabled setup es-ca Sembla que teniu activat el suport de PostgreSQL
you appear to have xml support enabled setup es-ca Sembla que teniu activat el suport de XML you appear to have xml support enabled setup es-ca Sembla que teniu activat el suport de XML
you are ready for this stage, but this stage is not yet written.<br> setup es-ca Esteu preparats per a aquesta fase, per<65> aquesta fase no est<73> escrita encara.<br> you are ready for this stage, but this stage is not yet written.<br /> setup es-ca Esteu preparats per a aquesta fase, per<65> aquesta fase no est<73> escrita encara.<br />
you didn't enter a config password for domain %1 setup es-ca No heu entrat una contrasenya de configuraci<63> per al domini %1 you didn't enter a config password for domain %1 setup es-ca No heu entrat una contrasenya de configuraci<63> per al domini %1
you didn't enter a config username for domain %1 setup es-ca No heu entrat un nom d'usuari de configuraci<63> per al domini %1 you didn't enter a config username for domain %1 setup es-ca No heu entrat un nom d'usuari de configuraci<63> per al domini %1
you didn't enter a header admin password setup es-ca No heu entrat una contrasenya per a l'administraci<63> de capceleres you didn't enter a header admin password setup es-ca No heu entrat una contrasenya per a l'administraci<63> de capceleres
you didn't enter a header admin username setup es-ca No heu entrat un nom d'usuari per a l'administraci<63> de capceleres you didn't enter a header admin username setup es-ca No heu entrat un nom d'usuari per a l'administraci<63> de capceleres
you do not have any languages installed. please install one now <br> setup es-ca No teniu cap idioma instal<61>lat. Si us plau, instal<61>leu-ne un ara <br> you do not have any languages installed. please install one now <br /> setup es-ca No teniu cap idioma instal<61>lat. Si us plau, instal<61>leu-ne un ara <br />
you have not created your header.inc.php yet!<br> you can create it now. setup es-ca No heu creat encara l'arxiu header.inc.php!<br>Podeu crear-lo ara. you have not created your header.inc.php yet!<br /> you can create it now. setup es-ca No heu creat encara l'arxiu header.inc.php!<br />Podeu crear-lo ara.
you have successfully logged out setup es-ca Us heu desconnectat correctament. you have successfully logged out setup es-ca Us heu desconnectat correctament.
you must enter a username for the admin setup es-ca Heu d'introduir un nom d'usuari per a l'administrador you must enter a username for the admin setup es-ca Heu d'introduir un nom d'usuari per a l'administrador
you need to add some domains to your header.inc.php. setup es-ca Necessiteu afegir alguns dominis a l'arxiu header.inc.php. you need to add some domains to your header.inc.php. setup es-ca Necessiteu afegir alguns dominis a l'arxiu header.inc.php.
@ -513,7 +513,7 @@ your database is working, but you dont have any applications installed setup es-
your files directory '%1' %2 setup es-ca El vostre directori de fitxers '%1' %2 your files directory '%1' %2 setup es-ca El vostre directori de fitxers '%1' %2
your header admin password is not set. please set it now! setup es-ca La contrasenya d'administrador de capceleres NO est<73> configurada. Si us plau, entreu-ne una ara. your header admin password is not set. please set it now! setup es-ca La contrasenya d'administrador de capceleres NO est<73> configurada. Si us plau, entreu-ne una ara.
your header.inc.php needs upgrading. setup es-ca El vostre header.inc.php necessita actualitzaci<63> your header.inc.php needs upgrading. setup es-ca El vostre header.inc.php necessita actualitzaci<63>
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup es-ca El vostre header.inc.php necessita actualitzaci<63>.<br><blink><b class="msg">ATENCI<43>!!</b></blink><br><b>FEU COPIES DE SEGURETAT!!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup es-ca El vostre header.inc.php necessita actualitzaci<63>.<br /><blink><b class="msg">ATENCI<43>!!</b></blink><br /><b>FEU COPIES DE SEGURETAT!!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup es-ca La vostra instal<61>laci<63> de PHP no te el suport GD adient. Necessiteu la llibreria gd versi<73> 1.8 o superior per a veure els diagrames de Gantt als projectes. your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup es-ca La vostra instal<61>laci<63> de PHP no te el suport GD adient. Necessiteu la llibreria gd versi<73> 1.8 o superior per a veure els diagrames de Gantt als projectes.
your tables are current setup es-ca Les vostres taules estan actualitzades your tables are current setup es-ca Les vostres taules estan actualitzades
your tables will be dropped and you will lose data setup es-ca Les vostres taules s'esborraran i perdreu la informaci<63> que continguin!! your tables will be dropped and you will lose data setup es-ca Les vostres taules s'esborraran i perdreu la informaci<63> que continguin!!

View File

@ -8,7 +8,7 @@
13 (ntp) setup es-es 13 (ntp) 13 (ntp) setup es-es 13 (ntp)
80 (http) setup es-es 80 (http) 80 (http) setup es-es 80 (http)
<b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup es-es <b>juego de caracteres a usar</b> (usar utf-8 si se van a usar idiomas con distintos juegos de caracteres): <b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup es-es <b>juego de caracteres a usar</b> (usar utf-8 si se van a usar idiomas con distintos juegos de caracteres):
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup es-es <b>Esto crear<61> 1 cuenta de administrador y 3 de demostraci<63>n</b><br>Los nombres de usuario y contrase<73>as son: demo/guest, demo2/guest y demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup es-es <b>Esto crear<61> 1 cuenta de administrador y 3 de demostraci<63>n</b><br />Los nombres de usuario y contrase<73>as son: demo/guest, demo2/guest y demo3/guest.
accounts existing setup es-es Existen cuentas accounts existing setup es-es Existen cuentas
actions setup es-es Acciones actions setup es-es Acciones
add a domain setup es-es A<>adir un dominio add a domain setup es-es A<>adir un dominio
@ -69,15 +69,15 @@ backup started, this might take a view minutes ... setup es-es copia de segurida
because an application it depends upon was upgraded setup es-es porque una aplicaci<63>n de la que depende se actualiz<69> because an application it depends upon was upgraded setup es-es porque una aplicaci<63>n de la que depende se actualiz<69>
because it depends upon setup es-es porque depende de because it depends upon setup es-es porque depende de
because it is not a user application, or access is controlled via acl setup es-es porque no es una aplicaci<63>n de usuario, o el acceso est<73> controlado por ACL because it is not a user application, or access is controlled via acl setup es-es porque no es una aplicaci<63>n de usuario, o el acceso est<73> controlado por ACL
because it requires manual table installation, <br>or the table definition was incorrect setup es-es porque requiere de instalaci<63>n manual de las tablas,<br> o la definici<63>n de las misma fu<66> incorrecta because it requires manual table installation, <br />or the table definition was incorrect setup es-es porque requiere de instalaci<63>n manual de las tablas,<br /> o la definici<63>n de las misma fu<66> incorrecta
because it was manually disabled setup es-es porque se desactiv<69> manualmente because it was manually disabled setup es-es porque se desactiv<69> manualmente
because of a failed upgrade or install setup es-es porque ocurri<72> un fallo al actualizar o instalar because of a failed upgrade or install setup es-es porque ocurri<72> un fallo al actualizar o instalar
because of a failed upgrade, or the database is newer than the installed version of this app setup es-es porque fall<6C> la actualizaci<63>n, o la base de datos es mas reciente que la versi<73>n instalada de esta aplicaci<63>n because of a failed upgrade, or the database is newer than the installed version of this app setup es-es porque fall<6C> la actualizaci<63>n, o la base de datos es mas reciente que la versi<73>n instalada de esta aplicaci<63>n
because the enable flag for this app is set to 0, or is undefined setup es-es porque el indicador de "habilitada" de esta aplicaci<63>n est<73> a 0, o no est<73> definido because the enable flag for this app is set to 0, or is undefined setup es-es porque el indicador de "habilitada" de esta aplicaci<63>n est<73> a 0, o no est<73> definido
bottom setup es-es parte inferior bottom setup es-es parte inferior
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>these automated scripts can easily destroy your data.</strong> setup es-es pero le <u>recomendamos encarecidamente que haga copia de seguridad</u> de sus tablas en caso de que el gui<75>n cause da<64>os a su informaci<63>n.<br><strong>Estos guiones autom<6F>ticos pueden facilmente destruir su informaci<63>n.</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>these automated scripts can easily destroy your data.</strong> setup es-es pero le <u>recomendamos encarecidamente que haga copia de seguridad</u> de sus tablas en caso de que el gui<75>n cause da<64>os a su informaci<63>n.<br /><strong>Estos guiones autom<6F>ticos pueden facilmente destruir su informaci<63>n.</strong>
cancel setup es-es Cancelar cancel setup es-es Cancelar
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup es-es No se pudo crear el fichero header.inc.php debido a las restricciones en los ficheros. Puede %1 el fichero en su lugar. cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup es-es No se pudo crear el fichero header.inc.php debido a las restricciones en los ficheros. Puede %1 el fichero en su lugar.
change system-charset setup es-es Cambiar el juego de caracteres del sistema change system-charset setup es-es Cambiar el juego de caracteres del sistema
charset setup es-es ISO-8859-1 charset setup es-es ISO-8859-1
charset to convert to setup es-es Juego de caracteres al que convertir charset to convert to setup es-es Juego de caracteres al que convertir
@ -122,11 +122,11 @@ creating tables setup es-es Creando Tablas
current system-charset setup es-es Juego de caracteres actual del sistema current system-charset setup es-es Juego de caracteres actual del sistema
current system-charset is %1, click %2here%3 to change it. setup es-es El juego de caracteres del sistema es actualmente %1. Pulse %2aqu<71>%3 para cambiarlo. current system-charset is %1, click %2here%3 to change it. setup es-es El juego de caracteres del sistema es actualmente %1. Pulse %2aqu<71>%3 para cambiarlo.
current version setup es-es Version Actual current version setup es-es Version Actual
currently installed languages: %1 <br> setup es-es Idiomas actualmente instalados: %1 <br> currently installed languages: %1 <br /> setup es-es Idiomas actualmente instalados: %1 <br />
database successfully converted from '%1' to '%2' setup es-es La base de datos se convirti<74> correctamen de '%1' a '%2' database successfully converted from '%1' to '%2' setup es-es La base de datos se convirti<74> correctamen de '%1' a '%2'
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup es-es Puerto de hora.<br>Si usa el puerto 13, por favor, configure las reglas del cortafuegos adecuadamente antes de enviar esta p<>gina. datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup es-es Puerto de hora.<br />Si usa el puerto 13, por favor, configure las reglas del cortafuegos adecuadamente antes de enviar esta p<>gina.
day setup es-es d<>a day setup es-es d<>a
day of week<br>(0-6, 0=sunday) setup es-es d<>a de la semana<br>(0-6, 0=domingo) day of week<br />(0-6, 0=sunday) setup es-es d<>a de la semana<br />(0-6, 0=domingo)
db backup and restore setup es-es Copiar y restaurar la base de datos db backup and restore setup es-es Copiar y restaurar la base de datos
db host setup es-es Servidor de la base de datos db host setup es-es Servidor de la base de datos
db name setup es-es Nombre de la base de datos db name setup es-es Nombre de la base de datos
@ -165,12 +165,12 @@ enable for extra debug-messages setup es-es activar los mensajes de depuraci
enable ldap version 3 setup es-es Activar LDAP versi<73>n 3 enable ldap version 3 setup es-es Activar LDAP versi<73>n 3
enable mcrypt setup es-es Activar MCrypt enable mcrypt setup es-es Activar MCrypt
enter some random text for app session encryption setup es-es Introduzca alg<6C>n texto aleatorio para el cifrado de la sesi<73>n de la aplicaci<63>n enter some random text for app session encryption setup es-es Introduzca alg<6C>n texto aleatorio para el cifrado de la sesi<73>n de la aplicaci<63>n
enter some random text for app_session <br>encryption (requires mcrypt) setup es-es Introduzca alg<6C>n texto aleatorio para el cifrado de la sesi<73>n de la aplicaci<63>n<br>cifrado (necesita mcrypt) enter some random text for app_session <br />encryption (requires mcrypt) setup es-es Introduzca alg<6C>n texto aleatorio para el cifrado de la sesi<73>n de la aplicaci<63>n<br />cifrado (necesita mcrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup es-es Introduzca la ruta completa para los ficheros temporales.<br>Ejemplo: /tmp, C:TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup es-es Introduzca la ruta completa para los ficheros temporales.<br />Ejemplo: /tmp, C:TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup es-es Introduzca la ruta completa para los ficheros de usuarios y grupos.<br>Ejemplo: /files, E:FILES enter the full path for users and group files.<br />examples: /files, e:\files setup es-es Introduzca la ruta completa para los ficheros de usuarios y grupos.<br />Ejemplo: /files, E:FILES
enter the full path to the backup directory.<br>if empty: files directory setup es-es Introduzca la ruta completa al directorio de la copia de seguridad.<br>Si est<73> vacio: directorio de los ficheros enter the full path to the backup directory.<br />if empty: files directory setup es-es Introduzca la ruta completa al directorio de la copia de seguridad.<br />Si est<73> vacio: directorio de los ficheros
enter the hostname of the machine on which this server is running setup es-es Introduzca el nombre de la m<>quina en la se est<73> ejecutando esta instalaci<63>n enter the hostname of the machine on which this server is running setup es-es Introduzca el nombre de la m<>quina en la se est<73> ejecutando esta instalaci<63>n
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup es-es Introduzca la URL de eGroupWare.<br>Ejemplo: http://www.dominio.com/egroupware o /egroupware<br><b>Sin barra invertida al final</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup es-es Introduzca la URL de eGroupWare.<br />Ejemplo: http://www.dominio.com/egroupware o /egroupware<br /><b>Sin barra invertida al final</b>
enter the site password for peer servers setup es-es Introduzca la contrase<73>a del sitio para los servidores peer enter the site password for peer servers setup es-es Introduzca la contrase<73>a del sitio para los servidores peer
enter the site username for peer servers setup es-es Introduzca el nombre de usuario del sitio para servidores peer enter the site username for peer servers setup es-es Introduzca el nombre de usuario del sitio para servidores peer
enter the title for your site setup es-es Introduzca el t<>tulo para su sitio enter the title for your site setup es-es Introduzca el t<>tulo para su sitio
@ -366,7 +366,7 @@ save setup es-es Guardar
save this text as contents of your header.inc.php setup es-es Guardar este texto como contenido de su header.inc.php save this text as contents of your header.inc.php setup es-es Guardar este texto como contenido de su header.inc.php
schedule setup es-es planificar schedule setup es-es planificar
scheduled backups setup es-es copias de seguridad planificadas scheduled backups setup es-es copias de seguridad planificadas
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup es-es Seleccione una aplicaci<63>n, elija una versi<73>n objetivo, luego elija "Enviar" para realizar el proceso de actualizaci<63>n hasta dicha versi<73>n.<br>Si no selecciona una versi<73>n, solo la tablas de la versi<73>n base ser<65> instaladas.<br><blink><3E>ESTO ELIMINAR<41> TODAS LAS TABLAS DE LAS APLICACIONES PRIMERO!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup es-es Seleccione una aplicaci<63>n, elija una versi<73>n objetivo, luego elija "Enviar" para realizar el proceso de actualizaci<63>n hasta dicha versi<73>n.<br />Si no selecciona una versi<73>n, solo la tablas de la versi<73>n base ser<65> instaladas.<br /><blink><3E>ESTO ELIMINAR<41> TODAS LAS TABLAS DE LAS APLICACIONES PRIMERO!</blink>
select one... setup es-es seleccionar uno... select one... setup es-es seleccionar uno...
select the default applications to which your users will have access setup es-es Seleccione las aplicaciones predeterminadas a las que tendr<64>n acceso los usuarios select the default applications to which your users will have access setup es-es Seleccione las aplicaciones predeterminadas a las que tendr<64>n acceso los usuarios
select the desired action(s) from the available choices setup es-es Seleccione las accion(es) deseadas de la lista de opciones disponibles select the desired action(s) from the available choices setup es-es Seleccione las accion(es) deseadas de la lista de opciones disponibles
@ -430,9 +430,9 @@ the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or oth
the table definition was correct, and the tables were installed setup es-es La definici<63>n de la tabla era correcta, y se instalaron las tablas the table definition was correct, and the tables were installed setup es-es La definici<63>n de la tabla era correcta, y se instalaron las tablas
the table definition was correct, and the tables were installed. setup es-es La definici<63>n de las tablas fu<66> correcta, y las tablas fueron instaladas the table definition was correct, and the tables were installed. setup es-es La definici<63>n de las tablas fu<66> correcta, y las tablas fueron instaladas
the tables setup es-es las tablas the tables setup es-es las tablas
there was a problem tring to connect to your ldap server. <br>please check your ldap server configuration setup es-es Hubo un problema intentando conectar con su servidor LDAP.<br>Por favor comprueve la configuraci<63>n de su servidor LDAP there was a problem tring to connect to your ldap server. <br />please check your ldap server configuration setup es-es Hubo un problema intentando conectar con su servidor LDAP.<br />Por favor comprueve la configuraci<63>n de su servidor LDAP
there was a problem trying to connect to your ldap server. <br> setup es-es Hubo un problema intentando conectar al servidor LDAP.<br> there was a problem trying to connect to your ldap server. <br /> setup es-es Hubo un problema intentando conectar al servidor LDAP.<br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup es-es Hubo un problema intentando conecar al servidor LDAP.<br>Por favor, compruebe la configuraci<63>n del servidor LDAP there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup es-es Hubo un problema intentando conecar al servidor LDAP.<br />Por favor, compruebe la configuraci<63>n del servidor LDAP
this has to be outside the webservers document-root!!! setup es-es <09>Tiene que estar fuera de la ra<72>z de documentos del servidor web! this has to be outside the webservers document-root!!! setup es-es <09>Tiene que estar fuera de la ra<72>z de documentos del servidor web!
this might take a while, please wait ... setup es-es Esto puede tardar un poco. Por favor, espere... this might take a while, please wait ... setup es-es Esto puede tardar un poco. Por favor, espere...
this program lets you backup your database, schedule a backup or restore it. setup es-es Este programa permite hacer copia de seguridad de la base de datos, planificar una copia o restaurarla. this program lets you backup your database, schedule a backup or restore it. setup es-es Este programa permite hacer copia de seguridad de la base de datos, planificar una copia o restaurarla.
@ -441,12 +441,12 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup es-es Esta secci<63>n intentar<61> exportar los usuarios y grupos de la cuenta de las tablas de eGroupWare en el <20>rbol LDAP this section will help you export users and groups from egroupware's account tables into your ldap tree setup es-es Esta secci<63>n intentar<61> exportar los usuarios y grupos de la cuenta de las tablas de eGroupWare en el <20>rbol LDAP
this section will help you import users and groups from your ldap tree into egroupware's account tables setup es-es Esta secci<63>n le ayudar<61> a importar usuarios y grupos del <20>rbol LDAP en las tablas de las cuentas eGroupWare this section will help you import users and groups from your ldap tree into egroupware's account tables setup es-es Esta secci<63>n le ayudar<61> a importar usuarios y grupos del <20>rbol LDAP en las tablas de las cuentas eGroupWare
this section will help you setup your ldap accounts for use with egroupware setup es-es Esta secci<63>n le ayudar<61> a configurar sus cuentas LDAP para usar con eGroupWare this section will help you setup your ldap accounts for use with egroupware setup es-es Esta secci<63>n le ayudar<61> a configurar sus cuentas LDAP para usar con eGroupWare
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup es-es Debe ser una cadena de unos 30 caracteres.<br>Nota: la predeterminada se ha generado aleatoriamente. this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup es-es Debe ser una cadena de unos 30 caracteres.<br />Nota: la predeterminada se ha generado aleatoriamente.
this stage is completed<br> setup es-es Esta fase est<73> completada<br> this stage is completed<br /> setup es-es Esta fase est<73> completada<br />
this will create 1 admin account and 3 demo accounts<br>the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br><b>!!!this will delete all existing accounts!!!</b><br> setup es-es Esto crear<61> 1 cuenta de administrador y 3 cuentas de demostraci<63>n<br>Los nombres de usuario y contrase<73>as son: demo/guest, demo2/guest and demo3/guest.<br><b><3E><><EFBFBD>ESTO ELIMINAR<41> TODAS LAS CUENTAS EXISTENTES!!!</b><br> this will create 1 admin account and 3 demo accounts<br />the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!this will delete all existing accounts!!!</b><br /> setup es-es Esto crear<61> 1 cuenta de administrador y 3 cuentas de demostraci<63>n<br />Los nombres de usuario y contrase<73>as son: demo/guest, demo2/guest and demo3/guest.<br /><b><3E><><EFBFBD>ESTO ELIMINAR<41> TODAS LAS CUENTAS EXISTENTES!!!</b><br />
to a version it does not know about setup es-es a una versi<73>n que no conoce to a version it does not know about setup es-es a una versi<73>n que no conoce
to setup 1 admin account and 3 demo accounts. setup es-es Para configurar una cuenta de administrador y 3 de invitado to setup 1 admin account and 3 demo accounts. setup es-es Para configurar una cuenta de administrador y 3 de invitado
to setup 1 admin account and 3 demo accounts.<br><b>this will delete all existing accounts</b> setup es-es para configurar 1 cuenta de administrador y 3 cuentas de demonstraci<63>n.<br><b>Esto eliminar<61> todas las cuentas existentes</b> to setup 1 admin account and 3 demo accounts.<br /><b>this will delete all existing accounts</b> setup es-es para configurar 1 cuenta de administrador y 3 cuentas de demonstraci<63>n.<br /><b>Esto eliminar<61> todas las cuentas existentes</b>
top setup es-es parte superior top setup es-es parte superior
translations added setup es-es Traducciones a<>adidas translations added setup es-es Traducciones a<>adidas
translations removed setup es-es Traducciones eliminadas translations removed setup es-es Traducciones eliminadas
@ -483,14 +483,14 @@ which database type do you want to use with egroupware? setup es-es
world readable setup es-es con permiso de lectura para todos world readable setup es-es con permiso de lectura para todos
world writable setup es-es con permiso de escritura por todos world writable setup es-es con permiso de escritura por todos
would you like egroupware to cache the phpgw info array ? setup es-es Desea que eGroupWare cachee el array de informaci<63>n phpgw? would you like egroupware to cache the phpgw info array ? setup es-es Desea que eGroupWare cachee el array de informaci<63>n phpgw?
would you like egroupware to check for a new version<br>when admins login ? setup es-es <09>Desea que eGroupWare compruebe una nueva versi<73>n<br>cuando un administrador inicie la sesi<73>n? would you like egroupware to check for a new version<br />when admins login ? setup es-es <09>Desea que eGroupWare compruebe una nueva versi<73>n<br />cuando un administrador inicie la sesi<73>n?
would you like to show each application's upgrade status ? setup es-es <09>Desea mostrar el estado de la actualizaci<63>n de cada aplicaci<63>n? would you like to show each application's upgrade status ? setup es-es <09>Desea mostrar el estado de la actualizaci<63>n de cada aplicaci<63>n?
writable by the webserver setup es-es con permiso de escritura para el servidor web writable by the webserver setup es-es con permiso de escritura para el servidor web
write config setup es-es Escribir configuraci<63>n write config setup es-es Escribir configuraci<63>n
year setup es-es a<>o year setup es-es a<>o
yes setup es-es S<> yes setup es-es S<>
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup es-es Parece que est<73> ejecutando una versi<73>n pre-beta de eGroupWare.<br>Estas versiones ya no est<73>n soportadas, y no hay ruta de actualizaci<63>n para ellas en la instalaci<63>n.<br>Puede que desee actualizar primero a la 0.9.10 (la <20>ltima versi<73>n con soporte de actualizaciones pre-beta)<br>y luego actualizar desde ah<61> a la versi<73>n actual. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup es-es Parece que est<73> ejecutando una versi<73>n pre-beta de eGroupWare.<br />Estas versiones ya no est<73>n soportadas, y no hay ruta de actualizaci<63>n para ellas en la instalaci<63>n.<br />Puede que desee actualizar primero a la 0.9.10 (la <20>ltima versi<73>n con soporte de actualizaciones pre-beta)<br />y luego actualizar desde ah<61> a la versi<73>n actual.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup es-es Parece que est<73> ejecutando una versi<73>n antigua de PHP<br>Se recomienda que actualice a una nueva versi<73>n.<br>Las versiones antiguas de PHP puede que no funcionen correctamente o ni siquiera funcionen en eGroupWare.<br><br>Por favor, actualice al menos a la versi<73>n %1 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup es-es Parece que est<73> ejecutando una versi<73>n antigua de PHP<br />Se recomienda que actualice a una nueva versi<73>n.<br />Las versiones antiguas de PHP puede que no funcionen correctamente o ni siquiera funcionen en eGroupWare.<br /><br />Por favor, actualice al menos a la versi<73>n %1
you appear to be running version %1 of egroupware setup es-es Parece que est<73> ejecutando la versi<73>n %1 de eGroupWare you appear to be running version %1 of egroupware setup es-es Parece que est<73> ejecutando la versi<73>n %1 de eGroupWare
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup es-es Parece que est<73> usando una versi<73>n de PHP anterior a la 4.1.0. Necesita tener 4.1.0 o superior. you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup es-es Parece que est<73> usando una versi<73>n de PHP anterior a la 4.1.0. Necesita tener 4.1.0 o superior.
you appear to be using php3. disabling php4 sessions support setup es-es Parece que est<73> usando PHP3. Desactivando el soporte de sesiones PHP you appear to be using php3. disabling php4 sessions support setup es-es Parece que est<73> usando PHP3. Desactivando el soporte de sesiones PHP
@ -503,13 +503,13 @@ you appear to have oracle v8 (oci) support enabled setup es-es Parece que tiene
you appear to have postgres-db support enabled setup es-es Parece que tiene activado el soporte Postgre-DB you appear to have postgres-db support enabled setup es-es Parece que tiene activado el soporte Postgre-DB
you appear to have postgresql support enabled setup es-es Parece que tiene activado el soporte PostgreSQL you appear to have postgresql support enabled setup es-es Parece que tiene activado el soporte PostgreSQL
you appear to have xml support enabled setup es-es Parece que tiene activado el soporte XML you appear to have xml support enabled setup es-es Parece que tiene activado el soporte XML
you are ready for this stage, but this stage is not yet written.<br> setup es-es Est<73> listo para esta fase, pero esta fase a<>n no est<73> escrita.<br> you are ready for this stage, but this stage is not yet written.<br /> setup es-es Est<73> listo para esta fase, pero esta fase a<>n no est<73> escrita.<br />
you didn't enter a config password for domain %1 setup es-es No introdujo una contrase<73>a de configuraci<63>n para el dominio %1 you didn't enter a config password for domain %1 setup es-es No introdujo una contrase<73>a de configuraci<63>n para el dominio %1
you didn't enter a config username for domain %1 setup es-es No introdujo un usuario de configuraci<63>n para el dominio %1 you didn't enter a config username for domain %1 setup es-es No introdujo un usuario de configuraci<63>n para el dominio %1
you didn't enter a header admin password setup es-es No introdujo una contrase<73>a para la administraci<63>n de cabeceras you didn't enter a header admin password setup es-es No introdujo una contrase<73>a para la administraci<63>n de cabeceras
you didn't enter a header admin username setup es-es No introdujo un nombre de usuario para el administrador de encabezados you didn't enter a header admin username setup es-es No introdujo un nombre de usuario para el administrador de encabezados
you do not have any languages installed. please install one now <br> setup es-es No tiene ning<6E>n idioma instalado. Por favor, instale uno ahora you do not have any languages installed. please install one now <br /> setup es-es No tiene ning<6E>n idioma instalado. Por favor, instale uno ahora
you have not created your header.inc.php yet!<br> you can create it now. setup es-es <09>No ha creado todav<61>a el header.inc.php!<br>Puede crearlo ahora. you have not created your header.inc.php yet!<br /> you can create it now. setup es-es <09>No ha creado todav<61>a el header.inc.php!<br />Puede crearlo ahora.
you have successfully logged out setup es-es Ha cerrado la sesi<73>n correctamente. you have successfully logged out setup es-es Ha cerrado la sesi<73>n correctamente.
you must enter a username for the admin setup es-es Debe de introducir una nombre de usuario para el administrador you must enter a username for the admin setup es-es Debe de introducir una nombre de usuario para el administrador
you need to add some domains to your header.inc.php. setup es-es Necesita a<>adir algunos dominios al fichero header.inc.php. you need to add some domains to your header.inc.php. setup es-es Necesita a<>adir algunos dominios al fichero header.inc.php.
@ -526,7 +526,7 @@ your database is working, but you dont have any applications installed setup es-
your files directory '%1' %2 setup es-es Su directorio de ficheros '%1' %2 your files directory '%1' %2 setup es-es Su directorio de ficheros '%1' %2
your header admin password is not set. please set it now! setup es-es La contrase<73>a de administrador de cabeceras no est<73> configurada. Por favor, ponga una ahora. your header admin password is not set. please set it now! setup es-es La contrase<73>a de administrador de cabeceras no est<73> configurada. Por favor, ponga una ahora.
your header.inc.php needs upgrading. setup es-es Su header.inc.php necesita actualizaci<63>n your header.inc.php needs upgrading. setup es-es Su header.inc.php necesita actualizaci<63>n
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup es-es Su header.inc.php necesita actualizaci<63>n.<br><blink><b class="msg"><3E>ATENCION!</b></blink><br><b><3E>HAGA COPIAS DE SEGURIDAD!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup es-es Su header.inc.php necesita actualizaci<63>n.<br /><blink><b class="msg"><3E>ATENCION!</b></blink><br /><b><3E>HAGA COPIAS DE SEGURIDAD!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup es-es Su instalaci<63>n de PHP no tiene el soporte apropiado de GD. Necesita la versi<73>n 1.8 de la librer<65>a gd o superior para ver diagamas de Gantt en los proyectos. your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup es-es Su instalaci<63>n de PHP no tiene el soporte apropiado de GD. Necesita la versi<73>n 1.8 de la librer<65>a gd o superior para ver diagamas de Gantt en los proyectos.
your tables are current setup es-es Sus tablas est<73>n actualizadas your tables are current setup es-es Sus tablas est<73>n actualizadas
your tables may be altered and you may lose data setup es-es Sus tablas pueden ser alteradas y usted puede perder informaci<63>n your tables may be altered and you may lose data setup es-es Sus tablas pueden ser alteradas y usted puede perder informaci<63>n

View File

@ -6,7 +6,7 @@
00 (disable) setup fi 00 (ei k<>yt<79>ss<73> / suositus) 00 (disable) setup fi 00 (ei k<>yt<79>ss<73> / suositus)
13 (ntp) setup fi 13 (ntp) 13 (ntp) setup fi 13 (ntp)
80 (http) setup fi 80 (http) 80 (http) setup fi 80 (http)
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup fi <b>Luodaan 1 yll<6C>pito- ja 3 demotunnusta.</b><br>K<>ytt<74>j<EFBFBD>tunnukset ovat: demo/guest, demo2/guest ja demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup fi <b>Luodaan 1 yll<6C>pito- ja 3 demotunnusta.</b><br />K<>ytt<74>j<EFBFBD>tunnukset ovat: demo/guest, demo2/guest ja demo3/guest.
accounts existing setup fi K<>ytt<74>j<EFBFBD>tunnuksia on olemassa accounts existing setup fi K<>ytt<74>j<EFBFBD>tunnuksia on olemassa
actions setup fi Toimenpiteet actions setup fi Toimenpiteet
add a domain setup fi Lis<69><73> toimialue add a domain setup fi Lis<69><73> toimialue
@ -50,18 +50,18 @@ auto-created user accounts expire setup fi Automaattisesti luotujen tilien vanhe
available version setup fi K<>ytett<74>viss<73> oleva versio available version setup fi K<>ytett<74>viss<73> oleva versio
back to the previous screen setup fi Takaisin edelliselle sivulle back to the previous screen setup fi Takaisin edelliselle sivulle
back to user login setup fi Kirjaudu sis<69><73>n back to user login setup fi Kirjaudu sis<69><73>n
backupwarn setup fi Suosittelemme, ett<74> <u>varmuuskopioit</u> taulujen tiedot, jotta voit tarvittaessa palauttaa ne.<br><strong>Automaattiset skriptit voivat tuhota dataa.</strong><br><em>Varmuuskopioi, ennen kuin jatkat!</em> backupwarn setup fi Suosittelemme, ett<74> <u>varmuuskopioit</u> taulujen tiedot, jotta voit tarvittaessa palauttaa ne.<br /><strong>Automaattiset skriptit voivat tuhota dataa.</strong><br /><em>Varmuuskopioi, ennen kuin jatkat!</em>
because an application it depends upon was upgraded setup fi koska sovellus, josta se riippuu, on p<>ivitetty because an application it depends upon was upgraded setup fi koska sovellus, josta se riippuu, on p<>ivitetty
because it depends upon setup fi koska se riippuu sovelluksesta because it depends upon setup fi koska se riippuu sovelluksesta
because it is not a user application, or access is controlled via acl setup fi koska se ei ole k<>ytt<74>jien sovellus, tai sen k<>ytt<74><74> hallitaan acl:n avulla because it is not a user application, or access is controlled via acl setup fi koska se ei ole k<>ytt<74>jien sovellus, tai sen k<>ytt<74><74> hallitaan acl:n avulla
because it requires manual table installation, <br>or the table definition was incorrect setup fi koska sen taulut t<>ytyy asentaa k<>sin, <br>tai sen taulum<75><6D>ritykset ovat virheellisi<73> because it requires manual table installation, <br />or the table definition was incorrect setup fi koska sen taulut t<>ytyy asentaa k<>sin, <br />tai sen taulum<75><6D>ritykset ovat virheellisi<73>
because it was manually disabled setup fi koska se on otettu k<>sin pois k<>yt<79>st<73> because it was manually disabled setup fi koska se on otettu k<>sin pois k<>yt<79>st<73>
because of a failed upgrade or install setup fi ep<65>onnistuneesta p<>ivityksest<73> tai asennuksesta johtuen because of a failed upgrade or install setup fi ep<65>onnistuneesta p<>ivityksest<73> tai asennuksesta johtuen
because of a failed upgrade, or the database is newer than the installed version of this app setup fi ep<65>onnistuneesta p<>ivityksest<73> johtuen, tai koska tietokanta on uudenpi kuin sovelluksen asennettu versio because of a failed upgrade, or the database is newer than the installed version of this app setup fi ep<65>onnistuneesta p<>ivityksest<73> johtuen, tai koska tietokanta on uudenpi kuin sovelluksen asennettu versio
because the enable flag for this app is set to 0, or is undefined setup fi koska t<>m<EFBFBD>n sovelluksen k<>ytt<74>m<EFBFBD><6D>ritys on 0 tai m<><6D>rittelem<65>t<EFBFBD>n because the enable flag for this app is set to 0, or is undefined setup fi koska t<>m<EFBFBD>n sovelluksen k<>ytt<74>m<EFBFBD><6D>ritys on 0 tai m<><6D>rittelem<65>t<EFBFBD>n
bottom setup fi alas bottom setup fi alas
cancel setup fi Peruuta cancel setup fi Peruuta
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup fi Tiedostoa header.inc.php ei voitu luoda k<>ytt<74>oikeuksista johtuen.<br> Voit %1 tiedoston cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup fi Tiedostoa header.inc.php ei voitu luoda k<>ytt<74>oikeuksista johtuen.<br /> Voit %1 tiedoston
change system-charset setup fi Muuta j<>rjestelm<6C>n merkist<73><74> change system-charset setup fi Muuta j<>rjestelm<6C>n merkist<73><74>
charset setup fi ISO-8859-15 charset setup fi ISO-8859-15
charset to convert to setup fi Merkist<73>, johon konvertoidaan charset to convert to setup fi Merkist<73>, johon konvertoidaan
@ -104,9 +104,9 @@ creating tables setup fi Luodaan tauluja
current system-charset setup fi Nykyinen j<>rjestelm<6C>n merkist<73> current system-charset setup fi Nykyinen j<>rjestelm<6C>n merkist<73>
current system-charset is %1, click %2here%3 to change it. setup fi J<>rjestelm<6C>n merkist<73> on %1, napsauta %2t<32>st<73>%3, jos haluat muuttaa sit<69>. current system-charset is %1, click %2here%3 to change it. setup fi J<>rjestelm<6C>n merkist<73> on %1, napsauta %2t<32>st<73>%3, jos haluat muuttaa sit<69>.
current version setup fi Nykyinen versio current version setup fi Nykyinen versio
currently installed languages: %1 <br> setup fi Asennetut kielet: %1 <br> currently installed languages: %1 <br /> setup fi Asennetut kielet: %1 <br />
database successfully converted from '%1' to '%2' setup fi Tietokanta on konvertoitu versiosta '%1' versioon '%2' database successfully converted from '%1' to '%2' setup fi Tietokanta on konvertoitu versiosta '%1' versioon '%2'
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup fi Datetime-portti.<br>Jos k<>yt<79>t porttia 13, m<><6D>rittele palomuuriasetukset oikein ennen kuin l<>het<65>t t<>m<EFBFBD>n lomakkeen tiedot.<br>(Port: 13 / Host: 129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup fi Datetime-portti.<br />Jos k<>yt<79>t porttia 13, m<><6D>rittele palomuuriasetukset oikein ennen kuin l<>het<65>t t<>m<EFBFBD>n lomakkeen tiedot.<br />(Port: 13 / Host: 129.6.15.28)
db host setup fi Tietokantapalvelin db host setup fi Tietokantapalvelin
db name setup fi Tietokannan nimi db name setup fi Tietokannan nimi
db password setup fi Tietokannan salasana db password setup fi Tietokannan salasana
@ -143,11 +143,11 @@ enable for extra debug-messages setup fi n
enable ldap version 3 setup fi Ota LDAP 3 -tuki k<>ytt<74><74>n enable ldap version 3 setup fi Ota LDAP 3 -tuki k<>ytt<74><74>n
enable mcrypt setup fi Ota MCrypt k<>ytt<74><74>n enable mcrypt setup fi Ota MCrypt k<>ytt<74><74>n
enter some random text for app session encryption setup fi Anna hieman satunnaisia merkkej<65> sovellusistunnon salaukseen enter some random text for app session encryption setup fi Anna hieman satunnaisia merkkej<65> sovellusistunnon salaukseen
enter some random text for app_session <br>encryption (requires mcrypt) setup fi Anna hieman satunnaisia merkkej<65> sovellusistunnon <br>salaukseen (tarvitaan mcrypt) enter some random text for app_session <br />encryption (requires mcrypt) setup fi Anna hieman satunnaisia merkkej<65> sovellusistunnon <br />salaukseen (tarvitaan mcrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup fi Anna v<>liaikaisten tiedostojen absoluuttinen polku.<br>Esimerkkej<65>: /tmp, C:\TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup fi Anna v<>liaikaisten tiedostojen absoluuttinen polku.<br />Esimerkkej<65>: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup fi Anna k<>ytt<74>jien ja ryhmien tiedostojen absoluuttinen polku.<br>Esimerkkej<65>: /files, E:\FILES enter the full path for users and group files.<br />examples: /files, e:\files setup fi Anna k<>ytt<74>jien ja ryhmien tiedostojen absoluuttinen polku.<br />Esimerkkej<65>: /files, E:\FILES
enter the hostname of the machine on which this server is running setup fi Anna t<>m<EFBFBD>n palvelimen koneennimi enter the hostname of the machine on which this server is running setup fi Anna t<>m<EFBFBD>n palvelimen koneennimi
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup fi Anna eGroupWaren URL.<br>Esimerkki: http://www.yritys.com/egroupware &nbsp; tai &nbsp; /egroupware<br>(<b>ei kauttaviivaa loppuun</b>) enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup fi Anna eGroupWaren URL.<br />Esimerkki: http://www.yritys.com/egroupware &nbsp; tai &nbsp; /egroupware<br />(<b>ei kauttaviivaa loppuun</b>)
enter the site password for peer servers setup fi Anna peer-palvelinten site-salasana enter the site password for peer servers setup fi Anna peer-palvelinten site-salasana
enter the site username for peer servers setup fi Anna peer-palvelinten site-tunnus enter the site username for peer servers setup fi Anna peer-palvelinten site-tunnus
enter the title for your site setup fi Anna sivustosi otsikko enter the title for your site setup fi Anna sivustosi otsikko
@ -320,7 +320,7 @@ safe_mode is turned on, which is generaly a good thing as it makes your install
sample configuration not found. using built in defaults setup fi Esimerkkiasetuksia ei l<>ytynyt. K<>ytet<65><74>n oletuksia sample configuration not found. using built in defaults setup fi Esimerkkiasetuksia ei l<>ytynyt. K<>ytet<65><74>n oletuksia
save setup fi Tallenna save setup fi Tallenna
save this text as contents of your header.inc.php setup fi Tallenna t<>m<EFBFBD> teksti tiedostoon header.inc.php save this text as contents of your header.inc.php setup fi Tallenna t<>m<EFBFBD> teksti tiedostoon header.inc.php
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup fi Valitse sovellus, anna versio ja l<>het<65> tiedot.<br>Jos et anna versionumeroa, vain perustaulut asennetaan.<br><blink>KAIKKI SOVELLUKSEN TAULUT POISTETAAN ENSIN!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup fi Valitse sovellus, anna versio ja l<>het<65> tiedot.<br />Jos et anna versionumeroa, vain perustaulut asennetaan.<br /><blink>KAIKKI SOVELLUKSEN TAULUT POISTETAAN ENSIN!</blink>
select one... setup fi valitse... select one... setup fi valitse...
select the default applications to which your users will have access setup fi Valitse oletussovellukset, joihin k<>ytt<74>jill<6C> on k<>ytt<74>oikeus select the default applications to which your users will have access setup fi Valitse oletussovellukset, joihin k<>ytt<74>jill<6C> on k<>ytt<74>oikeus
select the desired action(s) from the available choices setup fi Valitse haluamasi toimenpide tai toimenpiteet select the desired action(s) from the available choices setup fi Valitse haluamasi toimenpide tai toimenpiteet
@ -379,8 +379,8 @@ the mbstring extension is needed to fully support unicode (utf-8) or other multi
the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup fi Asetus mbstring.func_overload = 7 vaaditaan unicode- (utf-8) tukea varten. the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup fi Asetus mbstring.func_overload = 7 vaaditaan unicode- (utf-8) tukea varten.
the table definition was correct, and the tables were installed setup fi Taulum<75><6D>ritykset ovat kunnossa, ja taulut on asennettu the table definition was correct, and the tables were installed setup fi Taulum<75><6D>ritykset ovat kunnossa, ja taulut on asennettu
the tables setup fi Taulut the tables setup fi Taulut
there was a problem trying to connect to your ldap server. <br> setup fi LDAP-palvelinyhteydess<73> ilmeni ongelma. <br> there was a problem trying to connect to your ldap server. <br /> setup fi LDAP-palvelinyhteydess<73> ilmeni ongelma. <br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup fi LDAP-palvelinyhteydess<73> ilmeni ongelma. <br>Tarkista LDAP-palvelimen asetukset there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup fi LDAP-palvelinyhteydess<73> ilmeni ongelma. <br />Tarkista LDAP-palvelimen asetukset
this has to be outside the webservers document-root!!! setup fi Hakemiston on oltava www-palvelimen asiakirjajuuren ulkopuolella!!! this has to be outside the webservers document-root!!! setup fi Hakemiston on oltava www-palvelimen asiakirjajuuren ulkopuolella!!!
this might take a while, please wait ... setup fi Voi kest<73><74> hetken, odota ... this might take a while, please wait ... setup fi Voi kest<73><74> hetken, odota ...
this program will convert your database to a new system-charset. setup fi T<>m<EFBFBD> ohjelma muuntaa tietokantasi uuteen merkist<73><74>n. this program will convert your database to a new system-charset. setup fi T<>m<EFBFBD> ohjelma muuntaa tietokantasi uuteen merkist<73><74>n.
@ -388,8 +388,8 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup fi T<>ss<73> osassa voit vied<65> eGroupWaren k<>ytt<74>j<EFBFBD>t ja ryhm<68>t LDAP-hakemistopalveluun this section will help you export users and groups from egroupware's account tables into your ldap tree setup fi T<>ss<73> osassa voit vied<65> eGroupWaren k<>ytt<74>j<EFBFBD>t ja ryhm<68>t LDAP-hakemistopalveluun
this section will help you import users and groups from your ldap tree into egroupware's account tables setup fi T<>ss<73> osassa voit tuoda LDAP-hakemistopalvelusta k<>ytt<74>j<EFBFBD>t ja ryhm<68>t eGroupWareen this section will help you import users and groups from your ldap tree into egroupware's account tables setup fi T<>ss<73> osassa voit tuoda LDAP-hakemistopalvelusta k<>ytt<74>j<EFBFBD>t ja ryhm<68>t eGroupWareen
this section will help you setup your ldap accounts for use with egroupware setup fi T<>ss<73> osassa voit m<><6D>ritell<6C> LDAP-k<>ytt<74>j<EFBFBD>tunnukset eGroupWaren k<>ytt<74><74>n this section will help you setup your ldap accounts for use with egroupware setup fi T<>ss<73> osassa voit m<><6D>ritell<6C> LDAP-k<>ytt<74>j<EFBFBD>tunnukset eGroupWaren k<>ytt<74><74>n
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup fi T<>m<EFBFBD>n pit<69>isi olla noin 30 tavua pitk<74>.<br>Huom: oletusarvo on luotu satunnaisesti. this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup fi T<>m<EFBFBD>n pit<69>isi olla noin 30 tavua pitk<74>.<br />Huom: oletusarvo on luotu satunnaisesti.
this stage is completed<br> setup fi T<>m<EFBFBD> vaihe on valmis<br> this stage is completed<br /> setup fi T<>m<EFBFBD> vaihe on valmis<br />
to a version it does not know about setup fi versioon jota se ei tunne to a version it does not know about setup fi versioon jota se ei tunne
to setup 1 admin account and 3 demo accounts. setup fi asentaaksesi yhden yll<6C>pit<69>j<EFBFBD>n ja 3 demotunnusta. to setup 1 admin account and 3 demo accounts. setup fi asentaaksesi yhden yll<6C>pit<69>j<EFBFBD>n ja 3 demotunnusta.
top setup fi yl<79>s top setup fi yl<79>s
@ -425,13 +425,13 @@ which database type do you want to use with egroupware? setup fi Mit
world readable setup fi kaikkien luettavissa world readable setup fi kaikkien luettavissa
world writable setup fi kaikkien kirjoitettavissa world writable setup fi kaikkien kirjoitettavissa
would you like egroupware to cache the phpgw info array ? setup fi Haluatko, ett<74> eGroupWare pit<69><74> phpgw -tietorakenteen muistissa? would you like egroupware to cache the phpgw info array ? setup fi Haluatko, ett<74> eGroupWare pit<69><74> phpgw -tietorakenteen muistissa?
would you like egroupware to check for a new version<br>when admins login ? setup fi Haluatko, ett<74> eGroupWare tarkistaa onko uusia versioita julkaistu, kun p<><70>k<EFBFBD>ytt<74>j<EFBFBD> sis<69><73>nkirjautuu? would you like egroupware to check for a new version<br />when admins login ? setup fi Haluatko, ett<74> eGroupWare tarkistaa onko uusia versioita julkaistu, kun p<><70>k<EFBFBD>ytt<74>j<EFBFBD> sis<69><73>nkirjautuu?
would you like to show each application's upgrade status ? setup fi Haluatko n<>ytt<74><74> kunkin sovelluksen p<>ivitystilan? would you like to show each application's upgrade status ? setup fi Haluatko n<>ytt<74><74> kunkin sovelluksen p<>ivitystilan?
writable by the webserver setup fi www-palvelimen kirjoitettavissa writable by the webserver setup fi www-palvelimen kirjoitettavissa
write config setup fi Tallenna asetukset write config setup fi Tallenna asetukset
yes setup fi Kyll<6C> yes setup fi Kyll<6C>
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup fi K<>yt<79>t eGroupWaren esibetaversiota.<br>N<>it<69> versioita ei tueta en<65><6E>, ja niit<69> ei voi p<>ivitt<74><74> asennuksessa.<br>P<>ivit<69> versioon 0.9.10 (viimeisin versio, joka tukee esibetaversioita) <br>ja p<>ivit<69> sitten nykyiseen versioon. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup fi K<>yt<79>t eGroupWaren esibetaversiota.<br />N<>it<69> versioita ei tueta en<65><6E>, ja niit<69> ei voi p<>ivitt<74><74> asennuksessa.<br />P<>ivit<69> versioon 0.9.10 (viimeisin versio, joka tukee esibetaversioita) <br />ja p<>ivit<69> sitten nykyiseen versioon.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup fi K<>yt<79>t vanhaa PHP-versiota.<br>On suositeltavaa p<>ivitt<74><74> PHP uudempaan versioon.<br>Vanhat PHP-versiot eiv<69>t toimi oikein.<br>P<>ivit<69> v<>hint<6E><74>n versioon %1. you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup fi K<>yt<79>t vanhaa PHP-versiota.<br />On suositeltavaa p<>ivitt<74><74> PHP uudempaan versioon.<br />Vanhat PHP-versiot eiv<69>t toimi oikein.<br />P<>ivit<69> v<>hint<6E><74>n versioon %1.
you appear to be running version %1 of egroupware setup fi Ajat eGroupWaren versiota %1 you appear to be running version %1 of egroupware setup fi Ajat eGroupWaren versiota %1
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup fi PHP:n versio on vanhempi kuin 4.1.0. eGroupWare tarvitsee version 4.1.0 tai uudemman. you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup fi PHP:n versio on vanhempi kuin 4.1.0. eGroupWare tarvitsee version 4.1.0 tai uudemman.
you appear to be using php3. disabling php4 sessions support setup fi K<>yt<79>t PHP3:<3A><>. Ei k<>ytet<65> PHP4-istuntoja you appear to be using php3. disabling php4 sessions support setup fi K<>yt<79>t PHP3:<3A><>. Ei k<>ytet<65> PHP4-istuntoja
@ -442,13 +442,13 @@ you appear to have oracle support enabled setup fi Oracle on k
you appear to have oracle v8 (oci) support enabled setup fi Oracle V8 (OCI) on k<>ytett<74>viss<73> you appear to have oracle v8 (oci) support enabled setup fi Oracle V8 (OCI) on k<>ytett<74>viss<73>
you appear to have postgresql support enabled setup fi PostgreSQL on k<>ytett<74>viss<73> you appear to have postgresql support enabled setup fi PostgreSQL on k<>ytett<74>viss<73>
you appear to have xml support enabled setup fi XML on k<>ytett<74>viss<73> you appear to have xml support enabled setup fi XML on k<>ytett<74>viss<73>
you are ready for this stage, but this stage is not yet written.<br> setup fi Olet valmis t<>t<EFBFBD> vaihetta varten, mutta t<>t<EFBFBD> vaihetta ei ole viel<65> kirjoitettu.<br> you are ready for this stage, but this stage is not yet written.<br /> setup fi Olet valmis t<>t<EFBFBD> vaihetta varten, mutta t<>t<EFBFBD> vaihetta ei ole viel<65> kirjoitettu.<br />
you didn't enter a config password for domain %1 setup fi Et m<><6D>ritellyt konfiguraatiosalasanaa toimialueelle %1 you didn't enter a config password for domain %1 setup fi Et m<><6D>ritellyt konfiguraatiosalasanaa toimialueelle %1
you didn't enter a config username for domain %1 setup fi Et m<><6D>ritellyt konfiguraatiotunnusta toimialueelle %1 you didn't enter a config username for domain %1 setup fi Et m<><6D>ritellyt konfiguraatiotunnusta toimialueelle %1
you didn't enter a header admin password setup fi Et m<><6D>ritellyt header-yll<6C>pidon salasanaa you didn't enter a header admin password setup fi Et m<><6D>ritellyt header-yll<6C>pidon salasanaa
you didn't enter a header admin username setup fi Et m<><6D>ritellyt header-yll<6C>pidon k<>ytt<74>j<EFBFBD>tunnusta you didn't enter a header admin username setup fi Et m<><6D>ritellyt header-yll<6C>pidon k<>ytt<74>j<EFBFBD>tunnusta
you do not have any languages installed. please install one now <br> setup fi Et ole asentanut yht<68><74>n kielt<6C>.<br>Asenna yksi nyt. you do not have any languages installed. please install one now <br /> setup fi Et ole asentanut yht<68><74>n kielt<6C>.<br />Asenna yksi nyt.
you have not created your header.inc.php yet!<br> you can create it now. setup fi Et ole luonut tiedostoa header.inc.php!<br> Voit luoda sen nyt. you have not created your header.inc.php yet!<br /> you can create it now. setup fi Et ole luonut tiedostoa header.inc.php!<br /> Voit luoda sen nyt.
you have successfully logged out setup fi Olet poistunut j<>rjestelm<6C>st<73> you have successfully logged out setup fi Olet poistunut j<>rjestelm<6C>st<73>
you must enter a username for the admin setup fi Anna yll<6C>pidon k<>ytt<74>j<EFBFBD>tunnus you must enter a username for the admin setup fi Anna yll<6C>pidon k<>ytt<74>j<EFBFBD>tunnus
you need to add some domains to your header.inc.php. setup fi M<><4D>rittele toimialueita header.inc.php-tiedostoon. you need to add some domains to your header.inc.php. setup fi M<><4D>rittele toimialueita header.inc.php-tiedostoon.
@ -463,7 +463,7 @@ your database is not working! setup fi Tietokanta ei toimi!
your database is working, but you dont have any applications installed setup fi Tietokanta toimii, mutta yht<68><74>n sovellusta ei ole asennettu your database is working, but you dont have any applications installed setup fi Tietokanta toimii, mutta yht<68><74>n sovellusta ei ole asennettu
your header admin password is not set. please set it now! setup fi Header-yll<6C>pidon salasanaa ei ole m<><6D>ritelty. M<><4D>rittele se nyt! your header admin password is not set. please set it now! setup fi Header-yll<6C>pidon salasanaa ei ole m<><6D>ritelty. M<><4D>rittele se nyt!
your header.inc.php needs upgrading. setup fi header.inc.php-tiedosto on p<>ivitett<74>v<EFBFBD>. your header.inc.php needs upgrading. setup fi header.inc.php-tiedosto on p<>ivitett<74>v<EFBFBD>.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup fi Tiedosto header.inc.php on p<>ivitett<74>v<EFBFBD>.<br><blink><b class="msg">VAROITUS!</b></blink><br><b>TEE VARMUUSKOPIOT!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup fi Tiedosto header.inc.php on p<>ivitett<74>v<EFBFBD>.<br /><blink><b class="msg">VAROITUS!</b></blink><br /><b>TEE VARMUUSKOPIOT!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup fi K<>ytt<74>m<EFBFBD>si PHP ei tue GD-kirjastoa. Gantt -karttojen n<>ytt<74> Projektien hallinnassa tarvitsee GD-kirjaston versio 1.8 tai uudempi. your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup fi K<>ytt<74>m<EFBFBD>si PHP ei tue GD-kirjastoa. Gantt -karttojen n<>ytt<74> Projektien hallinnassa tarvitsee GD-kirjaston versio 1.8 tai uudempi.
your tables are current setup fi Tietokantataulut ovat ajan tasalla your tables are current setup fi Tietokantataulut ovat ajan tasalla
your tables may be altered and you may lose data setup fi Tietokantataulujen rakennetta muutetaan. Voit menett<74><74> tietoja. your tables may be altered and you may lose data setup fi Tietokantataulujen rakennetta muutetaan. Voit menett<74><74> tietoja.

View File

@ -8,7 +8,7 @@
00 (disable) setup fr 00 (d<>sactiver) 00 (disable) setup fr 00 (d<>sactiver)
13 (ntp) setup fr 13 (ntp) 13 (ntp) setup fr 13 (ntp)
80 (http) setup fr 80 (http) 80 (http) setup fr 80 (http)
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup fr <b>Ceci va cr<63>er un compte administrateur et trois comptes de d<>monstration</b><br>Les identifiants et mots de passes des comptes de d<>monstrations sont: demo/guest, demo2/guest et demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup fr <b>Ceci va cr<63>er un compte administrateur et trois comptes de d<>monstration</b><br />Les identifiants et mots de passes des comptes de d<>monstrations sont: demo/guest, demo2/guest et demo3/guest.
accounts existing setup fr Comptes d<>j<EFBFBD> cr<63><72>s accounts existing setup fr Comptes d<>j<EFBFBD> cr<63><72>s
actions setup fr Actions actions setup fr Actions
add a domain setup fr Ajouter un domaine add a domain setup fr Ajouter un domaine
@ -53,11 +53,11 @@ auto-created user accounts expire setup fr Les comptes d'utilisateur auto-cr
available version setup fr Version disponible available version setup fr Version disponible
back to the previous screen setup fr Retour <20> l'<27>cran pr<70>c<EFBFBD>dent back to the previous screen setup fr Retour <20> l'<27>cran pr<70>c<EFBFBD>dent
back to user login setup fr Revenir <20> la maison back to user login setup fr Revenir <20> la maison
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong> setup fr Mais nous vous <u>recommendons fortement de sauvegarder</u> vos tables pour le cas o<> le script endommagerait vos donn<6E>es.<br><strong>Ces scripts automatiques peuvent facilement endommager vos donn<6E>es.</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong> setup fr Mais nous vous <u>recommendons fortement de sauvegarder</u> vos tables pour le cas o<> le script endommagerait vos donn<6E>es.<br /><strong>Ces scripts automatiques peuvent facilement endommager vos donn<6E>es.</strong>
because an application it depends upon was upgraded setup fr parce-qu'une application de laquelle il d<>pend a <20>t<EFBFBD> mise <20> jour because an application it depends upon was upgraded setup fr parce-qu'une application de laquelle il d<>pend a <20>t<EFBFBD> mise <20> jour
because it depends upon setup fr Parce-que <20>a d<>pend de because it depends upon setup fr Parce-que <20>a d<>pend de
because it is not a user application, or access is controlled via acl setup fr Parce-que ce n'est pas une application utilisateur, ou l'acc<63>s est contr<74>l<EFBFBD> par ACL because it is not a user application, or access is controlled via acl setup fr Parce-que ce n'est pas une application utilisateur, ou l'acc<63>s est contr<74>l<EFBFBD> par ACL
because it requires manual table installation, <br>or the table definition was incorrect setup fr Parce-que <20>a n<>cessite une installation manuelle de table, <br>ou la d<>finition de la table <20>tait incorrecte because it requires manual table installation, <br />or the table definition was incorrect setup fr Parce-que <20>a n<>cessite une installation manuelle de table, <br />ou la d<>finition de la table <20>tait incorrecte
because it was manually disabled setup fr Parce-que <20>a a <20>t<EFBFBD> d<>sactiv<69> manuellement because it was manually disabled setup fr Parce-que <20>a a <20>t<EFBFBD> d<>sactiv<69> manuellement
because of a failed upgrade or install setup fr A cause d'une mise <20> jour ou d'une install d<>fectueuse because of a failed upgrade or install setup fr A cause d'une mise <20> jour ou d'une install d<>fectueuse
because of a failed upgrade, or the database is newer than the installed version of this app setup fr A cause d'une mise <20> jour d<>fectueuse, ou la base de donn<6E>es est plus r<>cente que celle de la version install<6C>e de cette app because of a failed upgrade, or the database is newer than the installed version of this app setup fr A cause d'une mise <20> jour d<>fectueuse, ou la base de donn<6E>es est plus r<>cente que celle de la version install<6C>e de cette app
@ -65,7 +65,7 @@ because the enable flag for this app is set to 0, or is undefined setup fr Parce
bottom setup fr Bas bottom setup fr Bas
calendar setup fr Calendrier calendar setup fr Calendrier
cancel setup fr Abandon cancel setup fr Abandon
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup fr Ne peut pas cr<63>er le fichier header.inc.php <20> cause de restrictions sur les permissions sur le fichier.<br> A la place vous pouvez %1 le fichier. cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup fr Ne peut pas cr<63>er le fichier header.inc.php <20> cause de restrictions sur les permissions sur le fichier.<br /> A la place vous pouvez %1 le fichier.
change system-charset setup fr Changement du jeu de caract<63>re change system-charset setup fr Changement du jeu de caract<63>re
charset setup fr ISO-8859-1 charset setup fr ISO-8859-1
charset to convert to setup fr Conversion vers charset to convert to setup fr Conversion vers
@ -106,11 +106,11 @@ created setup fr Cr
created header.inc.php! setup fr Cr<43><72> header.inc.php! created header.inc.php! setup fr Cr<43><72> header.inc.php!
creating tables setup fr Cr<43>ation de tables en cours creating tables setup fr Cr<43>ation de tables en cours
current system-charset setup fr Jeu de caract<63>re courant current system-charset setup fr Jeu de caract<63>re courant
current system-charset is %1, click %2here%3 to change it. setup fr Le jeu de caract<63>res est %1, cliquez %2ici%3 pour le changer <br>(note: attention, certain navigateur ne le supporte pas, notamment Internet Explorer sous MacOS) current system-charset is %1, click %2here%3 to change it. setup fr Le jeu de caract<63>res est %1, cliquez %2ici%3 pour le changer <br />(note: attention, certain navigateur ne le supporte pas, notamment Internet Explorer sous MacOS)
current version setup fr Version actuelle current version setup fr Version actuelle
currently installed languages: %1 <br> setup fr Langues install<6C>es actuellement: %1 <br> currently installed languages: %1 <br /> setup fr Langues install<6C>es actuellement: %1 <br />
database successfully converted from '%1' to '%2' setup fr Base de donn<6E>es convertie de '%1' <20> '%2' avec succ<63>s database successfully converted from '%1' to '%2' setup fr Base de donn<6E>es convertie de '%1' <20> '%2' avec succ<63>s
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup fr Port Date/heure.<br>Si vous utilisez le port 13, SVP modifiez les r<>gles du firewall avant de modifier cette page.<br>(Port: 13 / Serveur: 129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup fr Port Date/heure.<br />Si vous utilisez le port 13, SVP modifiez les r<>gles du firewall avant de modifier cette page.<br />(Port: 13 / Serveur: 129.6.15.28)
db host setup fr Nom du serveur de base de donn<6E>es db host setup fr Nom du serveur de base de donn<6E>es
db name setup fr Nom de la base de donn<6E>es db name setup fr Nom de la base de donn<6E>es
db password setup fr Mot de passe d'acc<63>s <20> la base de donn<6E>es db password setup fr Mot de passe d'acc<63>s <20> la base de donn<6E>es
@ -147,13 +147,13 @@ enable for extra debug-messages setup fr Activer pour les messages de d
enable ldap version 3 setup fr Activer le support du protocole version 3 pour LDAP enable ldap version 3 setup fr Activer le support du protocole version 3 pour LDAP
enable mcrypt setup fr Activer MCrypt enable mcrypt setup fr Activer MCrypt
enter some random text for app session encryption setup fr Entrez du texte au hasard pour le cryptage des sessions applicatives enter some random text for app session encryption setup fr Entrez du texte au hasard pour le cryptage des sessions applicatives
enter some random text for app_session <br>encryption (requires mcrypt) setup fr Entrez du texte au hasard pour le <br>cryptage app_session (n<>cessite mcrypt) enter some random text for app_session <br />encryption (requires mcrypt) setup fr Entrez du texte au hasard pour le <br />cryptage app_session (n<>cessite mcrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup fr Entrez le chemin complet pour les fichiers temporaires.<br>Exemples: /tmp, C:\TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup fr Entrez le chemin complet pour les fichiers temporaires.<br />Exemples: /tmp, C:\TEMP
enter the full path for temporary files.<br>examples: /tmp, c:temp setup fr Entrez le chemin complet pour les fichiers temporaires.<br>Exemples: /tmp, C:\TEMP enter the full path for temporary files.<br />examples: /tmp, c:temp setup fr Entrez le chemin complet pour les fichiers temporaires.<br />Exemples: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup fr Entrez le chemin complet pour les fichiers d'utilisateurs et de groupes.<br>Exemples: /files, E:\FILES enter the full path for users and group files.<br />examples: /files, e:\files setup fr Entrez le chemin complet pour les fichiers d'utilisateurs et de groupes.<br />Exemples: /files, E:\FILES
enter the full path for users and group files.<br>examples: /files, e:files setup fr Entrez le chemin complet pour les fichiers d'utilisateurs et de groupes.<br>Exemples: /files, E:\FILES enter the full path for users and group files.<br />examples: /files, e:files setup fr Entrez le chemin complet pour les fichiers d'utilisateurs et de groupes.<br />Exemples: /files, E:\FILES
enter the hostname of the machine on which this server is running setup fr Entrez le nom de la machine sur laquelle ce serveur s'ex<65>cute enter the hostname of the machine on which this server is running setup fr Entrez le nom de la machine sur laquelle ce serveur s'ex<65>cute
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup fr Entrez l'emplacement de l'URL de eGroupWare.<br>Exemple: http://www.domain.com/egroupware &nbsp; ou &nbsp; /egroupware<br><b>Pas de / (slash ou division) <20> la fin</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup fr Entrez l'emplacement de l'URL de eGroupWare.<br />Exemple: http://www.domain.com/egroupware &nbsp; ou &nbsp; /egroupware<br /><b>Pas de / (slash ou division) <20> la fin</b>
enter the site password for peer servers setup fr Entrez le mot de passe du site pour les serveurs pairs enter the site password for peer servers setup fr Entrez le mot de passe du site pour les serveurs pairs
enter the site username for peer servers setup fr Entrez le nom d'utilisateur du site pour les serveurs pairs enter the site username for peer servers setup fr Entrez le nom d'utilisateur du site pour les serveurs pairs
enter the title for your site setup fr Entrez le titre pour votre site enter the title for your site setup fr Entrez le titre pour votre site
@ -242,7 +242,7 @@ logout setup fr Se d
makesure setup fr Assurez-vous que votre base de donn<6E>es est cr<63><72> et que les permissions sur les comptes sont positionn<6E>es makesure setup fr Assurez-vous que votre base de donn<6E>es est cr<63><72> et que les permissions sur les comptes sont positionn<6E>es
manage applications setup fr G<>rer les Applications manage applications setup fr G<>rer les Applications
manage languages setup fr G<>rer les Langues manage languages setup fr G<>rer les Langues
max_execution_time is set to less than 30 (seconds): egroupware sometimes needs a higher execution_time, expect occasional failures setup fr L'option <20>Max Execution Time<6D> est positionn<6E>e en dessous des 30 secondes; <br>Parfois, eGroupware aura besoin de plus de temps. max_execution_time is set to less than 30 (seconds): egroupware sometimes needs a higher execution_time, expect occasional failures setup fr L'option <20>Max Execution Time<6D> est positionn<6E>e en dessous des 30 secondes; <br />Parfois, eGroupware aura besoin de plus de temps.
maximum account id (e.g. 65535 or 1000000) setup fr ID de compte maximum (p.e. 65535 ou 1000000) maximum account id (e.g. 65535 or 1000000) setup fr ID de compte maximum (p.e. 65535 ou 1000000)
may be broken setup fr pourrait <20>tre inconsistant may be broken setup fr pourrait <20>tre inconsistant
mcrypt algorithm (default tripledes) setup fr Algorithme Mcrypt (par d<>faut TRIPLEDES) mcrypt algorithm (default tripledes) setup fr Algorithme Mcrypt (par d<>faut TRIPLEDES)
@ -257,7 +257,7 @@ modify setup fr Modifier
modify an existing ldap account store for use with egroupware (for a new install using ldap accounts) setup fr Modifier un compte LDAP existant pour stocker et utiliser avec eGroupWare (pour une nouvelle installation utilisant les comptes LDAP) modify an existing ldap account store for use with egroupware (for a new install using ldap accounts) setup fr Modifier un compte LDAP existant pour stocker et utiliser avec eGroupWare (pour une nouvelle installation utilisant les comptes LDAP)
module setup fr module module setup fr module
multi-language support setup setup fr Setup pour le support multilingue multi-language support setup setup fr Setup pour le support multilingue
mysqlinstr setup fr Instructions pour cr<63>er la base de donn<6E>es dans MySQL:<br>Se connecter <20> mysql -<br><i>[user@server user]# mysql -u root -p</i><br>Cr<43>er la base de donn<6E>es vide et attribuer les permissions utilisateurs -<br><i>mysql> create database egroupware;</i><br><i>mysql> grant all on egroupware.* to egroupware@localhost identified by 'password';</i> mysqlinstr setup fr Instructions pour cr<63>er la base de donn<6E>es dans MySQL:<br />Se connecter <20> mysql -<br /><i>[user@server user]# mysql -u root -p</i><br />Cr<43>er la base de donn<6E>es vide et attribuer les permissions utilisateurs -<br /><i>mysql> create database egroupware;</i><br /><i>mysql> grant all on egroupware.* to egroupware@localhost identified by 'password';</i>
name of database setup fr Nom de la base de donn<6E>es name of database setup fr Nom de la base de donn<6E>es
name of db user egroupware uses to connect setup fr Nom de l'utilisateur de la base de donn<6E>es dont eGroupWare se sert pour se connecter name of db user egroupware uses to connect setup fr Nom de l'utilisateur de la base de donn<6E>es dont eGroupWare se sert pour se connecter
never setup fr jamais never setup fr jamais
@ -297,7 +297,7 @@ passwords did not match, please re-enter setup fr Les mots de passe ne correspon
path information setup fr Information de chemin path information setup fr Information de chemin
path to user and group files has to be outside of the webservers document-root!!! setup fr Le chemin vers les fichiers utilisateur et groupe DOIT ETRE EN DEHORS du r<>pertoire racine des serveurs web!!! path to user and group files has to be outside of the webservers document-root!!! setup fr Le chemin vers les fichiers utilisateur et groupe DOIT ETRE EN DEHORS du r<>pertoire racine des serveurs web!!!
persistent connections setup fr Connexions persistantes persistent connections setup fr Connexions persistantes
pgsqlinstr setup fr Instructions pour cr<63>er la base de donn<6E>es dans PostgreSQL:<br>D<>marrer le postmaster<br><i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br>Cr<43>er la base de donn<6E>es vide-<br><i>[user@server user]# createdb egroupware</i> pgsqlinstr setup fr Instructions pour cr<63>er la base de donn<6E>es dans PostgreSQL:<br />D<>marrer le postmaster<br /><i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br />Cr<43>er la base de donn<6E>es vide-<br /><i>[user@server user]# createdb egroupware</i>
phpldapadmin setup fr PHPLdapAdmin phpldapadmin setup fr PHPLdapAdmin
please check for sql scripts within the application's directory setup fr SVP v<>rifiez la pr<70>sence de scripts SQL dans le r<>pertoire setup de l'application please check for sql scripts within the application's directory setup fr SVP v<>rifiez la pr<70>sence de scripts SQL dans le r<>pertoire setup de l'application
please check read/write permissions on directories, or back up and use another option. setup fr SVP v<>rifiez les permissions de lecture/<2F>criture sur les r<>pertoires, ou fa<66>tes une sauvegarde et utilisez une autre option. please check read/write permissions on directories, or back up and use another option. setup fr SVP v<>rifiez les permissions de lecture/<2F>criture sur les r<>pertoires, ou fa<66>tes une sauvegarde et utilisez une autre option.
@ -340,7 +340,7 @@ safe_mode is turned on, which is generaly a good thing as it makes your install
sample configuration not found. using built in defaults setup fr Configuration exemple non trouv<75>e. J'utilise les valeurs par d<>faut d<>finies en interne sample configuration not found. using built in defaults setup fr Configuration exemple non trouv<75>e. J'utilise les valeurs par d<>faut d<>finies en interne
save setup fr Enregistrer save setup fr Enregistrer
save this text as contents of your header.inc.php setup fr Enregistrer ce texte comme le contenu de votre fichier header.inc.php save this text as contents of your header.inc.php setup fr Enregistrer ce texte comme le contenu de votre fichier header.inc.php
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup fr Choisissez une application, entrez une version de destination, puis soumettez pour transformer vers cette version.<br>Si vous n'entrez pas de version, seules les tables de base pour cette application seront install<6C>es.<br><blink>CETTE MANIPULATION VA D'ABORD EFFACER TOUTES LES TABLES DE DONNEES DES APPLICATIONS!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup fr Choisissez une application, entrez une version de destination, puis soumettez pour transformer vers cette version.<br />Si vous n'entrez pas de version, seules les tables de base pour cette application seront install<6C>es.<br /><blink>CETTE MANIPULATION VA D'ABORD EFFACER TOUTES LES TABLES DE DONNEES DES APPLICATIONS!</blink>
select one... setup fr s<>lectionnez un... select one... setup fr s<>lectionnez un...
select the default applications to which your users will have access setup fr Choisisseez les applications par d<>faut auxquelles vos utilisaturs auront acc<63>s select the default applications to which your users will have access setup fr Choisisseez les applications par d<>faut auxquelles vos utilisaturs auront acc<63>s
select the desired action(s) from the available choices setup fr Choisissez la(les) action(s) d<>sir<69>e(s) dans les choix possibles select the desired action(s) from the available choices setup fr Choisissez la(les) action(s) d<>sir<69>e(s) dans les choix possibles
@ -389,7 +389,7 @@ tables upgraded setup fr tables mises
target version setup fr Version de Destination target version setup fr Version de Destination
tcp port number of database server setup fr num<75>ro de port du serveur de base de donn<6E>es tcp port number of database server setup fr num<75>ro de port du serveur de base de donn<6E>es
text entry setup fr Zone de Texte text entry setup fr Zone de Texte
the %1 extension is needed, if you plan to use a %2 database. setup fr L'extension %1 est n<>cessaire si vous d<>cidez d'utiliser la base de donn<6E>e %2<br> the %1 extension is needed, if you plan to use a %2 database. setup fr L'extension %1 est n<>cessaire si vous d<>cidez d'utiliser la base de donn<6E>e %2<br />
the db_type in defaults (%1) is not supported on this server. using first supported type. setup fr Le type de base de donn<6E>es (db_type) figurant dans les valeurs par d<>faut (%1) n'est pas support<72> sur ce serveur. J'utilise le premier type support<72>. the db_type in defaults (%1) is not supported on this server. using first supported type. setup fr Le type de base de donn<6E>es (db_type) figurant dans les valeurs par d<>faut (%1) n'est pas support<72> sur ce serveur. J'utilise le premier type support<72>.
the file setup fr le fichier the file setup fr le fichier
the first step in installing egroupware is to ensure your environment has the necessary settings to correctly run the application. setup fr La premi<6D>re <20>tape lors de l'installation d'eGroupWare est la v<>rification de votre environnement syst<73>me. the first step in installing egroupware is to ensure your environment has the necessary settings to correctly run the application. setup fr La premi<6D>re <20>tape lors de l'installation d'eGroupWare est la v<>rification de votre environnement syst<73>me.
@ -399,8 +399,8 @@ the mbstring extension is needed to fully support unicode (utf-8) or other multi
the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup fr Le param<61>tre mbstring.func_overload = 7 est requis pour supporter pleinement unicode (utf-8) ou d'autres jeux de caract<63>res multibyte. the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup fr Le param<61>tre mbstring.func_overload = 7 est requis pour supporter pleinement unicode (utf-8) ou d'autres jeux de caract<63>res multibyte.
the table definition was correct, and the tables were installed setup fr La d<>finition de la table <20>tait correcte, et les tables ont <20>t<EFBFBD> install<6C>es the table definition was correct, and the tables were installed setup fr La d<>finition de la table <20>tait correcte, et les tables ont <20>t<EFBFBD> install<6C>es
the tables setup fr les tables the tables setup fr les tables
there was a problem trying to connect to your ldap server. <br> setup fr Il y a eu un probl<62>me lors de la tentative de connexion <20> votre serveur LDAP. <br> there was a problem trying to connect to your ldap server. <br /> setup fr Il y a eu un probl<62>me lors de la tentative de connexion <20> votre serveur LDAP. <br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup fr l y a eu un probl<62>me lors de la tentative de connexion <20> votre serveur LDAP. <br>SVP v<>rifiez la configuration de votre serveur LDAP there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup fr l y a eu un probl<62>me lors de la tentative de connexion <20> votre serveur LDAP. <br />SVP v<>rifiez la configuration de votre serveur LDAP
this has to be outside the webservers document-root!!! setup fr Ceci doit figurer <20> l'ext<78>rieur du r<>pertoire racine des documents du serveur Web!!! this has to be outside the webservers document-root!!! setup fr Ceci doit figurer <20> l'ext<78>rieur du r<>pertoire racine des documents du serveur Web!!!
this might take a while, please wait ... setup fr Cela peu prendre un certain temps, veuillez patienter ... this might take a while, please wait ... setup fr Cela peu prendre un certain temps, veuillez patienter ...
this program will convert your database to a new system-charset. setup fr Ce programme va convertir les informations de votre base de donn<6E>es vers le nouveau jeu de caract<63>re. this program will convert your database to a new system-charset. setup fr Ce programme va convertir les informations de votre base de donn<6E>es vers le nouveau jeu de caract<63>re.
@ -409,12 +409,12 @@ this section will help you export users and groups from egroupware's account tab
this section will help you export users and groups from egroupware's account tables into your ldap tree setup fr Cette section va vous aider <20> exporter les utilisateurs et groupes des tables de comptes de eGroupWare vers votre arbre LDAP this section will help you export users and groups from egroupware's account tables into your ldap tree setup fr Cette section va vous aider <20> exporter les utilisateurs et groupes des tables de comptes de eGroupWare vers votre arbre LDAP
this section will help you import users and groups from your ldap tree into egroupware's account tables setup fr Cette section va vous aider <20> importer les utilisateurs et groupes de votre arborescence LDAP vers les tables de comptes d'eGroupWare this section will help you import users and groups from your ldap tree into egroupware's account tables setup fr Cette section va vous aider <20> importer les utilisateurs et groupes de votre arborescence LDAP vers les tables de comptes d'eGroupWare
this section will help you setup your ldap accounts for use with egroupware setup fr Cette section va vous aider <20> configurer vos comptes LDAP pour les utiliser dans eGroupWare this section will help you setup your ldap accounts for use with egroupware setup fr Cette section va vous aider <20> configurer vos comptes LDAP pour les utiliser dans eGroupWare
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup fr Ceci devrait faire environ 30 octets de long.<br>Note: la valeur par d<>faut a <20>t<EFBFBD> g<>n<EFBFBD>r<EFBFBD>e au hasard. this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup fr Ceci devrait faire environ 30 octets de long.<br />Note: la valeur par d<>faut a <20>t<EFBFBD> g<>n<EFBFBD>r<EFBFBD>e au hasard.
this stage is completed<br> setup fr Cette <20>tape est compl<70>t<EFBFBD>e<br> this stage is completed<br /> setup fr Cette <20>tape est compl<70>t<EFBFBD>e<br />
this will create 1 admin account and 3 demo accounts<br>the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br><b>!!!this will delete all existing accounts!!!</b><br> setup fr Ceci va cr<63>er 1 compte admin et 3 comptes demo<br>Les utilisateurs/mots de passe sont: demo/guest, demo2/guest et demo3/guest.<br><b>!!!CECI VA SUPPRIMER TOUS LES COMPTES EXISTANTS!!!</b><br> this will create 1 admin account and 3 demo accounts<br />the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!this will delete all existing accounts!!!</b><br /> setup fr Ceci va cr<63>er 1 compte admin et 3 comptes demo<br />Les utilisateurs/mots de passe sont: demo/guest, demo2/guest et demo3/guest.<br /><b>!!!CECI VA SUPPRIMER TOUS LES COMPTES EXISTANTS!!!</b><br />
to a version it does not know about setup fr vers une version qu'il ne conna<6E>t pas to a version it does not know about setup fr vers une version qu'il ne conna<6E>t pas
to setup 1 admin account and 3 demo accounts. setup fr pour cr<63>er 1 compte administrateur et 3 comptes demo. to setup 1 admin account and 3 demo accounts. setup fr pour cr<63>er 1 compte administrateur et 3 comptes demo.
to setup 1 admin account and 3 demo accounts.<br><b>this will delete all existing accounts</b> setup fr Pour cr<63>er 1 compte admin et 3 comptes demo.<br><b>ceci va supprimer tous les comptes existants</b> to setup 1 admin account and 3 demo accounts.<br /><b>this will delete all existing accounts</b> setup fr Pour cr<63>er 1 compte admin et 3 comptes demo.<br /><b>ceci va supprimer tous les comptes existants</b>
top setup fr top top setup fr top
translations added setup fr Traductions Ajout<75>es translations added setup fr Traductions Ajout<75>es
translations removed setup fr Traductions Enlev<65>es translations removed setup fr Traductions Enlev<65>es
@ -448,14 +448,14 @@ which database type do you want to use with egroupware? setup fr Quel type de ba
world readable setup fr visible par tous world readable setup fr visible par tous
world writable setup fr acc<63>s en <20>criture pour tous world writable setup fr acc<63>s en <20>criture pour tous
would you like egroupware to cache the phpgw info array ? setup fr Voulez-vous qu'eGroupWare mette en cache le tableau d'informations phpgw ? would you like egroupware to cache the phpgw info array ? setup fr Voulez-vous qu'eGroupWare mette en cache le tableau d'informations phpgw ?
would you like egroupware to check for a new version<br>when admins login ? setup fr Voudriez-vous que eGroupWare v<>rifie la disponibilit<69> d'une nouvelle version<br>quand les administrateurs se connectent ? would you like egroupware to check for a new version<br />when admins login ? setup fr Voudriez-vous que eGroupWare v<>rifie la disponibilit<69> d'une nouvelle version<br />quand les administrateurs se connectent ?
would you like to show each application's upgrade status ? setup fr Voulez-vous afficher le statut de mise <20> jour de chaque application ? would you like to show each application's upgrade status ? setup fr Voulez-vous afficher le statut de mise <20> jour de chaque application ?
writable by the webserver setup fr acc<63>s en <20>criture pour le serveur Web writable by the webserver setup fr acc<63>s en <20>criture pour le serveur Web
write config setup fr Ecrire la configuration write config setup fr Ecrire la configuration
yes setup fr Oui yes setup fr Oui
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup fr Vous semblez utiliser une version pre-beta de eGroupWare.<br>Ces versions ne sont plus support<72>es, et il n'y a pas de possibilit<69> de mise <20> jour pour elles dans le setup.<br> Vous devriez d'abord mettre votre version <20> jour vers la version 0.9.10 (la derni<6E>re version <20> supporter les mises <20> jour pre-beta) <br>puis mettre <20> jour depuis cette version jusqu'<27> la version actuelle. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup fr Vous semblez utiliser une version pre-beta de eGroupWare.<br />Ces versions ne sont plus support<72>es, et il n'y a pas de possibilit<69> de mise <20> jour pour elles dans le setup.<br /> Vous devriez d'abord mettre votre version <20> jour vers la version 0.9.10 (la derni<6E>re version <20> supporter les mises <20> jour pre-beta) <br />puis mettre <20> jour depuis cette version jusqu'<27> la version actuelle.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup fr Vous semblez utiliser une ancienne version de PHP<br>Il est recommand<6E> de faire une mise <20> jour.<br>Les anciennes versions de PHP pourraient ne pas fonctionner correctement, ou pas du tout, avec eGroupWare.<br><br>SVP faites une mise <20> jour <20> la derni<6E>re version %1 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup fr Vous semblez utiliser une ancienne version de PHP<br />Il est recommand<6E> de faire une mise <20> jour.<br />Les anciennes versions de PHP pourraient ne pas fonctionner correctement, ou pas du tout, avec eGroupWare.<br /><br />SVP faites une mise <20> jour <20> la derni<6E>re version %1
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version 4.1.0 setup fr Vous semblez utiliser une version ancienne de PHP <br>Il est recommand<6E> que vous mettiez votre syst<73>me <20> jour vers une version plus r<>cente. <br>Les anciennes version de PHP pourraient ne pas faire fonctionner correctement eGroupWare, voire pas du tout. <br><br>SVP, mettez votre syst<73>me <20> jour vers au moins la version 4.1.0 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version 4.1.0 setup fr Vous semblez utiliser une version ancienne de PHP <br />Il est recommand<6E> que vous mettiez votre syst<73>me <20> jour vers une version plus r<>cente. <br />Les anciennes version de PHP pourraient ne pas faire fonctionner correctement eGroupWare, voire pas du tout. <br /><br />SVP, mettez votre syst<73>me <20> jour vers au moins la version 4.1.0
you appear to be running version %1 of egroupware setup fr Vous semblez utiliser la version %1 d'eGroupWare you appear to be running version %1 of egroupware setup fr Vous semblez utiliser la version %1 d'eGroupWare
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup fr Vous semblez utiliser une version de PHP plus ancienne que 4.1.0. eGroupWare n<>cessite maintenant 4.1.0 ou plus r<>cent you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup fr Vous semblez utiliser une version de PHP plus ancienne que 4.1.0. eGroupWare n<>cessite maintenant 4.1.0 ou plus r<>cent
you appear to be using php3. disabling php4 sessions support setup fr Vous semblez utiliser PHP3. Je d<>sactive le support de sessions PHP4 you appear to be using php3. disabling php4 sessions support setup fr Vous semblez utiliser PHP3. Je d<>sactive le support de sessions PHP4
@ -467,13 +467,13 @@ you appear to have oracle v8 (oci) support enabled setup fr Votre support Oracle
you appear to have postgres-db support enabled setup fr Vous semblez avoir le support de Postgres-DB activ<69> you appear to have postgres-db support enabled setup fr Vous semblez avoir le support de Postgres-DB activ<69>
you appear to have postgresql support enabled setup fr Votre support PostgreSQL semble activ<69> you appear to have postgresql support enabled setup fr Votre support PostgreSQL semble activ<69>
you appear to have xml support enabled setup fr Votre support XML semble activ<69> you appear to have xml support enabled setup fr Votre support XML semble activ<69>
you are ready for this stage, but this stage is not yet written.<br> setup fr Vous <20>tes pr<70>t pour cette <20>tape, mais ceci n'est pas encore <20>crit.<br> you are ready for this stage, but this stage is not yet written.<br /> setup fr Vous <20>tes pr<70>t pour cette <20>tape, mais ceci n'est pas encore <20>crit.<br />
you didn't enter a config password for domain %1 setup fr Vous n'avez pas entr<74> de mot de passe de configuration pour le domaine %1 you didn't enter a config password for domain %1 setup fr Vous n'avez pas entr<74> de mot de passe de configuration pour le domaine %1
you didn't enter a config username for domain %1 setup fr Vous n'avez pas entr<74> de nom d'utilisateur pour le domaine %1 you didn't enter a config username for domain %1 setup fr Vous n'avez pas entr<74> de nom d'utilisateur pour le domaine %1
you didn't enter a header admin password setup fr Vous n'avez pas entr<74> de mot de passe pour l'administration d'ent<6E>te you didn't enter a header admin password setup fr Vous n'avez pas entr<74> de mot de passe pour l'administration d'ent<6E>te
you didn't enter a header admin username setup fr Vous n'avez pas entr<74> de nom d'utilisateur pour l'administration d'ent<6E>te you didn't enter a header admin username setup fr Vous n'avez pas entr<74> de nom d'utilisateur pour l'administration d'ent<6E>te
you do not have any languages installed. please install one now <br> setup fr Vous n'avez aucun langage install<6C>. SVP installez-en un maintenant<br> you do not have any languages installed. please install one now <br /> setup fr Vous n'avez aucun langage install<6C>. SVP installez-en un maintenant<br />
you have not created your header.inc.php yet!<br> you can create it now. setup fr Vous n'avez pas encore cr<63><72> votre fichier header.inc.php!<br> Vous pouvez le cr<63>er maintenant. you have not created your header.inc.php yet!<br /> you can create it now. setup fr Vous n'avez pas encore cr<63><72> votre fichier header.inc.php!<br /> Vous pouvez le cr<63>er maintenant.
you have successfully logged out setup fr Vous vous <20>tes d<>connect<63> avec succ<63>s you have successfully logged out setup fr Vous vous <20>tes d<>connect<63> avec succ<63>s
you must enter a username for the admin setup fr Vous devez entrer un nom d'utilisateur pour le compte admin you must enter a username for the admin setup fr Vous devez entrer un nom d'utilisateur pour le compte admin
you need to add some domains to your header.inc.php. setup fr Vous devez ajouter quelques domaines dans votre header.inc.php. you need to add some domains to your header.inc.php. setup fr Vous devez ajouter quelques domaines dans votre header.inc.php.
@ -488,7 +488,7 @@ your database is not working! setup fr Votre base de donn
your database is working, but you dont have any applications installed setup fr Votre base de donn<6E>es fonctionne, mais vous n'avez pas d'application install<6C>e your database is working, but you dont have any applications installed setup fr Votre base de donn<6E>es fonctionne, mais vous n'avez pas d'application install<6C>e
your header admin password is not set. please set it now! setup fr Votre mot de passe d'administration d'ent<6E>te n'est PAS configur<75>. SVP configurez-le maintenant! your header admin password is not set. please set it now! setup fr Votre mot de passe d'administration d'ent<6E>te n'est PAS configur<75>. SVP configurez-le maintenant!
your header.inc.php needs upgrading. setup fr Votre fichier header.inc.php a besoin d'une mise <20> jour. your header.inc.php needs upgrading. setup fr Votre fichier header.inc.php a besoin d'une mise <20> jour.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup fr Votre fichier header.inc.php a besoin d'une mise <20> jour.<br><blink><b class="msg">ATTENTION!</b></blink><br><b>FAITES DES SAUVEGARDES!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup fr Votre fichier header.inc.php a besoin d'une mise <20> jour.<br /><blink><b class="msg">ATTENTION!</b></blink><br /><b>FAITES DES SAUVEGARDES!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup fr Votre installation de PHP n'a pas de support GD appropri<72>. <br/>Vous avez besoin de la biblioth<74>que gd sup<75>rieure ou <20>gale <20> la version 1.8 pour voir les diagrammes de Gantt dans les Projets. your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup fr Votre installation de PHP n'a pas de support GD appropri<72>. <br/>Vous avez besoin de la biblioth<74>que gd sup<75>rieure ou <20>gale <20> la version 1.8 pour voir les diagrammes de Gantt dans les Projets.
your tables are current setup fr Vos tables sont <20> jour your tables are current setup fr Vos tables sont <20> jour
your tables may be altered and you may lose data setup fr Vos tables pourraient <20>tre alt<6C>r<EFBFBD>es et vous pourriez perdre des donn<6E>es. your tables may be altered and you may lose data setup fr Vos tables pourraient <20>tre alt<6C>r<EFBFBD>es et vous pourriez perdre des donn<6E>es.

View File

@ -5,7 +5,7 @@
00 (disable) setup hr 00 (disable / recomended) 00 (disable) setup hr 00 (disable / recomended)
13 (ntp) setup hr 13 (ntp) 13 (ntp) setup hr 13 (ntp)
80 (http) setup hr 80 (http) 80 (http) setup hr 80 (http)
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup hr <b>This will create 1 admin account and 3 demo accounts</b><br>The username/passwords are: demo/guest, demo2/guest and demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup hr <b>This will create 1 admin account and 3 demo accounts</b><br />The username/passwords are: demo/guest, demo2/guest and demo3/guest.
accounts existing setup hr Accounts existing accounts existing setup hr Accounts existing
actions setup hr Actions actions setup hr Actions
add a domain setup hr Add a domain add a domain setup hr Add a domain
@ -49,18 +49,18 @@ auto-created user accounts expire setup hr Auto-created user accounts expire
available version setup hr Available Version available version setup hr Available Version
back to the previous screen setup hr Back to the previous screen back to the previous screen setup hr Back to the previous screen
back to user login setup hr Back to user login back to user login setup hr Back to user login
backupwarn setup hr but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong><br><em>Please backup before going any further!</em> backupwarn setup hr but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong><br /><em>Please backup before going any further!</em>
because an application it depends upon was upgraded setup hr because an application it depends upon was upgraded because an application it depends upon was upgraded setup hr because an application it depends upon was upgraded
because it depends upon setup hr because it depends upon because it depends upon setup hr because it depends upon
because it is not a user application, or access is controlled via acl setup hr because it is not a user application, or access is controlled via acl because it is not a user application, or access is controlled via acl setup hr because it is not a user application, or access is controlled via acl
because it requires manual table installation, <br>or the table definition was incorrect setup hr because it requires manual table installation, <br>or the table definition was incorrect because it requires manual table installation, <br />or the table definition was incorrect setup hr because it requires manual table installation, <br />or the table definition was incorrect
because it was manually disabled setup hr because it was manually disabled because it was manually disabled setup hr because it was manually disabled
because of a failed upgrade or install setup hr because of a failed upgrade or install because of a failed upgrade or install setup hr because of a failed upgrade or install
because of a failed upgrade, or the database is newer than the installed version of this app setup hr because of a failed upgrade, or the database is newer than the installed version of this app because of a failed upgrade, or the database is newer than the installed version of this app setup hr because of a failed upgrade, or the database is newer than the installed version of this app
because the enable flag for this app is set to 0, or is undefined setup hr because the enable flag for this app is set to 0, or is undefined because the enable flag for this app is set to 0, or is undefined setup hr because the enable flag for this app is set to 0, or is undefined
bottom setup hr bottom bottom setup hr bottom
cancel setup hr Cancel cancel setup hr Cancel
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup hr Cannot create the header.inc.php due to file permission restrictions.<br> Instead you can %1 the file. cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup hr Cannot create the header.inc.php due to file permission restrictions.<br /> Instead you can %1 the file.
change system-charset setup hr Change system-charset change system-charset setup hr Change system-charset
charset setup hr ISO-8859-1 charset setup hr ISO-8859-1
charset to convert to setup hr Charset to convert to charset to convert to setup hr Charset to convert to
@ -103,9 +103,9 @@ creating tables setup hr Creating Tables
current system-charset setup hr Current system-charset current system-charset setup hr Current system-charset
current system-charset is %1, click %2here%3 to change it. setup hr Current system-charset is %1, click %2here%3 to change it. current system-charset is %1, click %2here%3 to change it. setup hr Current system-charset is %1, click %2here%3 to change it.
current version setup hr Current Version current version setup hr Current Version
currently installed languages: %1 <br> setup hr Currently installed languages: %1 <br> currently installed languages: %1 <br /> setup hr Currently installed languages: %1 <br />
database successfully converted from '%1' to '%2' setup hr Database successfully converted from '%1' to '%2' database successfully converted from '%1' to '%2' setup hr Database successfully converted from '%1' to '%2'
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup hr Datetime port.<br>If using port 13, please set firewall rules appropriately before submitting this page.<br>(Port: 13 / Host: 129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup hr Datetime port.<br />If using port 13, please set firewall rules appropriately before submitting this page.<br />(Port: 13 / Host: 129.6.15.28)
db host setup hr DB Host db host setup hr DB Host
db name setup hr DB Name db name setup hr DB Name
db password setup hr DB Password db password setup hr DB Password
@ -142,11 +142,11 @@ enable for extra debug-messages setup hr enable for extra debug-messages
enable ldap version 3 setup hr Enable LDAP Version 3 enable ldap version 3 setup hr Enable LDAP Version 3
enable mcrypt setup hr Enable MCrypt enable mcrypt setup hr Enable MCrypt
enter some random text for app session encryption setup hr Enter some random text for app session encryption enter some random text for app session encryption setup hr Enter some random text for app session encryption
enter some random text for app_session <br>encryption (requires mcrypt) setup hr Enter some random text for app_session <br>encryption (requires mcrypt) enter some random text for app_session <br />encryption (requires mcrypt) setup hr Enter some random text for app_session <br />encryption (requires mcrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup hr Enter the full path for temporary files.<br>Examples: /tmp, C:\TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup hr Enter the full path for temporary files.<br />Examples: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup hr Enter the full path for users and group files.<br>Examples: /files, E:\FILES enter the full path for users and group files.<br />examples: /files, e:\files setup hr Enter the full path for users and group files.<br />Examples: /files, E:\FILES
enter the hostname of the machine on which this server is running setup hr Enter the hostname of the machine on which this server is running enter the hostname of the machine on which this server is running setup hr Enter the hostname of the machine on which this server is running
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup hr Enter the location of eGroupWare's URL.<br>Example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>No trailing slash</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup hr Enter the location of eGroupWare's URL.<br />Example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>No trailing slash</b>
enter the site password for peer servers setup hr Enter the site password for peer servers enter the site password for peer servers setup hr Enter the site password for peer servers
enter the site username for peer servers setup hr Enter the site username for peer servers enter the site username for peer servers setup hr Enter the site username for peer servers
enter the title for your site setup hr Enter the title for your site enter the title for your site setup hr Enter the title for your site
@ -318,7 +318,7 @@ safe_mode is turned on, which is generaly a good thing as it makes your install
sample configuration not found. using built in defaults setup hr Sample configuration not found. using built in defaults sample configuration not found. using built in defaults setup hr Sample configuration not found. using built in defaults
save setup hr Save save setup hr Save
save this text as contents of your header.inc.php setup hr Save this text as contents of your header.inc.php save this text as contents of your header.inc.php setup hr Save this text as contents of your header.inc.php
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup hr Select an app, enter a target version, then submit to process to that version.<br>If you do not enter a version, only the baseline tables will be installed for the app.<br><blink>THIS WILL DROP ALL OF THE APPS' TABLES FIRST!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup hr Select an app, enter a target version, then submit to process to that version.<br />If you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>THIS WILL DROP ALL OF THE APPS' TABLES FIRST!</blink>
select one... setup hr select one... select one... setup hr select one...
select the default applications to which your users will have access setup hr Select the default applications to which your users will have access select the default applications to which your users will have access setup hr Select the default applications to which your users will have access
select the desired action(s) from the available choices setup hr Select the desired action(s) from the available choices select the desired action(s) from the available choices setup hr Select the desired action(s) from the available choices
@ -376,8 +376,8 @@ the imap extension is needed by the two email apps (even if you use email with p
the mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets. setup hr The mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets. the mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets. setup hr The mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets.
the table definition was correct, and the tables were installed setup hr The table definition was correct, and the tables were installed the table definition was correct, and the tables were installed setup hr The table definition was correct, and the tables were installed
the tables setup hr the tables the tables setup hr the tables
there was a problem trying to connect to your ldap server. <br> setup hr There was a problem trying to connect to your LDAP server. <br> there was a problem trying to connect to your ldap server. <br /> setup hr There was a problem trying to connect to your LDAP server. <br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup hr There was a problem trying to connect to your LDAP server. <br>please check your LDAP server configuration there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup hr There was a problem trying to connect to your LDAP server. <br />please check your LDAP server configuration
this has to be outside the webservers document-root!!! setup hr This has to be outside the webservers document-root!!! this has to be outside the webservers document-root!!! setup hr This has to be outside the webservers document-root!!!
this might take a while, please wait ... setup hr This might take a while, please wait ... this might take a while, please wait ... setup hr This might take a while, please wait ...
this program will convert your database to a new system-charset. setup hr This program will convert your database to a new system-charset. this program will convert your database to a new system-charset. setup hr This program will convert your database to a new system-charset.
@ -385,8 +385,8 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup hr This section will help you export users and groups from eGroupWare's account tables into your LDAP tree this section will help you export users and groups from egroupware's account tables into your ldap tree setup hr This section will help you export users and groups from eGroupWare's account tables into your LDAP tree
this section will help you import users and groups from your ldap tree into egroupware's account tables setup hr This section will help you import users and groups from your LDAP tree into eGroupWare's account tables this section will help you import users and groups from your ldap tree into egroupware's account tables setup hr This section will help you import users and groups from your LDAP tree into eGroupWare's account tables
this section will help you setup your ldap accounts for use with egroupware setup hr This section will help you setup your LDAP accounts for use with eGroupWare this section will help you setup your ldap accounts for use with egroupware setup hr This section will help you setup your LDAP accounts for use with eGroupWare
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup hr This should be around 30 bytes in length.<br>Note: The default has been randomly generated. this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup hr This should be around 30 bytes in length.<br />Note: The default has been randomly generated.
this stage is completed<br> setup hr This stage is completed<br> this stage is completed<br /> setup hr This stage is completed<br />
to a version it does not know about setup hr to a version it does not know about to a version it does not know about setup hr to a version it does not know about
to setup 1 admin account and 3 demo accounts. setup hr to setup 1 admin account and 3 demo accounts. to setup 1 admin account and 3 demo accounts. setup hr to setup 1 admin account and 3 demo accounts.
top setup hr top top setup hr top
@ -422,13 +422,13 @@ which database type do you want to use with egroupware? setup hr Which database
world readable setup hr world readable world readable setup hr world readable
world writable setup hr world writable world writable setup hr world writable
would you like egroupware to cache the phpgw info array ? setup hr Would you like eGroupWare to cache the phpgw info array ? would you like egroupware to cache the phpgw info array ? setup hr Would you like eGroupWare to cache the phpgw info array ?
would you like egroupware to check for a new version<br>when admins login ? setup hr Would you like eGroupWare to check for a new version<br>when admins login ? would you like egroupware to check for a new version<br />when admins login ? setup hr Would you like eGroupWare to check for a new version<br />when admins login ?
would you like to show each application's upgrade status ? setup hr Would you like to show each application's upgrade status ? would you like to show each application's upgrade status ? setup hr Would you like to show each application's upgrade status ?
writable by the webserver setup hr writable by the webserver writable by the webserver setup hr writable by the webserver
write config setup hr Write config write config setup hr Write config
yes setup hr Yes yes setup hr Yes
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup hr You appear to be running a pre-beta version of eGroupWare.<br>These versions are no longer supported, and there is no upgrade path for them in setup.<br> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup hr You appear to be running a pre-beta version of eGroupWare.<br />These versions are no longer supported, and there is no upgrade path for them in setup.<br /> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup hr You appear to be running an old version of PHP <br>It its recommend that you upgrade to a new version. <br>Older version of PHP might not run eGroupWare correctly, if at all. <br><br>Please upgrade to at least version %1 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup hr You appear to be running an old version of PHP <br />It its recommend that you upgrade to a new version. <br />Older version of PHP might not run eGroupWare correctly, if at all. <br /><br />Please upgrade to at least version %1
you appear to be running version %1 of egroupware setup hr You appear to be running version %1 of eGroupWare you appear to be running version %1 of egroupware setup hr You appear to be running version %1 of eGroupWare
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup hr You appear to be using PHP earlier than 4.1.0. eGroupWare now requires 4.1.0 or later you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup hr You appear to be using PHP earlier than 4.1.0. eGroupWare now requires 4.1.0 or later
you appear to be using php3. disabling php4 sessions support setup hr You appear to be using PHP3. Disabling PHP4 sessions support you appear to be using php3. disabling php4 sessions support setup hr You appear to be using PHP3. Disabling PHP4 sessions support
@ -439,13 +439,13 @@ you appear to have oracle support enabled setup hr You appear to have Oracle sup
you appear to have oracle v8 (oci) support enabled setup hr You appear to have Oracle V8 (OCI) support enabled you appear to have oracle v8 (oci) support enabled setup hr You appear to have Oracle V8 (OCI) support enabled
you appear to have postgresql support enabled setup hr You appear to have PostgreSQL support enabled you appear to have postgresql support enabled setup hr You appear to have PostgreSQL support enabled
you appear to have xml support enabled setup hr You appear to have XML support enabled you appear to have xml support enabled setup hr You appear to have XML support enabled
you are ready for this stage, but this stage is not yet written.<br> setup hr You are ready for this stage, but this stage is not yet written.<br> you are ready for this stage, but this stage is not yet written.<br /> setup hr You are ready for this stage, but this stage is not yet written.<br />
you didn't enter a config password for domain %1 setup hr You didn't enter a config password for domain %1 you didn't enter a config password for domain %1 setup hr You didn't enter a config password for domain %1
you didn't enter a config username for domain %1 setup hr You didn't enter a config username for domain %1 you didn't enter a config username for domain %1 setup hr You didn't enter a config username for domain %1
you didn't enter a header admin password setup hr You didn't enter a header admin password you didn't enter a header admin password setup hr You didn't enter a header admin password
you didn't enter a header admin username setup hr You didn't enter a header admin username you didn't enter a header admin username setup hr You didn't enter a header admin username
you do not have any languages installed. please install one now <br> setup hr You do not have any languages installed. Please install one now <br> you do not have any languages installed. please install one now <br /> setup hr You do not have any languages installed. Please install one now <br />
you have not created your header.inc.php yet!<br> you can create it now. setup hr You have not created your header.inc.php yet!<br> You can create it now. you have not created your header.inc.php yet!<br /> you can create it now. setup hr You have not created your header.inc.php yet!<br /> You can create it now.
you have successfully logged out setup hr You have successfully logged out you have successfully logged out setup hr You have successfully logged out
you must enter a username for the admin setup hr You must enter a username for the admin you must enter a username for the admin setup hr You must enter a username for the admin
you need to add some domains to your header.inc.php. setup hr You need to add some domains to your header.inc.php. you need to add some domains to your header.inc.php. setup hr You need to add some domains to your header.inc.php.
@ -460,7 +460,7 @@ your database is not working! setup hr Your Database is not working!
your database is working, but you dont have any applications installed setup hr Your database is working, but you dont have any applications installed your database is working, but you dont have any applications installed setup hr Your database is working, but you dont have any applications installed
your header admin password is not set. please set it now! setup hr Your header admin password is NOT set. Please set it now! your header admin password is not set. please set it now! setup hr Your header admin password is NOT set. Please set it now!
your header.inc.php needs upgrading. setup hr Your header.inc.php needs upgrading. your header.inc.php needs upgrading. setup hr Your header.inc.php needs upgrading.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup hr Your header.inc.php needs upgrading.<br><blink><b class="msg">WARNING!</b></blink><br><b>MAKE BACKUPS!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup hr Your header.inc.php needs upgrading.<br /><blink><b class="msg">WARNING!</b></blink><br /><b>MAKE BACKUPS!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup hr Your PHP installation does not have appropriate GD support. You need gd library version 1.8 or newer to see Gantt charts in projects. your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup hr Your PHP installation does not have appropriate GD support. You need gd library version 1.8 or newer to see Gantt charts in projects.
your tables are current setup hr Your tables are current your tables are current setup hr Your tables are current
your tables may be altered and you may lose data setup hr Your tables may be altered and you may lose data. your tables may be altered and you may lose data setup hr Your tables may be altered and you may lose data.

View File

@ -6,8 +6,8 @@
00 (disable) setup it 00 (disabilitato/ consigliato) 00 (disable) setup it 00 (disabilitato/ consigliato)
13 (ntp) setup it 13 (ntp) 13 (ntp) setup it 13 (ntp)
80 (http) setup it 80 (http) 80 (http) setup it 80 (http)
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup it <b>Questo creer<65> 1 account admin e 3 account demo</b>I nome utente/password sono: demo/guest, demo2/guest e demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup it <b>Questo creer<65> 1 account admin e 3 account demo</b>I nome utente/password sono: demo/guest, demo2/guest e demo3/guest.
<br><center>import has been completed! click <a href="index.php">here</a> to return to setup </center> setup it <br><center>L'importazione &egrave; stata completata! Cliccare <a href="index.php">qui</a> per titornare al setup </center> <br /><center>import has been completed! click <a href="index.php">here</a> to return to setup </center> setup it <br /><center>L'importazione &egrave; stata completata! Cliccare <a href="index.php">qui</a> per titornare al setup </center>
accounts existing setup it Esistono Account accounts existing setup it Esistono Account
actions setup it Azioni actions setup it Azioni
add a domain setup it Aggiungi un dominio add a domain setup it Aggiungi un dominio
@ -46,11 +46,11 @@ auto-created user accounts expire setup it Gli account utente auto-creati scadon
available version setup it Versione Disponibile available version setup it Versione Disponibile
back to the previous screen setup it Indietro alla schermata precedente back to the previous screen setup it Indietro alla schermata precedente
back to user login setup it Indietro al Login Utente back to user login setup it Indietro al Login Utente
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong> setup it ma noi <u>consigliamo vivamente di salvare</u> le tue tabelle nel caso in cui la procedura causidanni ai tuoi dati.<br><strong>Queste procedure automatizzate possono distruggere molto facilmente i tuoi dati.</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong> setup it ma noi <u>consigliamo vivamente di salvare</u> le tue tabelle nel caso in cui la procedura causidanni ai tuoi dati.<br /><strong>Queste procedure automatizzate possono distruggere molto facilmente i tuoi dati.</strong>
because an application it depends upon was upgraded setup it perch<63> un'applicazione da cui dipende <20> stata aggiornata because an application it depends upon was upgraded setup it perch<63> un'applicazione da cui dipende <20> stata aggiornata
because it depends upon setup it perch<63> dipende da because it depends upon setup it perch<63> dipende da
because it is not a user application, or access is controlled via acl setup it perch<63> non si tratta di un'applicazione dell'utente, o l'accesso <20> controllato tramite ACL because it is not a user application, or access is controlled via acl setup it perch<63> non si tratta di un'applicazione dell'utente, o l'accesso <20> controllato tramite ACL
because it requires manual table installation, <br>or the table definition was incorrect setup it perrch<63> richiede un'installazione manuale delle tabelle, <br>o la definizione delle tabelle non <20> corretta because it requires manual table installation, <br />or the table definition was incorrect setup it perrch<63> richiede un'installazione manuale delle tabelle, <br />o la definizione delle tabelle non <20> corretta
because it was manually disabled setup it perch<63> <20> stato disabilitato manualmente because it was manually disabled setup it perch<63> <20> stato disabilitato manualmente
because of a failed upgrade or install setup it a causa di un aggiornamento o installazione fallita because of a failed upgrade or install setup it a causa di un aggiornamento o installazione fallita
because of a failed upgrade, or the database is newer than the installed version of this app setup it poich&eacute; &egrave; avvenuto un aggiornamento non corretto, o il database &egrave; pi&ugrave; recente della versione installata di questa applicazione because of a failed upgrade, or the database is newer than the installed version of this app setup it poich&eacute; &egrave; avvenuto un aggiornamento non corretto, o il database &egrave; pi&ugrave; recente della versione installata di questa applicazione
@ -90,7 +90,7 @@ creating tables setup it Creazione Tabelle
current system-charset setup it Set di caratteri attuale current system-charset setup it Set di caratteri attuale
current system-charset is %1, click %2here%3 to change it. setup it Il set di caratteri attuale <20> %1, clicca %2qui%3 per cambiarlo. current system-charset is %1, click %2here%3 to change it. setup it Il set di caratteri attuale <20> %1, clicca %2qui%3 per cambiarlo.
current version setup it Versione attuale current version setup it Versione attuale
currently installed languages: %1 <br> setup it Lingue attualmente installate: %1 <br> currently installed languages: %1 <br /> setup it Lingue attualmente installate: %1 <br />
database successfully converted from '%1' to '%2' setup it Database convertito con successo da '%1' a '%2' database successfully converted from '%1' to '%2' setup it Database convertito con successo da '%1' a '%2'
db host setup it Host DB db host setup it Host DB
db name setup it Nome DB db name setup it Nome DB
@ -219,7 +219,7 @@ return to setup setup it Ritorna al Setup
run installation tests setup it Esegui test installazione run installation tests setup it Esegui test installazione
save setup it Salva save setup it Salva
save this text as contents of your header.inc.php setup it Salva questo testo come contenuto del tuo header.inc.php save this text as contents of your header.inc.php setup it Salva questo testo come contenuto del tuo header.inc.php
select an app, enter a target version, then submit to process to that version.<br><blink>this will drop all of the apps' tables first!</blink> setup it Seleziona una'applicazione, inserisci una versione di destinazione, quindi invia per processare verso quella versione.<br><blink>QUESTO CANGELLERA' PRIMA TUTTE LE TABELLE DELL'APPLICAZIONE</blink> select an app, enter a target version, then submit to process to that version.<br /><blink>this will drop all of the apps' tables first!</blink> setup it Seleziona una'applicazione, inserisci una versione di destinazione, quindi invia per processare verso quella versione.<br /><blink>QUESTO CANGELLERA' PRIMA TUTTE LE TABELLE DELL'APPLICAZIONE</blink>
select one... setup it selezionane uno... select one... setup it selezionane uno...
select the default applications to which your users will have access setup it Seleziona l'applicazione predefinita alla quale i tuoi utenti avranno accesso select the default applications to which your users will have access setup it Seleziona l'applicazione predefinita alla quale i tuoi utenti avranno accesso
select the desired action(s) from the available choices setup it Seleziona, dalle scelte disponibili, le azioni desiderate select the desired action(s) from the available choices setup it Seleziona, dalle scelte disponibili, le azioni desiderate
@ -257,14 +257,14 @@ target version setup it Versione di destinazione
text entry setup it Voce di testo text entry setup it Voce di testo
the file setup it il file the file setup it il file
the tables setup it le tabelle the tables setup it le tabelle
there was a problem tring to connect to your ldap server. <br>please check your ldap server configuration setup it Si &egrave; verificato un problema nel contattare il tuo server LDAP. <br>Per favore controlla la configurazione del tuo server LDAP there was a problem tring to connect to your ldap server. <br />please check your ldap server configuration setup it Si &egrave; verificato un problema nel contattare il tuo server LDAP. <br />Per favore controlla la configurazione del tuo server LDAP
this might take a while, please wait ... setup it Questa operazione pu<70> richiedere del tempo, prego attendere... this might take a while, please wait ... setup it Questa operazione pu<70> richiedere del tempo, prego attendere...
this program will help you upgrade or install different languages for egroupware setup it Questo programma ti aiuter&agrave; ad aggiornare o ad installare lingue differenti per eGroupWare this program will help you upgrade or install different languages for egroupware setup it Questo programma ti aiuter&agrave; ad aggiornare o ad installare lingue differenti per eGroupWare
this section will help you export users and groups from egroupware's account tables into your ldap tree setup it Questa sezione ti aiuter&agrave; ad esportare utenti e gruppi dalle relative tabelle di eGroupWare nel tuo LDAP tree this section will help you export users and groups from egroupware's account tables into your ldap tree setup it Questa sezione ti aiuter&agrave; ad esportare utenti e gruppi dalle relative tabelle di eGroupWare nel tuo LDAP tree
this section will help you import users and groups from your ldap tree into egroupware's account tables setup it Questa sezione ti aiuter&agrave; ad importare utenti e gruppi dalle relative tabelle di eGroupWare nel tuo LDAP tree this section will help you import users and groups from your ldap tree into egroupware's account tables setup it Questa sezione ti aiuter&agrave; ad importare utenti e gruppi dalle relative tabelle di eGroupWare nel tuo LDAP tree
this stage is completed<br> setup it Questo passaggio &egrave; stato completato<br> this stage is completed<br /> setup it Questo passaggio &egrave; stato completato<br />
this will create 1 admin account and 3 demo accounts<br>the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br><b>!!!this will delete all existing accounts!!!</b><br> setup it Questo creer&agrave; 1 utente amministratore e 3 utenti di esempio<br>I nome utente/password sono: demo/guest, demo2/guest and demo3/guest.<br><b>!!!QUESTO CANCELLER&Agrave; TUTTI GLI UTENTI PREESISTENTI!!!</b><br> this will create 1 admin account and 3 demo accounts<br />the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!this will delete all existing accounts!!!</b><br /> setup it Questo creer&agrave; 1 utente amministratore e 3 utenti di esempio<br />I nome utente/password sono: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!QUESTO CANCELLER&Agrave; TUTTI GLI UTENTI PREESISTENTI!!!</b><br />
to setup 1 admin account and 3 demo accounts.<br><b>this will delete all existing accounts</b> setup it per predisporre 1 account amministratore e 3 account dimostrativi.<br><b>Questa operazione canceller&agrave; tutti gli account esistenti</b> to setup 1 admin account and 3 demo accounts.<br /><b>this will delete all existing accounts</b> setup it per predisporre 1 account amministratore e 3 account dimostrativi.<br /><b>Questa operazione canceller&agrave; tutti gli account esistenti</b>
two weeks setup it due settimane two weeks setup it due settimane
uninstall setup it disinstalla uninstall setup it disinstalla
uninstall all applications setup it disinstalla tutte le applicazioni uninstall all applications setup it disinstalla tutte le applicazioni
@ -281,11 +281,11 @@ warning! setup it Attenzione!
we will automatically update your tables/records to %1 setup it Aggiorner&ograve; automaticamente le tue tabelle/dati alla %1 we will automatically update your tables/records to %1 setup it Aggiorner&ograve; automaticamente le tue tabelle/dati alla %1
write config setup it Scrivi configurazione write config setup it Scrivi configurazione
yes setup it S<> yes setup it S<>
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup it Sembra che tu stia usando una versione pre-beta di eGroupWare.<br>Queste versioni non sono pi&ugrave; supportate, e non esiste un modo di aggiornarle direttamente con questo setup.<br> Puoi provare ad effettuare prima l'aggiornamento alla versione 0.9.10 (l'ultima versione a supportare gli aggiornamenti dalle pre-beta) <br>e poi aggiornare da l&igrave; usando questa versione. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup it Sembra che tu stia usando una versione pre-beta di eGroupWare.<br />Queste versioni non sono pi&ugrave; supportate, e non esiste un modo di aggiornarle direttamente con questo setup.<br /> Puoi provare ad effettuare prima l'aggiornamento alla versione 0.9.10 (l'ultima versione a supportare gli aggiornamenti dalle pre-beta) <br />e poi aggiornare da l&igrave; usando questa versione.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version 4.1.0 setup it Sembra che tu stia usando una vecchia versione di PHP <br>&Egrave raccomandabile che tu esegua un aggiornamento ad una versione recente. <br>Vecchie versioni di PHP potrebbero non far funzionare correttamenterun eGroupWare, o potrebbero non farlo funzionare per nulla. <br><br>Per favore aggiorna almeno alla versione 4.1.0 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version 4.1.0 setup it Sembra che tu stia usando una vecchia versione di PHP <br />&Egrave raccomandabile che tu esegua un aggiornamento ad una versione recente. <br />Vecchie versioni di PHP potrebbero non far funzionare correttamenterun eGroupWare, o potrebbero non farlo funzionare per nulla. <br /><br />Per favore aggiorna almeno alla versione 4.1.0
you appear to be running version %1 of egroupware setup it Sembra che tu sta utilizzando la versione %1 di eGroupWare you appear to be running version %1 of egroupware setup it Sembra che tu sta utilizzando la versione %1 di eGroupWare
you are ready for this stage, but this stage is not yet written.<br> setup it Sei pronto per questo passaggio, ma questa procedura non &egrave; ancora stata scritta.<br> you are ready for this stage, but this stage is not yet written.<br /> setup it Sei pronto per questo passaggio, ma questa procedura non &egrave; ancora stata scritta.<br />
you do not have any languages installed. please install one now <br> setup it Non hai nessuna lingua installata. Per favore installane una adesso.<br> you do not have any languages installed. please install one now <br /> setup it Non hai nessuna lingua installata. Per favore installane una adesso.<br />
you must enter a username for the admin setup it Devi inserire un nome utente per l'amministratore you must enter a username for the admin setup it Devi inserire un nome utente per l'amministratore
you should either uninstall and then reinstall it, or attempt manual repairs setup it Dovresti disinstallare e poi reinstallare, oppure tentare riparazioni manuali you should either uninstall and then reinstall it, or attempt manual repairs setup it Dovresti disinstallare e poi reinstallare, oppure tentare riparazioni manuali
your applications are current setup it Le tue applicazioni sono aggiornate your applications are current setup it Le tue applicazioni sono aggiornate

View File

@ -2,12 +2,12 @@
%1 is %2%3 !!! setup iw %1 הנו %2%3 %1 is %2%3 !!! setup iw %1 הנו %2%3
(searching accounts and changing passwords) setup iw (מחפש חשבונות ומשנה סיסמאות) (searching accounts and changing passwords) setup iw (מחפש חשבונות ומשנה סיסמאות)
*** do not update your database via setup, as the update might be interrupted by the max_execution_time, which leaves your db in an unrecoverable state (your data is lost) !!! setup iw אין לעדכן את בסיס הנתונים בעזרת הגדרה, *** do not update your database via setup, as the update might be interrupted by the max_execution_time, which leaves your db in an unrecoverable state (your data is lost) !!! setup iw אין לעדכן את בסיס הנתונים בעזרת הגדרה,
<br>(יתכן שייגמר זמן הרצה המירבי ובסיס הנתונים ישאר במצב שאין ממנו חזרה (הנתונים יאבדו <br />(יתכן שייגמר זמן הרצה המירבי ובסיס הנתונים ישאר במצב שאין ממנו חזרה (הנתונים יאבדו
*** you have to do the changes manualy in your php.ini (usualy in /etc on linux) in order to get egw fully working !!! setup iw (Linux-ב /etc-בדרך כלל ב) php.ini-יש לבצע את השינוים ידנית ב *** you have to do the changes manualy in your php.ini (usualy in /etc on linux) in order to get egw fully working !!! setup iw (Linux-ב /etc-בדרך כלל ב) php.ini-יש לבצע את השינוים ידנית ב
<br>לעבוד בצורה שלמה eGW-כדי לגרום לך ש <br />לעבוד בצורה שלמה eGW-כדי לגרום לך ש
00 (disable) setup iw 00 (בטל/מומלץ) 00 (disable) setup iw 00 (בטל/מומלץ)
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup iw זה ייצור חשבון מנהל אחד ושלוש חשבונות דמו <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup iw זה ייצור חשבון מנהל אחד ושלוש חשבונות דמו
<br> demo/guest, demo2/guest and demo3/guest :שמות הכניסה / הסיסמאות הנם <br /> demo/guest, demo2/guest and demo3/guest :שמות הכניסה / הסיסמאות הנם
accounts existing setup iw החשבונות קיימות accounts existing setup iw החשבונות קיימות
actions setup iw פעולות actions setup iw פעולות
add a domain setup iw הוסף דומיין add a domain setup iw הוסף דומיין
@ -52,20 +52,20 @@ available version setup iw גירסה זמינה
back to the previous screen setup iw חזרה למסך הקודם back to the previous screen setup iw חזרה למסך הקודם
back to user login setup iw חזרה לכניסת המשתמש back to user login setup iw חזרה לכניסת המשתמש
backupwarn setup iw .אבל אנו ממליצים בחום שתגבה את הנתונים שלך במקרה שהסקריפט גורם נזק לנתונים backupwarn setup iw .אבל אנו ממליצים בחום שתגבה את הנתונים שלך במקרה שהסקריפט גורם נזק לנתונים
<br>.סקריפטים אוטומטים אלה יכולים להרוס את הנתונים שלך בקלות. נא לגבות לפני שתמשיך הלאה <br />.סקריפטים אוטומטים אלה יכולים להרוס את הנתונים שלך בקלות. נא לגבות לפני שתמשיך הלאה
because an application it depends upon was upgraded setup iw מכיוון שיישום בו הוא תלוי שודרג because an application it depends upon was upgraded setup iw מכיוון שיישום בו הוא תלוי שודרג
because it depends upon setup iw -מכיוון שהוא תלוי ב because it depends upon setup iw -מכיוון שהוא תלוי ב
because it is not a user application, or access is controlled via acl setup iw מכיוון שהוא אינו יישום משתמש או שהגישה אלין נחסמה בעזרת רשימת גישה because it is not a user application, or access is controlled via acl setup iw מכיוון שהוא אינו יישום משתמש או שהגישה אלין נחסמה בעזרת רשימת גישה
because it requires manual table installation, <br>or the table definition was incorrect setup iw ,מיכוון שדרוש התקנת טבלאות ידנית because it requires manual table installation, <br />or the table definition was incorrect setup iw ,מיכוון שדרוש התקנת טבלאות ידנית
<br>או שהגדרת הטבלה החתה שגויה <br />או שהגדרת הטבלה החתה שגויה
because it was manually disabled setup iw מיכוון שהוא הוגדר לא פעיל ידנית because it was manually disabled setup iw מיכוון שהוא הוגדר לא פעיל ידנית
because of a failed upgrade or install setup iw בגלל התקנה או שדרוג כושל because of a failed upgrade or install setup iw בגלל התקנה או שדרוג כושל
because of a failed upgrade, or the database is newer than the installed version of this app setup iw בגלל שדרוג כושל, או שבסיס הנתונים חדש יותר מאפשר היישום המותקן because of a failed upgrade, or the database is newer than the installed version of this app setup iw בגלל שדרוג כושל, או שבסיס הנתונים חדש יותר מאפשר היישום המותקן
because the enable flag for this app is set to 0, or is undefined setup iw בגלל שדגל הפעיל של יישום זה הנו 0 או שאינו מוגדר כלל because the enable flag for this app is set to 0, or is undefined setup iw בגלל שדגל הפעיל של יישום זה הנו 0 או שאינו מוגדר כלל
bottom setup iw תחתית bottom setup iw תחתית
cancel setup iw בטל cancel setup iw בטל
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup iw .בגלל מגבלות של הרשאות header.inc.php לא מצליח ליצור את הקובץ cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup iw .בגלל מגבלות של הרשאות header.inc.php לא מצליח ליצור את הקובץ
<br>במקום זאת נסה ל%1 את הקובץ <br />במקום זאת נסה ל%1 את הקובץ
change system-charset setup iw שנה את סט התוים של המערכת change system-charset setup iw שנה את סט התוים של המערכת
charset setup iw סט התוים charset setup iw סט התוים
charset to convert to setup iw סט התוים אליו יש לעבור charset to convert to setup iw סט התוים אליו יש לעבור
@ -108,10 +108,10 @@ creating tables setup iw יוצר טבלאות
current system-charset setup iw סט תוים הנוכחי של המערכת current system-charset setup iw סט תוים הנוכחי של המערכת
current system-charset is %1, click %2here%3 to change it. setup iw .סט התוים הנוכחי של המערכת הנו %1, לחץ %2כאן%3 כדי לשנות אותו current system-charset is %1, click %2here%3 to change it. setup iw .סט התוים הנוכחי של המערכת הנו %1, לחץ %2כאן%3 כדי לשנות אותו
current version setup iw גירסא נוכחית current version setup iw גירסא נוכחית
currently installed languages: %1 <br> setup iw שפות מותקנות : %1 <br> currently installed languages: %1 <br /> setup iw שפות מותקנות : %1 <br />
database successfully converted from '%1' to '%2' setup iw בסיס הנתונים הומר בהצלחה מ-'%1' ל-'%2' database successfully converted from '%1' to '%2' setup iw בסיס הנתונים הומר בהצלחה מ-'%1' ל-'%2'
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup iw פורט תאריך/שעה<br> datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup iw פורט תאריך/שעה<br />
.לפני הגשת עמוד זה firewall-אם נה להגדיר נכון את חוקי ה<br> .לפני הגשת עמוד זה firewall-אם נה להגדיר נכון את חוקי ה<br />
(Port: 13 / Host: 129.6.15.28) (Port: 13 / Host: 129.6.15.28)
db host setup iw שרת בסיס הנתונים db host setup iw שרת בסיס הנתונים
db name setup iw שם בסיס הנתונים db name setup iw שם בסיס הנתונים
@ -149,16 +149,16 @@ enable for extra debug-messages setup iw נוספות debug לאפשר לקבל
enable ldap version 3 setup iw גירסה 3 LDAP לאפשר enable ldap version 3 setup iw גירסה 3 LDAP לאפשר
enable mcrypt setup iw MCrypt לאפשר enable mcrypt setup iw MCrypt לאפשר
enter some random text for app session encryption setup iw הכנס טקסט אקראי כלשהו עבור הצפנת יישומים enter some random text for app session encryption setup iw הכנס טקסט אקראי כלשהו עבור הצפנת יישומים
enter some random text for app_session <br>encryption (requires mcrypt) setup iw הכנס טקסט אקראי כלשהו עבור הצפנת יישומים enter some random text for app_session <br />encryption (requires mcrypt) setup iw הכנס טקסט אקראי כלשהו עבור הצפנת יישומים
<br>(MCrypt מחייב) <br />(MCrypt מחייב)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup iw .הכנס את המסלול המלא אל קבצים זמניים enter the full path for temporary files.<br />examples: /tmp, c:\temp setup iw .הכנס את המסלול המלא אל קבצים זמניים
<br>/tmp, C:\TEMP :דוגמאות <br />/tmp, C:\TEMP :דוגמאות
enter the full path for users and group files.<br>examples: /files, e:\files setup iw .הכנס את המסלול המלא אל קבצים של משתמשים וקבוצות enter the full path for users and group files.<br />examples: /files, e:\files setup iw .הכנס את המסלול המלא אל קבצים של משתמשים וקבוצות
<br>/files, E:\FILES :דוגמאות <br />/files, E:\FILES :דוגמאות
enter the hostname of the machine on which this server is running setup iw הכנס את שם המחשב בו שרת זה רץ enter the hostname of the machine on which this server is running setup iw הכנס את שם המחשב בו שרת זה רץ
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup iw eGroupWare של URL-הכנס את מיקום ה enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup iw eGroupWare של URL-הכנס את מיקום ה
<br>http://www.domain.com/egroupware &nbsp; או &nbsp; /egroupware :לדוגמא <br />http://www.domain.com/egroupware &nbsp; או &nbsp; /egroupware :לדוגמא
<br>ללא קו נטוי בסיום <br />ללא קו נטוי בסיום
enter the site password for peer servers setup iw הכנס סיסמה עבור שרתים חברים enter the site password for peer servers setup iw הכנס סיסמה עבור שרתים חברים
enter the site username for peer servers setup iw הכנס שם משתמש עבור שרתים חברים enter the site username for peer servers setup iw הכנס שם משתמש עבור שרתים חברים
enter the title for your site setup iw הכנס כותרת לאתר שלך enter the title for your site setup iw הכנס כותרת לאתר שלך
@ -192,7 +192,7 @@ however, the application is otherwise installed setup iw יחד עם זאת, ל
however, the application may still work setup iw יחד עם זאת, יתכן שהיישום יפעל however, the application may still work setup iw יחד עם זאת, יתכן שהיישום יפעל
if no acl records for user or any group the user is a member of setup iw -בחבר אם אין רשומות למשתמש או לכל קבוצה בה הוא חבר בשום רשימת גישה המשתמש יהיה חבר ב if no acl records for user or any group the user is a member of setup iw -בחבר אם אין רשומות למשתמש או לכל קבוצה בה הוא חבר בשום רשימת גישה המשתמש יהיה חבר ב
if safe_mode is turned on, egw is not able to change certain settings on runtime, nor can we load any not yet loaded module. setup iw רץ במצב בטוח eGroupWare אם if safe_mode is turned on, egw is not able to change certain settings on runtime, nor can we load any not yet loaded module. setup iw רץ במצב בטוח eGroupWare אם
<br>הוא לא יכול לשנות הגדרות מסוימות בשעת ריצה, וגם לא לטעון מודול שעדיין לא טעונים <br />הוא לא יכול לשנות הגדרות מסוימות בשעת ריצה, וגם לא לטעון מודול שעדיין לא טעונים
if the application has no defined tables, selecting upgrade should remedy the problem setup iw .ליישום אין כל טבלאות מוגדרות . בחירת עדכון אמורה לתקן בעיה זו if the application has no defined tables, selecting upgrade should remedy the problem setup iw .ליישום אין כל טבלאות מוגדרות . בחירת עדכון אמורה לתקן בעיה זו
if using ldap setup iw LDAP-אם משתמשים ב if using ldap setup iw LDAP-אם משתמשים ב
if using ldap, do you want to manage homedirectory and loginshell attributes? setup iw ?הכניסה shell האם ברצונך לנהל את מחיצות הבית ואת, LDAP-אם משתמשים ב if using ldap, do you want to manage homedirectory and loginshell attributes? setup iw ?הכניסה shell האם ברצונך לנהל את מחיצות הבית ואת, LDAP-אם משתמשים ב
@ -241,7 +241,7 @@ makesure setup iw וודא שבסיס הנתונים נוצר ושהרשאות
manage applications setup iw ניהול יישומים manage applications setup iw ניהול יישומים
manage languages setup iw ניהול שפות manage languages setup iw ניהול שפות
max_execution_time is set to less than 30 (seconds): egroupware sometimes needs a higher execution_time, expect occasional failures setup iw :(זמן הרצה מירבי נקבע כפחות מ-30 (שניות max_execution_time is set to less than 30 (seconds): egroupware sometimes needs a higher execution_time, expect occasional failures setup iw :(זמן הרצה מירבי נקבע כפחות מ-30 (שניות
<br>זקוק לזמן הרצה מירבי גבוה יותר. תצפה לבעיות לעתים eGroupWare <br />זקוק לזמן הרצה מירבי גבוה יותר. תצפה לבעיות לעתים eGroupWare
maximum account id (e.g. 65535 or 1000000) setup iw (זיהוי חשבון מירבי (למשל 65335 או 100000 maximum account id (e.g. 65535 or 1000000) setup iw (זיהוי חשבון מירבי (למשל 65335 או 100000
may be broken setup iw יתכן ששבור may be broken setup iw יתכן ששבור
mcrypt algorithm (default tripledes) setup iw (TripleDES ברירת מחדל) MCrypt אלגוריטם של mcrypt algorithm (default tripledes) setup iw (TripleDES ברירת מחדל) MCrypt אלגוריטם של
@ -271,7 +271,7 @@ no postgresql support found. disabling setup iw הופך ללא זמין .Postgr
no xml support found. disabling setup iw הופך ללא זמין .XML-לא נמצאה תמיכה ב no xml support found. disabling setup iw הופך ללא זמין .XML-לא נמצאה תמיכה ב
not setup iw אינו not setup iw אינו
not all mcrypt algorithms and modes work with egroupware. if you experience problems try switching it off. setup iw .eGroupWare עובדים עם MCrypt לא כל האלגוריטמים ומצבים של not all mcrypt algorithms and modes work with egroupware. if you experience problems try switching it off. setup iw .eGroupWare עובדים עם MCrypt לא כל האלגוריטמים ומצבים של
<br>אם אתה נתקל בבעיות, נסה לכבות אותו <br />אם אתה נתקל בבעיות, נסה לכבות אותו
not complete setup iw לא הושלם not complete setup iw לא הושלם
not completed setup iw לא הסתיים not completed setup iw לא הסתיים
not ready for this stage yet setup iw עדיין לא מוכן לשלב זה not ready for this stage yet setup iw עדיין לא מוכן לשלב זה
@ -331,9 +331,9 @@ safe_mode is turned on, which is generaly a good thing as it makes your install
sample configuration not found. using built in defaults setup iw לא מצאתי דוגמא של הגדרות, משתמשי בברירות מחדל המובנות sample configuration not found. using built in defaults setup iw לא מצאתי דוגמא של הגדרות, משתמשי בברירות מחדל המובנות
save setup iw שמור save setup iw שמור
save this text as contents of your header.inc.php setup iw header.inc.php-שמור טקסט זה כ save this text as contents of your header.inc.php setup iw header.inc.php-שמור טקסט זה כ
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup iw .בחר יישום, הכנס גירסת יעד, והגש כדי לטפל בגירסה זו select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup iw .בחר יישום, הכנס גירסת יעד, והגש כדי לטפל בגירסה זו
<br>אם לא תציין גרסה, רק טבלאות הבסיסיות יותקנו עבור היישום. <br />אם לא תציין גרסה, רק טבלאות הבסיסיות יותקנו עבור היישום.
<br><blink>זה קודם יפיל את כל טבלאות היישום</blink> <br /><blink>זה קודם יפיל את כל טבלאות היישום</blink>
select one... setup iw ...בחר אחד select one... setup iw ...בחר אחד
select the default applications to which your users will have access setup iw .בחר את יישומי ברירת המחדל אליהם למשתמשים שלך תהיה גישה select the default applications to which your users will have access setup iw .בחר את יישומי ברירת המחדל אליהם למשתמשים שלך תהיה גישה
select the desired action(s) from the available choices setup iw בחר את הפעולות המבוקשות מהבחירות select the desired action(s) from the available choices setup iw בחר את הפעולות המבוקשות מהבחירות
@ -389,9 +389,9 @@ the following applications need to be upgraded: setup iw :יש לשדרג את
the imap extension is needed by the two email apps (even if you use email with pop3 as protocoll). setup iw (pop3 נדרשת על ידי שני יישומי הדוא"ל (גם אם אתה משתמש בפרוטוקול דוא"ל LDAP הרחבת the imap extension is needed by the two email apps (even if you use email with pop3 as protocoll). setup iw (pop3 נדרשת על ידי שני יישומי הדוא"ל (גם אם אתה משתמש בפרוטוקול דוא"ל LDAP הרחבת
the table definition was correct, and the tables were installed setup iw הגדרות הטבלה נכונות, והטבלאות הותקנו the table definition was correct, and the tables were installed setup iw הגדרות הטבלה נכונות, והטבלאות הותקנו
the tables setup iw הטבלאות the tables setup iw הטבלאות
there was a problem trying to connect to your ldap server. <br> setup iw שלך LDAP-היתה בעיה בהתחברות לשרת ה there was a problem trying to connect to your ldap server. <br /> setup iw שלך LDAP-היתה בעיה בהתחברות לשרת ה
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup iw שלך LDAP-היתה בעיה בהתחברות לשרת ה there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup iw שלך LDAP-היתה בעיה בהתחברות לשרת ה
<br>שלך LDAP-נא לבדוק את הגדרות שרת ה <br />שלך LDAP-נא לבדוק את הגדרות שרת ה
this has to be outside the webservers document-root!!! setup iw !זה חייב להיות מחוץ לשורש המסמכים של שרת הווב this has to be outside the webservers document-root!!! setup iw !זה חייב להיות מחוץ לשורש המסמכים של שרת הווב
this might take a while, please wait ... setup iw ..זה עשוי להמשך זמן מה, המתן בבקשה this might take a while, please wait ... setup iw ..זה עשוי להמשך זמן מה, המתן בבקשה
this program will convert your database to a new system-charset. setup iw .תוכנית זו ימיר את בסיס הנתונים שלך לסט תווים מערכתי חדש this program will convert your database to a new system-charset. setup iw .תוכנית זו ימיר את בסיס הנתונים שלך לסט תווים מערכתי חדש
@ -399,9 +399,9 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup iw שלך LDAP-אל תוך עץ ה eGroupWare חלק זה יעזור לך לייצא משתמשים וקבוצות מטבלאות חשבון של this section will help you export users and groups from egroupware's account tables into your ldap tree setup iw שלך LDAP-אל תוך עץ ה eGroupWare חלק זה יעזור לך לייצא משתמשים וקבוצות מטבלאות חשבון של
this section will help you import users and groups from your ldap tree into egroupware's account tables setup iw .eGroupWare שלך אל תוך טבלאות חשבון של LDAP-חלק זה יעזור לך לייצא משתמשים וקבוצות מעץ ה this section will help you import users and groups from your ldap tree into egroupware's account tables setup iw .eGroupWare שלך אל תוך טבלאות חשבון של LDAP-חלק זה יעזור לך לייצא משתמשים וקבוצות מעץ ה
this section will help you setup your ldap accounts for use with egroupware setup iw eGroupWare-שלך לשימוש ב LDAP-חלק זה יעזור לך להגדיר את חשבונות ה this section will help you setup your ldap accounts for use with egroupware setup iw eGroupWare-שלך לשימוש ב LDAP-חלק זה יעזור לך להגדיר את חשבונות ה
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup iw .זה צריך להיות באורך של כ-30 בתים this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup iw .זה צריך להיות באורך של כ-30 בתים
<br>.הערה: ברירת המחדל חולל באופן אקראי <br />.הערה: ברירת המחדל חולל באופן אקראי
this stage is completed<br> setup iw שלב זה הסתיים<br> this stage is completed<br /> setup iw שלב זה הסתיים<br />
to a version it does not know about setup iw לגירסה לא מוכרת לו to a version it does not know about setup iw לגירסה לא מוכרת לו
to setup 1 admin account and 3 demo accounts. setup iw .כדי להגדיר חשבון ניהול אחד ושלושה חשבונות דמו to setup 1 admin account and 3 demo accounts. setup iw .כדי להגדיר חשבון ניהול אחד ושלושה חשבונות דמו
top setup iw עליון top setup iw עליון
@ -431,11 +431,11 @@ we will automatically update your tables/records to %1 setup iw נעדכן או
we will now run a series of tests, which may take a few minutes. click the link below to proceed. setup iw .נריץ כעת סדרת בדיקות, מה שעלול להארך זמן מה. הקלק על הקישור למטה להמשיך we will now run a series of tests, which may take a few minutes. click the link below to proceed. setup iw .נריץ כעת סדרת בדיקות, מה שעלול להארך זמן מה. הקלק על הקישור למטה להמשיך
welcome to the egroupware installation setup iw eGroupWare ברוך בואך אל התקנת welcome to the egroupware installation setup iw eGroupWare ברוך בואך אל התקנת
what type of sessions management do you want to use (php4 session management may perform better)? setup iw ?איזה סוג של ניהול מושבים ברצונך להשתמש what type of sessions management do you want to use (php4 session management may perform better)? setup iw ?איזה סוג של ניהול מושבים ברצונך להשתמש
<br>?(עשוי להיות בעל ביצועים טובים יותר php4 ניהול מושבים של) <br />?(עשוי להיות בעל ביצועים טובים יותר php4 ניהול מושבים של)
which database type do you want to use with egroupware? setup iw ?eGroupWare איזה סוג בסיס נתונים ברצונך להשמש עם which database type do you want to use with egroupware? setup iw ?eGroupWare איזה סוג בסיס נתונים ברצונך להשמש עם
would you like egroupware to cache the phpgw info array ? setup iw ?phpgw יטמין את מערך המידע של eGroupWare-ברצונך ש would you like egroupware to cache the phpgw info array ? setup iw ?phpgw יטמין את מערך המידע של eGroupWare-ברצונך ש
would you like egroupware to check for a new version<br>when admins login ? setup iw יבדוק אם יש גרסה חדשה eGroupWare-ברצונך ש would you like egroupware to check for a new version<br />when admins login ? setup iw יבדוק אם יש גרסה חדשה eGroupWare-ברצונך ש
<br>כאשר מנהלים נכנסים למערכת <br />כאשר מנהלים נכנסים למערכת
would you like to show each application's upgrade status ? setup iw ?ברצונך הלציג את סטטוס העדכון של כל יישום would you like to show each application's upgrade status ? setup iw ?ברצונך הלציג את סטטוס העדכון של כל יישום
yes setup iw כן yes setup iw כן
you appear to be running version %1 of egroupware setup iw eGroupWare כנראה אתה מריץ גרסה %1 של you appear to be running version %1 of egroupware setup iw eGroupWare כנראה אתה מריץ גרסה %1 של
@ -448,14 +448,14 @@ you appear to have oracle support enabled setup iw מאפשרת Oracle-כנרא
you appear to have oracle v8 (oci) support enabled setup iw מאפשרת Oracle V8 (OCI)-כנראה שתמיכה ב you appear to have oracle v8 (oci) support enabled setup iw מאפשרת Oracle V8 (OCI)-כנראה שתמיכה ב
you appear to have postgresql support enabled setup iw מאפשרת PostgreSQL-כנראה שתמיכה ב you appear to have postgresql support enabled setup iw מאפשרת PostgreSQL-כנראה שתמיכה ב
you appear to have xml support enabled setup iw מאפשרת XML-כנראה שתמיכה ב you appear to have xml support enabled setup iw מאפשרת XML-כנראה שתמיכה ב
you are ready for this stage, but this stage is not yet written.<br> setup iw .אתה מוכן לשלב הזה, אבל השלב הזה עוד לא נכתב<br> you are ready for this stage, but this stage is not yet written.<br /> setup iw .אתה מוכן לשלב הזה, אבל השלב הזה עוד לא נכתב<br />
you didn't enter a config password for domain %1 setup iw לא הכנסת סיסמת קונפיגורציה עבור דומיין %1 you didn't enter a config password for domain %1 setup iw לא הכנסת סיסמת קונפיגורציה עבור דומיין %1
you didn't enter a config username for domain %1 setup iw לא הכנסתשם משתמש קונפיגורציה עבור דומיין %1 you didn't enter a config username for domain %1 setup iw לא הכנסתשם משתמש קונפיגורציה עבור דומיין %1
you didn't enter a header admin password setup iw לא הכנסת סיסמת ניהול כותרות you didn't enter a header admin password setup iw לא הכנסת סיסמת ניהול כותרות
you didn't enter a header admin username setup iw לא הכנסת שם משתמש ניהול כותרות you didn't enter a header admin username setup iw לא הכנסת שם משתמש ניהול כותרות
you do not have any languages installed. please install one now <br> setup iw אין שום שפה מותקנת. נא להתקין אחת כעת<br> you do not have any languages installed. please install one now <br /> setup iw אין שום שפה מותקנת. נא להתקין אחת כעת<br />
you have not created your header.inc.php yet!<br> you can create it now. setup iw !שלך header.inc.php-עוד לא יצרת את ה you have not created your header.inc.php yet!<br /> you can create it now. setup iw !שלך header.inc.php-עוד לא יצרת את ה
<br>אפשר ליצור כזה כעת <br />אפשר ליצור כזה כעת
you have successfully logged out setup iw יצאת מהמערכת בהצלחה you have successfully logged out setup iw יצאת מהמערכת בהצלחה
you must enter a username for the admin setup iw עליך להכניס שם משתמש למנהל you must enter a username for the admin setup iw עליך להכניס שם משתמש למנהל
you need to add some domains to your header.inc.php. setup iw .שלך header.inc.php-עליך להוסיף כמה דוניינים ל you need to add some domains to your header.inc.php. setup iw .שלך header.inc.php-עליך להוסיף כמה דוניינים ל
@ -469,9 +469,9 @@ your database is not working! setup iw !בסיס הנתונים שלך לא פו
your database is working, but you dont have any applications installed setup iw בסיס הנתונים שלך פועל, אבל לא מותקן שום יישום your database is working, but you dont have any applications installed setup iw בסיס הנתונים שלך פועל, אבל לא מותקן שום יישום
your header admin password is not set. please set it now! setup iw !סיסמה לניהול כותרות לא נקבע. אנא קבע אותו כעת your header admin password is not set. please set it now! setup iw !סיסמה לניהול כותרות לא נקבע. אנא קבע אותו כעת
your header.inc.php needs upgrading. setup iw .שלך זקוק לעדכון header.inc.php-קובץ ה your header.inc.php needs upgrading. setup iw .שלך זקוק לעדכון header.inc.php-קובץ ה
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup iw .שלך זקוק לעדכון header.inc.php-קובץ ה your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup iw .שלך זקוק לעדכון header.inc.php-קובץ ה
<br><blink><b class="msg">אזהרה!</b></blink> <br /><blink><b class="msg">אזהרה!</b></blink>
<br><b>!גבה את החומר</b> <br /><b>!גבה את החומר</b>
your tables are current setup iw הטבלאות שלך מעודכנות your tables are current setup iw הטבלאות שלך מעודכנות
your tables may be altered and you may lose data setup iw .יתכן שהתבלאות שלך ישתנו, ויתכן שתאבד נתומים your tables may be altered and you may lose data setup iw .יתכן שהתבלאות שלך ישתנו, ויתכן שתאבד נתומים
your tables will be dropped and you will lose data setup iw !הטבלאות שלך ייופלו ואתה תאבד נתונים your tables will be dropped and you will lose data setup iw !הטבלאות שלך ייופלו ואתה תאבד נתונים

View File

@ -21,15 +21,15 @@ at your request, this script is going to attempt to upgrade your old application
at your request, this script is going to attempt to upgrade your old tables to the new format setup ja <09>Ť<EFBFBD><C5A4>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5>򸽺ߤΥե<CEA5><D5A5><EFBFBD><EFBFBD>ޥåȤ˥<C8A4><CBA5>åץ<C3A5><D7A5><EFBFBD>ɤ<EFBFBD><C9A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD> at your request, this script is going to attempt to upgrade your old tables to the new format setup ja <09>Ť<EFBFBD><C5A4>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5>򸽺ߤΥե<CEA5><D5A5><EFBFBD><EFBFBD>ޥåȤ˥<C8A4><CBA5>åץ<C3A5><D7A5><EFBFBD>ɤ<EFBFBD><C9A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
at your request, this script is going to take the evil action of deleting your existing tables and re-creating them in the new format setup ja At your request, this script is going to take the evil action of deleting your existing tables and re-creating them in the new format at your request, this script is going to take the evil action of deleting your existing tables and re-creating them in the new format setup ja At your request, this script is going to take the evil action of deleting your existing tables and re-creating them in the new format
at your request, this script is going to take the evil action of uninstalling all your apps, which deletes your existing tables and data setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥢥󥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD><EFBFBD>ǡ<EFBFBD><C7A1>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5>ȥǡ<C8A5><C7A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD> at your request, this script is going to take the evil action of uninstalling all your apps, which deletes your existing tables and data setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥢥󥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD><EFBFBD>ǡ<EFBFBD><C7A1>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5>ȥǡ<C8A5><C7A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
attempt to use correct mimetype for ftp instead of default 'application/octet-stream' setup ja FTP <20><>MIME<4D><45><EFBFBD><EFBFBD><EFBFBD>פ<EFBFBD> &nbsp; 'application/octet-stream' &nbsp; <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><br><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>פ<EFBFBD><D7A4>Ȥ<EFBFBD> attempt to use correct mimetype for ftp instead of default 'application/octet-stream' setup ja FTP <20><>MIME<4D><45><EFBFBD><EFBFBD><EFBFBD>פ<EFBFBD> &nbsp; 'application/octet-stream' &nbsp; <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>פ<EFBFBD><D7A4>Ȥ<EFBFBD>
authentication / accounts setup ja ǧ<><C7A7>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ⱦ<EFBFBD><C8BE><EFBFBD> authentication / accounts setup ja ǧ<><C7A7>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ⱦ<EFBFBD><C8BE><EFBFBD>
auto create account records for authenticated users setup ja ǧ<>ڤ<EFBFBD><DAA4><EFBFBD><EFBFBD><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ưŪ<C6B0>˺<EFBFBD><CBBA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> auto create account records for authenticated users setup ja ǧ<>ڤ<EFBFBD><DAA4><EFBFBD><EFBFBD><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ưŪ<C6B0>˺<EFBFBD><CBBA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
auto-created user accounts expire setup ja <09><>ư<EFBFBD><C6B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6A1BC><EFBFBD><EFBFBD>ͭ<EFBFBD><CDAD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> auto-created user accounts expire setup ja <09><>ư<EFBFBD><C6B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6A1BC><EFBFBD><EFBFBD>ͭ<EFBFBD><CDAD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
available version setup ja <09>ǿ<EFBFBD><C7BF><EFBFBD><BR><3E>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> available version setup ja <09>ǿ<EFBFBD><C7BF><EFBFBD><BR><3E>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong> setup ja <br><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ν<EFBFBD><CEBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD><CAA4>Υǡ<CEA5><C7A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˲<EFBFBD><CBB2><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤä<DEA4><C3A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><u><3E>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>Хå<D0A5><C3A5><EFBFBD><EFBFBD>åפ򤪴<D7A4><F2A4AAB4><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD></u> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong> setup ja <br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ν<EFBFBD><CEBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD><CAA4>Υǡ<CEA5><C7A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˲<EFBFBD><CBB2><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤä<DEA4><C3A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><u><3E>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>Хå<D0A5><C3A5><EFBFBD><EFBFBD>åפ򤪴<D7A4><F2A4AAB4><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD></u>
because it depends upon setup ja <09><>ͳ<EFBFBD>ϼ<EFBFBD><CFBC>ΤȤ<CEA4><C8A4><EFBFBD><EFBFBD>Ǥ<EFBFBD> because it depends upon setup ja <09><>ͳ<EFBFBD>ϼ<EFBFBD><CFBC>ΤȤ<CEA4><C8A4><EFBFBD><EFBFBD>Ǥ<EFBFBD>
because it is not a user application, or access is controlled via acl setup ja <09><EFBFBD><E6A1BC><EFBFBD>Υ<EFBFBD><CEA5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥʤ<C7A4><CAA4><EFBFBD><EFBFBD><EFBFBD>ACL <20>ˤ<EFBFBD><CBA4>äƥ<C3A4><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¤<EFBFBD><C2A4>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD> because it is not a user application, or access is controlled via acl setup ja <09><EFBFBD><E6A1BC><EFBFBD>Υ<EFBFBD><CEA5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥʤ<C7A4><CAA4><EFBFBD><EFBFBD><EFBFBD>ACL <20>ˤ<EFBFBD><CBA4>äƥ<C3A4><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¤<EFBFBD><C2A4>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
because it requires manual table installation, <br>or the table definition was incorrect setup ja <09><>ư<EFBFBD>ǥơ<C7A5><C6A1>֥<EFBFBD><D6A5>򥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD><EBA4B9>ɬ<EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EBA4AB><br><3E>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD> because it requires manual table installation, <br />or the table definition was incorrect setup ja <09><>ư<EFBFBD>ǥơ<C7A5><C6A1>֥<EFBFBD><D6A5>򥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD><EBA4B9>ɬ<EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EBA4AB><br /><3E>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
because of a failed upgrade or install setup ja <09>ɲä⤷<C3A4><E2A4B7><EFBFBD>Ϲ<EFBFBD><CFB9><EFBFBD><EFBFBD>˼<EFBFBD><CBBC>Ԥ<EFBFBD><D4A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD> because of a failed upgrade or install setup ja <09>ɲä⤷<C3A4><E2A4B7><EFBFBD>Ϲ<EFBFBD><CFB9><EFBFBD><EFBFBD>˼<EFBFBD><CBBC>Ԥ<EFBFBD><D4A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
because of a failed upgrade, or the database is newer than the installed version of this app setup ja <09>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>١<EFBFBD><D9A1><EFBFBD><EFBFBD>ΥС<CEA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󤬤<EFBFBD><F3A4ACA4>Υ<EFBFBD><CEA5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ư<EFBFBD><C6B0><EFBFBD><EFBFBD>ǽ<EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E2BFB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1A1A2><EFBFBD><EFBFBD><EFBFBD>˼<EFBFBD><CBBC>Ԥ<EFBFBD><D4A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD> because of a failed upgrade, or the database is newer than the installed version of this app setup ja <09>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>١<EFBFBD><D9A1><EFBFBD><EFBFBD>ΥС<CEA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󤬤<EFBFBD><F3A4ACA4>Υ<EFBFBD><CEA5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ư<EFBFBD><C6B0><EFBFBD><EFBFBD>ǽ<EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E2BFB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1A1A2><EFBFBD><EFBFBD><EFBFBD>˼<EFBFBD><CBBC>Ԥ<EFBFBD><D4A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
because the enable flag for this app is set to 0, or is undefined setup ja <09><><EFBFBD>Υ<EFBFBD><CEA5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѳ<EFBFBD>ǽ<EFBFBD>ȤʤäƤ<C3A4><C6A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD> because the enable flag for this app is set to 0, or is undefined setup ja <09><><EFBFBD>Υ<EFBFBD><CEA5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѳ<EFBFBD>ǽ<EFBFBD>ȤʤäƤ<C3A4><C6A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
@ -48,7 +48,7 @@ create setup ja
create database setup ja <09>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>١<EFBFBD><D9A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD> create database setup ja <09>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>١<EFBFBD><D9A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
created setup ja <09><><EFBFBD><EFBFBD> created setup ja <09><><EFBFBD><EFBFBD>
creating tables setup ja <09>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD> creating tables setup ja <09>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
currently installed languages: %1 <br> setup ja <09><><EFBFBD>ߤθ<DFA4><CEB8><EFBFBD>: %1 <br> currently installed languages: %1 <br /> setup ja <09><><EFBFBD>ߤθ<DFA4><CEB8><EFBFBD>: %1 <br />
current version setup ja <09><><EFBFBD>ߤ<EFBFBD><BR><3E>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> current version setup ja <09><><EFBFBD>ߤ<EFBFBD><BR><3E>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
delete all my tables and data setup ja <09><><EFBFBD>٤ƤΥơ<CEA5><C6A1>֥<EFBFBD><D6A5>ȥǡ<C8A5><C7A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD> delete all my tables and data setup ja <09><><EFBFBD>٤ƤΥơ<CEA5><C6A1>֥<EFBFBD><D6A5>ȥǡ<C8A5><C7A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD>
delete all old languages and install new ones setup ja <09><><EFBFBD>ߤθ<DFA4><CEB8><EFBFBD><EFBFBD>򤹤٤ƺ<D9A4><C6BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><C6A1><EFBFBD><EFBFBD>򤷤<EFBFBD><F2A4B7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD><EBA4B9> delete all old languages and install new ones setup ja <09><><EFBFBD>ߤθ<DFA4><CEB8><EFBFBD><EFBFBD>򤹤٤ƺ<D9A4><C6BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><C6A1><EFBFBD><EFBFBD>򤷤<EFBFBD><F2A4B7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD><EBA4B9>
@ -60,12 +60,12 @@ deregistered setup ja
details for admin account setup ja <09><><EFBFBD><EFBFBD><EFBFBD>ԥ<EFBFBD><D4A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥξܺپ<DCBA><D9BE><EFBFBD> details for admin account setup ja <09><><EFBFBD><EFBFBD><EFBFBD>ԥ<EFBFBD><D4A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥξܺپ<DCBA><D9BE><EFBFBD>
domain setup ja <09>ɥᥤ<C9A5><E1A5A4> domain setup ja <09>ɥᥤ<C9A5><E1A5A4>
edit current configuration setup ja <09>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD> edit current configuration setup ja <09>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD>
enter some random text for app session <br>encryption (requires mcrypt) setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥻥å<F3A5BBA5><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ź沽<C5B9>Τ<EFBFBD><CEA4><EFBFBD><EFBFBD><EFBFBD><br>Ǥ<>եƥ<D5A5><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(mcrypt <20><>ɬ<EFBFBD><C9AC>) enter some random text for app session <br />encryption (requires mcrypt) setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥻥å<F3A5BBA5><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ź沽<C5B9>Τ<EFBFBD><CEA4><EFBFBD><EFBFBD><EFBFBD><br /<>եƥ<D5A5><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(mcrypt <20><>ɬ<EFBFBD><C9AC>)
enter some random text for app session encryption setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥻥å<F3A5BBA5><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ź沽<C5B9>Τ<EFBFBD><CEA4><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD>եƥ<D5A5><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> enter some random text for app session encryption setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥻥å<F3A5BBA5><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ź沽<C5B9>Τ<EFBFBD><CEA4><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD>եƥ<D5A5><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
enter the full path for temporary files.<br>Examples: /tmp, c:\temp setup ja <09>ƥ<EFBFBD><C6A5>ݥ<EFBFBD><DDA5><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʥե<CAA5><D5A5>ѥ<EFBFBD><D1A5><EFBFBD><br><3E>㡧/tmp <20><> C:\TEMP <20>ʤ<EFBFBD> enter the full path for temporary files.<br />Examples: /tmp, c:\temp setup ja <09>ƥ<EFBFBD><C6A5>ݥ<EFBFBD><DDA5><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʥե<CAA5><D5A5>ѥ<EFBFBD><D1A5><EFBFBD><br /><3E>㡧/tmp <20><> C:\TEMP <20>ʤ<EFBFBD>
enter the full path for users and group files.<br>examples: /files, e:\files setup ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ͡<DEA5><CDA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¸<EFBFBD><C2B8><EFBFBD>ʥե<CAA5><D5A5>ѥ<EFBFBD><D1A5><EFBFBD><br><3E>㡧/files <20><> E:\FILES <20>ʤ<EFBFBD> enter the full path for users and group files.<br />examples: /files, e:\files setup ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ͡<DEA5><CDA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¸<EFBFBD><C2B8><EFBFBD>ʥե<CAA5><D5A5>ѥ<EFBFBD><D1A5><EFBFBD><br /><3E>㡧/files <20><> E:\FILES <20>ʤ<EFBFBD>
enter the hostname of the machine on which this server is running setup ja eGroupWare <20><>ư<EFBFBD><EFBFBD><EEA4B9><EFBFBD>ۥ<EFBFBD><DBA5><EFBFBD>̾ enter the hostname of the machine on which this server is running setup ja eGroupWare <20><>ư<EFBFBD><EFBFBD><EEA4B9><EFBFBD>ۥ<EFBFBD><DBA5><EFBFBD>̾
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup ja eGroupWare <20><> URL<BR><3E>㡧http://www.itheart.com/egroupware &nbsp; <20><> &nbsp; /egroupware <20>ʤ<EFBFBD><BR><b><3E>Ǹ<EFBFBD><C7B8>ϥ<EFBFBD><CFA5><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD><CAA4><EFBFBD><EFBFBD><EFBFBD></b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup ja eGroupWare <20><> URL<BR><3E>㡧http://www.itheart.com/egroupware &nbsp; <20><> &nbsp; /egroupware <20>ʤ<EFBFBD><BR><b><3E>Ǹ<EFBFBD><C7B8>ϥ<EFBFBD><CFA5><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD><CAA4><EFBFBD><EFBFBD><EFBFBD></b>
enter the site username for peer servers setup ja Ʊ<><C6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ФΥ<CEA5><E6A1BC>̾ enter the site username for peer servers setup ja Ʊ<><C6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ФΥ<CEA5><E6A1BC>̾
enter the site password for peer servers setup ja Ʊ<><C6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ФΥѥ<CEA5><D1A5><EFBFBD><EFA1BC> enter the site password for peer servers setup ja Ʊ<><C6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ФΥѥ<CEA5><D1A5><EFBFBD><EFA1BC>
enter the title for your site setup ja <09><><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD>̾ enter the title for your site setup ja <09><><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD>̾
@ -98,7 +98,7 @@ is disabled setup ja
ldap account import/export setup ja LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1><EFBFBD> ldap account import/export setup ja LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1><EFBFBD>
ldap accounts configuration setup ja LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ldap accounts configuration setup ja LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
ldap accounts context setup ja LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD> ldap accounts context setup ja LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD>
ldap default homedirectory prefix (e.g. /home for /home/username) setup ja <09><><EFBFBD><EFBFBD><EFBFBD>Υۡ<CEA5><DBA1><EFBFBD><EFBFBD>ǥ<EFBFBD><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>ץ<EFBFBD><D7A5>ե<EFBFBD><D5A5>å<EFBFBD><C3A5><EFBFBD><br> &nbsp; &nbsp; (<28>㡧/home <20>ʤ<EFBFBD><CAA4><EFBFBD> /home/uername <20>Ȥʤ<C8A4><CAA4>ޤ<EFBFBD>) ldap default homedirectory prefix (e.g. /home for /home/username) setup ja <09><><EFBFBD><EFBFBD><EFBFBD>Υۡ<CEA5><DBA1><EFBFBD><EFBFBD>ǥ<EFBFBD><C7A5><EFBFBD>ȥ<EFBFBD><C8A5>ץ<EFBFBD><D7A5>ե<EFBFBD><D5A5>å<EFBFBD><C3A5><EFBFBD><br /> &nbsp; &nbsp; (<28>㡧/home <20>ʤ<EFBFBD><CAA4><EFBFBD> /home/uername <20>Ȥʤ<C8A4><CAA4>ޤ<EFBFBD>)
ldap default shell (e.g. /bin/bash) setup ja <09><><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD> &nbsp; (<28>㡧/bin/bash<73>ʤ<EFBFBD>) ldap default shell (e.g. /bin/bash) setup ja <09><><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD> &nbsp; (<28>㡧/bin/bash<73>ʤ<EFBFBD>)
ldap encryption type setup ja LDAP <20>Ź沽<C5B9><E6B2BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ldap encryption type setup ja LDAP <20>Ź沽<C5B9><E6B2BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
ldap export users setup ja LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>ȥ桼<C8A5><E6A1BC> ldap export users setup ja LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>ȥ桼<C8A5><E6A1BC>
@ -175,14 +175,14 @@ tables dropped setup ja
tables installed, unless there are errors printed above setup ja <09>򥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>顼ɽ<E9A1BC><C9BD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD><CAA4><EFBFBD><EFBFBD>д<EFBFBD>λ<EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD> tables installed, unless there are errors printed above setup ja <09>򥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>顼ɽ<E9A1BC><C9BD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD><CAA4><EFBFBD><EFBFBD>д<EFBFBD>λ<EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD>
tables upgraded setup ja <09>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5>򹹿<EFBFBD><F2B9B9BF><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD> tables upgraded setup ja <09>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5>򹹿<EFBFBD><F2B9B9BF><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
text entry setup ja <09>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> text entry setup ja <09>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
there was a problem tring to connect to your ldap server. <br>please check your LDAP server configuration setup ja There was a problem tring to connect to your LDAP server. <br>please check your LDAP server configuration there was a problem tring to connect to your ldap server. <br />please check your LDAP server configuration setup ja There was a problem tring to connect to your LDAP server. <br />please check your LDAP server configuration
the tables setup ja the tables the tables setup ja the tables
this program will help you upgrade or install different languages for eGroupWare setup ja eGroupWare <20>ǤΡ<C7A4><CEA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD> this program will help you upgrade or install different languages for eGroupWare setup ja eGroupWare <20>ǤΡ<C7A4><CEA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
this section will help you export users and groups from egroupware's account tables into your ldap tree setup ja This section will help you export users and groups from eGroupWare's account tables into your LDAP tree this section will help you export users and groups from egroupware's account tables into your ldap tree setup ja This section will help you export users and groups from eGroupWare's account tables into your LDAP tree
this section will help you import users and groups from your ldap tree into eGroupWare's account tables setup ja This section will help you import users and groups from your LDAP tree into eGroupWare's account tables this section will help you import users and groups from your ldap tree into eGroupWare's account tables setup ja This section will help you import users and groups from your LDAP tree into eGroupWare's account tables
this stage is completed<br> setup ja <09><><EFBFBD><EFBFBD><EFBFBD>ʳ<EFBFBD><CAB3>ϴ<EFBFBD>λ<EFBFBD><CEBB><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><br> this stage is completed<br /> setup ja <09><><EFBFBD><EFBFBD><EFBFBD>ʳ<EFBFBD><CAB3>ϴ<EFBFBD>λ<EFBFBD><CEBB><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><br />
this will create 1 admin account and 3 demo accounts<br>the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br><b>!!!THIS WILL DELETE ALL EXISTING ACCOUNTS!!!</b><br> setup ja <09><><EFBFBD>Ĥδ<C4A4><CEB4><EFBFBD><EFBFBD>ԥ<EFBFBD><D4A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥȣ<C8A4><C8A3>ĤΥǥ⥢<C7A5><E2A5A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ򥻥åȥ<C3A5><C8A5>åפ<C3A5><D7A4>ޤ<EFBFBD><DEA4><EFBFBD><br><3E>ǥ⥢<C7A5><E2A5A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȤΥ<CEA5><E6A1BC>̾<EFBFBD>ȥѥ<C8A5><D1A5><EFBFBD>ɤ<EFBFBD> demo/guest, demo2/guest, demo3/guest <20>Ǥ<EFBFBD><C7A4><EFBFBD><br><b><3E><><EFBFBD>ߤΥ<DFA4><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ򤹤٤ƺ<D9A4><C6BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4>Τ<EFBFBD><CEA4><EFBFBD><EFBFBD>դ<EFBFBD><D5A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b><br> this will create 1 admin account and 3 demo accounts<br />the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!THIS WILL DELETE ALL EXISTING ACCOUNTS!!!</b><br /> setup ja <09><><EFBFBD>Ĥδ<C4A4><CEB4><EFBFBD><EFBFBD>ԥ<EFBFBD><D4A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥȣ<C8A4><C8A3>ĤΥǥ⥢<C7A5><E2A5A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ򥻥åȥ<C3A5><C8A5>åפ<C3A5><D7A4>ޤ<EFBFBD><DEA4><EFBFBD><br /><3E>ǥ⥢<C7A5><E2A5A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȤΥ<CEA5><E6A1BC>̾<EFBFBD>ȥѥ<C8A5><D1A5><EFBFBD>ɤ<EFBFBD> demo/guest, demo2/guest, demo3/guest <20>Ǥ<EFBFBD><C7A4><EFBFBD><br /><b><3E><><EFBFBD>ߤΥ<DFA4><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ򤹤٤ƺ<D9A4><C6BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4>Τ<EFBFBD><CEA4><EFBFBD><EFBFBD>դ<EFBFBD><D5A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b><br />
to setup 1 admin account and 3 demo accounts.<br><b>this will delete all existing accounts</b> setup ja <09>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>Ĥδ<C4A4><CEB4><EFBFBD><EFBFBD>ԥ<EFBFBD><D4A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥȣ<C8A4><C8A3>ĤΥǥ⥢<C7A5><E2A5A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ򥻥åȥ<C3A5><C8A5>åפ<C3A5><D7A4>ޤ<EFBFBD><DEA4><EFBFBD><br><b><3E><><EFBFBD>ߤΥ<DFA4><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ򤹤٤ƺ<D9A4><C6BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4>Τ<EFBFBD><CEA4><EFBFBD><EFBFBD>դ<EFBFBD><D5A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b> to setup 1 admin account and 3 demo accounts.<br /><b>this will delete all existing accounts</b> setup ja <09>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>Ĥδ<C4A4><CEB4><EFBFBD><EFBFBD>ԥ<EFBFBD><D4A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥȣ<C8A4><C8A3>ĤΥǥ⥢<C7A5><E2A5A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ򥻥åȥ<C3A5><C8A5>åפ<C3A5><D7A4>ޤ<EFBFBD><DEA4><EFBFBD><br /><b><3E><><EFBFBD>ߤΥ<DFA4><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ򤹤٤ƺ<D9A4><C6BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4>Τ<EFBFBD><CEA4><EFBFBD><EFBFBD>դ<EFBFBD><D5A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b>
top setup ja <09><><EFBFBD><EFBFBD> top setup ja <09><><EFBFBD><EFBFBD>
two weeks setup ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> two weeks setup ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
uninstall all applications setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5>󥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD> uninstall all applications setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5>󥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD>
@ -195,15 +195,15 @@ use cookies to pass sessionid setup ja cookie
users choice setup ja <09><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD> users choice setup ja <09><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
version mismatch setup ja Version Mismatch version mismatch setup ja Version Mismatch
we will automatically update your tables/records to %1 setup ja <09><><EFBFBD>åȥ<C3A5><C8A5>åפϡ<D7A4>%1 <20>ѤΥơ<CEA5><C6A1>֥<EFBFBD><D6A5><EFBFBD><EFBFBD>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>˼<EFBFBD>ư<EFBFBD><C6B0><EFBFBD>åץ<C3A5><D7A5><EFBFBD>ɤ<EFBFBD><C9A4>ޤ<EFBFBD><DEA4><EFBFBD> we will automatically update your tables/records to %1 setup ja <09><><EFBFBD>åȥ<C3A5><C8A5>åפϡ<D7A4>%1 <20>ѤΥơ<CEA5><C6A1>֥<EFBFBD><D6A5><EFBFBD><EFBFBD>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>˼<EFBFBD>ư<EFBFBD><C6B0><EFBFBD>åץ<C3A5><D7A5><EFBFBD>ɤ<EFBFBD><C9A4>ޤ<EFBFBD><DEA4><EFBFBD>
would you like egroupware to check for a new version<br>when admins login ? setup ja <09><><EFBFBD><EFBFBD><EFBFBD>Ԥǥ<D4A4><C7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>eGroupWare<72>ΥС<CEA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD>Ԥ<EFBFBD> would you like egroupware to check for a new version<br />when admins login ? setup ja <09><><EFBFBD><EFBFBD><EFBFBD>Ԥǥ<D4A4><C7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>eGroupWare<72>ΥС<CEA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD>Ԥ<EFBFBD>
would you like egroupware to cache the phpgw info array ? setup ja eGroupWare <20>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>phpgw info <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4><EFBFBD> would you like egroupware to cache the phpgw info array ? setup ja eGroupWare <20>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>phpgw info <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4><EFBFBD>
would you like to show each application's upgrade status ? setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5>åץ<C3A5><D7A5><EFBFBD>ɾ<EFBFBD><C9BE><EFBFBD>ɽ<EFBFBD><C9BD> would you like to show each application's upgrade status ? setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5>åץ<C3A5><D7A5><EFBFBD>ɾ<EFBFBD><C9BE><EFBFBD>ɽ<EFBFBD><C9BD>
yes setup ja <09>Ϥ<EFBFBD> yes setup ja <09>Ϥ<EFBFBD>
you appear to be running an old version of PHP <br>It its recommend that you upgrade to a new version. <br>Older version of PHP might not run eGroupWare correctly, if at all. <br><br>Please upgrade to at least version 4.1.0 setup ja PHP<48>ΥС<CEA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󤬸Ť<F3A4ACB8><C5A4><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><br><3E>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥢥åפ򤪴<D7A4><F2A4AAB4><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><br><3E>Ť<EFBFBD><C5A4>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP <20>Ǥϡ<C7A4>eGroupWare <20>Τ<EFBFBD><CEA4>٤Ƥε<C6A4>ǽ<EFBFBD><C7BD><EFBFBD><EFBFBD><EFBFBD>Τ<EFBFBD>ư<EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><br><br>Ver 4.1.0 <20>ʹߤ˥С<CBA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥢥åפ<C3A5><D7A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> you appear to be running an old version of PHP <br />It its recommend that you upgrade to a new version. <br />Older version of PHP might not run eGroupWare correctly, if at all. <br /><br />Please upgrade to at least version 4.1.0 setup ja PHP<48>ΥС<CEA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󤬸Ť<F3A4ACB8><C5A4><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><br /><3E>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥢥åפ򤪴<D7A4><F2A4AAB4><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><br /><3E>Ť<EFBFBD><C5A4>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP <20>Ǥϡ<C7A4>eGroupWare <20>Τ<EFBFBD><CEA4>٤Ƥε<C6A4>ǽ<EFBFBD><C7BD><EFBFBD><EFBFBD><EFBFBD>Τ<EFBFBD>ư<EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><br /><br />Ver 4.1.0 <20>ʹߤ˥С<CBA5><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥢥åפ<C3A5><D7A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
You appear to be running a pre-beta version of eGroupWare.<br>These versions are no longer supported, and there is no upgrade path for them in setup.<br> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup ja You appear to be running a pre-beta version of eGroupWare.<br>These versions are no longer supported, and there is no upgrade path for them in setup.<br> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. You appear to be running a pre-beta version of eGroupWare.<br />These versions are no longer supported, and there is no upgrade path for them in setup.<br /> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup ja You appear to be running a pre-beta version of eGroupWare.<br />These versions are no longer supported, and there is no upgrade path for them in setup.<br /> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version.
you appear to be running version %1 of eGroupWare setup ja <09><><EFBFBD>ߡ<EFBFBD>eGroupWare Ver. %1 <20><>ư<EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD>Ȼפ<C8BB><D7A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD> you appear to be running version %1 of eGroupWare setup ja <09><><EFBFBD>ߡ<EFBFBD>eGroupWare Ver. %1 <20><>ư<EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD>Ȼפ<C8BB><D7A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
you are ready for this stage, but this stage is not yet written.<br> setup ja You are ready for this stage, but this stage is not yet written.<br> you are ready for this stage, but this stage is not yet written.<br /> setup ja You are ready for this stage, but this stage is not yet written.<br />
you do not have any languages installed. please install one now <br> setup ja <09>ɤθ<C9A4><CEB8><EFBFBD><EFBFBD>Ķ<EFBFBD><C4B6><EFBFBD><E2A4A2><EFBFBD>ޤ<EFBFBD><DEA4>󡣺<EFBFBD><F3A1A3BA><EFBFBD>Ĥθ<C4A4><CEB8><EFBFBD><EFBFBD>Ķ<EFBFBD><C4B6>򥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><br> you do not have any languages installed. please install one now <br /> setup ja <09>ɤθ<C9A4><CEB8><EFBFBD><EFBFBD>Ķ<EFBFBD><C4B6><EFBFBD><E2A4A2><EFBFBD>ޤ<EFBFBD><DEA4>󡣺<EFBFBD><F3A1A3BA><EFBFBD>Ĥθ<C4A4><CEB8><EFBFBD><EFBFBD>Ķ<EFBFBD><C4B6>򥤥󥹥ȡ<F3A5B9A5><C8A1><EFBFBD>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><br />
you must enter a username for the admin setup ja <09><EFBFBD><E6A1BC>ID<49><44><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> you must enter a username for the admin setup ja <09><EFBFBD><E6A1BC>ID<49><44><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
your applications are current setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5>󥹥ȡ<F3A5B9A5><C8A1><EFBFBD><EFBFBD>ϴ<EFBFBD>λ<EFBFBD><CEBB><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD> your applications are current setup ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5>󥹥ȡ<F3A5B9A5><C8A1><EFBFBD><EFBFBD>ϴ<EFBFBD>λ<EFBFBD><CEBB><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
your database does not exist setup ja <09>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>١<EFBFBD><D9A1><EFBFBD><EFBFBD><EFBFBD>¸<EFBFBD>ߤ<EFBFBD><DFA4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD> your database does not exist setup ja <09>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD>١<EFBFBD><D9A1><EFBFBD><EFBFBD><EFBFBD>¸<EFBFBD>ߤ<EFBFBD><DFA4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>

View File

@ -5,7 +5,7 @@
00 (disable) setup ko 00 ( <20>̻<EFBFBD><CCBB><EFBFBD> / <20><>õ ) 00 (disable) setup ko 00 ( <20>̻<EFBFBD><CCBB><EFBFBD> / <20><>õ )
13 (ntp) setup ko 13 (ntp) 13 (ntp) setup ko 13 (ntp)
80 (http) setup ko 80 (http) 80 (http) setup ko 80 (http)
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup ko <b><3E>̰<EFBFBD><CCB0><EFBFBD> 1<><31><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 3<><33><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4></b><br><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD>/<2F><>ȣ<EFBFBD><C8A3> demo/guest, demo2/guest, demo3/guest <20>Դϴ<D4B4> <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup ko <b><3E>̰<EFBFBD><CCB0><EFBFBD> 1<><31><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 3<><33><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4></b><br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD>/<2F><>ȣ<EFBFBD><C8A3> demo/guest, demo2/guest, demo3/guest <20>Դϴ<D4B4>
accounts existing setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> accounts existing setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
actions setup ko <09>׼<EFBFBD> actions setup ko <09>׼<EFBFBD>
add a domain setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>߰<EFBFBD> add a domain setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>߰<EFBFBD>
@ -49,18 +49,18 @@ auto-created user accounts expire setup ko
available version setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> available version setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
back to the previous screen setup ko <09><><EFBFBD><EFBFBD> ȭ<><C8AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ư<EFBFBD><C6B0><EFBFBD> back to the previous screen setup ko <09><><EFBFBD><EFBFBD> ȭ<><C8AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ư<EFBFBD><C6B0><EFBFBD>
back to user login setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ư<EFBFBD><C6B0><EFBFBD> back to user login setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ư<EFBFBD><C6B0><EFBFBD>
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong> setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ũ<EFBFBD><C5A9>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><E0B5B5> <20><><EFBFBD><EFBFBD><EFBFBD>͸<EFBFBD> <20>ջ<EFBFBD><D5BB><EFBFBD> <20><> <20>ֱ⶧<D6B1><E2B6A7><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <u><3E><><EFBFBD><EFBFBD><EFBFBD>ϱ<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD></u><3E>մϴ<D5B4><br><strong><3E><> <20>ڵ<EFBFBD>ȭ<EFBFBD><C8AD> <20><>ũ<EFBFBD><C5A9>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><EFBFBD>ͼս<CDBC><D5BD><EFBFBD> <20>Ͼ<CFBE><EEB3AF> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong> setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ũ<EFBFBD><C5A9>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><E0B5B5> <20><><EFBFBD><EFBFBD><EFBFBD>͸<EFBFBD> <20>ջ<EFBFBD><D5BB><EFBFBD> <20><> <20>ֱ⶧<D6B1><E2B6A7><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <u><3E><><EFBFBD><EFBFBD><EFBFBD>ϱ<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD></u><3E>մϴ<D5B4><br /><strong><3E><> <20>ڵ<EFBFBD>ȭ<EFBFBD><C8AD> <20><>ũ<EFBFBD><C5A9>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><EFBFBD>ͼս<CDBC><D5BD><EFBFBD> <20>Ͼ<CFBE><EEB3AF> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.</strong>
because an application it depends upon was upgraded setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ο<EFBFBD> <20>޷<EFBFBD><DEB7><EFBFBD><EFBFBD><EFBFBD> because an application it depends upon was upgraded setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ο<EFBFBD> <20>޷<EFBFBD><DEB7><EFBFBD><EFBFBD><EFBFBD>
because it depends upon setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> because it depends upon setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
because it is not a user application, or access is controlled via acl setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20>ƴϱ<CFB1><E2B6A7><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ACL<43><4C> <20><><EFBFBD>ؼ<EFBFBD> because it is not a user application, or access is controlled via acl setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20>ƴϱ<CFB1><E2B6A7><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ACL<43><4C> <20><><EFBFBD>ؼ<EFBFBD>
because it requires manual table installation, <br>or the table definition was incorrect setup ko <09>̴<EFBFBD> <20><><EFBFBD>̺<EFBFBD> <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ؾ<EFBFBD><D8BE>ϰų<CFB0>, <20><><EFBFBD>̺<EFBFBD> <20><><EFBFBD>ǰ<EFBFBD> Ʋ<>ȱ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4> because it requires manual table installation, <br />or the table definition was incorrect setup ko <09>̴<EFBFBD> <20><><EFBFBD>̺<EFBFBD> <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ؾ<EFBFBD><D8BE>ϰų<CFB0>, <20><><EFBFBD>̺<EFBFBD> <20><><EFBFBD>ǰ<EFBFBD> Ʋ<>ȱ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>
because it was manually disabled setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>߱<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4> because it was manually disabled setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>߱<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>
because of a failed upgrade or install setup ko <09><><EFBFBD>׷<EFBFBD><D7B7>̵峪 <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD><EFBFBD>߱<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4> because of a failed upgrade or install setup ko <09><><EFBFBD>׷<EFBFBD><D7B7>̵峪 <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD><EFBFBD>߱<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>
because of a failed upgrade, or the database is newer than the installed version of this app setup ko <09><><EFBFBD>׷<EFBFBD><D7B7>̵忡 <20><><EFBFBD><EFBFBD><EFBFBD>߰ų<DFB0>, <20><><EFBFBD><EFBFBD><EFBFBD>ͺ<EFBFBD><CDBA>̽<EFBFBD><CCBD><EFBFBD> <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4> because of a failed upgrade, or the database is newer than the installed version of this app setup ko <09><><EFBFBD>׷<EFBFBD><D7B7>̵忡 <20><><EFBFBD><EFBFBD><EFBFBD>߰ų<DFB0>, <20><><EFBFBD><EFBFBD><EFBFBD>ͺ<EFBFBD><CDBA>̽<EFBFBD><CCBD><EFBFBD> <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>
because the enable flag for this app is set to 0, or is undefined setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> Ȱ<><C8B0>ȭ<EFBFBD>÷<EFBFBD><C3B7>װ<EFBFBD> 0<><30><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE>ų<EFBFBD>, <20>ƿ<EFBFBD> <20><><EFBFBD>ǵ<EFBFBD><C7B5><EFBFBD> <20>ʾұ<CABE> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4> because the enable flag for this app is set to 0, or is undefined setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> Ȱ<><C8B0>ȭ<EFBFBD>÷<EFBFBD><C3B7>װ<EFBFBD> 0<><30><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE>ų<EFBFBD>, <20>ƿ<EFBFBD> <20><><EFBFBD>ǵ<EFBFBD><C7B5><EFBFBD> <20>ʾұ<CABE> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>
bottom setup ko <09>ϴ<EFBFBD> bottom setup ko <09>ϴ<EFBFBD>
cancel setup ko <09><><EFBFBD><EFBFBD> cancel setup ko <09><><EFBFBD><EFBFBD>
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><E2B6A7><EFBFBD><EFBFBD> header.inc.php<68><70> <20><><EFBFBD><EFBFBD><EFBFBD>Ҽ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>. <20><><EFBFBD><EFBFBD> %1 <20><><EFBFBD>Ϸ<EFBFBD> <20>Ҽ<EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD> cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><E2B6A7><EFBFBD><EFBFBD> header.inc.php<68><70> <20><><EFBFBD><EFBFBD><EFBFBD>Ҽ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>. <20><><EFBFBD><EFBFBD> %1 <20><><EFBFBD>Ϸ<EFBFBD> <20>Ҽ<EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>
change system-charset setup ko <09>ý<EFBFBD><C3BD><EFBFBD> <20><><EFBFBD>ڼ<EFBFBD> <20>ٲٱ<D9B2> change system-charset setup ko <09>ý<EFBFBD><C3BD><EFBFBD> <20><><EFBFBD>ڼ<EFBFBD> <20>ٲٱ<D9B2>
charset setup ko <09><><EFBFBD>ڼ<EFBFBD> charset setup ko <09><><EFBFBD>ڼ<EFBFBD>
charset to convert to setup ko <09><>ȯ<EFBFBD><C8AF> <20><><EFBFBD>ڼ<EFBFBD> charset to convert to setup ko <09><>ȯ<EFBFBD><C8AF> <20><><EFBFBD>ڼ<EFBFBD>
@ -103,9 +103,9 @@ creating tables setup ko
current system-charset setup ko <09><><EFBFBD><EFBFBD> <20>ý<EFBFBD><C3BD><EFBFBD> <20><><EFBFBD>ڼ<EFBFBD> current system-charset setup ko <09><><EFBFBD><EFBFBD> <20>ý<EFBFBD><C3BD><EFBFBD> <20><><EFBFBD>ڼ<EFBFBD>
current system-charset is %1, click %2here%3 to change it. setup ko <09><><EFBFBD><EFBFBD> <20>ý<EFBFBD><C3BD><EFBFBD> <20><><EFBFBD>ڼ<EFBFBD><DABC><EFBFBD> %1<>Դϴ<D4B4>. <20>ٲٽ÷<D9BD><C3B7><EFBFBD> %2<><32><EFBFBD><EFBFBD>%3<><33> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. current system-charset is %1, click %2here%3 to change it. setup ko <09><><EFBFBD><EFBFBD> <20>ý<EFBFBD><C3BD><EFBFBD> <20><><EFBFBD>ڼ<EFBFBD><DABC><EFBFBD> %1<>Դϴ<D4B4>. <20>ٲٽ÷<D9BD><C3B7><EFBFBD> %2<><32><EFBFBD><EFBFBD>%3<><33> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
current version setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> current version setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
currently installed languages: %1 <br> setup ko <09><><EFBFBD><EFBFBD> <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD>: %1 <br> currently installed languages: %1 <br /> setup ko <09><><EFBFBD><EFBFBD> <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD>: %1 <br />
database successfully converted from '%1' to '%2' setup ko <09><><EFBFBD><EFBFBD><EFBFBD>ͺ<EFBFBD><CDBA>̽<EFBFBD><CCBD><EFBFBD> '%1'<27><><EFBFBD><EFBFBD> '%2'<27><><EFBFBD><EFBFBD> <20><>ȯ<EFBFBD><C8AF> <20><><EFBFBD><EFBFBD><EFBFBD>߽<EFBFBD><DFBD>ϴ<EFBFBD>. database successfully converted from '%1' to '%2' setup ko <09><><EFBFBD><EFBFBD><EFBFBD>ͺ<EFBFBD><CDBA>̽<EFBFBD><CCBD><EFBFBD> '%1'<27><><EFBFBD><EFBFBD> '%2'<27><><EFBFBD><EFBFBD> <20><>ȯ<EFBFBD><C8AF> <20><><EFBFBD><EFBFBD><EFBFBD>߽<EFBFBD><DFBD>ϴ<EFBFBD>.
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup ko <09><>¥<EFBFBD>ð<EFBFBD> <20><>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4><br> <20><><EFBFBD><EFBFBD> 13<31><33> <20><>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><EFBFBD>ϽŴٸ<C5B4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ȭ<EFBFBD><C8AD> <20><>å<EFBFBD><C3A5> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻð<CFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(submit)<29><> <20>ּ<EFBFBD><D6BC><EFBFBD>.<br>(<28><>Ʈ:13 / ȣ<><C8A3>Ʈ:129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup ko <09><>¥<EFBFBD>ð<EFBFBD> <20><>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4><br /> <20><><EFBFBD><EFBFBD> 13<31><33> <20><>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><EFBFBD>ϽŴٸ<C5B4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ȭ<EFBFBD><C8AD> <20><>å<EFBFBD><C3A5> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻð<CFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(submit)<29><> <20>ּ<EFBFBD><D6BC><EFBFBD>.<br />(<28><>Ʈ:13 / ȣ<><C8A3>Ʈ:129.6.15.28)
db host setup ko DB ȣ<><C8A3>Ʈ db host setup ko DB ȣ<><C8A3>Ʈ
db name setup ko DB <20≯<EFBFBD> db name setup ko DB <20≯<EFBFBD>
db password setup ko DB <20><>ȣ db password setup ko DB <20><>ȣ
@ -142,11 +142,11 @@ enable for extra debug-messages setup ko
enable ldap version 3 setup ko LDAP Version 3 Ȱ<><C8B0>ȭ enable ldap version 3 setup ko LDAP Version 3 Ȱ<><C8B0>ȭ
enable mcrypt setup ko MCrypt Ȱ<><C8B0>ȭ enable mcrypt setup ko MCrypt Ȱ<><C8B0>ȭ
enter some random text for app session encryption setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1> <20><><EFBFBD><EFBFBD> <20><>ȣȭ<C8A3><C8AD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ڿ<EFBFBD> <20>Է<EFBFBD> enter some random text for app session encryption setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1> <20><><EFBFBD><EFBFBD> <20><>ȣȭ<C8A3><C8AD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ڿ<EFBFBD> <20>Է<EFBFBD>
enter some random text for app_session <br>encryption (requires mcrypt) setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1> <20><><EFBFBD><EFBFBD> <20><>ȣȭ<C8A3><C8AD> <br><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>ڿ<EFBFBD><DABF><EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD> (mcrypt <20>ʿ<EFBFBD>) enter some random text for app_session <br />encryption (requires mcrypt) setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1> <20><><EFBFBD><EFBFBD> <20><>ȣȭ<C8A3><C8AD> <br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>ڿ<EFBFBD><DABF><EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD> (mcrypt <20>ʿ<EFBFBD>)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup ko <09>ӽ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ѱ<EFBFBD><D1B0>θ<EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD>.<br><3E><>: /tmp, C:\TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup ko <09>ӽ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ѱ<EFBFBD><D1B0>θ<EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD>.<br /><3E><>: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup ko <09><><EFBFBD><EFBFBD><EFBFBD>ڿ<EFBFBD> <20>׷<EFBFBD><D7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ѱ<EFBFBD><D1B0>θ<EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD>. <br><3E><>: /files, E:\FILES enter the full path for users and group files.<br />examples: /files, e:\files setup ko <09><><EFBFBD><EFBFBD><EFBFBD>ڿ<EFBFBD> <20>׷<EFBFBD><D7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ѱ<EFBFBD><D1B0>θ<EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD>. <br /><3E><>: /files, E:\FILES
enter the hostname of the machine on which this server is running setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ǰ<EFBFBD> <20>ִ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ȣ<><C8A3>Ʈ <20≯<EFBFBD><CCB8><EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD> enter the hostname of the machine on which this server is running setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ǰ<EFBFBD> <20>ִ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ȣ<><C8A3>Ʈ <20≯<EFBFBD><CCB8><EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD>
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup ko eGroupWare<72><65> URL<52><4C> <20>Է<EFBFBD><br><3E><>: http://domain.com/egroupware &nbsp;<3B>̳<EFBFBD> &nbsp/egroupware<br><b><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(/)<29><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʰ<EFBFBD> <20>ϼ<EFBFBD><CFBC><EFBFBD></b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup ko eGroupWare<72><65> URL<52><4C> <20>Է<EFBFBD><br /><3E><>: http://domain.com/egroupware &nbsp;<3B>̳<EFBFBD> &nbsp/egroupware<br /><b><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(/)<29><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʰ<EFBFBD> <20>ϼ<EFBFBD><CFBC><EFBFBD></b>
enter the site password for peer servers setup ko <09>Ǿ<C7BE><EEBCAD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ<EFBFBD><C6AE>ȣ <20>Է<EFBFBD> enter the site password for peer servers setup ko <09>Ǿ<C7BE><EEBCAD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ<EFBFBD><C6AE>ȣ <20>Է<EFBFBD>
enter the site username for peer servers setup ko <09>Ǿ<C7BE><EEBCAD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ<EFBFBD><C6AE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD> <20>Է<EFBFBD> enter the site username for peer servers setup ko <09>Ǿ<C7BE><EEBCAD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ<EFBFBD><C6AE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD> <20>Է<EFBFBD>
enter the title for your site setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Է<EFBFBD> enter the title for your site setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Է<EFBFBD>
@ -318,7 +318,7 @@ safe_mode is turned on, which is generaly a good thing as it makes your install
sample configuration not found. using built in defaults setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ã<><C3A3><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>. <20><EFBFBD><E2BABB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ۼ<EFBFBD><DBBC>˴ϴ<CBB4> sample configuration not found. using built in defaults setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ã<><C3A3><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>. <20><EFBFBD><E2BABB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ۼ<EFBFBD><DBBC>˴ϴ<CBB4>
save setup ko <09><><EFBFBD><EFBFBD> save setup ko <09><><EFBFBD><EFBFBD>
save this text as contents of your header.inc.php setup ko <09><> <20>ؽ<EFBFBD>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> header.inc.php<68><70> <20><><EFBFBD><EFBFBD> save this text as contents of your header.inc.php setup ko <09><> <20>ؽ<EFBFBD>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> header.inc.php<68><70> <20><><EFBFBD><EFBFBD>
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(submit).<br><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ø<EFBFBD>, <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><20><><EFBFBD>̺<EFBFBD><CCBA><20><>ġ<EFBFBD>˴ϴ<CBB4>.<br><blink><3E><> <20>۾<EFBFBD><DBBE><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4></blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(submit).<br /><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ø<EFBFBD>, <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><20><><EFBFBD>̺<EFBFBD><CCBA><20><>ġ<EFBFBD>˴ϴ<CBB4>.<br /><blink><3E><> <20>۾<EFBFBD><DBBE><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4></blink>
select one... setup ko <09>ϳ<EFBFBD><CFB3><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>... select one... setup ko <09>ϳ<EFBFBD><CFB3><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>...
select the default applications to which your users will have access setup ko <09><><EFBFBD><EFBFBD><EFBFBD>ڰ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><EFBFBD><E2BABB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1> <20><><EFBFBD><EFBFBD> select the default applications to which your users will have access setup ko <09><><EFBFBD><EFBFBD><EFBFBD>ڰ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><EFBFBD><E2BABB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1> <20><><EFBFBD><EFBFBD>
select the desired action(s) from the available choices setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>õ<EFBFBD> <20>߿<EFBFBD><DFBF><EFBFBD> <20><><EFBFBD>ϴ<EFBFBD> <20>׼<EFBFBD><D7BC><EFBFBD> <20><><EFBFBD><EFBFBD> select the desired action(s) from the available choices setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>õ<EFBFBD> <20>߿<EFBFBD><DFBF><EFBFBD> <20><><EFBFBD>ϴ<EFBFBD> <20>׼<EFBFBD><D7BC><EFBFBD> <20><><EFBFBD><EFBFBD>
@ -376,8 +376,8 @@ the imap extension is needed by the two email apps (even if you use email with p
the mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets. setup ko mbstring Ȯ<><C8AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD>(UTF-8)<29>̳<EFBFBD> <20><>Ÿ <20><><EFBFBD>߹<EFBFBD><DFB9><EFBFBD>Ʈ-<2D><><EFBFBD>ڼ<EFBFBD><DABC><EFBFBD> <20>Ϻ<EFBFBD><CFBA><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴµ<CFB4> <20>ʿ<EFBFBD><CABF>մϴ<D5B4> the mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets. setup ko mbstring Ȯ<><C8AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD>(UTF-8)<29>̳<EFBFBD> <20><>Ÿ <20><><EFBFBD>߹<EFBFBD><DFB9><EFBFBD>Ʈ-<2D><><EFBFBD>ڼ<EFBFBD><DABC><EFBFBD> <20>Ϻ<EFBFBD><CFBA><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴµ<CFB4> <20>ʿ<EFBFBD><CABF>մϴ<D5B4>
the table definition was correct, and the tables were installed setup ko <09><><EFBFBD>̺<EFBFBD> <20><><EFBFBD>ǰ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD> <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD><EFBFBD><EFBFBD> <20><>ġ<EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD> the table definition was correct, and the tables were installed setup ko <09><><EFBFBD>̺<EFBFBD> <20><><EFBFBD>ǰ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD> <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD><EFBFBD><EFBFBD> <20><>ġ<EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>
the tables setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD>̺<EFBFBD> the tables setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD>̺<EFBFBD>
there was a problem trying to connect to your ldap server. <br> setup ko LDAP<41><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴµ<CFB4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.<br> there was a problem trying to connect to your ldap server. <br /> setup ko LDAP<41><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴµ<CFB4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.<br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup ko +* LDAP<41><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴµ<CFB4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.<br> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Ȯ<><C8AE><EFBFBD>غ<EFBFBD><D8BA><EFBFBD><EFBFBD><EFBFBD> there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup ko +* LDAP<41><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴµ<CFB4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.<br /> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Ȯ<><C8AE><EFBFBD>غ<EFBFBD><D8BA><EFBFBD><EFBFBD><EFBFBD>
this has to be outside the webservers document-root!!! setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> DocumentRoot <20>ܺο<DCBA> <20>־<EFBFBD><D6BE><EFBFBD> <20>մϴ<D5B4>!!! this has to be outside the webservers document-root!!! setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> DocumentRoot <20>ܺο<DCBA> <20>־<EFBFBD><D6BE><EFBFBD> <20>մϴ<D5B4>!!!
this might take a while, please wait ... setup ko <09><20>ð<EFBFBD><C3B0><EFBFBD> <20>ɸ<EFBFBD><C9B8>ϴ<EFBFBD>, <20><><EFBFBD>ø<EFBFBD> <20><><EFBFBD>ٸ<EFBFBD><D9B8><EFBFBD><EFBFBD><EFBFBD>... this might take a while, please wait ... setup ko <09><20>ð<EFBFBD><C3B0><EFBFBD> <20>ɸ<EFBFBD><C9B8>ϴ<EFBFBD>, <20><><EFBFBD>ø<EFBFBD> <20><><EFBFBD>ٸ<EFBFBD><D9B8><EFBFBD><EFBFBD><EFBFBD>...
this program will convert your database to a new system-charset. setup ko <09><> <20><><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ͺ<EFBFBD><CDBA>̽<EFBFBD><CCBD><EFBFBD> <20><> <20>ý<EFBFBD><C3BD><EFBFBD>-<2D><><EFBFBD>ڼ<EFBFBD><DABC><EFBFBD><EFBFBD><EFBFBD> <20><>ȯ<EFBFBD><C8AF><EFBFBD>ݴϴ<DDB4> this program will convert your database to a new system-charset. setup ko <09><> <20><><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ͺ<EFBFBD><CDBA>̽<EFBFBD><CCBD><EFBFBD> <20><> <20>ý<EFBFBD><C3BD><EFBFBD>-<2D><><EFBFBD>ڼ<EFBFBD><DABC><EFBFBD><EFBFBD><EFBFBD> <20><>ȯ<EFBFBD><C8AF><EFBFBD>ݴϴ<DDB4>
@ -385,8 +385,8 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> eGroupWare<72><65> <20><><EFBFBD><EFBFBD><EFBFBD>ڿ<EFBFBD> <20>׷<EFBFBD><D7B7><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> LDAP Ʈ<><C6AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ݴϴ<DDB4> this section will help you export users and groups from egroupware's account tables into your ldap tree setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> eGroupWare<72><65> <20><><EFBFBD><EFBFBD><EFBFBD>ڿ<EFBFBD> <20>׷<EFBFBD><D7B7><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> LDAP Ʈ<><C6AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ݴϴ<DDB4>
this section will help you import users and groups from your ldap tree into egroupware's account tables setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> LDAP Ʈ<><C6AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ڿ<EFBFBD> <20>׷<EFBFBD><D7B7><EFBFBD><EFBFBD><EFBFBD> eGroupWare<72><65> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ݴϴ<DDB4> this section will help you import users and groups from your ldap tree into egroupware's account tables setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> LDAP Ʈ<><C6AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ڿ<EFBFBD> <20>׷<EFBFBD><D7B7><EFBFBD><EFBFBD><EFBFBD> eGroupWare<72><65> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ݴϴ<DDB4>
this section will help you setup your ldap accounts for use with egroupware setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> eGroupWare<72><65> <20>Բ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴµ<CFB4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ݴϴ<DDB4>. this section will help you setup your ldap accounts for use with egroupware setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> eGroupWare<72><65> <20>Բ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> LDAP <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴµ<CFB4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ݴϴ<DDB4>.
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup ko 30 <20><><EFBFBD><EFBFBD>Ʈ <20><><EFBFBD>ܿ<EFBFBD><DCBF><EFBFBD> <20>մϴ<D5B4>.<br> <20><><EFBFBD><EFBFBD>: <20><EFBFBD><E2BABB><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ƹ<EFBFBD><C6B9><EFBFBD><EFBFBD>̳<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>˴ϴ<CBB4> this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup ko 30 <20><><EFBFBD><EFBFBD>Ʈ <20><><EFBFBD>ܿ<EFBFBD><DCBF><EFBFBD> <20>մϴ<D5B4>.<br /> <20><><EFBFBD><EFBFBD>: <20><EFBFBD><E2BABB><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ƹ<EFBFBD><C6B9><EFBFBD><EFBFBD>̳<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>˴ϴ<CBB4>
this stage is completed<br> setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Ϸ<EFBFBD><CFB7><EFBFBD><br> this stage is completed<br /> setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Ϸ<EFBFBD><CFB7><EFBFBD><br />
to a version it does not know about setup ko <09><> <20>˼<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> to a version it does not know about setup ko <09><> <20>˼<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
to setup 1 admin account and 3 demo accounts. setup ko 1<><31><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 3<><33><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> to setup 1 admin account and 3 demo accounts. setup ko 1<><31><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 3<><33><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
top setup ko <09>ֻ<EFBFBD><D6BB><EFBFBD> top setup ko <09>ֻ<EFBFBD><D6BB><EFBFBD>
@ -422,13 +422,13 @@ which database type do you want to use with egroupware? setup ko eGroupWare
world readable setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> world readable setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
world writable setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> world writable setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
would you like egroupware to cache the phpgw info array ? setup ko eGroupWare<72><65> phpgw info <20><EFBFBD><E8BFAD> ij<><C4B3><EFBFBD>ϱ<EFBFBD> <20><><EFBFBD>Ͻʴϱ<CAB4>? would you like egroupware to cache the phpgw info array ? setup ko eGroupWare<72><65> phpgw info <20><EFBFBD><E8BFAD> ij<><C4B3><EFBFBD>ϱ<EFBFBD> <20><><EFBFBD>Ͻʴϱ<CAB4>?
would you like egroupware to check for a new version<br>when admins login ? setup ko <09><><EFBFBD><EFBFBD><EFBFBD>ڰ<EFBFBD> <20>α<EFBFBD><CEB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <br> eGroupWare <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Ȯ<><C8AE><EFBFBD>ұ<EFBFBD><D2B1><EFBFBD>? would you like egroupware to check for a new version<br />when admins login ? setup ko <09><><EFBFBD><EFBFBD><EFBFBD>ڰ<EFBFBD> <20>α<EFBFBD><CEB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <br /> eGroupWare <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Ȯ<><C8AE><EFBFBD>ұ<EFBFBD><D2B1><EFBFBD>?
would you like to show each application's upgrade status ? setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20><><EFBFBD>¸<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ٱ<EFBFBD><D9B1><EFBFBD>? would you like to show each application's upgrade status ? setup ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20><><EFBFBD>¸<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ٱ<EFBFBD><D9B1><EFBFBD>?
writable by the webserver setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> writable by the webserver setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
write config setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> write config setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
yes setup ko <09><> yes setup ko <09><>
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup ko eGroupWare <20><>Ÿ<EFBFBD><C5B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻð<CFBD> <20><><EFBFBD>ʴϴ<CAB4>.<br><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>̻<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD><CCB5><EFBFBD> <20><><EFBFBD>ε<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD><br> <20><><EFBFBD><EFBFBD> 0.9.10 <20><><EFBFBD><EFBFBD>(<28><>Ÿ<EFBFBD><C5B8><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)<29><><EFBFBD><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20>Ͻð<CFBD><br><3E><> <20>Ŀ<EFBFBD> <20>ֽ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20>ϼ<EFBFBD><CFBC><EFBFBD>. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup ko eGroupWare <20><>Ÿ<EFBFBD><C5B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻð<CFBD> <20><><EFBFBD>ʴϴ<CAB4>.<br /><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>̻<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD><CCB5><EFBFBD> <20><><EFBFBD>ε<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD><br /> <20><><EFBFBD><EFBFBD> 0.9.10 <20><><EFBFBD><EFBFBD>(<28><>Ÿ<EFBFBD><C5B8><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)<29><><EFBFBD><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20>Ͻð<CFBD><br /><3E><> <20>Ŀ<EFBFBD> <20>ֽ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20>ϼ<EFBFBD><CFBC><EFBFBD>.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup ko PHP<48><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD><br><3E><><EFBFBD>ο<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20>Ͻñ<CFBD> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4>.<br><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP<48><50> eGroupWare<72><65> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʽ<EFBFBD><CABD>ϴ<EFBFBD><br><br><3E><><EFBFBD> %1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>δ<EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20><><EFBFBD>ּž<D6BC> <20>մϴ<D5B4>. you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup ko PHP<48><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD><br /><3E><><EFBFBD>ο<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20>Ͻñ<CFBD> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4>.<br /><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP<48><50> eGroupWare<72><65> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʽ<EFBFBD><CABD>ϴ<EFBFBD><br /><br /><3E><><EFBFBD> %1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>δ<EFBFBD> <20><><EFBFBD>׷<EFBFBD><D7B7>̵<EFBFBD> <20><><EFBFBD>ּž<D6BC> <20>մϴ<D5B4>.
you appear to be running version %1 of egroupware setup ko eGroupWare <20><><EFBFBD><EFBFBD> %1<><31> <20><><EFBFBD><EFBFBD><EFBFBD>ϰ<EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD> you appear to be running version %1 of egroupware setup ko eGroupWare <20><><EFBFBD><EFBFBD> %1<><31> <20><><EFBFBD><EFBFBD><EFBFBD>ϰ<EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup ko PHP<48><50><EFBFBD><EFBFBD> 4.1.0 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϰ<EFBFBD> <20><><EFBFBD>ʴϴ<CAB4>. eGroupWare<72><65> 4.1.0 <20>̳<EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʿ<EFBFBD><CABF>մϴ<D5B4> you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup ko PHP<48><50><EFBFBD><EFBFBD> 4.1.0 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϰ<EFBFBD> <20><><EFBFBD>ʴϴ<CAB4>. eGroupWare<72><65> 4.1.0 <20>̳<EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʿ<EFBFBD><CABF>մϴ<D5B4>
you appear to be using php3. disabling php4 sessions support setup ko PHP3<50><33> <20><><EFBFBD><EFBFBD><EFBFBD>ϰ<EFBFBD> <20><><EFBFBD>ʴϴ<CAB4>. PHP4 <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>Ȱ<EFBFBD><C8B0>ȭ <20>մϴ<D5B4> you appear to be using php3. disabling php4 sessions support setup ko PHP3<50><33> <20><><EFBFBD><EFBFBD><EFBFBD>ϰ<EFBFBD> <20><><EFBFBD>ʴϴ<CAB4>. PHP4 <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>Ȱ<EFBFBD><C8B0>ȭ <20>մϴ<D5B4>
@ -439,13 +439,13 @@ you appear to have oracle support enabled setup ko Oracle
you appear to have oracle v8 (oci) support enabled setup ko Oracle V8 (OCI) <20><> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4>. you appear to have oracle v8 (oci) support enabled setup ko Oracle V8 (OCI) <20><> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4>.
you appear to have postgresql support enabled setup ko PostgreSQL<51><4C> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4>. you appear to have postgresql support enabled setup ko PostgreSQL<51><4C> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4>.
you appear to have xml support enabled setup ko XML<4D><4C> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4>. you appear to have xml support enabled setup ko XML<4D><4C> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4>.
you are ready for this stage, but this stage is not yet written.<br> setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>غ<EFBFBD><D8BA><EFBFBD> <20>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴٸ<CFB4>, <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ۼ<EFBFBD><DBBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>.<br> you are ready for this stage, but this stage is not yet written.<br /> setup ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>غ<EFBFBD><D8BA><EFBFBD> <20>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴٸ<CFB4>, <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ۼ<EFBFBD><DBBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>.<br />
you didn't enter a config password for domain %1 setup ko %1<><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȣ<EFBFBD><C8A3> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD> you didn't enter a config password for domain %1 setup ko %1<><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȣ<EFBFBD><C8A3> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>
you didn't enter a config username for domain %1 setup ko %1<><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD><CCB8><EFBFBD> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD> you didn't enter a config username for domain %1 setup ko %1<><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD><CCB8><EFBFBD> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>
you didn't enter a header admin password setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ȣ<EFBFBD><C8A3> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD> you didn't enter a header admin password setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ȣ<EFBFBD><C8A3> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>
you didn't enter a header admin username setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD><CCB8><EFBFBD> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>. you didn't enter a header admin username setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD><CCB8><EFBFBD> <20>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>.
you do not have any languages installed. please install one now <br> setup ko <09>ƹ<EFBFBD><C6B9><EFBFBD><EFBFBD><20><>ġ<EFBFBD>Ǿ<EFBFBD> <20><><EFBFBD><EFBFBD> <20>ʽ<EFBFBD><CABD>ϴ<EFBFBD>. <20>Ѱ<EFBFBD><D1B0><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>ġ<EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD><br> you do not have any languages installed. please install one now <br /> setup ko <09>ƹ<EFBFBD><C6B9><EFBFBD><EFBFBD><20><>ġ<EFBFBD>Ǿ<EFBFBD> <20><><EFBFBD><EFBFBD> <20>ʽ<EFBFBD><CABD>ϴ<EFBFBD>. <20>Ѱ<EFBFBD><D1B0><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>ġ<EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD><br />
you have not created your header.inc.php yet!<br> you can create it now. setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> header.inc.php<68><70> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>!<br><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>. you have not created your header.inc.php yet!<br /> you can create it now. setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> header.inc.php<68><70> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>!<br /><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>.
you have successfully logged out setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD> you have successfully logged out setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>
you must enter a username for the admin setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD><CCB8><EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD> you must enter a username for the admin setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD><CCB8><EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD>
you need to add some domains to your header.inc.php. setup ko header.inc.php <20><> <20><20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̵<EFBFBD> <20>߰<EFBFBD><DFB0>ϼž<CFBC> <20>մϴ<D5B4>. you need to add some domains to your header.inc.php. setup ko header.inc.php <20><> <20><20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̵<EFBFBD> <20>߰<EFBFBD><DFB0>ϼž<CFBC> <20>մϴ<D5B4>.
@ -460,7 +460,7 @@ your database is not working! setup ko
your database is working, but you dont have any applications installed setup ko <09><><EFBFBD><EFBFBD><EFBFBD>ͺ<EFBFBD><CDBA>̽<EFBFBD><CCBD><EFBFBD> <20>嵿<EFBFBD>մϴٸ<CFB4>, <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD> your database is working, but you dont have any applications installed setup ko <09><><EFBFBD><EFBFBD><EFBFBD>ͺ<EFBFBD><CDBA>̽<EFBFBD><CCBD><EFBFBD> <20>嵿<EFBFBD>մϴٸ<CFB4>, <20><>ġ<EFBFBD><C4A1> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>α׷<CEB1><D7B7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>
your header admin password is not set. please set it now! setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ȣ<EFBFBD><C8A3> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>. <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>! your header admin password is not set. please set it now! setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ȣ<EFBFBD><C8A3> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>. <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>!
your header.inc.php needs upgrading. setup ko header.inc.php <20><> <20><><EFBFBD>׷<EFBFBD><D7B7>̵尡 <20>ʿ<EFBFBD><CABF>մϴ<D5B4>. your header.inc.php needs upgrading. setup ko header.inc.php <20><> <20><><EFBFBD>׷<EFBFBD><D7B7>̵尡 <20>ʿ<EFBFBD><CABF>մϴ<D5B4>.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> header.inc.php <20><> <20><><EFBFBD>׷<EFBFBD><D7B7>̵尡 <20>ʿ<EFBFBD><CABF>մϴ<D5B4>.<br><blink><b class="msg"><3E><><EFBFBD><EFBFBD>!</b></blink><br><b><3E><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> header.inc.php <20><> <20><><EFBFBD>׷<EFBFBD><D7B7>̵尡 <20>ʿ<EFBFBD><CABF>մϴ<D5B4>.<br /><blink><b class="msg"><3E><><EFBFBD><EFBFBD>!</b></blink><br /><b><3E><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP<48><50> GD<47><44><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>. gd <20><><EFBFBD>̺귯<CCBA><EAB7AF><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1.8 <20>̳<EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ġ<EFBFBD>ϼž<CFBC> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʈ<EFBFBD><C6AE><EFBFBD><EFBFBD> <20><>ƮíƮ<C3AD><C6AE> <20><><EFBFBD>Ǽ<EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD> your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP<48><50> GD<47><44><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>. gd <20><><EFBFBD>̺귯<CCBA><EAB7AF><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1.8 <20>̳<EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ġ<EFBFBD>ϼž<CFBC> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʈ<EFBFBD><C6AE><EFBFBD><EFBFBD> <20><>ƮíƮ<C3AD><C6AE> <20><><EFBFBD>Ǽ<EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>
your tables are current setup ko <09><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <20>̻<EFBFBD> <20><><EFBFBD><EFBFBD> your tables are current setup ko <09><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <20>̻<EFBFBD> <20><><EFBFBD><EFBFBD>
your tables may be altered and you may lose data setup ko <09><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǹ鼭 <20><><EFBFBD><EFBFBD><EFBFBD>͸<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>. your tables may be altered and you may lose data setup ko <09><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǹ鼭 <20><><EFBFBD><EFBFBD><EFBFBD>͸<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.

View File

@ -6,7 +6,7 @@
00 (disable) setup nl 00 (deactiveer / aanbevolen) 00 (disable) setup nl 00 (deactiveer / aanbevolen)
13 (ntp) setup nl 13 (ntp) 13 (ntp) setup nl 13 (ntp)
80 (http) setup nl 80 (http) 80 (http) setup nl 80 (http)
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup nl <b>Dit maakt 1 beheerdersaccount en 3 demo accounts</b><br>De gebruikersnamen/wachtwoorden zijn: demo/guest, demo2/guest and demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup nl <b>Dit maakt 1 beheerdersaccount en 3 demo accounts</b><br />De gebruikersnamen/wachtwoorden zijn: demo/guest, demo2/guest and demo3/guest.
actions setup nl Acties actions setup nl Acties
add a domain setup nl Een domein toevoegen add a domain setup nl Een domein toevoegen
add auto-created users to this group ('default' will be attempted if this is empty.) setup nl Automatisch gecre<72>rde gebruikers toevoegen aan deze groep ('Standaard' wordt gebruikt als dit veld leeg is) add auto-created users to this group ('default' will be attempted if this is empty.) setup nl Automatisch gecre<72>rde gebruikers toevoegen aan deze groep ('Standaard' wordt gebruikt als dit veld leeg is)
@ -60,11 +60,11 @@ you appear to have oracle support enabled setup nl Oracle ondersteuning lijkt te
you appear to have oracle v8 (oci) support enabled setup nl Oracle V8 (OCI) ondersteuning lijkt te zijn geactiveerd. you appear to have oracle v8 (oci) support enabled setup nl Oracle V8 (OCI) ondersteuning lijkt te zijn geactiveerd.
you appear to have postgres-db support enabled setup nl Postgres-DB ondersteuning lijkt te zijn geactiveerd. you appear to have postgres-db support enabled setup nl Postgres-DB ondersteuning lijkt te zijn geactiveerd.
you appear to have xml support enabled setup nl XML ondersteuning lijkt te zijn geactiveerd. you appear to have xml support enabled setup nl XML ondersteuning lijkt te zijn geactiveerd.
you are ready for this stage, but this stage is not yet written.<br> setup nl U bent klaar voor dit stadium, maar dit stadium is nog niet weggeschreven.</br> you are ready for this stage, but this stage is not yet written.<br /> setup nl U bent klaar voor dit stadium, maar dit stadium is nog niet weggeschreven.</br>
you didn't enter a config password for domain %1 setup nl U heeft geen configuratie wachtwoord ingevoerd voor domein %1. you didn't enter a config password for domain %1 setup nl U heeft geen configuratie wachtwoord ingevoerd voor domein %1.
you didn't enter a header admin password setup nl U heeft geen header beheerderwachtwoord ingevoerd. you didn't enter a header admin password setup nl U heeft geen header beheerderwachtwoord ingevoerd.
you do not have any languages installed. please install one now <br> setup nl U heeft nog geen talen ge<67>nstalleerd. Doe dit a.u.b. nu.<br/> you do not have any languages installed. please install one now <br /> setup nl U heeft nog geen talen ge<67>nstalleerd. Doe dit a.u.b. nu.<br/>
you have not created your header.inc.php yet!<br> you can create it now. setup nl U heeft nog geen header.inc.php gemaakt! <br/> U kunt dit nu doen. you have not created your header.inc.php yet!<br /> you can create it now. setup nl U heeft nog geen header.inc.php gemaakt! <br/> U kunt dit nu doen.
you have successfully logged out setup nl U bent correct uitgelogd. you have successfully logged out setup nl U bent correct uitgelogd.
you must enter a username for the admin setup nl U moet een gebruikersnaam geven voor de beheerder you must enter a username for the admin setup nl U moet een gebruikersnaam geven voor de beheerder
you need to add some domains to your header.inc.php. setup nl U moet <20><>n of meerdere domeinen toevoegen aan uw header.inc.php. you need to add some domains to your header.inc.php. setup nl U moet <20><>n of meerdere domeinen toevoegen aan uw header.inc.php.
@ -78,7 +78,7 @@ your database is not working! setup nl U database werkt niet!
your database is working, but you dont have any applications installed setup nl U database werkt, maar u heeft nog geen toepassingen ge<67>nstalleerd. your database is working, but you dont have any applications installed setup nl U database werkt, maar u heeft nog geen toepassingen ge<67>nstalleerd.
your header admin password is not set. please set it now! setup nl Uw header-beheerderwachtwoord is niet ingesteld. Doe dit nu! your header admin password is not set. please set it now! setup nl Uw header-beheerderwachtwoord is niet ingesteld. Doe dit nu!
your header.inc.php needs upgrading. setup nl Het is noodzakelijk uw header.inc.php bij te werken your header.inc.php needs upgrading. setup nl Het is noodzakelijk uw header.inc.php bij te werken
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup nl Het is noodzakelijk uw header.inc.php bij te werken. <br> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup nl Het is noodzakelijk uw header.inc.php bij te werken. <br />
your tables are current setup nl Uw tabellen zijn actueel your tables are current setup nl Uw tabellen zijn actueel
your tables may be altered and you may lose data setup nl U tabellen kunnen gewijzigd worden en u kunt gegevens verliezen your tables may be altered and you may lose data setup nl U tabellen kunnen gewijzigd worden en u kunt gegevens verliezen
your tables will be dropped and you will lose data setup nl U tabellen worden verwijderd en alle gegevens gaan verloren !! your tables will be dropped and you will lose data setup nl U tabellen worden verwijderd en alle gegevens gaan verloren !!

View File

@ -1,5 +1,5 @@
(account deletion in sql only) setup pl (dotyczy tylko kont w SQL) (account deletion in sql only) setup pl (dotyczy tylko kont w SQL)
<br><center>import has been completed! click <a href="index.php">here</a> to return to setup </center> setup pl <br><center>Import has been completed! Click <a href="index.php">here</a> to return to setup </center> <br /><center>import has been completed! click <a href="index.php">here</a> to return to setup </center> setup pl <br /><center>Import has been completed! Click <a href="index.php">here</a> to return to setup </center>
actions setup pl Polecenia actions setup pl Polecenia
add auto-created users to this group ('default' will be attempted if this is empty.) setup pl Add auto-created users to this group ('Default' will be attempted if this is empty.) add auto-created users to this group ('default' will be attempted if this is empty.) setup pl Add auto-created users to this group ('Default' will be attempted if this is empty.)
admin first name setup pl Imi<6D> administratora admin first name setup pl Imi<6D> administratora
@ -28,10 +28,10 @@ authentication / accounts setup pl Uwierzytelnianie / Konta
auto create account records for authenticated users setup pl Automatycznie tw<74>rz zapisy kont dla uwierzytelnionych u<>ytkownik<69>w auto create account records for authenticated users setup pl Automatycznie tw<74>rz zapisy kont dla uwierzytelnionych u<>ytkownik<69>w
auto-created user accounts expire setup pl Utworzone automatycznie konta u<>ytkownik<69>w wygas<61>y auto-created user accounts expire setup pl Utworzone automatycznie konta u<>ytkownik<69>w wygas<61>y
available version setup pl Dost<73>pne wersje available version setup pl Dost<73>pne wersje
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong> setup pl but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong> setup pl but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong>
because it depends upon setup pl because it depends upon because it depends upon setup pl because it depends upon
because it is not a user application, or access is controlled via acl setup pl because it is not a user application, or access is controlled via acl because it is not a user application, or access is controlled via acl setup pl because it is not a user application, or access is controlled via acl
because it requires manual table installation, <br>or the table definition was incorrect setup pl because it requires manual table installation, <br>or the table definition was incorrect because it requires manual table installation, <br />or the table definition was incorrect setup pl because it requires manual table installation, <br />or the table definition was incorrect
because it was manually disabled setup pl because it was manually disabled because it was manually disabled setup pl because it was manually disabled
because of a failed upgrade or install setup pl because of a failed upgrade or install because of a failed upgrade or install setup pl because of a failed upgrade or install
because of a failed upgrade, or the database is newer than the installed version of this app setup pl because of a failed upgrade, or the database is newer than the installed version of this app because of a failed upgrade, or the database is newer than the installed version of this app setup pl because of a failed upgrade, or the database is newer than the installed version of this app
@ -50,7 +50,7 @@ create database setup pl Tworzenie bazy danych
create one now setup pl Create one now create one now setup pl Create one now
creating tables setup pl Tworzenie tabel creating tables setup pl Tworzenie tabel
current version setup pl Aktualna wersja current version setup pl Aktualna wersja
currently installed languages: %1 <br> setup pl Zainstalowane wersje j<>zykowe: %1 <br> currently installed languages: %1 <br /> setup pl Zainstalowane wersje j<>zykowe: %1 <br />
db root password setup pl Has<61>o root do bazy danych db root password setup pl Has<61>o root do bazy danych
db root username setup pl nazwa u<>ytkownika root bazy danych db root username setup pl nazwa u<>ytkownika root bazy danych
default file system space per user/group ? setup pl Domy<6D>lny rozmiar plik<69>w na u<>ytkownika/grup<75> ? default file system space per user/group ? setup pl Domy<6D>lny rozmiar plik<69>w na u<>ytkownika/grup<75> ?
@ -66,11 +66,11 @@ domain setup pl Ustawienia domeny
dont touch my data setup pl Nie dotykaj moich danych dont touch my data setup pl Nie dotykaj moich danych
edit current configuration setup pl Edytuj bie<69><65>c<EFBFBD> konfiguracj<63> edit current configuration setup pl Edytuj bie<69><65>c<EFBFBD> konfiguracj<63>
enter some random text for app session encryption setup pl Wprowad<61> losowy tekst dla zaszyfrowania sesji aplikacji enter some random text for app session encryption setup pl Wprowad<61> losowy tekst dla zaszyfrowania sesji aplikacji
enter some random text for app_session <br>encryption (requires mcrypt) setup pl Wprowad<61> losowy tekst dla zaszyfrowania <br>sesji aplikacji (wymaga mcrypt) enter some random text for app_session <br />encryption (requires mcrypt) setup pl Wprowad<61> losowy tekst dla zaszyfrowania <br />sesji aplikacji (wymaga mcrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup pl Podaj pe<70>n<EFBFBD> <20>cie<69>k<EFBFBD> do katalogu dla plik<69>w tymczasowych.<br>Na przyk<79>ad: /tmp, C:\TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup pl Podaj pe<70>n<EFBFBD> <20>cie<69>k<EFBFBD> do katalogu dla plik<69>w tymczasowych.<br />Na przyk<79>ad: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup pl Podaj pe<70>n<EFBFBD> <20>ie<69>k<EFBFBD> do plik<69>w u<>ytkownik<69>w i grup.<br>Na przyk<79>ad: /files, E:\FILES enter the full path for users and group files.<br />examples: /files, e:\files setup pl Podaj pe<70>n<EFBFBD> <20>ie<69>k<EFBFBD> do plik<69>w u<>ytkownik<69>w i grup.<br />Na przyk<79>ad: /files, E:\FILES
enter the hostname of the machine on which this server is running setup pl Podaj nazw<7A> komputera, na kt<6B>rym jest uruchomiony serwer enter the hostname of the machine on which this server is running setup pl Podaj nazw<7A> komputera, na kt<6B>rym jest uruchomiony serwer
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup pl Podaj URL do twojego portala eGroupWare's URL.<br>Na przyk<79>ad: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>Bez ko<6B>cz<63>cego ciacha (,,/'')</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup pl Podaj URL do twojego portala eGroupWare's URL.<br />Na przyk<79>ad: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>Bez ko<6B>cz<63>cego ciacha (,,/'')</b>
enter the site password for peer servers setup pl Wprowad<61> has<61>o serwisu dla serwer<65>w r<>wnorz<72>dnych (peer servers) enter the site password for peer servers setup pl Wprowad<61> has<61>o serwisu dla serwer<65>w r<>wnorz<72>dnych (peer servers)
enter the site username for peer servers setup pl Wprowad<61> nazw<7A> u<>ytkownika serwisu dla serwer<65>w r<>wnorz<72>dnych (peer servers) enter the site username for peer servers setup pl Wprowad<61> nazw<7A> u<>ytkownika serwisu dla serwer<65>w r<>wnorz<72>dnych (peer servers)
enter the title for your site setup pl Podaj nazw<7A> swojego portala (serwisu) enter the title for your site setup pl Podaj nazw<7A> swojego portala (serwisu)
@ -159,7 +159,7 @@ remove setup pl Usu
requires reinstall or manual repair setup pl Wymaga reinstalacji lub r<>cznej naprawy requires reinstall or manual repair setup pl Wymaga reinstalacji lub r<>cznej naprawy
requires upgrade setup pl Wymaga aktualizacji requires upgrade setup pl Wymaga aktualizacji
resolve setup pl Rozwi<77><69> resolve setup pl Rozwi<77><69>
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup pl Select an app, enter a target version, then submit to process to that version.<br>If you do not enter a version, only the baseline tables will be installed for the app.<br><blink>THIS WILL DROP ALL OF THE APPS' TABLES FIRST!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup pl Select an app, enter a target version, then submit to process to that version.<br />If you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>THIS WILL DROP ALL OF THE APPS' TABLES FIRST!</blink>
select the default applications to which your users will have access setup pl Select the default applications to which your users will have access select the default applications to which your users will have access setup pl Select the default applications to which your users will have access
select the desired action(s) from the available choices setup pl Wybierz z dost<73>pnych <20><>dane polecenie select the desired action(s) from the available choices setup pl Wybierz z dost<73>pnych <20><>dane polecenie
select to download file setup pl Select to download file select to download file setup pl Select to download file
@ -193,13 +193,13 @@ target version setup pl Wersja docelowa
text entry setup pl Wpisywanie tekstu text entry setup pl Wpisywanie tekstu
the table definition was correct, and the tables were installed setup pl Definicja tabel jest poprawna i tabele zosta<74>y zainstalowane the table definition was correct, and the tables were installed setup pl Definicja tabel jest poprawna i tabele zosta<74>y zainstalowane
the tables setup pl tabele the tables setup pl tabele
there was a problem tring to connect to your ldap server. <br>please check your ldap server configuration setup pl There was a problem tring to connect to your LDAP server. <br>please check your LDAP server configuration there was a problem tring to connect to your ldap server. <br />please check your ldap server configuration setup pl There was a problem tring to connect to your LDAP server. <br />please check your LDAP server configuration
this program will help you upgrade or install different languages for egroupware setup pl Ten program pomo<6D>e Ci zainstalowa<77> lub uaktualni<6E> wersje j<>zykowe eGroupWare this program will help you upgrade or install different languages for egroupware setup pl Ten program pomo<6D>e Ci zainstalowa<77> lub uaktualni<6E> wersje j<>zykowe eGroupWare
this section will help you export users and groups from egroupware's account tables into your ldap tree setup pl This section will help you export users and groups from eGroupWare's account tables into your LDAP tree this section will help you export users and groups from egroupware's account tables into your ldap tree setup pl This section will help you export users and groups from eGroupWare's account tables into your LDAP tree
this section will help you import users and groups from your ldap tree into egroupware's account tables setup pl This section will help you import users and groups from your LDAP tree into eGroupWare's account tables this section will help you import users and groups from your ldap tree into egroupware's account tables setup pl This section will help you import users and groups from your LDAP tree into eGroupWare's account tables
this stage is completed<br> setup pl Etap zako<6B>czony<br> this stage is completed<br /> setup pl Etap zako<6B>czony<br />
this will create 1 admin account and 3 demo accounts<br>the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br><b>!!!this will delete all existing accounts!!!</b><br> setup pl Zostanie utworzone jedno konto administratora i trzy konta demonstracyne<br>Nazwy u<>ytkownik<69>w/has<61>a: demo/guest, demo2/guest i demo3/guest.<br><b>UWAGA! Wszystkie istniej<65>ce konta zostan<61> usuni<6E>te!!!</b><br> this will create 1 admin account and 3 demo accounts<br />the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!this will delete all existing accounts!!!</b><br /> setup pl Zostanie utworzone jedno konto administratora i trzy konta demonstracyne<br />Nazwy u<>ytkownik<69>w/has<61>a: demo/guest, demo2/guest i demo3/guest.<br /><b>UWAGA! Wszystkie istniej<65>ce konta zostan<61> usuni<6E>te!!!</b><br />
to setup 1 admin account and 3 demo accounts.<br><b>this will delete all existing accounts</b> setup pl aby za<7A>o<EFBFBD>y<EFBFBD> jedno konto administracyjne i trzy konta demo.<br><b>Istniej<65>ce konta zostan<61> usuniete!</b> to setup 1 admin account and 3 demo accounts.<br /><b>this will delete all existing accounts</b> setup pl aby za<7A>o<EFBFBD>y<EFBFBD> jedno konto administracyjne i trzy konta demo.<br /><b>Istniej<65>ce konta zostan<61> usuniete!</b>
top setup pl U g<>ry top setup pl U g<>ry
translations added setup pl Dodano t<>umaczenia translations added setup pl Dodano t<>umaczenia
translations removed setup pl Usuni<6E>to t<>umaczenia translations removed setup pl Usuni<6E>to t<>umaczenia
@ -216,14 +216,14 @@ users choice setup pl Wyb
version mismatch setup pl Niezgodne wersje version mismatch setup pl Niezgodne wersje
we will automatically update your tables/records to %1 setup pl We will automatically update your tables/records to %1 we will automatically update your tables/records to %1 setup pl We will automatically update your tables/records to %1
would you like egroupware to cache the phpgw info array ? setup pl Would you like eGroupWare to cache the phpgw info array ? would you like egroupware to cache the phpgw info array ? setup pl Would you like eGroupWare to cache the phpgw info array ?
would you like egroupware to check for a new version<br>when admins login ? setup pl Chcesz sprawdza<7A> czy jest nowa wersja eGroupWare<br>gdy loguje si<73> administrator? would you like egroupware to check for a new version<br />when admins login ? setup pl Chcesz sprawdza<7A> czy jest nowa wersja eGroupWare<br />gdy loguje si<73> administrator?
would you like to show each application's upgrade status ? setup pl Would you like to show each application's upgrade status ? would you like to show each application's upgrade status ? setup pl Would you like to show each application's upgrade status ?
yes setup pl Tak yes setup pl Tak
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup pl You appear to be running a pre-beta version of eGroupWare.<br>These versions are no longer supported, and there is no upgrade path for them in setup.<br> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup pl You appear to be running a pre-beta version of eGroupWare.<br />These versions are no longer supported, and there is no upgrade path for them in setup.<br /> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version 4.1.0 setup pl You appear to be running an old version of PHP <br>It its recommend that you upgrade to a new version. <br>Older version of PHP might not run eGroupWare correctly, if at all. <br><br>Please upgrade to at least version 4.1.0 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version 4.1.0 setup pl You appear to be running an old version of PHP <br />It its recommend that you upgrade to a new version. <br />Older version of PHP might not run eGroupWare correctly, if at all. <br /><br />Please upgrade to at least version 4.1.0
you appear to be running version %1 of egroupware setup pl You appear to be running version %1 of eGroupWare you appear to be running version %1 of egroupware setup pl You appear to be running version %1 of eGroupWare
you are ready for this stage, but this stage is not yet written.<br> setup pl You are ready for this stage, but this stage is not yet written.<br> you are ready for this stage, but this stage is not yet written.<br /> setup pl You are ready for this stage, but this stage is not yet written.<br />
you do not have any languages installed. please install one now <br> setup pl You do not have any languages installed. Please install one now <br> you do not have any languages installed. please install one now <br /> setup pl You do not have any languages installed. Please install one now <br />
you must enter a username for the admin setup pl Musisz poda<64> nazw<7A> administratora you must enter a username for the admin setup pl Musisz poda<64> nazw<7A> administratora
you should either uninstall and then reinstall it, or attempt manual repairs setup pl You should either uninstall and then reinstall it, or attempt manual repairs you should either uninstall and then reinstall it, or attempt manual repairs setup pl You should either uninstall and then reinstall it, or attempt manual repairs
your applications are current setup pl Your applications are current your applications are current setup pl Your applications are current

View File

@ -5,7 +5,7 @@
00 (disable) setup pt-br 00 (desabilitado / recomendado) 00 (disable) setup pt-br 00 (desabilitado / recomendado)
13 (ntp) setup pt-br 13 (ntp) 13 (ntp) setup pt-br 13 (ntp)
80 (http) setup pt-br 80 (http) 80 (http) setup pt-br 80 (http)
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup pt-br <b>Isto ir<69> criar 1 conta de administrador e 3 contas demo</b><br>Os usu<73>rios/senhas s<>o: demo/guest, demo2/guest and demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup pt-br <b>Isto ir<69> criar 1 conta de administrador e 3 contas demo</b><br />Os usu<73>rios/senhas s<>o: demo/guest, demo2/guest and demo3/guest.
accounts existing setup pt-br Contas existentes accounts existing setup pt-br Contas existentes
actions setup pt-br A<><41>es actions setup pt-br A<><41>es
add a domain setup pt-br Adicionar um dom<6F>nio add a domain setup pt-br Adicionar um dom<6F>nio
@ -47,18 +47,18 @@ auto-created user accounts expire setup pt-br Usu
available version setup pt-br Vers<72>o Dispon<6F>vel available version setup pt-br Vers<72>o Dispon<6F>vel
back to the previous screen setup pt-br Voltar a tela anterior back to the previous screen setup pt-br Voltar a tela anterior
back to user login setup pt-br Voltar a tela de conex<65>o back to user login setup pt-br Voltar a tela de conex<65>o
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong> setup pt-br <09> <u>altamente recomend<6E>vel</u> fazer uma c<>pia de seguran<61>a das tabelas do banco de dados caso o script danifique seus dados. <br><strong>Estes scripts autom<6F>ticos podem destruir seus dados facilmente</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong> setup pt-br <09> <u>altamente recomend<6E>vel</u> fazer uma c<>pia de seguran<61>a das tabelas do banco de dados caso o script danifique seus dados. <br /><strong>Estes scripts autom<6F>ticos podem destruir seus dados facilmente</strong>
because an application it depends upon was upgraded setup pt-br Porque um aplicativo que ele depende foi atualizado because an application it depends upon was upgraded setup pt-br Porque um aplicativo que ele depende foi atualizado
because it depends upon setup pt-br pois depende de because it depends upon setup pt-br pois depende de
because it is not a user application, or access is controlled via acl setup pt-br porque n<>o <20> uma aplica<63><61>o de usu<73>rio ou o acesso <20> controlado atrav<61>s das regras de acesso because it is not a user application, or access is controlled via acl setup pt-br porque n<>o <20> uma aplica<63><61>o de usu<73>rio ou o acesso <20> controlado atrav<61>s das regras de acesso
because it requires manual table installation, <br>or the table definition was incorrect setup pt-br porque requer instala<6C><61>o das tabelas do banco de dados manualmente, <br>ou a defini<6E><69>o da tabela est<73> incorreta because it requires manual table installation, <br />or the table definition was incorrect setup pt-br porque requer instala<6C><61>o das tabelas do banco de dados manualmente, <br />ou a defini<6E><69>o da tabela est<73> incorreta
because it was manually disabled setup pt-br porque foi desabilitado manualmente because it was manually disabled setup pt-br porque foi desabilitado manualmente
because of a failed upgrade or install setup pt-br devido a uma falha na atualiza<7A><61>o ou instala<6C><61>o because of a failed upgrade or install setup pt-br devido a uma falha na atualiza<7A><61>o ou instala<6C><61>o
because of a failed upgrade, or the database is newer than the installed version of this app setup pt-br devido a uma falha na atualiza<7A><61>o, ou a base de dados <20> mais nova que a vers<72>o instalada desta aplica<63><61>o because of a failed upgrade, or the database is newer than the installed version of this app setup pt-br devido a uma falha na atualiza<7A><61>o, ou a base de dados <20> mais nova que a vers<72>o instalada desta aplica<63><61>o
because the enable flag for this app is set to 0, or is undefined setup pt-br porque o campo de habilita<74><61>o (flag) desta aplica<63><61>o est<73> definido como 0, ou est<73> indefinido because the enable flag for this app is set to 0, or is undefined setup pt-br porque o campo de habilita<74><61>o (flag) desta aplica<63><61>o est<73> definido como 0, ou est<73> indefinido
bottom setup pt-br Inferior bottom setup pt-br Inferior
cancel setup pt-br Cancelar cancel setup pt-br Cancelar
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup pt-br N<>o foi poss<73>vel criar o header.inc.php devido a restri<72><69>es no acesso ao arquivo.<br> Em vez disso voc<6F> deve %1 o arquivo. cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup pt-br N<>o foi poss<73>vel criar o header.inc.php devido a restri<72><69>es no acesso ao arquivo.<br /> Em vez disso voc<6F> deve %1 o arquivo.
change system-charset setup pt-br Trocar o Conjunto de Carcteres do Sistema change system-charset setup pt-br Trocar o Conjunto de Carcteres do Sistema
charset setup pt-br Conjunto de Car<61>cteres (iso-8859-1) charset setup pt-br Conjunto de Car<61>cteres (iso-8859-1)
charset to convert to setup pt-br Conjuto de Caracteres destino charset to convert to setup pt-br Conjuto de Caracteres destino
@ -100,9 +100,9 @@ creating tables setup pt-br Criando tabelas
current system-charset setup pt-br Conjunto de car<61>cteres atual no sistema current system-charset setup pt-br Conjunto de car<61>cteres atual no sistema
current system-charset is %1, click %2here%3 to change it. setup pt-br O conjunto de car<61>cteres atual <20> %1, clique %2aqui%3 para mud<75>-lo current system-charset is %1, click %2here%3 to change it. setup pt-br O conjunto de car<61>cteres atual <20> %1, clique %2aqui%3 para mud<75>-lo
current version setup pt-br Vers<72>o atual current version setup pt-br Vers<72>o atual
currently installed languages: %1 <br> setup pt-br Idiomas instalados atualmente: %1 <br> currently installed languages: %1 <br /> setup pt-br Idiomas instalados atualmente: %1 <br />
database successfully converted from '%1' to '%2' setup pt-br Convers<72>o bem sucedida do banco de dados de '%1' para '%2' database successfully converted from '%1' to '%2' setup pt-br Convers<72>o bem sucedida do banco de dados de '%1' para '%2'
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup pt-br Nota ntp <br> se estiver usando a porta 13, por favor configure as regras de acesso do seu firewall corretamente antes de enviar essa p<>gina <br> (port 13 / servidor 129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup pt-br Nota ntp <br /> se estiver usando a porta 13, por favor configure as regras de acesso do seu firewall corretamente antes de enviar essa p<>gina <br /> (port 13 / servidor 129.6.15.28)
db host setup pt-br Site do BD db host setup pt-br Site do BD
db name setup pt-br Nome do BD db name setup pt-br Nome do BD
db password setup pt-br Senha do BD db password setup pt-br Senha do BD
@ -139,13 +139,13 @@ enable for extra debug-messages setup pt-br Habilitar mensagens de depura
enable ldap version 3 setup pt-br Habilitar LDAP vers<72>o 3 enable ldap version 3 setup pt-br Habilitar LDAP vers<72>o 3
enable mcrypt setup pt-br Habilitar MCrypt enable mcrypt setup pt-br Habilitar MCrypt
enter some random text for app session encryption setup pt-br Digite algum texto aleat<61>rio para encripta<74><61>o de sess<73>o enter some random text for app session encryption setup pt-br Digite algum texto aleat<61>rio para encripta<74><61>o de sess<73>o
enter some random text for app_session <br>encryption (requires mcrypt) setup pt-br Digite um texto aleat<61>rio para a encripta<74><61>o de sess<73>o (requer MCrypt) enter some random text for app_session <br />encryption (requires mcrypt) setup pt-br Digite um texto aleat<61>rio para a encripta<74><61>o de sess<73>o (requer MCrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup pt-br Digite o caminho completo para arquivos tempor<6F>rios.<br>Exemplos: /tmp, C:TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup pt-br Digite o caminho completo para arquivos tempor<6F>rios.<br />Exemplos: /tmp, C:TEMP
enter the full path for temporary files.<br>examples: /tmp, c:temp setup pt-br Digite o caminho completo para arquivos tempor<6F>rios.<br>Ex.: /tmp, C:TEMP enter the full path for temporary files.<br />examples: /tmp, c:temp setup pt-br Digite o caminho completo para arquivos tempor<6F>rios.<br />Ex.: /tmp, C:TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup pt-br Digite o caminho completo para arquivos de usu<73>rios e grupos.<br>Exemplos: /files, E:FILES enter the full path for users and group files.<br />examples: /files, e:\files setup pt-br Digite o caminho completo para arquivos de usu<73>rios e grupos.<br />Exemplos: /files, E:FILES
enter the full path for users and group files.<br>examples: /files, e:files setup pt-br Digite o caminho completo para arquivos de usu<73>rios e grupos.<br>Ex.: /files, E:FILES enter the full path for users and group files.<br />examples: /files, e:files setup pt-br Digite o caminho completo para arquivos de usu<73>rios e grupos.<br />Ex.: /files, E:FILES
enter the hostname of the machine on which this server is running setup pt-br Digite o nome da m<>quina em que este servidor est<73> sendo executado enter the hostname of the machine on which this server is running setup pt-br Digite o nome da m<>quina em que este servidor est<73> sendo executado
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup pt-br Digite a URL do eGroupWare.<br>Ex.: http://www.dominio.com.br/egroupware &nbsp; ou &nbsp; /egroupware<br><b>Sem a barra final</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup pt-br Digite a URL do eGroupWare.<br />Ex.: http://www.dominio.com.br/egroupware &nbsp; ou &nbsp; /egroupware<br /><b>Sem a barra final</b>
enter the site password for peer servers setup pt-br Digite a senha do servidor para uso com servidores parceiros enter the site password for peer servers setup pt-br Digite a senha do servidor para uso com servidores parceiros
enter the site username for peer servers setup pt-br Digite o usu<73>rio do servidor para uso com servidores parceiros enter the site username for peer servers setup pt-br Digite o usu<73>rio do servidor para uso com servidores parceiros
enter the title for your site setup pt-br Digite o t<>tulo para o site enter the title for your site setup pt-br Digite o t<>tulo para o site
@ -319,7 +319,7 @@ safe_mode is turned on, which is generaly a good thing as it makes your install
sample configuration not found. using built in defaults setup pt-br Configura<72><61>o padr<64>o n<>o encontrada. usado os valores padr<64>es internos. sample configuration not found. using built in defaults setup pt-br Configura<72><61>o padr<64>o n<>o encontrada. usado os valores padr<64>es internos.
save setup pt-br Salvar save setup pt-br Salvar
save this text as contents of your header.inc.php setup pt-br Salve este texto como conte<74>do do seu header.inc.php save this text as contents of your header.inc.php setup pt-br Salve este texto como conte<74>do do seu header.inc.php
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup pt-br Selecione um aplicativo, escolha a vers<72>o de destino e clique em Enviar para processar esta vers<72>o.<br>Se voc<6F> n<>o definir uma vers<72>o somente as tabelas base ser<65>o instaladas para o aplicativo.<br><blink>Primeiro, esta opera<72><61>o ir<69> remover todas as tabelas de Aplicativos!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup pt-br Selecione um aplicativo, escolha a vers<72>o de destino e clique em Enviar para processar esta vers<72>o.<br />Se voc<6F> n<>o definir uma vers<72>o somente as tabelas base ser<65>o instaladas para o aplicativo.<br /><blink>Primeiro, esta opera<72><61>o ir<69> remover todas as tabelas de Aplicativos!</blink>
select one... setup pt-br selecione um select one... setup pt-br selecione um
select the default applications to which your users will have access setup pt-br Selecione o aplicativo padr<64>o. select the default applications to which your users will have access setup pt-br Selecione o aplicativo padr<64>o.
select the desired action(s) from the available choices setup pt-br Selecione a a<><61>o (ou a<><61>es) desejada(s) a partir das op<6F><70>es select the desired action(s) from the available choices setup pt-br Selecione a a<><61>o (ou a<><61>es) desejada(s) a partir das op<6F><70>es
@ -381,8 +381,8 @@ the imap extension is needed by the two email apps (even if you use email with p
the mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets. setup pt-br As extens<6E>es mbstring s<>o necess<73>rias para suporte unicode (utf-8) completo ou para outros conjuntos de car<61>cteres multibyte. the mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets. setup pt-br As extens<6E>es mbstring s<>o necess<73>rias para suporte unicode (utf-8) completo ou para outros conjuntos de car<61>cteres multibyte.
the table definition was correct, and the tables were installed setup pt-br As defini<6E><69>es de tabelas est<73>o corretas e as tabelas est<73>o instaladas the table definition was correct, and the tables were installed setup pt-br As defini<6E><69>es de tabelas est<73>o corretas e as tabelas est<73>o instaladas
the tables setup pt-br as tabelas the tables setup pt-br as tabelas
there was a problem trying to connect to your ldap server. <br> setup pt-br Ocorreu um problema durante a tentativa de conex<65>o com o servidor LDAP <br> there was a problem trying to connect to your ldap server. <br /> setup pt-br Ocorreu um problema durante a tentativa de conex<65>o com o servidor LDAP <br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup pt-br Ocorreu um problema durante a tentativa de conex<65>o com o servidor LDAP <br> por favor verifique as configura<72><61>es do servidor LDAP there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup pt-br Ocorreu um problema durante a tentativa de conex<65>o com o servidor LDAP <br /> por favor verifique as configura<72><61>es do servidor LDAP
this has to be outside the webservers document-root!!! setup pt-br Isto tem que estar fora do diret<65>rio de documentos do seu servidor web!!! this has to be outside the webservers document-root!!! setup pt-br Isto tem que estar fora do diret<65>rio de documentos do seu servidor web!!!
this might take a while, please wait ... setup pt-br Isto pode demorar um pouco, por favo aquarde... this might take a while, please wait ... setup pt-br Isto pode demorar um pouco, por favo aquarde...
this program will convert your database to a new system-charset. setup pt-br Este programa converter<65> a sua base de dados para um novo sistema-charset. this program will convert your database to a new system-charset. setup pt-br Este programa converter<65> a sua base de dados para um novo sistema-charset.
@ -390,8 +390,8 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup pt-br Esta se<73><65>o ir<69> ajud<75>-lo a exportar usu<73>rios e grupos de contas e tabelas do eGroupWare para sua <20>rvore LDAP this section will help you export users and groups from egroupware's account tables into your ldap tree setup pt-br Esta se<73><65>o ir<69> ajud<75>-lo a exportar usu<73>rios e grupos de contas e tabelas do eGroupWare para sua <20>rvore LDAP
this section will help you import users and groups from your ldap tree into egroupware's account tables setup pt-br Esta se<73><65>o ajudar<61> a importar usu<73>rios e grupos LDAP para as tabelas do eGroupWare this section will help you import users and groups from your ldap tree into egroupware's account tables setup pt-br Esta se<73><65>o ajudar<61> a importar usu<73>rios e grupos LDAP para as tabelas do eGroupWare
this section will help you setup your ldap accounts for use with egroupware setup pt-br Esta se<73><65>o ir<69> ajudar<61> a configurar suas contas LDAP para uso com o eGroupWare this section will help you setup your ldap accounts for use with egroupware setup pt-br Esta se<73><65>o ir<69> ajudar<61> a configurar suas contas LDAP para uso com o eGroupWare
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup pt-br Isto deve ter aproximadamente 30 bytes.<br> Nota: o valor padr<64>o foi aleat<61>riamente gerado this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup pt-br Isto deve ter aproximadamente 30 bytes.<br /> Nota: o valor padr<64>o foi aleat<61>riamente gerado
this stage is completed<br> setup pt-br Este passo est<73> completo<br> this stage is completed<br /> setup pt-br Este passo est<73> completo<br />
to a version it does not know about setup pt-br para uma vers<72>o desconhecida to a version it does not know about setup pt-br para uma vers<72>o desconhecida
to setup 1 admin account and 3 demo accounts. setup pt-br para configurar 1 conta de administrador e 3 contas demo to setup 1 admin account and 3 demo accounts. setup pt-br para configurar 1 conta de administrador e 3 contas demo
top setup pt-br topo top setup pt-br topo
@ -427,13 +427,13 @@ which database type do you want to use with egroupware? setup pt-br Qual o tipo
world readable setup pt-br Leitura permitida para todos world readable setup pt-br Leitura permitida para todos
world writable setup pt-br Escrita permitida para todos world writable setup pt-br Escrita permitida para todos
would you like egroupware to cache the phpgw info array ? setup pt-br Deseja que o eGroupWare armazene o vetor de informa<6D><61>es phpgw? (cache) would you like egroupware to cache the phpgw info array ? setup pt-br Deseja que o eGroupWare armazene o vetor de informa<6D><61>es phpgw? (cache)
would you like egroupware to check for a new version<br>when admins login ? setup pt-br Deseja que o eGroupWare verifique se h<> uma nova vers<72>o dispon<6F>vel <br>quando administradores estejam acessando o sistema? would you like egroupware to check for a new version<br />when admins login ? setup pt-br Deseja que o eGroupWare verifique se h<> uma nova vers<72>o dispon<6F>vel <br />quando administradores estejam acessando o sistema?
would you like to show each application's upgrade status ? setup pt-br Deseja exibir o status de atualiza<7A><61>o de cada aplicativo? would you like to show each application's upgrade status ? setup pt-br Deseja exibir o status de atualiza<7A><61>o de cada aplicativo?
writable by the webserver setup pt-br Escrita permitida para o servidor Web writable by the webserver setup pt-br Escrita permitida para o servidor Web
write config setup pt-br Configura<72><61>o de escrita write config setup pt-br Configura<72><61>o de escrita
yes setup pt-br Sim yes setup pt-br Sim
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup pt-br Aparentemente voc<6F> est<73> usando uma vers<72>o pr<70>-beta do eGroupWare.<br>Estas vers<72>es n<>o s<>o mais suportadas, e n<>o h<> como usar o configurador para atualiz<69>-las.<br> Voc<6F> deve primeiro atualizar para a vers<72>o 0.9.10 (a <20>ltima vers<72>o que suporta atualiza<7A><61>o de pr<70>-betas) <br>e ent<6E>o atualizar a partir desta vers<72>o para a vers<72>o atual. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup pt-br Aparentemente voc<6F> est<73> usando uma vers<72>o pr<70>-beta do eGroupWare.<br />Estas vers<72>es n<>o s<>o mais suportadas, e n<>o h<> como usar o configurador para atualiz<69>-las.<br /> Voc<6F> deve primeiro atualizar para a vers<72>o 0.9.10 (a <20>ltima vers<72>o que suporta atualiza<7A><61>o de pr<70>-betas) <br />e ent<6E>o atualizar a partir desta vers<72>o para a vers<72>o atual.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup pt-br Aparentemente voc<6F> est<73> rodando uma vers<72>o antiga do PHP <br> <20> altamente recomend<6E>vel que voc<6F> fa<66>a a atualiza<7A><61>o para uma vers<72>o mais nova <br> Vers<72>es antigas do PHP podem n<>o rodar corretamente com o eGroupWare. <br><br>Por favor atualize para, no m<>nimo, a vers<72>o %1 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup pt-br Aparentemente voc<6F> est<73> rodando uma vers<72>o antiga do PHP <br /> <20> altamente recomend<6E>vel que voc<6F> fa<66>a a atualiza<7A><61>o para uma vers<72>o mais nova <br /> Vers<72>es antigas do PHP podem n<>o rodar corretamente com o eGroupWare. <br /><br />Por favor atualize para, no m<>nimo, a vers<72>o %1
you appear to be running version %1 of egroupware setup pt-br Aparentemente voc<6F> est<73> rodando a vers<72>o %1 do eGroupWare you appear to be running version %1 of egroupware setup pt-br Aparentemente voc<6F> est<73> rodando a vers<72>o %1 do eGroupWare
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup pt-br Aparentemente voc<6F> est<73> utilizando uma vers<72>o anterior a 4.1.0 do PHP. Atualmente o eGroupWare requer a vers<72>o 4.1.0 ou maior. you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup pt-br Aparentemente voc<6F> est<73> utilizando uma vers<72>o anterior a 4.1.0 do PHP. Atualmente o eGroupWare requer a vers<72>o 4.1.0 ou maior.
you appear to be using php3. disabling php4 sessions support setup pt-br Aparentemente voc<6F> est<73> usando o PHP3. Desabilitando o suporte a se<73><65>es PHP4 you appear to be using php3. disabling php4 sessions support setup pt-br Aparentemente voc<6F> est<73> usando o PHP3. Desabilitando o suporte a se<73><65>es PHP4
@ -444,13 +444,13 @@ you appear to have oracle support enabled setup pt-br Aparentemente voc
you appear to have oracle v8 (oci) support enabled setup pt-br Aparentemente voc<6F> tem suporte ao Orale V8 you appear to have oracle v8 (oci) support enabled setup pt-br Aparentemente voc<6F> tem suporte ao Orale V8
you appear to have postgresql support enabled setup pt-br Aparentemente voc<6F> tem suporte ao PostgreSQL you appear to have postgresql support enabled setup pt-br Aparentemente voc<6F> tem suporte ao PostgreSQL
you appear to have xml support enabled setup pt-br Aparentemente voc<6F> tem suporte a XML you appear to have xml support enabled setup pt-br Aparentemente voc<6F> tem suporte a XML
you are ready for this stage, but this stage is not yet written.<br> setup pt-br Voc<6F> est<73> pronto para este passo, mas este est<73>gio n<>o est<73> escrito ainda.<br> you are ready for this stage, but this stage is not yet written.<br /> setup pt-br Voc<6F> est<73> pronto para este passo, mas este est<73>gio n<>o est<73> escrito ainda.<br />
you didn't enter a config password for domain %1 setup pt-br Voc<6F> n<>o digitou uma senha de configura<72><61>o para o dom<6F>nio %1 you didn't enter a config password for domain %1 setup pt-br Voc<6F> n<>o digitou uma senha de configura<72><61>o para o dom<6F>nio %1
you didn't enter a config username for domain %1 setup pt-br Voc<6F> n<>o digitou um usu<73>rio de configura<72><61>o para o dom<6F>nio %1 you didn't enter a config username for domain %1 setup pt-br Voc<6F> n<>o digitou um usu<73>rio de configura<72><61>o para o dom<6F>nio %1
you didn't enter a header admin password setup pt-br Voc<6F> n<>o digitou uma senha para administra<72><61>o do Header you didn't enter a header admin password setup pt-br Voc<6F> n<>o digitou uma senha para administra<72><61>o do Header
you didn't enter a header admin username setup pt-br Voc<6F> n<>o digitou um usu<73>rio para administra<72><61>o do Header you didn't enter a header admin username setup pt-br Voc<6F> n<>o digitou um usu<73>rio para administra<72><61>o do Header
you do not have any languages installed. please install one now <br> setup pt-br N<>o h<> nenhum idioma instalado. Por favor instale um agora <br> you do not have any languages installed. please install one now <br /> setup pt-br N<>o h<> nenhum idioma instalado. Por favor instale um agora <br />
you have not created your header.inc.php yet!<br> you can create it now. setup pt-br Voc<6F> ainda n<>o criou seu arquivo heades.inc.php!<br> Voc<6F> pode cri<72>-lo agora. you have not created your header.inc.php yet!<br /> you can create it now. setup pt-br Voc<6F> ainda n<>o criou seu arquivo heades.inc.php!<br /> Voc<6F> pode cri<72>-lo agora.
you have successfully logged out setup pt-br Voc<6F> foi desconectado com sucesso. you have successfully logged out setup pt-br Voc<6F> foi desconectado com sucesso.
you must enter a username for the admin setup pt-br Voc<6F> deve especificar um nome de usu<73>rio para o Administrador you must enter a username for the admin setup pt-br Voc<6F> deve especificar um nome de usu<73>rio para o Administrador
you need to add some domains to your header.inc.php. setup pt-br Voc<6F> precisa adicionar um dom<6F>nio no arquivo header.inc.php you need to add some domains to your header.inc.php. setup pt-br Voc<6F> precisa adicionar um dom<6F>nio no arquivo header.inc.php
@ -465,7 +465,7 @@ your database is not working! setup pt-br Seu banco de dados n
your database is working, but you dont have any applications installed setup pt-br Sua base de dados est<73> funcionando, mas n<>o h<> nenhuma aplica<63><61>o instalada your database is working, but you dont have any applications installed setup pt-br Sua base de dados est<73> funcionando, mas n<>o h<> nenhuma aplica<63><61>o instalada
your header admin password is not set. please set it now! setup pt-br Sua senha de adminstrador para o arquivo header.inc.php n<>o est<73> definida. Por favor defina uma agora. your header admin password is not set. please set it now! setup pt-br Sua senha de adminstrador para o arquivo header.inc.php n<>o est<73> definida. Por favor defina uma agora.
your header.inc.php needs upgrading. setup pt-br Seu arquivo header.inc.php precisa ser atualizado your header.inc.php needs upgrading. setup pt-br Seu arquivo header.inc.php precisa ser atualizado
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup pt-br Seu arquivo header.inc.php necessita de atualiza<7A><61>o <br><blink><b class="msg">AVISO!</b></blink><br><b>FA<46>A C<>PIAS DE SEGURAN<41>A!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup pt-br Seu arquivo header.inc.php necessita de atualiza<7A><61>o <br /><blink><b class="msg">AVISO!</b></blink><br /><b>FA<46>A C<>PIAS DE SEGURAN<41>A!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup pt-br Sua instala<6C><61>o PHP n<>o possui suporte apropriado <20> biblioteca GD. Voc<6F> precisa da vers<72>o 1.8 ou superior para ver os diagramas de Gantt dos projetos. your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup pt-br Sua instala<6C><61>o PHP n<>o possui suporte apropriado <20> biblioteca GD. Voc<6F> precisa da vers<72>o 1.8 ou superior para ver os diagramas de Gantt dos projetos.
your tables are current setup pt-br Suas tabelas est<73>o atualizadas your tables are current setup pt-br Suas tabelas est<73>o atualizadas
your tables may be altered and you may lose data setup pt-br Suas tabelas podem ser alteradas e pode haver perda de dados. your tables may be altered and you may lose data setup pt-br Suas tabelas podem ser alteradas e pode haver perda de dados.

View File

@ -27,16 +27,16 @@ Authentication / Accounts setup pt Autentica
Auto create account records for authenticated users setup pt Criar contas de usu<73>rios automaticamente para usu<73>rios autenticados Auto create account records for authenticated users setup pt Criar contas de usu<73>rios automaticamente para usu<73>rios autenticados
auto-created user accounts expire setup pt Usu<73>rios criados automaticamente expiram em auto-created user accounts expire setup pt Usu<73>rios criados automaticamente expiram em
available version setup pt Vers<72>o dispon<6F>vel available version setup pt Vers<72>o dispon<6F>vel
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong> setup pt <09> <u>altamente recomend<6E>vel</u> fazer um backup das tabelas do banco de dados caso o script danifique seus dados. <br><strong>Estes scripts autom<6F>ticos podem destruir seus dados facilmente</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong> setup pt <09> <u>altamente recomend<6E>vel</u> fazer um backup das tabelas do banco de dados caso o script danifique seus dados. <br /><strong>Estes scripts autom<6F>ticos podem destruir seus dados facilmente</strong>
because it depends upon setup pt pois depende de because it depends upon setup pt pois depende de
because it is not a user application, or access is controlled via acl setup pt pois n<>o <20> uma aplica<63><61>o de usu<73>rio ou o acesso <20> controlado atrav<61>s das regras de acesso because it is not a user application, or access is controlled via acl setup pt pois n<>o <20> uma aplica<63><61>o de usu<73>rio ou o acesso <20> controlado atrav<61>s das regras de acesso
because it requires manual table installation, <br>or the table definition was incorrect setup pt pois requer instala<6C><61>o das tabelas do banco de dados manualmente, <br>ou a defini<6E><69>o da tabela est<73> incorreta because it requires manual table installation, <br />or the table definition was incorrect setup pt pois requer instala<6C><61>o das tabelas do banco de dados manualmente, <br />ou a defini<6E><69>o da tabela est<73> incorreta
because it was manually disabled setup pt pois foi desabilitado manualmente because it was manually disabled setup pt pois foi desabilitado manualmente
because of a failed upgrade or install setup pt devido a uma falha na atualiza<7A><61>o ou instala<6C><61>o because of a failed upgrade or install setup pt devido a uma falha na atualiza<7A><61>o ou instala<6C><61>o
because of a failed upgrade, or the database is newer than the installed version of this app setup pt devido a uma falha na atualiza<7A><61>o, ou a base de dados <20> mais nova que a vers<72>o instalada desta aplica<63><61>o because of a failed upgrade, or the database is newer than the installed version of this app setup pt devido a uma falha na atualiza<7A><61>o, ou a base de dados <20> mais nova que a vers<72>o instalada desta aplica<63><61>o
because the enable flag for this app is set to 0, or is undefined setup pt pois o campo de habilita<74><61>o (flag) desta aplica<63><61>o est<73> definido como 0, ou est<73> indefinido because the enable flag for this app is set to 0, or is undefined setup pt pois o campo de habilita<74><61>o (flag) desta aplica<63><61>o est<73> definido como 0, ou est<73> indefinido
bottom setup pt Inferior bottom setup pt Inferior
<br><center>Import has been completed! Click <a href="index.php">here</a> to return to setup </center> setup pt <br><center>A importa<74><61>o foi completada! Clique <a href="index.php">aqui</a> para retornar para configura<72><61>o </center> <br /><center>Import has been completed! Click <a href="index.php">here</a> to return to setup </center> setup pt <br /><center>A importa<74><61>o foi completada! Clique <a href="index.php">aqui</a> para retornar para configura<72><61>o </center>
cancel setup pt Cancelar cancel setup pt Cancelar
charset setup pt ISO-8859-1 charset setup pt ISO-8859-1
check ip address of all sessions setup pt Verificar endere<72>o IP de todas sess<73>es check ip address of all sessions setup pt Verificar endere<72>o IP de todas sess<73>es
@ -49,7 +49,7 @@ create database setup pt Criar base de dados
create one now setup pt Criar uma agora create one now setup pt Criar uma agora
create setup pt Criar create setup pt Criar
creating tables setup pt Criando tabelas creating tables setup pt Criando tabelas
currently installed languages: %1 <br> setup pt Idiomas instalados atualmente: %1 <br> currently installed languages: %1 <br /> setup pt Idiomas instalados atualmente: %1 <br />
current version setup pt Vers<72>o atual current version setup pt Vers<72>o atual
db root password setup pt Senha do super-usu<73>rio no banco de dados db root password setup pt Senha do super-usu<73>rio no banco de dados
db root username setup pt C<>digo do super-usu<73>rio no banco de dados db root username setup pt C<>digo do super-usu<73>rio no banco de dados
@ -65,12 +65,12 @@ details for admin account setup pt Detalhes da conta do Administrador
domain setup pt Dom<6F>nio domain setup pt Dom<6F>nio
dont touch my data setup pt N<>o alterar meus dados dont touch my data setup pt N<>o alterar meus dados
edit current configuration setup pt Editar configura<72><61>o atual edit current configuration setup pt Editar configura<72><61>o atual
Enter some random text for app_session <br>encryption (requires mcrypt) setup pt Digite algum texto aleat<61>rio para a encripta<74><61>o de sess<73>o (requer mcrypt) Enter some random text for app_session <br />encryption (requires mcrypt) setup pt Digite algum texto aleat<61>rio para a encripta<74><61>o de sess<73>o (requer mcrypt)
enter some random text for app session encryption setup pt Digite algum texto aleat<61>rio para encripta<74><61>o de sess<73>o enter some random text for app session encryption setup pt Digite algum texto aleat<61>rio para encripta<74><61>o de sess<73>o
Enter the full path for temporary files.<br>Examples: /tmp, C:\TEMP setup pt Digite o caminho completo para arquivos tempor<6F>rios.<br>Exemplos: /tmp, C:TEMP Enter the full path for temporary files.<br />Examples: /tmp, C:\TEMP setup pt Digite o caminho completo para arquivos tempor<6F>rios.<br />Exemplos: /tmp, C:TEMP
Enter the full path for users and group files.<br>Examples: /files, E:\FILES setup pt Digite o caminho completo para arquivos de usu<73>rios e grupos.<br>Exemplos: /files, E:FILES Enter the full path for users and group files.<br />Examples: /files, E:\FILES setup pt Digite o caminho completo para arquivos de usu<73>rios e grupos.<br />Exemplos: /files, E:FILES
Enter the hostname of the machine on which this server is running setup pt Digite o nome da m<>quina em que este sistema est<73> sendo executado Enter the hostname of the machine on which this server is running setup pt Digite o nome da m<>quina em que este sistema est<73> sendo executado
Enter the location of eGroupWare's URL.<br>Example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>No trailing slash</b> setup pt Digite a URL do eGroupWare.<br>Exemplo: http://www.dominio.com.br/egroupware &nbsp; ou &nbsp; /egroupware<br><b>Sem a barra final</b> Enter the location of eGroupWare's URL.<br />Example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>No trailing slash</b> setup pt Digite a URL do eGroupWare.<br />Exemplo: http://www.dominio.com.br/egroupware &nbsp; ou &nbsp; /egroupware<br /><b>Sem a barra final</b>
Enter the site password for peer servers setup pt Digite a senha do servidor para comunica<63><61>o com servidores remotos Enter the site password for peer servers setup pt Digite a senha do servidor para comunica<63><61>o com servidores remotos
Enter the site username for peer servers setup pt Digite o usu<73>rio do servidor para comunica<63><61>o com servidores remotos Enter the site username for peer servers setup pt Digite o usu<73>rio do servidor para comunica<63><61>o com servidores remotos
Enter the title for your site setup pt Digite o t<>tulo para o site Enter the title for your site setup pt Digite o t<>tulo para o site
@ -159,7 +159,7 @@ remove setup pt Remover
requires reinstall or manual repair setup pt Requer reinstala<6C><61>o ou reparo manual requires reinstall or manual repair setup pt Requer reinstala<6C><61>o ou reparo manual
requires upgrade setup pt Requer atualiza<7A><61>o requires upgrade setup pt Requer atualiza<7A><61>o
resolve setup pt Resolver resolve setup pt Resolver
Select an app, enter a target version, then submit to process to that version.<br>If you do not enter a version, only the baseline tables will be installed for the app.<br><blink>THIS WILL DROP ALL OF THE APPS' TABLES FIRST!</blink> setup pt Selecione uma aplica<63><61>o, escolha a vers<72>o de destino e clique em Enviar para processar esta vers<72>o.<br>Se voc<6F> n<>o definir uma vers<72>o somente as tabelas base ser<65>o instaladas para a aplica<63><61>o.<br><blink>Isto ir<69> limpar todas aplica<63><61>es da tabela primeiro!</blink> Select an app, enter a target version, then submit to process to that version.<br />If you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>THIS WILL DROP ALL OF THE APPS' TABLES FIRST!</blink> setup pt Selecione uma aplica<63><61>o, escolha a vers<72>o de destino e clique em Enviar para processar esta vers<72>o.<br />Se voc<6F> n<>o definir uma vers<72>o somente as tabelas base ser<65>o instaladas para a aplica<63><61>o.<br /><blink>Isto ir<69> limpar todas aplica<63><61>es da tabela primeiro!</blink>
Selectbox setup pt Caixa de sele<6C><65>o Selectbox setup pt Caixa de sele<6C><65>o
select the default applications to which your users will have access setup pt Selecione a aplica<63><61>o padr<64>o a qual os usu<73>rios ter<65>o acesso select the default applications to which your users will have access setup pt Selecione a aplica<63><61>o padr<64>o a qual os usu<73>rios ter<65>o acesso
select the desired action(s) from the available choices setup pt Selecione a a<><61>o (ou a<><61>es) desejada(s) a partir das op<6F><70>es select the desired action(s) from the available choices setup pt Selecione a a<><61>o (ou a<><61>es) desejada(s) a partir das op<6F><70>es
@ -191,16 +191,16 @@ tables installed, unless there are errors printed above setup pt tabelas instala
tables upgraded setup pt tabelas atualizadas tables upgraded setup pt tabelas atualizadas
target version setup pt Vers<72>o de destino target version setup pt Vers<72>o de destino
Text Entry setup pt Entrada de texto Text Entry setup pt Entrada de texto
there was a problem tring to connect to your ldap server. <br>please check your LDAP server configuration setup pt Houve um problema ao tentar conectar com o servidor LDAP. <br>Verifique sua connfigura<72><61>o there was a problem tring to connect to your ldap server. <br />please check your LDAP server configuration setup pt Houve um problema ao tentar conectar com o servidor LDAP. <br />Verifique sua connfigura<72><61>o
the table definition was correct, and the tables were installed setup pt As defini<6E><69>es de tabelas est<73>o corretas e as tabelas est<73>o instaladas the table definition was correct, and the tables were installed setup pt As defini<6E><69>es de tabelas est<73>o corretas e as tabelas est<73>o instaladas
the tables setup pt as tabelas the tables setup pt as tabelas
this program will help you upgrade or install different languages for eGroupWare setup pt Este programa ajudar<61> a atualizar ou instalar diferentes idiomas para o eGroupWare this program will help you upgrade or install different languages for eGroupWare setup pt Este programa ajudar<61> a atualizar ou instalar diferentes idiomas para o eGroupWare
this section will help you export users and groups from egroupeare's account tables into your ldap tree setup pt Esta se<73><65>o ajudar<61> a exportar usu<73>rios e grupos das tabelas do eGroupWare para o LDAP this section will help you export users and groups from egroupeare's account tables into your ldap tree setup pt Esta se<73><65>o ajudar<61> a exportar usu<73>rios e grupos das tabelas do eGroupWare para o LDAP
this section will help you import users and groups from your ldap tree into eGroupWare's account tables setup pt Esta se<73><65>o ajudar<61> a importar usu<73>rios e grupos LDAP para as tabelas do eGroupWare this section will help you import users and groups from your ldap tree into eGroupWare's account tables setup pt Esta se<73><65>o ajudar<61> a importar usu<73>rios e grupos LDAP para as tabelas do eGroupWare
this stage is completed<br> setup pt Este passo est<73> completo<br> this stage is completed<br /> setup pt Este passo est<73> completo<br />
this will create 1 admin account and 3 demo accounts<br>the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br><b>!!!THIS WILL DELETE ALL EXISTING ACCOUNTS!!!</b><br> setup pt Isto ir<69> criar 1 conta de administrador e 3 contas de usu<73>rios para demonstra<72><61>o<br>Os usu<73>rios/senhas s<>o: demo/guest, demo2/guest and demo3/guest.<br><b>!!!Isto ir<69> remover TODAS as contas e grupos existentes!!!</b><br> this will create 1 admin account and 3 demo accounts<br />the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!THIS WILL DELETE ALL EXISTING ACCOUNTS!!!</b><br /> setup pt Isto ir<69> criar 1 conta de administrador e 3 contas de usu<73>rios para demonstra<72><61>o<br />Os usu<73>rios/senhas s<>o: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!Isto ir<69> remover TODAS as contas e grupos existentes!!!</b><br />
top setup pt topo top setup pt topo
to setup 1 admin account and 3 demo accounts.<br><b>this will delete all existing accounts</b> setup pt para configurar 1 conta de administrador e 3 contas de demonstra<72><61>o.<br><b>Isto ir<69> remover todas as contas existentes</b> to setup 1 admin account and 3 demo accounts.<br /><b>this will delete all existing accounts</b> setup pt para configurar 1 conta de administrador e 3 contas de demonstra<72><61>o.<br /><b>Isto ir<69> remover todas as contas existentes</b>
translations added setup pt Tradu<64><75>es adicionadas translations added setup pt Tradu<64><75>es adicionadas
translations removed setup pt Tradu<64><75>es removidas translations removed setup pt Tradu<64><75>es removidas
translations upgraded setup pt Tradu<64><75>es atualizadas translations upgraded setup pt Tradu<64><75>es atualizadas
@ -217,14 +217,14 @@ version setup pt vers
version mismatch setup pt Erro de vers<72>o version mismatch setup pt Erro de vers<72>o
we will automatically update your tables/records to %1 setup pt As tabelas/registros ser<65>o automaticamente atualizadas para %1 we will automatically update your tables/records to %1 setup pt As tabelas/registros ser<65>o automaticamente atualizadas para %1
Would you like eGroupWare to cache the phpgw info array ? setup pt Deseja que o eGroupWare fa<66>a cache do vetor de informa<6D><61>es phpgw ? Would you like eGroupWare to cache the phpgw info array ? setup pt Deseja que o eGroupWare fa<66>a cache do vetor de informa<6D><61>es phpgw ?
Would you like eGroupWare to check for a new version<br>when admins login ? setup pt Deseja que o eGroupWare verifique se h<> nova vers<72>o<br>quando administradores estejam acessando o sistema ? Would you like eGroupWare to check for a new version<br />when admins login ? setup pt Deseja que o eGroupWare verifique se h<> nova vers<72>o<br />quando administradores estejam acessando o sistema ?
Would you like to show each application's upgrade status ? setup pt Deseja exibir se cada aplica<63><61>o est<73> atualizada ? Would you like to show each application's upgrade status ? setup pt Deseja exibir se cada aplica<63><61>o est<73> atualizada ?
yes setup pt Sim yes setup pt Sim
you appear to be running an old version of PHP <br>It its recommend that you upgrade to a new version. <br>Older version of PHP might not run eGroupWare correctly, if at all. <br><br>Please upgrade to at least version 4.1.0 setup pt Est<73> sendo usado uma vers<72>o antiga de PHP.<br><3E> recomendado que a vers<72>o seja atualizada.<br>Vers<72>es antigas do PHP podem n<>o executar o eGroupWare corretamente. <br><br>Por favor atualize para vers<72>es acima de 4.1.0. you appear to be running an old version of PHP <br />It its recommend that you upgrade to a new version. <br />Older version of PHP might not run eGroupWare correctly, if at all. <br /><br />Please upgrade to at least version 4.1.0 setup pt Est<73> sendo usado uma vers<72>o antiga de PHP.<br /><3E> recomendado que a vers<72>o seja atualizada.<br />Vers<72>es antigas do PHP podem n<>o executar o eGroupWare corretamente. <br /><br />Por favor atualize para vers<72>es acima de 4.1.0.
You appear to be running a pre-beta version of eGroupWare.<br>These versions are no longer supported, and there is no upgrade path for them in setup.<br> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup pt Aparentemente voc<6F> est<73> usando uma vers<72>o pr<70>-beta do eGroupWare.<br>Estas vers<72>es n<>o s<>o mais suportadas, e n<>o h<> como usar a Configura<72><61>o para atualizar.<br> Voc<6F> deve primeiro atualizar para a vers<72>o 0.9.10 (a <20>ltima vers<72>o que suporta atualiza<7A><61>o de pr<70>-betas) <br>e ent<6E>o atualizar a partir desta vers<72>o para a vers<72>o atual. You appear to be running a pre-beta version of eGroupWare.<br />These versions are no longer supported, and there is no upgrade path for them in setup.<br /> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup pt Aparentemente voc<6F> est<73> usando uma vers<72>o pr<70>-beta do eGroupWare.<br />Estas vers<72>es n<>o s<>o mais suportadas, e n<>o h<> como usar a Configura<72><61>o para atualizar.<br /> Voc<6F> deve primeiro atualizar para a vers<72>o 0.9.10 (a <20>ltima vers<72>o que suporta atualiza<7A><61>o de pr<70>-betas) <br />e ent<6E>o atualizar a partir desta vers<72>o para a vers<72>o atual.
you appear to be running version %1 of eGroupWare setup pt Aparentemente esta vers<72>o do eGroupWare <20> a %1 you appear to be running version %1 of eGroupWare setup pt Aparentemente esta vers<72>o do eGroupWare <20> a %1
you are ready for this stage, but this stage is not yet written.<br> setup pt Voc<6F> est<73> pronto para este passo, mas este est<73>gio n<>o est<73> escrito ainda.<br> you are ready for this stage, but this stage is not yet written.<br /> setup pt Voc<6F> est<73> pronto para este passo, mas este est<73>gio n<>o est<73> escrito ainda.<br />
you do not have any languages installed. please install one now <br> setup pt N<>o h<> nenhum idioma instalado. Por favor instale algum agora <br> you do not have any languages installed. please install one now <br /> setup pt N<>o h<> nenhum idioma instalado. Por favor instale algum agora <br />
you must enter a username for the admin setup pt Deve ser especificado um c<>digo de usu<73>rio para o Administrador you must enter a username for the admin setup pt Deve ser especificado um c<>digo de usu<73>rio para o Administrador
your applications are current setup pt Suas aplica<63><61>es est<73>o atualizadas your applications are current setup pt Suas aplica<63><61>es est<73>o atualizadas
your database does not exist setup pt Sua base de dados n<>o existe your database does not exist setup pt Sua base de dados n<>o existe

View File

@ -35,4 +35,4 @@ really uninstall all applications setup ru
yes setup ru <09><> yes setup ru <09><>
your database is not working! setup ru <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>! your database is not working! setup ru <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!
your header.inc.php needs upgrading. setup ru <09><><EFBFBD><EFBFBD> header.inc.php <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. your header.inc.php needs upgrading. setup ru <09><><EFBFBD><EFBFBD> header.inc.php <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup ru <09><><EFBFBD><EFBFBD> header.inc.php <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<br><blink><b class="msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</b></blink><br><b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup ru <09><><EFBFBD><EFBFBD> header.inc.php <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<br /><blink><b class="msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</b></blink><br /><b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</b>

View File

@ -8,7 +8,7 @@
13 (ntp) setup sl 13 (ntp) 13 (ntp) setup sl 13 (ntp)
80 (http) setup sl 80 (http) 80 (http) setup sl 80 (http)
<b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup sl uporaba <b>nabora znakov</b>(uporabite UTF-8, če načrtujete uporabo jezikov z neASCII kodnimi tabelami): <b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup sl uporaba <b>nabora znakov</b>(uporabite UTF-8, če načrtujete uporabo jezikov z neASCII kodnimi tabelami):
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup sl <b>Kreiran bo en administratorski in trije demo računi</b><br>Uporabniška imena in gesla bodo: demo/guest, demo2/guest in demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup sl <b>Kreiran bo en administratorski in trije demo računi</b><br />Uporabniška imena in gesla bodo: demo/guest, demo2/guest in demo3/guest.
accounts existing setup sl Račun obstaja accounts existing setup sl Račun obstaja
actions setup sl Akcije actions setup sl Akcije
add a domain setup sl Dodaj domeno add a domain setup sl Dodaj domeno
@ -65,19 +65,19 @@ backup finished setup sl arhiviranje dokončano
backup now setup sl arhiviraj takoj backup now setup sl arhiviraj takoj
backup sets setup sl arhivski nizi backup sets setup sl arhivski nizi
backup started, this might take a view minutes ... setup sl zaganjam arhiviranje, ki lahko traja nekaj minut ... backup started, this might take a view minutes ... setup sl zaganjam arhiviranje, ki lahko traja nekaj minut ...
backupwarn setup sl toda, <u>zelo priporočamo izdelavo rezervne kopije</u> vaših podatkov, če skripta le te poškoduje. <br><strong>Samodejne skripte lahko zaradi nepredvidenih okoliščin uničijo vaše podatke.</strong> <br><em>Preden nadaljujete, izdelajte rezervno kopijo podatkov!</em> backupwarn setup sl toda, <u>zelo priporočamo izdelavo rezervne kopije</u> vaših podatkov, če skripta le te poškoduje. <br /><strong>Samodejne skripte lahko zaradi nepredvidenih okoliščin uničijo vaše podatke.</strong> <br /><em>Preden nadaljujete, izdelajte rezervno kopijo podatkov!</em>
because an application it depends upon was upgraded setup sl ker je bila aplikacija, od katere je odvisen, nadgrajena because an application it depends upon was upgraded setup sl ker je bila aplikacija, od katere je odvisen, nadgrajena
because it depends upon setup sl ker je odvisen od because it depends upon setup sl ker je odvisen od
because it is not a user application, or access is controlled via acl setup sl ker ni uporabniška aplikacija, ali pa je dostop nadzorovan skozi ACL because it is not a user application, or access is controlled via acl setup sl ker ni uporabniška aplikacija, ali pa je dostop nadzorovan skozi ACL
because it requires manual table installation, <br>or the table definition was incorrect setup sl ker zahteva ročno namestitev tabel, <br>ali pa so bile definicije tabel neveljavne because it requires manual table installation, <br />or the table definition was incorrect setup sl ker zahteva ročno namestitev tabel, <br />ali pa so bile definicije tabel neveljavne
because it was manually disabled setup sl ker je bila ročno onemogočena because it was manually disabled setup sl ker je bila ročno onemogočena
because of a failed upgrade or install setup sl zaradi neuspešne nadgradnje ali namestitve because of a failed upgrade or install setup sl zaradi neuspešne nadgradnje ali namestitve
because of a failed upgrade, or the database is newer than the installed version of this app setup sl zaradi neuspešne nadgradnje, ali pa je podatkovna baza novejša od nameščene različice aplikacije because of a failed upgrade, or the database is newer than the installed version of this app setup sl zaradi neuspešne nadgradnje, ali pa je podatkovna baza novejša od nameščene različice aplikacije
because the enable flag for this app is set to 0, or is undefined setup sl ker je označba za vklop aplikacije nastavljena na 0, ali pa je nedefinirana because the enable flag for this app is set to 0, or is undefined setup sl ker je označba za vklop aplikacije nastavljena na 0, ali pa je nedefinirana
bottom setup sl dno bottom setup sl dno
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>these automated scripts can easily destroy your data.</strong> setup sl ampak <u>močno priporočam izdelavo rezervne kopije</u> vseh tabel v primeru, da skripta poškoduje podatke.<br><strong>Samodejne skripte lahko celo uničijo podatke</strong>. but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>these automated scripts can easily destroy your data.</strong> setup sl ampak <u>močno priporočam izdelavo rezervne kopije</u> vseh tabel v primeru, da skripta poškoduje podatke.<br /><strong>Samodejne skripte lahko celo uničijo podatke</strong>.
cancel setup sl Prekini cancel setup sl Prekini
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup sl Zaradi nastavitev pravic dostopa do datotek ne morem ustvariti datoteke header.inc.php.<br> Namesto tega jo lahko %1. cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup sl Zaradi nastavitev pravic dostopa do datotek ne morem ustvariti datoteke header.inc.php.<br /> Namesto tega jo lahko %1.
change system-charset setup sl Spremeni sistemski nabor znakov change system-charset setup sl Spremeni sistemski nabor znakov
charset setup sl nabor znakov charset setup sl nabor znakov
charset to convert to setup sl Nabor za pretvorbo charset to convert to setup sl Nabor za pretvorbo
@ -122,11 +122,11 @@ creating tables setup sl Kreiram tabele
current system-charset setup sl Trenutni sistemski nabor znakov current system-charset setup sl Trenutni sistemski nabor znakov
current system-charset is %1, click %2here%3 to change it. setup sl Trenutni sistemski nabor znakov je %1. Kliknite %2tukaj%3, da ga spremenite. current system-charset is %1, click %2here%3 to change it. setup sl Trenutni sistemski nabor znakov je %1. Kliknite %2tukaj%3, da ga spremenite.
current version setup sl Trenutna različica current version setup sl Trenutna različica
currently installed languages: %1 <br> setup sl Trenutno nameščeni jeziki: %1<br> currently installed languages: %1 <br /> setup sl Trenutno nameščeni jeziki: %1<br />
database successfully converted from '%1' to '%2' setup sl Podatkovna baza je bila uspešno prevedena iz '%1' v '%2'. database successfully converted from '%1' to '%2' setup sl Podatkovna baza je bila uspešno prevedena iz '%1' v '%2'.
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup sl Vrata za datum.<br>Če uporabljate vrata 13, prosim, da ustrezno prilagodite pravila požarnega zidu, preden potrdite podatke na tej strani. <br>(Vrata: 13 / Strežnik: 129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup sl Vrata za datum.<br />Če uporabljate vrata 13, prosim, da ustrezno prilagodite pravila požarnega zidu, preden potrdite podatke na tej strani. <br />(Vrata: 13 / Strežnik: 129.6.15.28)
day setup sl dan day setup sl dan
day of week<br>(0-6, 0=sunday) setup sl dan v tednu<br>(0-6, 0=nedelja) day of week<br />(0-6, 0=sunday) setup sl dan v tednu<br />(0-6, 0=nedelja)
db backup and restore setup sl Arhiviranje in obnavljanje podatkovne baze db backup and restore setup sl Arhiviranje in obnavljanje podatkovne baze
db host setup sl Podatkovni strežnik db host setup sl Podatkovni strežnik
db name setup sl Ime podatkovne baze db name setup sl Ime podatkovne baze
@ -165,12 +165,12 @@ enable for extra debug-messages setup sl Vključi za izpis dodatnih razhroščev
enable ldap version 3 setup sl Omogoči LDAP različico 3 enable ldap version 3 setup sl Omogoči LDAP različico 3
enable mcrypt setup sl Omogoči mcrypt enable mcrypt setup sl Omogoči mcrypt
enter some random text for app session encryption setup sl Vnesite nekaj naključnega besedila za kriptiranje aplikacijskih sej enter some random text for app session encryption setup sl Vnesite nekaj naključnega besedila za kriptiranje aplikacijskih sej
enter some random text for app_session <br>encryption (requires mcrypt) setup sl Vnesite nekaj naključnega besedila za <br>kriptiranje aplikacijskih sej (zahteva Mcrypt). enter some random text for app_session <br />encryption (requires mcrypt) setup sl Vnesite nekaj naključnega besedila za <br />kriptiranje aplikacijskih sej (zahteva Mcrypt).
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup sl Vnesite polno pot do začasnih datotek.<br>Na primer: /tmp, c:\temp enter the full path for temporary files.<br />examples: /tmp, c:\temp setup sl Vnesite polno pot do začasnih datotek.<br />Na primer: /tmp, c:\temp
enter the full path for users and group files.<br>examples: /files, e:\files setup sl Vnesite polno pot do uporabniških datotek.<br>Na primer: /files, c:\files enter the full path for users and group files.<br />examples: /files, e:\files setup sl Vnesite polno pot do uporabniških datotek.<br />Na primer: /files, c:\files
enter the full path to the backup directory.<br>if empty: files directory setup sl Vpišite pot do arhivske mape.<br>Če je prazno bo uporabljena splošna pot za datoteke enter the full path to the backup directory.<br />if empty: files directory setup sl Vpišite pot do arhivske mape.<br />Če je prazno bo uporabljena splošna pot za datoteke
enter the hostname of the machine on which this server is running setup sl Vnesite ime strežnika, na katerem teče projekt enter the hostname of the machine on which this server is running setup sl Vnesite ime strežnika, na katerem teče projekt
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup sl Vnesite eGroupWareov URL na vašem računalniku.<br>Na primer: http://www.podjetje.si/egroupware &nbsp; ali &nbsp; /egroupware<br><b>Naslov naj bo brez zaključne poševnice</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup sl Vnesite eGroupWareov URL na vašem računalniku.<br />Na primer: http://www.podjetje.si/egroupware &nbsp; ali &nbsp; /egroupware<br /><b>Naslov naj bo brez zaključne poševnice</b>
enter the site password for peer servers setup sl Vnesite geslo za vzporedne strežnike. enter the site password for peer servers setup sl Vnesite geslo za vzporedne strežnike.
enter the site username for peer servers setup sl Vnesite uporabniško ime za vzporedne strežnike enter the site username for peer servers setup sl Vnesite uporabniško ime za vzporedne strežnike
enter the title for your site setup sl Vnesite naziv vašega spletnega mesta enter the title for your site setup sl Vnesite naziv vašega spletnega mesta
@ -364,7 +364,7 @@ save setup sl Shrani
save this text as contents of your header.inc.php setup sl Shrani besedilo kot vsebino vaše header.inc.php datoteke save this text as contents of your header.inc.php setup sl Shrani besedilo kot vsebino vaše header.inc.php datoteke
schedule setup sl urnik schedule setup sl urnik
scheduled backups setup sl urnik arhiviranja scheduled backups setup sl urnik arhiviranja
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup sl Označite aplikacijo, vnesite ciljno različico, in pošljite procesu to različico.<br>Če ne boste vnesli različice, se bodo za aplikacijo namestile le osnovne tabele. <br><blink>POSTOPEK BO NAJPREJ IZBRISAL VSE TABELE APLIKACIJE!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup sl Označite aplikacijo, vnesite ciljno različico, in pošljite procesu to različico.<br />Če ne boste vnesli različice, se bodo za aplikacijo namestile le osnovne tabele. <br /><blink>POSTOPEK BO NAJPREJ IZBRISAL VSE TABELE APLIKACIJE!</blink>
select one... setup sl izberite enega... select one... setup sl izberite enega...
select the default applications to which your users will have access setup sl Izberite privzete aplikacije, do katerih bodo imeli dostop vaši uporabniki. select the default applications to which your users will have access setup sl Izberite privzete aplikacije, do katerih bodo imeli dostop vaši uporabniki.
select the desired action(s) from the available choices setup sl S seznama izberite želene akcije select the desired action(s) from the available choices setup sl S seznama izberite želene akcije
@ -426,8 +426,8 @@ the mbstring extension is needed to fully support unicode (utf-8) or other multi
the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup sl Vrednost "mbstring.func_overload = 7" je potrebna za polno podporo UTF-8 (Unicode). the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup sl Vrednost "mbstring.func_overload = 7" je potrebna za polno podporo UTF-8 (Unicode).
the table definition was correct, and the tables were installed setup sl Definicije tabel so pravilne in tabele so nameščene. the table definition was correct, and the tables were installed setup sl Definicije tabel so pravilne in tabele so nameščene.
the tables setup sl tabele the tables setup sl tabele
there was a problem trying to connect to your ldap server. <br> setup sl Napaka pri povezovanju z LDAP strežnikom.<br> there was a problem trying to connect to your ldap server. <br /> setup sl Napaka pri povezovanju z LDAP strežnikom.<br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup sl Napaka pri povezovanju z LDAP strežnikom.<br>Prosim, preverite nastavitve LDAP strežnika. there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup sl Napaka pri povezovanju z LDAP strežnikom.<br />Prosim, preverite nastavitve LDAP strežnika.
this has to be outside the webservers document-root!!! setup sl To mora biti izven strežnikovega spletnega področja! this has to be outside the webservers document-root!!! setup sl To mora biti izven strežnikovega spletnega področja!
this might take a while, please wait ... setup sl To lahko traja nekaj časa, prosim počakajte ... this might take a while, please wait ... setup sl To lahko traja nekaj časa, prosim počakajte ...
this program lets you backup your database, schedule a backup or restore it. setup sl Ta program vam omogoča arhiviranje vaše podatkovne baze, upravljanje urnikov arhiviranja ali pa restavriranje arhiva. this program lets you backup your database, schedule a backup or restore it. setup sl Ta program vam omogoča arhiviranje vaše podatkovne baze, upravljanje urnikov arhiviranja ali pa restavriranje arhiva.
@ -436,12 +436,12 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup sl V tem odseku boste izvozili uporabnike in skupine iz tabel podatkovne baze v vaše LDAP drevo. this section will help you export users and groups from egroupware's account tables into your ldap tree setup sl V tem odseku boste izvozili uporabnike in skupine iz tabel podatkovne baze v vaše LDAP drevo.
this section will help you import users and groups from your ldap tree into egroupware's account tables setup sl Ta odsek vam bo pomagal prenesti uporabnike in skupine iz LDAP drevesa v tabele podatkovne baze. this section will help you import users and groups from your ldap tree into egroupware's account tables setup sl Ta odsek vam bo pomagal prenesti uporabnike in skupine iz LDAP drevesa v tabele podatkovne baze.
this section will help you setup your ldap accounts for use with egroupware setup sl Ta odsek vam bo pomagal prenesti vaše LDAP račune za uporabo v eGroupWare. this section will help you setup your ldap accounts for use with egroupware setup sl Ta odsek vam bo pomagal prenesti vaše LDAP račune za uporabo v eGroupWare.
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup sl To naj bo dolgo približno 30 bajtov. <br> Privzeto besedilo je bilo naključno generirano. this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup sl To naj bo dolgo približno 30 bajtov. <br /> Privzeto besedilo je bilo naključno generirano.
this stage is completed<br> setup sl Korak je zaključen. <br> this stage is completed<br /> setup sl Korak je zaključen. <br />
this will create 1 admin account and 3 demo accounts<br>the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br><b>!!!this will delete all existing accounts!!!</b><br> setup sl Ukaz bo ustvaril en upravljalski ra&#269;un in tri demo ra&#269;une.<br>Uporabni<6E>ka imena so demo/guest, demo2/guest in demo3/guest.<br><b>Pozor: ukaz bo izbrisal vse obstoje&#269;e ra&#269;une!!!</b><br> this will create 1 admin account and 3 demo accounts<br />the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!this will delete all existing accounts!!!</b><br /> setup sl Ukaz bo ustvaril en upravljalski ra&#269;un in tri demo ra&#269;une.<br />Uporabni<6E>ka imena so demo/guest, demo2/guest in demo3/guest.<br /><b>Pozor: ukaz bo izbrisal vse obstoje&#269;e ra&#269;une!!!</b><br />
to a version it does not know about setup sl v različico, ki je ne pozna to a version it does not know about setup sl v različico, ki je ne pozna
to setup 1 admin account and 3 demo accounts. setup sl za kreiranj 1 upravljalskega in 3 demo računov. to setup 1 admin account and 3 demo accounts. setup sl za kreiranj 1 upravljalskega in 3 demo računov.
to setup 1 admin account and 3 demo accounts.<br><b>this will delete all existing accounts</b> setup sl za izdelavo enega upravljalskega in treh demo uporabni<6E>kih ra&#269;unov. <br><b>To bo izbrisalo vse obstoje&#269;e ra&#269;une.</b> to setup 1 admin account and 3 demo accounts.<br /><b>this will delete all existing accounts</b> setup sl za izdelavo enega upravljalskega in treh demo uporabni<6E>kih ra&#269;unov. <br /><b>To bo izbrisalo vse obstoje&#269;e ra&#269;une.</b>
top setup sl vrh top setup sl vrh
translations added setup sl prevodi dodani translations added setup sl prevodi dodani
translations removed setup sl prevodi odstranjeni translations removed setup sl prevodi odstranjeni
@ -478,14 +478,14 @@ which database type do you want to use with egroupware? setup sl Kater tip podat
world readable setup sl berljivo za vse world readable setup sl berljivo za vse
world writable setup sl zapisljivo za vse world writable setup sl zapisljivo za vse
would you like egroupware to cache the phpgw info array ? setup sl Ali želite, da eGroupWare shrani phpgw_info polje v predpomnilnik? would you like egroupware to cache the phpgw info array ? setup sl Ali želite, da eGroupWare shrani phpgw_info polje v predpomnilnik?
would you like egroupware to check for a new version<br>when admins login ? setup sl Ali želite, da eGroupWare preveri za novo različico ob prijavi upravljalca? would you like egroupware to check for a new version<br />when admins login ? setup sl Ali želite, da eGroupWare preveri za novo različico ob prijavi upravljalca?
would you like to show each application's upgrade status ? setup sl Ali želite pokazati stanje nadgradnje aplikacije? would you like to show each application's upgrade status ? setup sl Ali želite pokazati stanje nadgradnje aplikacije?
writable by the webserver setup sl spletni strežnik lahko zapisuje writable by the webserver setup sl spletni strežnik lahko zapisuje
write config setup sl Zapiši konfiguracijo write config setup sl Zapiši konfiguracijo
year setup sl leto year setup sl leto
yes setup sl Da yes setup sl Da
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup sl Videti je, da uporabljate pred-beta različico egroupWare.<br> Te različice niso več podprte in nadgradnja z njih ni mogoča.<br> Prosimo, da najprej nadgradite na 0.9.10, (zadnja različica, ki podpira pred-beta posodabljanje) <br> in potem nadgradite na posodobljeno različico. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup sl Videti je, da uporabljate pred-beta različico egroupWare.<br /> Te različice niso več podprte in nadgradnja z njih ni mogoča.<br /> Prosimo, da najprej nadgradite na 0.9.10, (zadnja različica, ki podpira pred-beta posodabljanje) <br /> in potem nadgradite na posodobljeno različico.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup sl Videti je, da uporabljate staro različico PHP.<br>Priporočamo, da nadgradite na novo različico.<br>Starejše različice morda ne bodo pravilno izvajale eGroupWare programov, če jih sploh bodo.<br><br>Prosim, nadgradite vsaj na PHP različico %1. you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup sl Videti je, da uporabljate staro različico PHP.<br />Priporočamo, da nadgradite na novo različico.<br />Starejše različice morda ne bodo pravilno izvajale eGroupWare programov, če jih sploh bodo.<br /><br />Prosim, nadgradite vsaj na PHP različico %1.
you appear to be running version %1 of egroupware setup sl Videti je, da imate eGroupWare različico %1. you appear to be running version %1 of egroupware setup sl Videti je, da imate eGroupWare različico %1.
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup sl Videti je, da uporabljate PHP, ki je starejši od 4.1.0. eGroupWare potrebuje PHP različico 4.1.0 ali novejšo. you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup sl Videti je, da uporabljate PHP, ki je starejši od 4.1.0. eGroupWare potrebuje PHP različico 4.1.0 ali novejšo.
you appear to be using php3. disabling php4 sessions support setup sl Videti je, da uporabljate PHP3. Onemogočam podporo za PHP4 seje. you appear to be using php3. disabling php4 sessions support setup sl Videti je, da uporabljate PHP3. Onemogočam podporo za PHP4 seje.
@ -498,13 +498,13 @@ you appear to have oracle v8 (oci) support enabled setup sl Videti je, da imate
you appear to have postgres-db support enabled setup sl Videti je, da imate omogo&#269;eno podporo Postgres SQL podatkovnega stre<72>nika. you appear to have postgres-db support enabled setup sl Videti je, da imate omogo&#269;eno podporo Postgres SQL podatkovnega stre<72>nika.
you appear to have postgresql support enabled setup sl Videti je, da imate omogočeno podporo za PostgreSQL podatkovni strežnik. you appear to have postgresql support enabled setup sl Videti je, da imate omogočeno podporo za PostgreSQL podatkovni strežnik.
you appear to have xml support enabled setup sl Videti je, da imate omogočeno podporo XML. you appear to have xml support enabled setup sl Videti je, da imate omogočeno podporo XML.
you are ready for this stage, but this stage is not yet written.<br> setup sl Pripravljeni ste za ta korak vendar še ni zapisan.<br> you are ready for this stage, but this stage is not yet written.<br /> setup sl Pripravljeni ste za ta korak vendar še ni zapisan.<br />
you didn't enter a config password for domain %1 setup sl Niste vnesli konfiguracijskega gesla za domeno %1 you didn't enter a config password for domain %1 setup sl Niste vnesli konfiguracijskega gesla za domeno %1
you didn't enter a config username for domain %1 setup sl Niste vnesli konfiguracijskega uporabniškega imena za domeno %1 you didn't enter a config username for domain %1 setup sl Niste vnesli konfiguracijskega uporabniškega imena za domeno %1
you didn't enter a header admin password setup sl Niste vnesli upravljalskega gesla za header.inc.php. you didn't enter a header admin password setup sl Niste vnesli upravljalskega gesla za header.inc.php.
you didn't enter a header admin username setup sl Niste vnesli upravljalskega uporabniškega imena za header.inc.php. you didn't enter a header admin username setup sl Niste vnesli upravljalskega uporabniškega imena za header.inc.php.
you do not have any languages installed. please install one now <br> setup sl Nimate nameščenih jezikov. Prosim, izberite enega sedaj.<br> you do not have any languages installed. please install one now <br /> setup sl Nimate nameščenih jezikov. Prosim, izberite enega sedaj.<br />
you have not created your header.inc.php yet!<br> you can create it now. setup sl Niste še ustvarili header.inc.php!<br>Lahko ga ustvarite sedaj. you have not created your header.inc.php yet!<br /> you can create it now. setup sl Niste še ustvarili header.inc.php!<br />Lahko ga ustvarite sedaj.
you have successfully logged out setup sl Uspešno ste se odjavili. you have successfully logged out setup sl Uspešno ste se odjavili.
you must enter a username for the admin setup sl Vnesti morate upravljačevo uporabniško ime. you must enter a username for the admin setup sl Vnesti morate upravljačevo uporabniško ime.
you need to add some domains to your header.inc.php. setup sl V header.inc.php morate vnesti nekaj domen. you need to add some domains to your header.inc.php. setup sl V header.inc.php morate vnesti nekaj domen.
@ -521,7 +521,7 @@ your database is working, but you dont have any applications installed setup sl
your files directory '%1' %2 setup sl Vaša splošna mapa za datoteke '%1' %2 your files directory '%1' %2 setup sl Vaša splošna mapa za datoteke '%1' %2
your header admin password is not set. please set it now! setup sl Vaše upravljalsko geslo NI nastavljeno. Prosim, vnesite ga sedaj. your header admin password is not set. please set it now! setup sl Vaše upravljalsko geslo NI nastavljeno. Prosim, vnesite ga sedaj.
your header.inc.php needs upgrading. setup sl Vaša header.inc.php datoteka je potrebna posodobitve. your header.inc.php needs upgrading. setup sl Vaša header.inc.php datoteka je potrebna posodobitve.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup sl Vaša header.inc.php datoteka je potrebna posodobitve.<br><blink><b class="msg">POZOR!</b></blink><br><b>Naredite rezervno kopijo datoteke in vseh podatkov!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup sl Vaša header.inc.php datoteka je potrebna posodobitve.<br /><blink><b class="msg">POZOR!</b></blink><br /><b>Naredite rezervno kopijo datoteke in vseh podatkov!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup sl Vaša PHP namestitev nima GD (vsaj različico 1.8) podpore, ki je potrebna za prikazovanje Gantovih preglednic v projektih. your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup sl Vaša PHP namestitev nima GD (vsaj različico 1.8) podpore, ki je potrebna za prikazovanje Gantovih preglednic v projektih.
your tables are current setup sl Vaše tabele so najnovejše your tables are current setup sl Vaše tabele so najnovejše
your tables may be altered and you may lose data setup sl Vaše tabele se lahko spremenijo. Obstaja možnost, da pri tem izgubite podatke. your tables may be altered and you may lose data setup sl Vaše tabele se lahko spremenijo. Obstaja možnost, da pri tem izgubite podatke.

View File

@ -7,7 +7,7 @@
13 (ntp) setup sv 13 (ntp) 13 (ntp) setup sv 13 (ntp)
80 (http) setup sv 80 (http) 80 (http) setup sv 80 (http)
<b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup sv <b>teckentabell som skall anv<6E>ndas</b> (anv<6E>nd utf-8 om du skall ha st<73>d f<>r spr<70>k med olika teckentabeller) <b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup sv <b>teckentabell som skall anv<6E>ndas</b> (anv<6E>nd utf-8 om du skall ha st<73>d f<>r spr<70>k med olika teckentabeller)
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup sv <b>Detta kommer att skapa ett (1) adminkonto och tre demokonton</b><br>Anv<6E>ndarnamnen/l<>senorden <20>r demo/guest, demo2/guest samt demo3/guest. <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup sv <b>Detta kommer att skapa ett (1) adminkonto och tre demokonton</b><br />Anv<6E>ndarnamnen/l<>senorden <20>r demo/guest, demo2/guest samt demo3/guest.
accounts existing setup sv Existerande konton accounts existing setup sv Existerande konton
actions setup sv <09>tg<74>rder actions setup sv <09>tg<74>rder
add a domain setup sv L<>gg till dom<6F>n add a domain setup sv L<>gg till dom<6F>n
@ -67,15 +67,15 @@ backup started, this might take a view minutes ... setup sv Backup har p
because an application it depends upon was upgraded setup sv p<> grund av att en applikation som den var beroende av uppgraderats because an application it depends upon was upgraded setup sv p<> grund av att en applikation som den var beroende av uppgraderats
because it depends upon setup sv eftersom den <20>r beroende av because it depends upon setup sv eftersom den <20>r beroende av
because it is not a user application, or access is controlled via acl setup sv eftersom det inte <20>r en anv<6E>ndarapplikation, eller f<>r att <20>tkomst kontrolleras med en ACL because it is not a user application, or access is controlled via acl setup sv eftersom det inte <20>r en anv<6E>ndarapplikation, eller f<>r att <20>tkomst kontrolleras med en ACL
because it requires manual table installation, <br>or the table definition was incorrect setup sv eftersom den kr<6B>ver manuell installation av tabeller, <br>eller att tabelldefinitionen var inkorrekt because it requires manual table installation, <br />or the table definition was incorrect setup sv eftersom den kr<6B>ver manuell installation av tabeller, <br />eller att tabelldefinitionen var inkorrekt
because it was manually disabled setup sv eftersom den st<73>ngts av manuellt because it was manually disabled setup sv eftersom den st<73>ngts av manuellt
because of a failed upgrade or install setup sv eftersom uppgradering eller installation misslyckats because of a failed upgrade or install setup sv eftersom uppgradering eller installation misslyckats
because of a failed upgrade, or the database is newer than the installed version of this app setup sv eftersom uppgradering misslyckats, eller att databasen <20>r nyare <20>n den installerade versionen av denna applikation because of a failed upgrade, or the database is newer than the installed version of this app setup sv eftersom uppgradering misslyckats, eller att databasen <20>r nyare <20>n den installerade versionen av denna applikation
because the enable flag for this app is set to 0, or is undefined setup sv eftersom p<>kopplad-flaggan f<>r denna applikation <20>r satt till 0 eller <20>r odefinerad because the enable flag for this app is set to 0, or is undefined setup sv eftersom p<>kopplad-flaggan f<>r denna applikation <20>r satt till 0 eller <20>r odefinerad
bottom setup sv botten bottom setup sv botten
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>these automated scripts can easily destroy your data.</strong> setup sv Men vi <u> rekommenderar starkt att du backar upp</u> dina tabeller utifall att installationen skulle r<>ka f<>rst<73>ra data. <br> <strong>Dessa automatiserade skript kan med l<>tthet f<>rst<73>ra data i dina tabeller!</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>these automated scripts can easily destroy your data.</strong> setup sv Men vi <u> rekommenderar starkt att du backar upp</u> dina tabeller utifall att installationen skulle r<>ka f<>rst<73>ra data. <br /> <strong>Dessa automatiserade skript kan med l<>tthet f<>rst<73>ra data i dina tabeller!</strong>
cancel setup sv Avbryt cancel setup sv Avbryt
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup sv Kan inte skapa header.inc.php-filen p<> grund av bristande beh<65>righet.<br>Ist<73>llet kan du %1 filen. cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup sv Kan inte skapa header.inc.php-filen p<> grund av bristande beh<65>righet.<br />Ist<73>llet kan du %1 filen.
change system-charset setup sv <09>ndra system-teckentabell change system-charset setup sv <09>ndra system-teckentabell
charset setup sv teckentabell charset setup sv teckentabell
charset to convert to setup sv Teckentabell att konvertera till charset to convert to setup sv Teckentabell att konvertera till
@ -120,11 +120,11 @@ creating tables setup sv Skapar tabeller
current system-charset setup sv Nuvarande system-teckentabell current system-charset setup sv Nuvarande system-teckentabell
current system-charset is %1, click %2here%3 to change it. setup sv Nuvarande system-teckentabell <20>r %1, klicka %2h<32>r%3 f<>r att <20>ndra current system-charset is %1, click %2here%3 to change it. setup sv Nuvarande system-teckentabell <20>r %1, klicka %2h<32>r%3 f<>r att <20>ndra
current version setup sv Aktuell version current version setup sv Aktuell version
currently installed languages: %1 <br> setup sv Installerade spr<70>k: %1 <br> currently installed languages: %1 <br /> setup sv Installerade spr<70>k: %1 <br />
database successfully converted from '%1' to '%2' setup sv Databas konverterad fr<66>n '%1' till '%2' database successfully converted from '%1' to '%2' setup sv Databas konverterad fr<66>n '%1' till '%2'
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup sv Datetime-port.<br>Om du anv<6E>nder port 13, s<>tt brandv<64>ggsreglerna korrekt innan du trycker p<> Klar<br>(Port: 13 / Host 129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup sv Datetime-port.<br />Om du anv<6E>nder port 13, s<>tt brandv<64>ggsreglerna korrekt innan du trycker p<> Klar<br />(Port: 13 / Host 129.6.15.28)
day setup sv dag day setup sv dag
day of week<br>(0-6, 0=sunday) setup sv veckodag<br>(0-6, 0=s<>ndag) day of week<br />(0-6, 0=sunday) setup sv veckodag<br />(0-6, 0=s<>ndag)
db backup and restore setup sv DB backup och restore db backup and restore setup sv DB backup och restore
db host setup sv DB host db host setup sv DB host
db name setup sv DB namn db name setup sv DB namn
@ -162,12 +162,12 @@ enable for extra debug-messages setup sv visa extra debug-meddelanden
enable ldap version 3 setup sv m<>jligg<67>r LDAP version 3 enable ldap version 3 setup sv m<>jligg<67>r LDAP version 3
enable mcrypt setup sv m<>jligg<67>r MCrypt enable mcrypt setup sv m<>jligg<67>r MCrypt
enter some random text for app session encryption setup sv Skriv in lite slumpm<70>ssig text f<>r kryptering av sessionsinformation enter some random text for app session encryption setup sv Skriv in lite slumpm<70>ssig text f<>r kryptering av sessionsinformation
enter some random text for app_session <br>encryption (requires mcrypt) setup sv Skriv in lite slumpm<70>ssig text f<>r<br>kryptering av sessionsinformation (kr<6B>ver MCrypt) enter some random text for app_session <br />encryption (requires mcrypt) setup sv Skriv in lite slumpm<70>ssig text f<>r<br />kryptering av sessionsinformation (kr<6B>ver MCrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup sv Ange fullst<73>ndig s<>kv<6B>g f<>r temp-filer <br>T ex: /tmp, c:\temp enter the full path for temporary files.<br />examples: /tmp, c:\temp setup sv Ange fullst<73>ndig s<>kv<6B>g f<>r temp-filer <br />T ex: /tmp, c:\temp
enter the full path for users and group files.<br>examples: /files, e:\files setup sv Ange fullst<73>ndig s<>kv<6B>g f<>r anv<6E>ndar- och gruppfiler <br>T ex: /files, e:\files enter the full path for users and group files.<br />examples: /files, e:\files setup sv Ange fullst<73>ndig s<>kv<6B>g f<>r anv<6E>ndar- och gruppfiler <br />T ex: /files, e:\files
enter the full path to the backup directory.<br>if empty: files directory setup sv Ange fullst<73>ndig s<>kv<6B>g f<>r backupkatalog <br>om tomt: samma som anv<6E>ndarfiler enter the full path to the backup directory.<br />if empty: files directory setup sv Ange fullst<73>ndig s<>kv<6B>g f<>r backupkatalog <br />om tomt: samma som anv<6E>ndarfiler
enter the hostname of the machine on which this server is running setup sv Ange hostnamn f<>r maskinen som k<>r denna server enter the hostname of the machine on which this server is running setup sv Ange hostnamn f<>r maskinen som k<>r denna server
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup sv Ange eGroupWare:s URL.<br>T ex: http://www.doman.com/egroupware eller /egroupware<br><b>Ingen avslutande slash</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup sv Ange eGroupWare:s URL.<br />T ex: http://www.doman.com/egroupware eller /egroupware<br /><b>Ingen avslutande slash</b>
enter the site password for peer servers setup sv Ange sitel<65>senord f<>r peer-servers enter the site password for peer servers setup sv Ange sitel<65>senord f<>r peer-servers
enter the site username for peer servers setup sv Ange siteanv<6E>ndarnamn f<>r peer-servers enter the site username for peer servers setup sv Ange siteanv<6E>ndarnamn f<>r peer-servers
enter the title for your site setup sv Ange titel f<>r din webbplats enter the title for your site setup sv Ange titel f<>r din webbplats
@ -358,7 +358,7 @@ save setup sv Spara
save this text as contents of your header.inc.php setup sv Spara denna text som inneh<65>llet i din header.inc.php save this text as contents of your header.inc.php setup sv Spara denna text som inneh<65>llet i din header.inc.php
schedule setup sv schema schedule setup sv schema
scheduled backups setup sv schemalagda backuper scheduled backups setup sv schemalagda backuper
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup sv V<>lj en applikation, ange m<>lversion, tryck sedan verkst<73>ll f<>r att processa den versionen<br> om du inte anger version kommer bara grudtabellerna att installeras f<>r denna applikation <br> <blink>Detta kommer att ta bort applikationens alla tabeller f<>rst</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup sv V<>lj en applikation, ange m<>lversion, tryck sedan verkst<73>ll f<>r att processa den versionen<br /> om du inte anger version kommer bara grudtabellerna att installeras f<>r denna applikation <br /> <blink>Detta kommer att ta bort applikationens alla tabeller f<>rst</blink>
select one... setup sv v<>lj en select one... setup sv v<>lj en
select the default applications to which your users will have access setup sv V<>lj vilka applikationer anv<6E>ndare skall ha access till default select the default applications to which your users will have access setup sv V<>lj vilka applikationer anv<6E>ndare skall ha access till default
select the desired action(s) from the available choices setup sv V<>lj <20>terg<72>rder fr<66>n listan nedan select the desired action(s) from the available choices setup sv V<>lj <20>terg<72>rder fr<66>n listan nedan
@ -420,8 +420,8 @@ the mbstring extension is needed to fully support unicode (utf-8) or other multi
the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup sv mbstring.func_overload = 7 beh<65>vs f<>r att fullt ut kunna st<73>dja Unicode (UTF-8) eller andra multi-byte teckenupps<70>ttningar the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup sv mbstring.func_overload = 7 beh<65>vs f<>r att fullt ut kunna st<73>dja Unicode (UTF-8) eller andra multi-byte teckenupps<70>ttningar
the table definition was correct, and the tables were installed setup sv Tabelldefinitionen var korrekt och tabellerna installerades the table definition was correct, and the tables were installed setup sv Tabelldefinitionen var korrekt och tabellerna installerades
the tables setup sv tabellerna the tables setup sv tabellerna
there was a problem trying to connect to your ldap server. <br> setup sv Det uppstod problem med att kontakta din LDAP-server. <br> there was a problem trying to connect to your ldap server. <br /> setup sv Det uppstod problem med att kontakta din LDAP-server. <br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup sv Det uppstod problem med att kontakta din LDAP-server.<br>kontrollera din LDAP serverkonfiguration there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup sv Det uppstod problem med att kontakta din LDAP-server.<br />kontrollera din LDAP serverkonfiguration
this has to be outside the webservers document-root!!! setup sv M<>ste ligga utanf<6E>r webserverns dokumentrot!!! this has to be outside the webservers document-root!!! setup sv M<>ste ligga utanf<6E>r webserverns dokumentrot!!!
this might take a while, please wait ... setup sv Detta kan ta ett tag, v<>nta... this might take a while, please wait ... setup sv Detta kan ta ett tag, v<>nta...
this program lets you backup your database, schedule a backup or restore it. setup sv Detta program l<>ter dig backa upp din databas, schemal<61>gga en backup eller <20>terst<73>lla en backup. this program lets you backup your database, schedule a backup or restore it. setup sv Detta program l<>ter dig backa upp din databas, schemal<61>gga en backup eller <20>terst<73>lla en backup.
@ -430,8 +430,8 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup sv Denna sektion hj<68>lper dig exportera anv<6E>ndare och grupper fr<66>n eGroupWares tabeller till ett LDAP-tr<74>d this section will help you export users and groups from egroupware's account tables into your ldap tree setup sv Denna sektion hj<68>lper dig exportera anv<6E>ndare och grupper fr<66>n eGroupWares tabeller till ett LDAP-tr<74>d
this section will help you import users and groups from your ldap tree into egroupware's account tables setup sv Denna sektion hj<68>lper dig att importera anv<6E>ndare och grupper fr<66>n ditt LDAP-tr<74>d till eGroupWares tabeller this section will help you import users and groups from your ldap tree into egroupware's account tables setup sv Denna sektion hj<68>lper dig att importera anv<6E>ndare och grupper fr<66>n ditt LDAP-tr<74>d till eGroupWares tabeller
this section will help you setup your ldap accounts for use with egroupware setup sv Denna sektion hj<68>lper dig st<73>lla in dina LDAP-konton f<>r anv<6E>ndning i eGroupWare this section will help you setup your ldap accounts for use with egroupware setup sv Denna sektion hj<68>lper dig st<73>lla in dina LDAP-konton f<>r anv<6E>ndning i eGroupWare
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup sv Detta b<>r vara ca 30 bytes i l<>ngd. <br>Not: Default <20>r slumpm<70>ssigt genererat. this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup sv Detta b<>r vara ca 30 bytes i l<>ngd. <br />Not: Default <20>r slumpm<70>ssigt genererat.
this stage is completed<br> setup sv Detta stadium klart this stage is completed<br /> setup sv Detta stadium klart
to a version it does not know about setup sv till en ok<6F>nd version to a version it does not know about setup sv till en ok<6F>nd version
to setup 1 admin account and 3 demo accounts. setup sv f<>r att skapa ett adminkonto och tre demokonton to setup 1 admin account and 3 demo accounts. setup sv f<>r att skapa ett adminkonto och tre demokonton
top setup sv <09>verst top setup sv <09>verst
@ -470,14 +470,14 @@ which database type do you want to use with egroupware? setup sv Vilken typ av d
world readable setup sv L<>sbar av alla (world readable) world readable setup sv L<>sbar av alla (world readable)
world writable setup sv Skrivbar av alla (world writable) world writable setup sv Skrivbar av alla (world writable)
would you like egroupware to cache the phpgw info array ? setup sv Vill du att eGroupWare skall cacha phpgw info array? would you like egroupware to cache the phpgw info array ? setup sv Vill du att eGroupWare skall cacha phpgw info array?
would you like egroupware to check for a new version<br>when admins login ? setup sv Vill du att eGroupWare skall kontrollera om det finns nya versioner<br>n<>r admin loggar in? would you like egroupware to check for a new version<br />when admins login ? setup sv Vill du att eGroupWare skall kontrollera om det finns nya versioner<br />n<>r admin loggar in?
would you like to show each application's upgrade status ? setup sv Vill du visa varje applikations uppgraderingsstatus? would you like to show each application's upgrade status ? setup sv Vill du visa varje applikations uppgraderingsstatus?
writable by the webserver setup sv Skrivbar av webservern writable by the webserver setup sv Skrivbar av webservern
write config setup sv Skriv konfiguration write config setup sv Skriv konfiguration
year setup sv <09>r year setup sv <09>r
yes setup sv Ja yes setup sv Ja
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup sv Du verkar k<>ra en pre-beta version av eGroupWare.<br>Dessa versioner st<73>ds inte l<>ngre och det finns ingen uppgraderingsv<73>g via setup.<br>Du m<>ste f<>rst uppgradera till 0.9.10(sista versionen som st<73>dde detta)<br> och sedan uppgradera igen med denna version. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup sv Du verkar k<>ra en pre-beta version av eGroupWare.<br />Dessa versioner st<73>ds inte l<>ngre och det finns ingen uppgraderingsv<73>g via setup.<br />Du m<>ste f<>rst uppgradera till 0.9.10(sista versionen som st<73>dde detta)<br /> och sedan uppgradera igen med denna version.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup sv Du verkar k<>ra en <20>ldre version av PHP.<br>Det <20>r rekommenderat att du uppgraderar till en nyare version.<br><3E>ldre versioner av PHP kanske inte k<>r eGroupWare korrekt, om alls.<br><br>Du rekommenderas starkt att uppgradera till <20>tminstone version %1 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup sv Du verkar k<>ra en <20>ldre version av PHP.<br />Det <20>r rekommenderat att du uppgraderar till en nyare version.<br /><3E>ldre versioner av PHP kanske inte k<>r eGroupWare korrekt, om alls.<br /><br />Du rekommenderas starkt att uppgradera till <20>tminstone version %1
you appear to be running version %1 of egroupware setup sv Du verkar k<>ra version %1 av eGroupWare you appear to be running version %1 of egroupware setup sv Du verkar k<>ra version %1 av eGroupWare
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup sv Du verkar k<>ra en <20>ldre version av PHP <20>n 4.1.0. eGroupWare kr<6B>ver PHP 4.1.0 eller senare. you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup sv Du verkar k<>ra en <20>ldre version av PHP <20>n 4.1.0. eGroupWare kr<6B>ver PHP 4.1.0 eller senare.
you appear to be using php3. disabling php4 sessions support setup sv Du verkar k<>ra PHP3, st<73>nger av PHP4:as sessionsst<73>d you appear to be using php3. disabling php4 sessions support setup sv Du verkar k<>ra PHP3, st<73>nger av PHP4:as sessionsst<73>d
@ -489,13 +489,13 @@ you appear to have oracle support enabled setup sv Du verkar ha st
you appear to have oracle v8 (oci) support enabled setup sv Du verkar ha st<73>d f<>r Oracle V8 (OC1) aktiverat you appear to have oracle v8 (oci) support enabled setup sv Du verkar ha st<73>d f<>r Oracle V8 (OC1) aktiverat
you appear to have postgresql support enabled setup sv Du verkar ha st<73>d f<>r PostgreSQL aktiverat you appear to have postgresql support enabled setup sv Du verkar ha st<73>d f<>r PostgreSQL aktiverat
you appear to have xml support enabled setup sv Du verkar ha st<73>d f<>r XML aktiverat you appear to have xml support enabled setup sv Du verkar ha st<73>d f<>r XML aktiverat
you are ready for this stage, but this stage is not yet written.<br> setup sv Du <20>r redo f<>r detta stadium, men detta stadium <20>r inte skrivet <20>nnu.<br> you are ready for this stage, but this stage is not yet written.<br /> setup sv Du <20>r redo f<>r detta stadium, men detta stadium <20>r inte skrivet <20>nnu.<br />
you didn't enter a config password for domain %1 setup sv Du angav inget config-l<>senord f<>r dom<6F>n %1 you didn't enter a config password for domain %1 setup sv Du angav inget config-l<>senord f<>r dom<6F>n %1
you didn't enter a config username for domain %1 setup sv Du angav inget config-anv<6E>ndarnamn f<>r dom<6F>n %1 you didn't enter a config username for domain %1 setup sv Du angav inget config-anv<6E>ndarnamn f<>r dom<6F>n %1
you didn't enter a header admin password setup sv Du angav inget header admin-l<>senord you didn't enter a header admin password setup sv Du angav inget header admin-l<>senord
you didn't enter a header admin username setup sv Du angav inget header admin-anv<6E>ndarnamn you didn't enter a header admin username setup sv Du angav inget header admin-anv<6E>ndarnamn
you do not have any languages installed. please install one now <br> setup sv Du har f<>r n<>rvarande inga spr<70>k installerade. Var v<>nlig installera ett nu<br> you do not have any languages installed. please install one now <br /> setup sv Du har f<>r n<>rvarande inga spr<70>k installerade. Var v<>nlig installera ett nu<br />
you have not created your header.inc.php yet!<br> you can create it now. setup sv Du har inte skapat din header.php.inc <20>nnu!<br>Du kan skapa den nu. you have not created your header.inc.php yet!<br /> you can create it now. setup sv Du har inte skapat din header.php.inc <20>nnu!<br />Du kan skapa den nu.
you have successfully logged out setup sv Du har nu loggat ut. you have successfully logged out setup sv Du har nu loggat ut.
you must enter a username for the admin setup sv Du m<>ste ange ett l<>senord f<>r admin you must enter a username for the admin setup sv Du m<>ste ange ett l<>senord f<>r admin
you need to add some domains to your header.inc.php. setup sv Du m<>ste l<>gga till n<>gra dom<6F>ner till din header.inc.php you need to add some domains to your header.inc.php. setup sv Du m<>ste l<>gga till n<>gra dom<6F>ner till din header.inc.php
@ -512,7 +512,7 @@ your database is working, but you dont have any applications installed setup sv
your files directory '%1' %2 setup sv din filkatalog '%1' %2 your files directory '%1' %2 setup sv din filkatalog '%1' %2
your header admin password is not set. please set it now! setup sv Ditt header admin-l<>senord <20>r inte satt. Skriv in det nu! your header admin password is not set. please set it now! setup sv Ditt header admin-l<>senord <20>r inte satt. Skriv in det nu!
your header.inc.php needs upgrading. setup sv Din header.inc.php beh<65>ver uppgraderas. your header.inc.php needs upgrading. setup sv Din header.inc.php beh<65>ver uppgraderas.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup sv Din header.inc.php beh<65>ver uppgraderas<br><blink><b class="msg">VARNING!</b></blink><br><b>TA BACKUP!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup sv Din header.inc.php beh<65>ver uppgraderas<br /><blink><b class="msg">VARNING!</b></blink><br /><b>TA BACKUP!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup sv Din PHP-installation saknar korrekt GD-st<73>d. Du beh<65>ver GD-library version 1.8 eller b<>ttre om du vill anv<6E>nda Gantt-diagram i Projekt your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup sv Din PHP-installation saknar korrekt GD-st<73>d. Du beh<65>ver GD-library version 1.8 eller b<>ttre om du vill anv<6E>nda Gantt-diagram i Projekt
your tables are current setup sv Dina tabeller <20>r aktuella your tables are current setup sv Dina tabeller <20>r aktuella
your tables will be dropped and you will lose data setup sv Dina tabeller kommer att tas bort och du f<>rlorar data!! your tables will be dropped and you will lose data setup sv Dina tabeller kommer att tas bort och du f<>rlorar data!!

View File

@ -40,18 +40,18 @@ auto-created user accounts expire setup zh 自动建立的用户帐户已过期
available version setup zh 可用版本 available version setup zh 可用版本
back to the previous screen setup zh 返回上一个页面 back to the previous screen setup zh 返回上一个页面
back to user login setup zh 返回用户登录界面 back to user login setup zh 返回用户登录界面
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>These automated scripts can easily destroy your data.</strong> setup zh 但是我们 <u>强烈建议您备份表格,</u> 以防止脚本破坏数据,<br><strong>这是有可能发生的!</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>These automated scripts can easily destroy your data.</strong> setup zh 但是我们 <u>强烈建议您备份表格,</u> 以防止脚本破坏数据,<br /><strong>这是有可能发生的!</strong>
because an application it depends upon was upgraded setup zh 因为它所依赖的应用程序已升级 because an application it depends upon was upgraded setup zh 因为它所依赖的应用程序已升级
because it depends upon setup zh 因为它依赖于 because it depends upon setup zh 因为它依赖于
because it is not a user application, or access is controlled via acl setup zh 因为它不是用户应用程序, 或者受ACL限制无权访问 because it is not a user application, or access is controlled via acl setup zh 因为它不是用户应用程序, 或者受ACL限制无权访问
because it requires manual table installation, <br>or the table definition was incorrect setup zh 因为它要求手动安装表格, <br>或者表格的定义错误 because it requires manual table installation, <br />or the table definition was incorrect setup zh 因为它要求手动安装表格, <br />或者表格的定义错误
because it was manually disabled setup zh 因为它已被手动禁用 because it was manually disabled setup zh 因为它已被手动禁用
because of a failed upgrade or install setup zh 因为升级或安装失败 because of a failed upgrade or install setup zh 因为升级或安装失败
because of a failed upgrade, or the database is newer than the installed version of this app setup zh 因为升级失败,或是现有数据库的版本比该应用程序新 because of a failed upgrade, or the database is newer than the installed version of this app setup zh 因为升级失败,或是现有数据库的版本比该应用程序新
because the enable flag for this app is set to 0, or is undefined setup zh 因为该应用程序的启用标志为0或未定义 because the enable flag for this app is set to 0, or is undefined setup zh 因为该应用程序的启用标志为0或未定义
bottom setup zh 底部 bottom setup zh 底部
cancel setup zh 取消 cancel setup zh 取消
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup zh 权限不足无法创建文件header.inc.php。<br>您可以尝试%1该文件。 cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup zh 权限不足无法创建文件header.inc.php。<br />您可以尝试%1该文件。
change system-charset setup zh 更改系统编码 change system-charset setup zh 更改系统编码
charset setup zh utf-8 charset setup zh utf-8
charset to convert to setup zh 更改系统编码为 charset to convert to setup zh 更改系统编码为
@ -82,9 +82,9 @@ creating tables setup zh 正在创建表格
current system-charset setup zh 当前系统编码 current system-charset setup zh 当前系统编码
current system-charset is %1, click %2here%3 to change it. setup zh 当前系统编码为%1,点击%2此处%3更改系统编码. current system-charset is %1, click %2here%3 to change it. setup zh 当前系统编码为%1,点击%2此处%3更改系统编码.
current version setup zh 当前版本号 current version setup zh 当前版本号
currently installed languages: %1 <br> setup zh 当前已安装的语言:%1<br> currently installed languages: %1 <br /> setup zh 当前已安装的语言:%1<br />
database successfully converted from '%1' to '%2' setup zh 已成功将数据库'%1'转换为'%2' database successfully converted from '%1' to '%2' setup zh 已成功将数据库'%1'转换为'%2'
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup zh 日期时间端口。<br>如果使用13号端口,请在提交之前设置正确的防火墙规则.<br>(例如端口号13/主机129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup zh 日期时间端口。<br />如果使用13号端口,请在提交之前设置正确的防火墙规则.<br />(例如端口号13/主机129.6.15.28)
db host setup zh 数据库主机 db host setup zh 数据库主机
db name setup zh 数据库名称 db name setup zh 数据库名称
db password setup zh 数据库密码 db password setup zh 数据库密码
@ -119,11 +119,11 @@ enable for extra debug-messages setup zh 显示额外的调试信息
enable ldap version 3 setup zh 启用第3版LDAP enable ldap version 3 setup zh 启用第3版LDAP
enable mcrypt setup zh 启用加密功能 enable mcrypt setup zh 启用加密功能
enter some random text for app session encryption setup zh 用于加密应用程序会话的随机字符串 enter some random text for app session encryption setup zh 用于加密应用程序会话的随机字符串
enter some random text for app_session <br>encryption (requires mcrypt) setup zh 用于加密应用程序会话的随机字符串 <br> (需安装MCRYPT) enter some random text for app_session <br />encryption (requires mcrypt) setup zh 用于加密应用程序会话的随机字符串 <br /> (需安装MCRYPT)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup zh 存放临时文件目录的完整路径.<br>例如: /tmp, C:\TEMP enter the full path for temporary files.<br />examples: /tmp, c:\temp setup zh 存放临时文件目录的完整路径.<br />例如: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup zh 存放用户和组文件的目录的完整路径.<br>例如: /files, E:\FILES enter the full path for users and group files.<br />examples: /files, e:\files setup zh 存放用户和组文件的目录的完整路径.<br />例如: /files, E:\FILES
enter the hostname of the machine on which this server is running setup zh 运行该服务器的机器主机名 enter the hostname of the machine on which this server is running setup zh 运行该服务器的机器主机名
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup zh 输入eGroupWare的网址.<br>例如: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>末尾不加上"/"</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup zh 输入eGroupWare的网址.<br />例如: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>末尾不加上"/"</b>
enter the site password for peer servers setup zh 对等服务器的站点密码 enter the site password for peer servers setup zh 对等服务器的站点密码
enter the site username for peer servers setup zh 对等服务器的站点用户名 enter the site username for peer servers setup zh 对等服务器的站点用户名
enter the title for your site setup zh 站点标题 enter the title for your site setup zh 站点标题
@ -273,7 +273,7 @@ return to setup setup zh 返回安装页面
sample configuration not found. using built in defaults setup zh 未找到配置范例. 将使用内置的默认配置 sample configuration not found. using built in defaults setup zh 未找到配置范例. 将使用内置的默认配置
save setup zh 保存 save setup zh 保存
save this text as contents of your header.inc.php setup zh 将文本保存为header.inc.php save this text as contents of your header.inc.php setup zh 将文本保存为header.inc.php
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup zh 选择一个应用程序, 输入目标版本,然后提交,以处理该版本.<br>如果您没有输入一个版本, 只为应用程序安装最基本的表格.<br><blink>首先会移除所有应用程序的表格!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup zh 选择一个应用程序, 输入目标版本,然后提交,以处理该版本.<br />如果您没有输入一个版本, 只为应用程序安装最基本的表格.<br /><blink>首先会移除所有应用程序的表格!</blink>
select one... setup zh select one... select one... setup zh select one...
select the default applications to which your users will have access setup zh 选择一个您的用户能够访问的应用程序 select the default applications to which your users will have access setup zh 选择一个您的用户能够访问的应用程序
select the desired action(s) from the available choices setup zh 从下面的操作中选出您需要的操作 select the desired action(s) from the available choices setup zh 从下面的操作中选出您需要的操作
@ -320,19 +320,19 @@ the db_type in defaults (%1) is not supported on this server. using first suppor
the file setup zh 文件 the file setup zh 文件
the table definition was correct, and the tables were installed setup zh 表格定义正确,表格已经安装完毕 the table definition was correct, and the tables were installed setup zh 表格定义正确,表格已经安装完毕
the tables setup zh 表格 the tables setup zh 表格
there was a problem trying to connect to your ldap server. <br> setup zh 无法连接到您的 LDAP 服务器. <br> there was a problem trying to connect to your ldap server. <br /> setup zh 无法连接到您的 LDAP 服务器. <br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup zh 无法连接到您的LDAP服务器. <br>请检查您的LDAP服务器的配置 there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup zh 无法连接到您的LDAP服务器. <br />请检查您的LDAP服务器的配置
this has to be outside the webservers document-root!!! setup zh 该目录不能位于web服务器的根目录内!!! this has to be outside the webservers document-root!!! setup zh 该目录不能位于web服务器的根目录内!!!
this program will convert your database to a new system-charset. setup zh 该程序将转换您的数据库,使之符合新的系统编码. this program will convert your database to a new system-charset. setup zh 该程序将转换您的数据库,使之符合新的系统编码.
this program will help you upgrade or install different languages for egroupware setup zh 该程序将帮助升级您的 eGroupWare 或安装其他语言 this program will help you upgrade or install different languages for egroupware setup zh 该程序将帮助升级您的 eGroupWare 或安装其他语言
this section will help you export users and groups from egroupware's account tables into your ldap tree setup zh 这部分将帮助您从 eGroupWare 的帐户表格中将用户和组信息导出到 LDAP 树 this section will help you export users and groups from egroupware's account tables into your ldap tree setup zh 这部分将帮助您从 eGroupWare 的帐户表格中将用户和组信息导出到 LDAP 树
this section will help you import users and groups from your ldap tree into egroupware's account tables setup zh 这部分将帮助您从 LDAP 树中将用户和组信息导入到 eGroupWare 的帐户表格中 this section will help you import users and groups from your ldap tree into egroupware's account tables setup zh 这部分将帮助您从 LDAP 树中将用户和组信息导入到 eGroupWare 的帐户表格中
this section will help you setup your ldap accounts for use with egroupware setup zh 这部分将帮助您建立您的 LDAP 帐户,以便和 eGroupWare 一起使用 this section will help you setup your ldap accounts for use with egroupware setup zh 这部分将帮助您建立您的 LDAP 帐户,以便和 eGroupWare 一起使用
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup zh 长度应该在30字节左右.<br>注意: 默认值已经随机生成. this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup zh 长度应该在30字节左右.<br />注意: 默认值已经随机生成.
this stage is completed<br> setup zh 本阶段配置已完成<br> this stage is completed<br /> setup zh 本阶段配置已完成<br />
this will create 1 admin account and 3 demo accounts<br>the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br><b>!!!this will delete all existing accounts!!!</b><br> setup zh 这将创建一个管理员帐户和三个演示帐户<br>用户名/密码是: demo/guest, demo2/guest 和 demo3/guest.<br><b>!!!这将删除所有帐户!!!</b><br> this will create 1 admin account and 3 demo accounts<br />the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!this will delete all existing accounts!!!</b><br /> setup zh 这将创建一个管理员帐户和三个演示帐户<br />用户名/密码是: demo/guest, demo2/guest 和 demo3/guest.<br /><b>!!!这将删除所有帐户!!!</b><br />
to a version it does not know about setup zh 未知版本 to a version it does not know about setup zh 未知版本
to setup 1 admin account and 3 demo accounts.<br><b>this will delete all existing accounts</b> setup zh 安装一个管理员帐户和三个演示帐户.<br><b>该操作将删除所有现有帐户</b> to setup 1 admin account and 3 demo accounts.<br /><b>this will delete all existing accounts</b> setup zh 安装一个管理员帐户和三个演示帐户.<br /><b>该操作将删除所有现有帐户</b>
top setup zh 顶部 top setup zh 顶部
translations added setup zh 转换已添加 translations added setup zh 转换已添加
translations removed setup zh 转换已删除 translations removed setup zh 转换已删除
@ -358,12 +358,12 @@ we will automatically update your tables/records to %1 setup zh 将自动将您
what type of sessions management do you want to use (php4 session management may perform better)? setup zh 使用何种类型的会话管理工具?(PHP4的会话管理性能较好) what type of sessions management do you want to use (php4 session management may perform better)? setup zh 使用何种类型的会话管理工具?(PHP4的会话管理性能较好)
which database type do you want to use with egroupware? setup zh 在eGroupWare中使用何种数据库 which database type do you want to use with egroupware? setup zh 在eGroupWare中使用何种数据库
would you like egroupware to cache the phpgw info array ? setup zh 是否让eGroupWare缓存系统信息? would you like egroupware to cache the phpgw info array ? setup zh 是否让eGroupWare缓存系统信息?
would you like egroupware to check for a new version<br>when admins login ? setup zh 管理员登陆时是否检查eGroupWare的更新版本? would you like egroupware to check for a new version<br />when admins login ? setup zh 管理员登陆时是否检查eGroupWare的更新版本?
would you like to show each application's upgrade status ? setup zh 您希望显示每个应用程序的升级状态吗 ? would you like to show each application's upgrade status ? setup zh 您希望显示每个应用程序的升级状态吗 ?
write config setup zh 保存配置 write config setup zh 保存配置
yes setup zh Yes yes setup zh Yes
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup zh 您目前运行的是测试版本的 eGroupWare。<br>目前已经不再支持这个版本,建议您先升级到 0.9.10 版(最后一个测试版) <br>再升级到现在的版本. you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup zh 您目前运行的是测试版本的 eGroupWare。<br />目前已经不再支持这个版本,建议您先升级到 0.9.10 版(最后一个测试版) <br />再升级到现在的版本.
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup zh 您目前运行的PHP版本太旧 <br>建议您升级到较新版本. <br>因为老版本的 PHP 可能会造成 eGroupWare 运行不正常. <br><br>建议您升级到至少 %1 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup zh 您目前运行的PHP版本太旧 <br />建议您升级到较新版本. <br />因为老版本的 PHP 可能会造成 eGroupWare 运行不正常. <br /><br />建议您升级到至少 %1
you appear to be running version %1 of egroupware setup zh 您目前运行的eGroupWare版本为 %1 you appear to be running version %1 of egroupware setup zh 您目前运行的eGroupWare版本为 %1
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup zh 您的 PHP 版本号低于 4.1.0 . eGroupWare 要求4.1.0版或更高版本 you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup zh 您的 PHP 版本号低于 4.1.0 . eGroupWare 要求4.1.0版或更高版本
you appear to be using php3. disabling php4 sessions support setup zh 您目前运行的是PHP3. PHP4会话支持已禁用 you appear to be using php3. disabling php4 sessions support setup zh 您目前运行的是PHP3. PHP4会话支持已禁用
@ -374,11 +374,11 @@ you appear to have oracle support enabled setup zh Oracle已启用
you appear to have oracle v8 (oci) support enabled setup zh Oracle V8 (OCI)已启用 you appear to have oracle v8 (oci) support enabled setup zh Oracle V8 (OCI)已启用
you appear to have postgres-db support enabled setup zh Postgres-DB已启用 you appear to have postgres-db support enabled setup zh Postgres-DB已启用
you appear to have xml support enabled setup zh XML支持已启用 you appear to have xml support enabled setup zh XML支持已启用
you are ready for this stage, but this stage is not yet written.<br> setup zh 本阶段的配置已经完成,但尚未保存<br> you are ready for this stage, but this stage is not yet written.<br /> setup zh 本阶段的配置已经完成,但尚未保存<br />
you didn't enter a config password for domain %1 setup zh 您没有为域输入一个配置密码 %1 you didn't enter a config password for domain %1 setup zh 您没有为域输入一个配置密码 %1
you didn't enter a header admin password setup zh 您没有输入主管理员密码 you didn't enter a header admin password setup zh 您没有输入主管理员密码
you do not have any languages installed. please install one now <br> setup zh 您没有安装任何语言,请安装至少一种语言 <br> you do not have any languages installed. please install one now <br /> setup zh 您没有安装任何语言,请安装至少一种语言 <br />
you have not created your header.inc.php yet!<br> you can create it now. setup zh 您尚未创建header.inc.php! 请立刻创建. you have not created your header.inc.php yet!<br /> you can create it now. setup zh 您尚未创建header.inc.php! 请立刻创建.
you have successfully logged out setup zh 注销成功 you have successfully logged out setup zh 注销成功
you must enter a username for the admin setup zh 您必须为管理员输入一个用户名 you must enter a username for the admin setup zh 您必须为管理员输入一个用户名
you need to add some domains to your header.inc.php. setup zh 您需要在header.inc.php中添加域. you need to add some domains to your header.inc.php. setup zh 您需要在header.inc.php中添加域.
@ -392,7 +392,7 @@ your database is not working! setup zh 您的数据库未在运行!
your database is working, but you dont have any applications installed setup zh 您的数据库运行正常,但是没有安装任何应用程序 your database is working, but you dont have any applications installed setup zh 您的数据库运行正常,但是没有安装任何应用程序
your header admin password is not set. please set it now! setup zh 您的主管理员密码没有设置. 请立刻设置! your header admin password is not set. please set it now! setup zh 您的主管理员密码没有设置. 请立刻设置!
your header.inc.php needs upgrading. setup zh 您的 header.inc.php 需要升级. your header.inc.php needs upgrading. setup zh 您的 header.inc.php 需要升级.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup zh 您的header.inc.php需要升级.<br><blink><b class="msg">警告!</b></blink><br><b>请做备份!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup zh 您的header.inc.php需要升级.<br /><blink><b class="msg">警告!</b></blink><br /><b>请做备份!</b>
your tables are current setup zh 您的表格是当前表格 your tables are current setup zh 您的表格是当前表格
your tables may be altered and you may lose data setup zh 您的表格可能改动过.并可能丢失部分数据 your tables may be altered and you may lose data setup zh 您的表格可能改动过.并可能丢失部分数据
your tables will be dropped and you will lose data setup zh 您的表格将被移除,数据也会全部丢失 your tables will be dropped and you will lose data setup zh 您的表格将被移除,数据也会全部丢失

View File

@ -8,8 +8,8 @@
13 (ntp) setup zt 13 (ntp) 13 (ntp) setup zt 13 (ntp)
80 (http) setup zt 80 (網站伺服器) 80 (http) setup zt 80 (網站伺服器)
<b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup zt <b>使用的字元編碼</b> (如果您希望使用多國語言環境,請輸入 utf-8 ): <b>charset to use</b> (use utf-8 if you plan to use languages with different charsets): setup zt <b>使用的字元編碼</b> (如果您希望使用多國語言環境,請輸入 utf-8 ):
<b>this will create 1 admin account and 3 demo accounts</b><br>the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup zt <b>這會產生 1 個管理者帳號以及 3 個測試帳號</b><br>測試帳號的密碼分別是: demo/guest, demo2/guest 與 demo3/guest。 <b>this will create 1 admin account and 3 demo accounts</b><br />the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup zt <b>這會產生 1 個管理者帳號以及 3 個測試帳號</b><br />測試帳號的密碼分別是: demo/guest, demo2/guest 與 demo3/guest。
<br><center>import has been completed! click <a href="index.php">here</a> to return to setup </center> setup zt <br><center>匯入完成!點選<a href="index.php">此處</a>回到設定畫面。</center> <br /><center>import has been completed! click <a href="index.php">here</a> to return to setup </center> setup zt <br /><center>匯入完成!點選<a href="index.php">此處</a>回到設定畫面。</center>
accounts existing setup zt 帳號已經存在 accounts existing setup zt 帳號已經存在
actions setup zt 動作 actions setup zt 動作
add a domain setup zt 新增一個網域 add a domain setup zt 新增一個網域
@ -70,15 +70,15 @@ backup started, this might take a view minutes ... setup zt 備份進行中,
because an application it depends upon was upgraded setup zt 因為它所依存的應用程式已經升級了 because an application it depends upon was upgraded setup zt 因為它所依存的應用程式已經升級了
because it depends upon setup zt 因為此應用程式被關聯到 because it depends upon setup zt 因為此應用程式被關聯到
because it is not a user application, or access is controlled via acl setup zt 因為此應用程式不是一個使用者端的應用程式,或是由權限控管存取權限。 because it is not a user application, or access is controlled via acl setup zt 因為此應用程式不是一個使用者端的應用程式,或是由權限控管存取權限。
because it requires manual table installation, <br>or the table definition was incorrect setup zt 因為此應用程式它需要手動安裝資料表或是資料表的定義不正確。 because it requires manual table installation, <br />or the table definition was incorrect setup zt 因為此應用程式它需要手動安裝資料表或是資料表的定義不正確。
because it was manually disabled setup zt 因為此應用程式已經被手動停用了。 because it was manually disabled setup zt 因為此應用程式已經被手動停用了。
because of a failed upgrade or install setup zt 因為此應用程式升級或安裝失敗。 because of a failed upgrade or install setup zt 因為此應用程式升級或安裝失敗。
because of a failed upgrade, or the database is newer than the installed version of this app setup zt 因為升級失敗,或是資料庫比此應用程式的版本還要新。 because of a failed upgrade, or the database is newer than the installed version of this app setup zt 因為升級失敗,或是資料庫比此應用程式的版本還要新。
because the enable flag for this app is set to 0, or is undefined setup zt 因為此應用程式的啟用設定值被設定為 0 或是為被設定。 because the enable flag for this app is set to 0, or is undefined setup zt 因為此應用程式的啟用設定值被設定為 0 或是為被設定。
bottom setup zt 底部 bottom setup zt 底部
but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br><strong>these automated scripts can easily destroy your data.</strong> setup zt 但是我們<u>強烈建議您備份您的資料表</u>,以免系統自動作業時損傷到您的資料,<br><strong>這個自動作業程式很容意造成資料的損傷</strong> but we <u>highly recommend backing up</u> your tables in case the script causes damage to your data.<br /><strong>these automated scripts can easily destroy your data.</strong> setup zt 但是我們<u>強烈建議您備份您的資料表</u>,以免系統自動作業時損傷到您的資料,<br /><strong>這個自動作業程式很容意造成資料的損傷</strong>
cancel setup zt 取消 cancel setup zt 取消
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup zt 因為檔案權限限制系統無法自動建立檔案header.inc.php<br>不過您可以%1這個檔案。 cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup zt 因為檔案權限限制系統無法自動建立檔案header.inc.php<br />不過您可以%1這個檔案。
change system-charset setup zt 修改系統字元設定 change system-charset setup zt 修改系統字元設定
charset setup zt utf-8 charset setup zt utf-8
charset to convert to setup zt 字元轉換成 charset to convert to setup zt 字元轉換成
@ -123,11 +123,11 @@ creating tables setup zt 正在建立資料表
current system-charset setup zt 目前系統字元編碼 current system-charset setup zt 目前系統字元編碼
current system-charset is %1, click %2here%3 to change it. setup zt 目前系統字元編碼是%1點選 %2這裡%3 來改變。 current system-charset is %1, click %2here%3 to change it. setup zt 目前系統字元編碼是%1點選 %2這裡%3 來改變。
current version setup zt 目前的版本 current version setup zt 目前的版本
currently installed languages: %1 <br> setup zt 目前已安裝的語言:%1 <br> currently installed languages: %1 <br /> setup zt 目前已安裝的語言:%1 <br />
database successfully converted from '%1' to '%2' setup zt 資料庫成功的從 '%1' 轉換成 '%2' database successfully converted from '%1' to '%2' setup zt 資料庫成功的從 '%1' 轉換成 '%2'
datetime port.<br>if using port 13, please set firewall rules appropriately before submitting this page.<br>(port: 13 / host: 129.6.15.28) setup zt 時間服務埠<br>如果使用13埠請在送出之前確認您已經設置好適當的防火牆規則。<br>(Port: 13 / Host: 129.6.15.28) datetime port.<br />if using port 13, please set firewall rules appropriately before submitting this page.<br />(port: 13 / host: 129.6.15.28) setup zt 時間服務埠<br />如果使用13埠請在送出之前確認您已經設置好適當的防火牆規則。<br />(Port: 13 / Host: 129.6.15.28)
day setup zt 日 day setup zt 日
day of week<br>(0-6, 0=sunday) setup zt 週日數<br>(0-6, 0=星期天) day of week<br />(0-6, 0=sunday) setup zt 週日數<br />(0-6, 0=星期天)
db backup and restore setup zt 資料庫備份與還原 db backup and restore setup zt 資料庫備份與還原
db host setup zt 資料庫位置 db host setup zt 資料庫位置
db name setup zt 資料庫名稱 db name setup zt 資料庫名稱
@ -166,12 +166,12 @@ enable for extra debug-messages setup zt 啟用附加的除錯訊息
enable ldap version 3 setup zt 啟用LDAP版本3 enable ldap version 3 setup zt 啟用LDAP版本3
enable mcrypt setup zt 啟用MCrypt enable mcrypt setup zt 啟用MCrypt
enter some random text for app session encryption setup zt 您可以輸入任意的文字來提供系統加密的依據 enter some random text for app session encryption setup zt 您可以輸入任意的文字來提供系統加密的依據
enter some random text for app_session <br>encryption (requires mcrypt) setup zt 輸入用於連線加密的任意字串﹝需要安裝 MCRYPT﹞<br> enter some random text for app_session <br />encryption (requires mcrypt) setup zt 輸入用於連線加密的任意字串﹝需要安裝 MCRYPT﹞<br />
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup zt 輸入暫存檔案存放的完整路徑:<br>﹝如:/tmp、C:\TEMP﹞ enter the full path for temporary files.<br />examples: /tmp, c:\temp setup zt 輸入暫存檔案存放的完整路徑:<br />﹝如:/tmp、C:\TEMP﹞
enter the full path for users and group files.<br>examples: /files, e:\files setup zt 輸入使用者或群組檔案存放的完整路徑:<br>﹝如:/files、E:\FILES﹞ enter the full path for users and group files.<br />examples: /files, e:\files setup zt 輸入使用者或群組檔案存放的完整路徑:<br />﹝如:/files、E:\FILES﹞
enter the full path to the backup directory.<br>if empty: files directory setup zt 輸入備份檔案存放的完整路徑:<br>如果空白會使用存放一般檔案的資料夾 enter the full path to the backup directory.<br />if empty: files directory setup zt 輸入備份檔案存放的完整路徑:<br />如果空白會使用存放一般檔案的資料夾
enter the hostname of the machine on which this server is running setup zt 輸入這個伺服器主機的主機名稱 enter the hostname of the machine on which this server is running setup zt 輸入這個伺服器主機的主機名稱
enter the location of egroupware's url.<br>example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>no trailing slash</b> setup zt 輸入 eGroupWare 的網頁位址 URL<br>如http://www.domain.com/egroupware &nbsp;或&nbsp; /egroupware<br><b>結尾無斜線</b> enter the location of egroupware's url.<br />example: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>no trailing slash</b> setup zt 輸入 eGroupWare 的網頁位址 URL<br />如http://www.domain.com/egroupware &nbsp;或&nbsp; /egroupware<br /><b>結尾無斜線</b>
enter the site password for peer servers setup zt 輸入對接伺服器的主機密碼 enter the site password for peer servers setup zt 輸入對接伺服器的主機密碼
enter the site username for peer servers setup zt 輸入對接伺服器的主機名稱 enter the site username for peer servers setup zt 輸入對接伺服器的主機名稱
enter the title for your site setup zt 輸入網站標題 enter the title for your site setup zt 輸入網站標題
@ -278,7 +278,7 @@ modify setup zt 修改
modify an existing ldap account store for use with egroupware (for a new install using ldap accounts) setup zt 修改一個已經存在的LDAP帳號讓eGroupWare使用(全新安裝且使用LDAP帳號) modify an existing ldap account store for use with egroupware (for a new install using ldap accounts) setup zt 修改一個已經存在的LDAP帳號讓eGroupWare使用(全新安裝且使用LDAP帳號)
month setup zt 月 month setup zt 月
multi-language support setup setup zt 多國語言設定 multi-language support setup setup zt 多國語言設定
mysqlinstr setup zt 在 MySQL 中建立資料庫的方法:<br>登入 MySQL 系統 -<br><i>[user@server user]# mysql -u root -p</i><br>建立空的資料庫並授權使用者使用 -<br><i>mysql> create database egroupware;</i><br><i>mysql> grant all on egroupware.* to egroupware@localhost identified by 'password';</i> mysqlinstr setup zt 在 MySQL 中建立資料庫的方法:<br />登入 MySQL 系統 -<br /><i>[user@server user]# mysql -u root -p</i><br />建立空的資料庫並授權使用者使用 -<br /><i>mysql> create database egroupware;</i><br /><i>mysql> grant all on egroupware.* to egroupware@localhost identified by 'password';</i>
name of database setup zt 資料庫名稱 name of database setup zt 資料庫名稱
name of db user egroupware uses to connect setup zt eGroupWare用來與資料庫連結的帳號 name of db user egroupware uses to connect setup zt eGroupWare用來與資料庫連結的帳號
never setup zt 從未 never setup zt 從未
@ -320,7 +320,7 @@ passwords did not match, please re-enter setup zt 密碼不符,請重新輸入
path information setup zt 路徑資訊 path information setup zt 路徑資訊
path to user and group files has to be outside of the webservers document-root!!! setup zt 使用者與群組的檔案路徑必須在網站伺服器的網頁根目錄以外! path to user and group files has to be outside of the webservers document-root!!! setup zt 使用者與群組的檔案路徑必須在網站伺服器的網頁根目錄以外!
persistent connections setup zt 持續連線 persistent connections setup zt 持續連線
pgsqlinstr setup zt 在 PostgreSQL 中建立資料庫的方法:<br>起用 PostgreSQL 系統<br><i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br>建立空的資料庫 -<br><i>[user@server user]# createdb egroupware</i> pgsqlinstr setup zt 在 PostgreSQL 中建立資料庫的方法:<br />起用 PostgreSQL 系統<br /><i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br />建立空的資料庫 -<br /><i>[user@server user]# createdb egroupware</i>
please check for sql scripts within the application's directory setup zt 請檢查應用程式目錄下的 SQL 命令檔 please check for sql scripts within the application's directory setup zt 請檢查應用程式目錄下的 SQL 命令檔
please check read/write permissions on directories, or back up and use another option. setup zt 請檢查資料夾讀取/寫入的權限或是備份後使用其他選項。 please check read/write permissions on directories, or back up and use another option. setup zt 請檢查資料夾讀取/寫入的權限或是備份後使用其他選項。
please configure egroupware for your environment setup zt 請為您現在的環境設定 eGroupWare 的相關組態 please configure egroupware for your environment setup zt 請為您現在的環境設定 eGroupWare 的相關組態
@ -369,7 +369,7 @@ save setup zt 儲存
save this text as contents of your header.inc.php setup zt 儲存這些資料成為您的header.inc.php內容 save this text as contents of your header.inc.php setup zt 儲存這些資料成為您的header.inc.php內容
schedule setup zt 排程 schedule setup zt 排程
scheduled backups setup zt 備份排程 scheduled backups setup zt 備份排程
select an app, enter a target version, then submit to process to that version.<br>if you do not enter a version, only the baseline tables will be installed for the app.<br><blink>this will drop all of the apps' tables first!</blink> setup zt 選擇一個應用筒l設定應用程式到這個版本。<br>若您沒有輸入版本編號,系統只會安裝這個應用程式的基本系統資料表。<br><blink>這個動作將不會移除任何應用程式的資料表!</blink> select an app, enter a target version, then submit to process to that version.<br />if you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>this will drop all of the apps' tables first!</blink> setup zt 選擇一個應用筒l設定應用程式到這個版本。<br />若您沒有輸入版本編號,系統只會安裝這個應用程式的基本系統資料表。<br /><blink>這個動作將不會移除任何應用程式的資料表!</blink>
select one... setup zt 選擇一個... select one... setup zt 選擇一個...
select the default applications to which your users will have access setup zt 選擇您的使用者預設使用的應用程式 select the default applications to which your users will have access setup zt 選擇您的使用者預設使用的應用程式
select the desired action(s) from the available choices setup zt 在現有的選項中選擇所需的動作 select the desired action(s) from the available choices setup zt 在現有的選項中選擇所需的動作
@ -438,9 +438,9 @@ the mbstring extension is needed to fully support unicode (utf-8) or other multi
the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup zt 要完全支援萬國字元(UTF-8)或是其他雙位元組編碼您必須設定mbstring.func_overload = 7 the mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets. setup zt 要完全支援萬國字元(UTF-8)或是其他雙位元組編碼您必須設定mbstring.func_overload = 7
the table definition was correct, and the tables were installed setup zt 資料表定義正確且資料表已正確安裝 the table definition was correct, and the tables were installed setup zt 資料表定義正確且資料表已正確安裝
the tables setup zt 資料表 the tables setup zt 資料表
there was a problem tring to connect to your ldap server. <br>please check your ldap server configuration setup zt 無法正確連結到 LDAP 伺服器主機。<br>請檢查 LDAP 伺服器主機的設定。 there was a problem tring to connect to your ldap server. <br />please check your ldap server configuration setup zt 無法正確連結到 LDAP 伺服器主機。<br />請檢查 LDAP 伺服器主機的設定。
there was a problem trying to connect to your ldap server. <br> setup zt 嘗試連接您的LDAP伺服器時發生錯誤。<br> there was a problem trying to connect to your ldap server. <br /> setup zt 嘗試連接您的LDAP伺服器時發生錯誤。<br />
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup zt 嘗試連接您的LDAP伺服器時發生錯誤。<br>請檢查您的設定 there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup zt 嘗試連接您的LDAP伺服器時發生錯誤。<br />請檢查您的設定
this has to be outside the webservers document-root!!! setup zt 這個設定必須在網站伺服器的網頁根目錄以外! this has to be outside the webservers document-root!!! setup zt 這個設定必須在網站伺服器的網頁根目錄以外!
this might take a while, please wait ... setup zt 這也許需要一點時間,請耐心等候... this might take a while, please wait ... setup zt 這也許需要一點時間,請耐心等候...
this program lets you backup your database, schedule a backup or restore it. setup zt 這個程式能夠讓您備份、排程備份或是還原資料庫。 this program lets you backup your database, schedule a backup or restore it. setup zt 這個程式能夠讓您備份、排程備份或是還原資料庫。
@ -450,12 +450,12 @@ this program will help you upgrade or install different languages for egroupware
this section will help you export users and groups from egroupware's account tables into your ldap tree setup zt 這個部份將協助您從 eGroupWare 的資料表匯出使用者及群組設定到 LDAP 主機中 this section will help you export users and groups from egroupware's account tables into your ldap tree setup zt 這個部份將協助您從 eGroupWare 的資料表匯出使用者及群組設定到 LDAP 主機中
this section will help you import users and groups from your ldap tree into egroupware's account tables setup zt 這個部份將協助您從 eGroupWare 的資料表匯入使用者及群組設定到 LDAP 主機中 this section will help you import users and groups from your ldap tree into egroupware's account tables setup zt 這個部份將協助您從 eGroupWare 的資料表匯入使用者及群組設定到 LDAP 主機中
this section will help you setup your ldap accounts for use with egroupware setup zt 這個部份將會協助您安裝您在eGroupWare中使用的LDAP帳號 this section will help you setup your ldap accounts for use with egroupware setup zt 這個部份將會協助您安裝您在eGroupWare中使用的LDAP帳號
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup zt 這個長度必須大約在30位元組左右。<br>注意:預設值已經隨機產生了。 this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup zt 這個長度必須大約在30位元組左右。<br />注意:預設值已經隨機產生了。
this stage is completed<br> setup zt 這個步驟已經完成<br> this stage is completed<br /> setup zt 這個步驟已經完成<br />
this will create 1 admin account and 3 demo accounts<br>the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br><b>!!!this will delete all existing accounts!!!</b><br> setup zt 這個動作將會建立一個管理者帳號及三個示範帳號。<br>使用者代碼及密碼分別為demo/guest、demo2/guest 及 demo3/guest。<br><b>!!!這個動作將會移除所有的帳號!!!</b><br> this will create 1 admin account and 3 demo accounts<br />the username/passwords are: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!this will delete all existing accounts!!!</b><br /> setup zt 這個動作將會建立一個管理者帳號及三個示範帳號。<br />使用者代碼及密碼分別為demo/guest、demo2/guest 及 demo3/guest。<br /><b>!!!這個動作將會移除所有的帳號!!!</b><br />
to a version it does not know about setup zt 未知的版本 to a version it does not know about setup zt 未知的版本
to setup 1 admin account and 3 demo accounts. setup zt 設定一個管理員帳號與三個測試帳號 to setup 1 admin account and 3 demo accounts. setup zt 設定一個管理員帳號與三個測試帳號
to setup 1 admin account and 3 demo accounts.<br><b>this will delete all existing accounts</b> setup zt 設定一個管理者帳號及三個示範帳號。<br><b>這個動作將會移除所有的帳號</b> to setup 1 admin account and 3 demo accounts.<br /><b>this will delete all existing accounts</b> setup zt 設定一個管理者帳號及三個示範帳號。<br /><b>這個動作將會移除所有的帳號</b>
top setup zt 頂部 top setup zt 頂部
translations added setup zt 語系新增了 translations added setup zt 語系新增了
translations removed setup zt 語系移除了 translations removed setup zt 語系移除了
@ -492,15 +492,15 @@ which database type do you want to use with egroupware? setup zt 您希望eGroup
world readable setup zt 所有人可讀取 world readable setup zt 所有人可讀取
world writable setup zt 所有人可寫入 world writable setup zt 所有人可寫入
would you like egroupware to cache the phpgw info array ? setup zt 您希望 eGroupWare 將系統資訊存到存取緩衝區內嗎? would you like egroupware to cache the phpgw info array ? setup zt 您希望 eGroupWare 將系統資訊存到存取緩衝區內嗎?
would you like egroupware to check for a new version<br>when admins login ? setup zt 您希望 eGroupWare 自動於管理者登入時檢查是否有最新版本? would you like egroupware to check for a new version<br />when admins login ? setup zt 您希望 eGroupWare 自動於管理者登入時檢查是否有最新版本?
would you like to show each application's upgrade status ? setup zt 您希望顯示每一個應用程式升級的資訊嗎? would you like to show each application's upgrade status ? setup zt 您希望顯示每一個應用程式升級的資訊嗎?
writable by the webserver setup zt 網頁伺服器可以寫入 writable by the webserver setup zt 網頁伺服器可以寫入
write config setup zt 寫入設定 write config setup zt 寫入設定
year setup zt 年 year setup zt 年
yes setup zt 是 yes setup zt 是
you appear to be running a pre-beta version of egroupware.<br>these versions are no longer supported, and there is no upgrade path for them in setup.<br> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version. setup zt 您目前安裝的為測試版本的 eGroupWare。<br>目前已經不再支援這個版本,建議您先升級到 0.9.10 版﹝最後一個測試版本﹞ <br>再升級到現在的版本。 you appear to be running a pre-beta version of egroupware.<br />these versions are no longer supported, and there is no upgrade path for them in setup.<br /> you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br />and then upgrade from there with the current version. setup zt 您目前安裝的為測試版本的 eGroupWare。<br />目前已經不再支援這個版本,建議您先升級到 0.9.10 版﹝最後一個測試版本﹞ <br />再升級到現在的版本。
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version %1 setup zt 您似乎正在執行較舊版本的PHP<br>建議您將它更新到較新的版本。<br>較舊的PHP版本也許無法正確執行eGroupWare。<br><br>請將版本至少更新到%1 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version %1 setup zt 您似乎正在執行較舊版本的PHP<br />建議您將它更新到較新的版本。<br />較舊的PHP版本也許無法正確執行eGroupWare。<br /><br />請將版本至少更新到%1
you appear to be running an old version of php <br>it its recommend that you upgrade to a new version. <br>older version of php might not run egroupware correctly, if at all. <br><br>please upgrade to at least version 4.1.0 setup zt 您目前所使用的 PHP 版本太舊,<br>建議您升級到較新的版本,<br>因為舊版本的 PHP 可能會造成 eGroupWare 運作不正常。<br><br>建議您至少升級到 4.1.0 版 you appear to be running an old version of php <br />it its recommend that you upgrade to a new version. <br />older version of php might not run egroupware correctly, if at all. <br /><br />please upgrade to at least version 4.1.0 setup zt 您目前所使用的 PHP 版本太舊,<br />建議您升級到較新的版本,<br />因為舊版本的 PHP 可能會造成 eGroupWare 運作不正常。<br /><br />建議您至少升級到 4.1.0 版
you appear to be running version %1 of egroupware setup zt 您目前所使用的 eGroupWare 版本為 %1 you appear to be running version %1 of egroupware setup zt 您目前所使用的 eGroupWare 版本為 %1
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup zt 您似乎正在使用比PHP4.1.0更舊的版本eGroupWare現在要求4.1.0或更新的版本 you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup zt 您似乎正在使用比PHP4.1.0更舊的版本eGroupWare現在要求4.1.0或更新的版本
you appear to be using php3. disabling php4 sessions support setup zt 您似乎在使用PHP3PHP4 SESSION支援關閉中 you appear to be using php3. disabling php4 sessions support setup zt 您似乎在使用PHP3PHP4 SESSION支援關閉中
@ -513,13 +513,13 @@ you appear to have oracle v8 (oci) support enabled setup zt 您的系統支援Or
you appear to have postgres-db support enabled setup zt 您的系統支援Postgres you appear to have postgres-db support enabled setup zt 您的系統支援Postgres
you appear to have postgresql support enabled setup zt 您的系統支援PostgreSQL you appear to have postgresql support enabled setup zt 您的系統支援PostgreSQL
you appear to have xml support enabled setup zt 您的系統支援XML you appear to have xml support enabled setup zt 您的系統支援XML
you are ready for this stage, but this stage is not yet written.<br> setup zt 您已經準備好要使用這個步驟,但這個步驟尚未開發完成。<br> you are ready for this stage, but this stage is not yet written.<br /> setup zt 您已經準備好要使用這個步驟,但這個步驟尚未開發完成。<br />
you didn't enter a config password for domain %1 setup zt 您並未輸入%1的組態密碼 you didn't enter a config password for domain %1 setup zt 您並未輸入%1的組態密碼
you didn't enter a config username for domain %1 setup zt 您並未輸入 you didn't enter a config username for domain %1 setup zt 您並未輸入
you didn't enter a header admin password setup zt 您並未輸入頁首管理員密碼 you didn't enter a header admin password setup zt 您並未輸入頁首管理員密碼
you didn't enter a header admin username setup zt 您並未輸入頁首管理員帳號 you didn't enter a header admin username setup zt 您並未輸入頁首管理員帳號
you do not have any languages installed. please install one now <br> setup zt 您目前沒有安裝任何的語言,請安裝至少一種語言。<br> you do not have any languages installed. please install one now <br /> setup zt 您目前沒有安裝任何的語言,請安裝至少一種語言。<br />
you have not created your header.inc.php yet!<br> you can create it now. setup zt 您尚未建立您的header.inc.php<br>您可以現在建立。 you have not created your header.inc.php yet!<br /> you can create it now. setup zt 您尚未建立您的header.inc.php<br />您可以現在建立。
you have successfully logged out setup zt 您已經成功登出了 you have successfully logged out setup zt 您已經成功登出了
you must enter a username for the admin setup zt 您必須輸入管理者的帳號名稱 you must enter a username for the admin setup zt 您必須輸入管理者的帳號名稱
you need to add some domains to your header.inc.php. setup zt 您必須在header.inc.php新增一些網域的設定 you need to add some domains to your header.inc.php. setup zt 您必須在header.inc.php新增一些網域的設定
@ -536,7 +536,7 @@ your database is working, but you dont have any applications installed setup zt
your files directory '%1' %2 setup zt 您的檔案資料夾 '%1' %2 your files directory '%1' %2 setup zt 您的檔案資料夾 '%1' %2
your header admin password is not set. please set it now! setup zt 您沒有設定標頭(header)管理密碼,請現在設定! your header admin password is not set. please set it now! setup zt 您沒有設定標頭(header)管理密碼,請現在設定!
your header.inc.php needs upgrading. setup zt 您的header.inc.php需要更新。 your header.inc.php needs upgrading. setup zt 您的header.inc.php需要更新。
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup zt 您的header.inc.php需要更新。<br><blink><b class="msg">警告!</b></blink><br><b>記得先做備份!</b> your header.inc.php needs upgrading.<br /><blink><b class="msg">warning!</b></blink><br /><b>make backups!</b> setup zt 您的header.inc.php需要更新。<br /><blink><b class="msg">警告!</b></blink><br /><b>記得先做備份!</b>
your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup zt 您的PHP不支援GD您需要安裝1.8或是更新的版本才能夠在專案管理中順利瀏覽甘特圖 your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup zt 您的PHP不支援GD您需要安裝1.8或是更新的版本才能夠在專案管理中順利瀏覽甘特圖
your tables are current setup zt 您的資料表目前狀態 your tables are current setup zt 您的資料表目前狀態
your tables may be altered and you may lose data setup zt 您的資料表已經被更動過並有可能遺失部份資料 your tables may be altered and you may lose data setup zt 您的資料表已經被更動過並有可能遺失部份資料

View File

@ -47,7 +47,7 @@
if ($GLOBALS['error']) if ($GLOBALS['error'])
{ {
//echo '<br><center><b>Error:</b> '.$error.'</center>'; //echo '<br /><center><b>Error:</b> '.$error.'</center>';
$GLOBALS['egw_setup']->html->show_alert_msg('Error',$GLOBALS['error']); $GLOBALS['egw_setup']->html->show_alert_msg('Error',$GLOBALS['error']);
} }

View File

@ -154,9 +154,9 @@
} }
$id_exist = $groups->exists((int)$thisacctid); $id_exist = $groups->exists((int)$thisacctid);
echo '<br>accountid: ' . $thisacctid; echo '<br />accountid: ' . $thisacctid;
echo '<br>accountlid: ' . $thisacctlid; echo '<br />accountlid: ' . $thisacctlid;
echo '<br>exists: ' . $id_exist; echo '<br />exists: ' . $id_exist;
/* If not, create it now. */ /* If not, create it now. */
if(!$id_exist) if(!$id_exist)
@ -205,7 +205,7 @@
// If not, create it now. // If not, create it now.
if(!$id_exist) if(!$id_exist)
{ {
echo '<br>Adding' . $thisacctid; echo '<br />Adding' . $thisacctid;
$thisaccount_info = array( $thisaccount_info = array(
'account_type' => 'u', 'account_type' => 'u',
'account_id' => $thisacctid, 'account_id' => $thisacctid,
@ -231,14 +231,14 @@
if($error) if($error)
{ {
//echo '<br><center><b>Error:</b> '.$error.'</center>'; //echo '<br /><center><b>Error:</b> '.$error.'</center>';
$GLOBALS['egw_setup']->html->show_alert_msg('Error',$error); $GLOBALS['egw_setup']->html->show_alert_msg('Error',$error);
} }
if($setup_complete) if($setup_complete)
{ {
echo '<br><center>'.lang('Export has been completed! You will need to set the user passwords manually.').'</center>'; echo '<br /><center>'.lang('Export has been completed! You will need to set the user passwords manually.').'</center>';
echo '<br><center>'.lang('Click <a href="index.php">here</a> to return to setup.').'</center>'; echo '<br /><center>'.lang('Click <a href="index.php">here</a> to return to setup.').'</center>';
$GLOBALS['egw_setup']->html->show_footer(); $GLOBALS['egw_setup']->html->show_footer();
exit; exit;
} }

View File

@ -152,12 +152,12 @@
{ {
if(!count($admins)) if(!count($admins))
{ {
$error = '<br>You must select at least 1 admin'; $error = '<br />You must select at least 1 admin';
} }
if(!count($s_apps)) if(!count($s_apps))
{ {
$error .= '<br>You must select at least 1 application'; $error .= '<br />You must select at least 1 application';
} }
if(!$error) if(!$error)
@ -295,12 +295,12 @@
{ {
continue; continue;
} }
/* echo '<br>members: ' . $members; */ /* echo '<br />members: ' . $members; */
$tmpid = 0; $tmpid = 0;
@reset($account_info); @reset($account_info);
while(list($x,$y) = each($account_info)) while(list($x,$y) = each($account_info))
{ {
/* echo '<br>checking: '.$y['account_lid']; */ /* echo '<br />checking: '.$y['account_lid']; */
if($members == $y['account_lid']) if($members == $y['account_lid'])
{ {
$tmpid = $acct->name2id($y['account_lid']); $tmpid = $acct->name2id($y['account_lid']);
@ -411,13 +411,13 @@
if($error) if($error)
{ {
//echo '<br><center><b>Error:</b> '.$error.'</center>'; //echo '<br /><center><b>Error:</b> '.$error.'</center>';
$GLOBALS['egw_setup']->html->show_alert_msg('Error',$error); $GLOBALS['egw_setup']->html->show_alert_msg('Error',$error);
} }
if($setup_complete) if($setup_complete)
{ {
echo '<br><center>'.lang('Import has been completed!').' '.lang('Click <a href="index.php">here</a> to return to setup.').'</center>'; echo '<br /><center>'.lang('Import has been completed!').' '.lang('Click <a href="index.php">here</a> to return to setup.').'</center>';
$GLOBALS['egw_setup']->html->show_footer(); $GLOBALS['egw_setup']->html->show_footer();
exit; exit;
} }
@ -467,7 +467,7 @@
} }
else else
{ {
$app_list .= '<option value="' . $appname . '" selected>' . $apptitle . '</option>'; $app_list .= '<option value="' . $appname . '" selected="selected">' . $apptitle . '</option>';
} }
} }

View File

@ -139,7 +139,7 @@
$entry = array(); $entry = array();
$thisacctid = $group_info[$groupid]['gidnumber'][0]; $thisacctid = $group_info[$groupid]['gidnumber'][0];
$thisacctlid = $group_info[$groupid]['cn'][0]; $thisacctlid = $group_info[$groupid]['cn'][0];
/* echo "Updating GROUPID : ".$thisacctlid."<br>\n"; */ /* echo "Updating GROUPID : ".$thisacctlid."<br />\n"; */
$thisfirstname = $group_info[$groupid]['cn'][0]; $thisfirstname = $group_info[$groupid]['cn'][0];
$thismembers = $group_info[$groupid]['memberuid']; $thismembers = $group_info[$groupid]['memberuid'];
$thisdn = $group_info[$groupid]['dn']; $thisdn = $group_info[$groupid]['dn'];
@ -199,12 +199,12 @@
{ {
continue; continue;
} }
/* echo '<br>members: ' . $members; */ /* echo '<br />members: ' . $members; */
$tmpid = 0; $tmpid = 0;
@reset($account_info); @reset($account_info);
while(list($x,$y) = each($account_info)) while(list($x,$y) = each($account_info))
{ {
/* echo '<br>checking: '.$y['account_lid']; */ /* echo '<br />checking: '.$y['account_lid']; */
if($members == $y['account_lid']) if($members == $y['account_lid'])
{ {
$tmpid = $y['account_id']; $tmpid = $y['account_id'];
@ -254,7 +254,7 @@
$id_exist = 0; $id_exist = 0;
$thisacctid = $account_info[$id]['uidnumber'][0]; $thisacctid = $account_info[$id]['uidnumber'][0];
$thisacctlid = $account_info[$id]['uid'][0]; $thisacctlid = $account_info[$id]['uid'][0];
/* echo "Updating USERID : ".$thisacctlid."<br>\n"; */ /* echo "Updating USERID : ".$thisacctlid."<br />\n"; */
$thisdn = $account_info[$id]['dn']; $thisdn = $account_info[$id]['dn'];
/* Do some checks before we try to import the data. */ /* Do some checks before we try to import the data. */
@ -349,13 +349,13 @@
if(isset($_GET['error'])) if(isset($_GET['error']))
{ {
/* echo '<br><center><b>Error:</b> '.$error.'</center>'; */ /* echo '<br /><center><b>Error:</b> '.$error.'</center>'; */
$GLOBALS['egw_setup']->html->show_alert_msg('Error',$_GET['error']); $GLOBALS['egw_setup']->html->show_alert_msg('Error',$_GET['error']);
} }
if($setup_complete) if($setup_complete)
{ {
echo '<br><center>'.lang('Modifications have been completed!').' '.lang('Click <a href="index.php">here</a> to return to setup.').'<br><center>'; echo '<br /><center>'.lang('Modifications have been completed!').' '.lang('Click <a href="index.php">here</a> to return to setup.').'<br /><center>';
$GLOBALS['egw_setup']->html->show_footer(); $GLOBALS['egw_setup']->html->show_footer();
exit; exit;
} }

View File

@ -101,29 +101,30 @@
$dom = get_var('setting_'.$variableName,Array('POST')); $dom = get_var('setting_'.$variableName,Array('POST'));
if(!$dom['config_pass'] && !$dom['config_password']) if(!$dom['config_pass'] && !$dom['config_password'])
{ {
$errors .= '<br>' . lang("You didn't enter a config password for domain %1",$v); $errors .= '<br />' . lang("You didn't enter a config password for domain %1",$v);
} }
if(!$dom['config_user']) if(!$dom['config_user'])
{ {
$errors .= '<br>' . lang("You didn't enter a config username for domain %1",$v); $errors .= '<br />' . lang("You didn't enter a config username for domain %1",$v);
} }
} }
$setting = get_var('setting',Array('POST')); $setting = get_var('setting',Array('POST'));
if(!$setting['HEADER_ADMIN_PASSWORD'] && !$setting['HEADER_ADMIN_PASS']) if(!$setting['HEADER_ADMIN_PASSWORD'] && !$setting['HEADER_ADMIN_PASS'])
{ {
$errors .= '<br>' . lang("You didn't enter a header admin password"); $errors .= '<br />' . lang("You didn't enter a header admin password");
} }
if(!$setting['HEADER_ADMIN_USER']) if(!$setting['HEADER_ADMIN_USER'])
{ {
$errors .= '<br>' . lang("You didn't enter a header admin username"); $errors .= '<br />' . lang("You didn't enter a header admin username");
} }
if($errors) if($errors)
{ {
$GLOBALS['egw_setup']->html->show_header('Error',True); $GLOBALS['egw_setup']->html->show_header('Error',True);
echo $errors; echo $errors;
echo '<p><input type="submit" value="'.lang('Back to the previous screen').'" onClick="history.back()"></p>'; echo '<p><input type="submit" value="'.lang('Back to the previous screen').'" onclick="history.back()" /></p>';
$GLOBALS['egw_setup']->html->show_footer();
exit; exit;
} }
} }
@ -152,7 +153,7 @@
{ {
case '1': case '1':
$GLOBALS['egw_info']['setup']['HeaderFormMSG'] = lang('Create your header.inc.php'); $GLOBALS['egw_info']['setup']['HeaderFormMSG'] = lang('Create your header.inc.php');
$GLOBALS['egw_info']['setup']['PageMSG'] = lang('You have not created your header.inc.php yet!<br> You can create it now.'); $GLOBALS['egw_info']['setup']['PageMSG'] = lang('You have not created your header.inc.php yet!<br /> You can create it now.');
break; break;
case '2': case '2':
$GLOBALS['egw_info']['setup']['HeaderFormMSG'] = lang('Your header admin password is NOT set. Please set it now!'); $GLOBALS['egw_info']['setup']['HeaderFormMSG'] = lang('Your header admin password is NOT set. Please set it now!');
@ -172,7 +173,7 @@
break; break;
case '4': case '4':
$GLOBALS['egw_info']['setup']['HeaderFormMSG'] = lang('Your header.inc.php needs upgrading.'); $GLOBALS['egw_info']['setup']['HeaderFormMSG'] = lang('Your header.inc.php needs upgrading.');
$GLOBALS['egw_info']['setup']['PageMSG'] = lang('Your header.inc.php needs upgrading.<br><blink><b class="msg">WARNING!</b></blink><br><b>MAKE BACKUPS!</b>'); $GLOBALS['egw_info']['setup']['PageMSG'] = lang('Your header.inc.php needs upgrading.<br /><blink><b class="msg">WARNING!</b></blink><br /><b>MAKE BACKUPS!</b>');
$GLOBALS['egw_info']['setup']['HeaderLoginMSG'] = lang('Your header.inc.php needs upgrading.'); $GLOBALS['egw_info']['setup']['HeaderLoginMSG'] = lang('Your header.inc.php needs upgrading.');
if(!$GLOBALS['egw_setup']->auth('Header')) if(!$GLOBALS['egw_setup']->auth('Header'))
{ {
@ -218,15 +219,15 @@
$header_template = CreateObject('setup.Template','../'); $header_template = CreateObject('setup.Template','../');
$GLOBALS['egw_setup']->html->show_header('Generated header.inc.php', False, 'header'); $GLOBALS['egw_setup']->html->show_header('Generated header.inc.php', False, 'header');
echo '<table width="90%"><tr><td>'; echo '<table width="90%"><tr><td>';
echo '<br>' . lang('Save this text as contents of your header.inc.php') . '<br><hr>'; echo '<br />' . lang('Save this text as contents of your header.inc.php') . '<br /><hr />';
$newheader = $GLOBALS['egw_setup']->html->generate_header(); $newheader = $GLOBALS['egw_setup']->html->generate_header();
echo '<pre>'; echo '<pre>';
echo htmlentities($newheader); echo htmlentities($newheader);
echo '</pre><hr>'; echo '</pre><hr />';
echo '<form action="index.php" method="post">'; echo '<form action="index.php" method="post">';
echo '<br>' . lang('After retrieving the file, put it into place as the header.inc.php. Then, click "continue".') . '<br>'; echo '<br />' . lang('After retrieving the file, put it into place as the header.inc.php. Then, click "continue".') . '<br />';
echo '<input type="hidden" name="FormLogout" value="header">'; echo '<input type="hidden" name="FormLogout" value="header" />';
echo '<input type="submit" name="junk" value="'.lang('Continue').'">'; echo '<input type="submit" name="junk" value="'.lang('Continue').'" />';
echo '</form>'; echo '</form>';
echo '</td></tr></table>'; echo '</td></tr></table>';
$GLOBALS['egw_setup']->html->show_footer(); $GLOBALS['egw_setup']->html->show_footer();
@ -242,68 +243,65 @@
fclose($fsetup); fclose($fsetup);
$GLOBALS['egw_setup']->html->show_header('Saved header.inc.php', False, 'header'); $GLOBALS['egw_setup']->html->show_header('Saved header.inc.php', False, 'header');
echo '<form action="index.php" method="post">'; echo '<form action="index.php" method="post">';
echo '<br>' . lang('Created header.inc.php!'); echo '<br />' . lang('Created header.inc.php!');
echo '<input type="hidden" name="FormLogout" value="header">'; echo '<input type="hidden" name="FormLogout" value="header" />';
echo '<input type="submit" name="junk" value="'.lang('Continue').'">'; echo '<input type="submit" name="junk" value="'.lang('Continue').'" />';
echo '</form>'; echo '</form>';
echo '</body></html>'; $GLOBALS['egw_setup']->html->show_footer();
break; break;
} }
else else
{ {
$GLOBALS['egw_setup']->html->show_header('Error generating header.inc.php', False, 'header'); $GLOBALS['egw_setup']->html->show_header('Error generating header.inc.php', False, 'header');
echo lang('Could not open header.inc.php for writing!') . '<br>' . "\n"; echo lang('Could not open header.inc.php for writing!') . '<br />' . "\n";
echo lang('Please check read/write permissions on directories, or back up and use another option.') . '<br>'; echo lang('Please check read/write permissions on directories, or back up and use another option.') . '<br />';
echo '</td></tr></table></body></html>'; $GLOBALS['egw_setup']->html->show_footer();
} }
break; break;
default: default:
$GLOBALS['egw_setup']->html->show_header($GLOBALS['egw_info']['setup']['HeaderFormMSG'], False, 'header'); $GLOBALS['egw_setup']->html->show_header($GLOBALS['egw_info']['setup']['HeaderFormMSG'], False, 'header');
$detected = '';
if(!get_var('ConfigLang',array('POST','COOKIE'))) if(!get_var('ConfigLang',array('POST','COOKIE')))
{ {
$detected .= '<br><form action="manageheader.php" method="Post">Please Select your language '.lang_select(True,'en')."</form>\n"; $setup_tpl->set_var('lang_select','<tr><td colspan="2"><form action="manageheader.php" method="post">Please Select your language '.lang_select(True,'en')."</form></td></tr>");
} }
$detected .= '<table border="0" width="100%" cellspacing="0" cellpadding="0">' . "\n"; $detected = '';
$detected .= '<tr><td colspan="2"><p>' . $GLOBALS['egw_info']['setup']['PageMSG'] . '<br />&nbsp;</p></td></tr>'; $detected .= '<tr><td colspan="2"><p>' . $GLOBALS['egw_info']['setup']['PageMSG'] . '<br />&nbsp;</p></td></tr>';
$detected .= '<tr class="th"><td colspan="2">' . lang('Analysis') . '</td></tr><tr><td colspan="2">'. "\n"; $detected .= '<tr class="th"><td colspan="2">' . lang('Analysis') . '</td></tr>'."\n".'<tr><td colspan="2">'. "\n";
$supported_db = array(); $supported_db = array();
if(check_load_extension('mysql') || function_exists('mysql_connect')) if(check_load_extension('mysql') || function_exists('mysql_connect'))
{ {
$detected .= lang('You appear to have MySQL support enabled') . '<br>' . "\n"; $detected .= lang('You appear to have MySQL support enabled') . '<br />' . "\n";
$supported_db[] = 'mysql'; $supported_db[] = 'mysql';
} }
else else
{ {
$detected .= lang('No MySQL support found. Disabling') . '<br>' . "\n"; $detected .= lang('No MySQL support found. Disabling') . '<br />' . "\n";
} }
if(check_load_extension('pgsql') || function_exists('pg_connect')) if(check_load_extension('pgsql') || function_exists('pg_connect'))
{ {
$detected .= lang('You appear to have PostgreSQL support enabled') . '<br>' . "\n"; $detected .= lang('You appear to have PostgreSQL support enabled') . '<br />' . "\n";
$supported_db[] = 'pgsql'; $supported_db[] = 'pgsql';
} }
else else
{ {
$detected .= lang('No PostgreSQL support found. Disabling') . '<br>' . "\n"; $detected .= lang('No PostgreSQL support found. Disabling') . '<br />' . "\n";
} }
if(check_load_extension('mssql') || function_exists('mssql_connect')) if(check_load_extension('mssql') || function_exists('mssql_connect'))
{ {
$detected .= lang('You appear to have Microsoft SQL Server support enabled') . '<br>' . "\n"; $detected .= lang('You appear to have Microsoft SQL Server support enabled') . '<br />' . "\n";
$supported_db[] = 'mssql'; $supported_db[] = 'mssql';
} }
else else
{ {
$detected .= lang('No Microsoft SQL Server support found. Disabling') . '<br>' . "\n"; $detected .= lang('No Microsoft SQL Server support found. Disabling') . '<br />' . "\n";
} }
if(check_load_extension('odbc')) if(check_load_extension('odbc'))
{ {
$detected .= lang('You appear to have ODBC support enabled') . '<br>' . "\n"; $detected .= lang('You appear to have ODBC support enabled') . '<br />' . "\n";
// databases supported by the ODBC driver // databases supported by the ODBC driver
$supported_db[] = 'sapdb'; $supported_db[] = 'sapdb';
$supported_db[] = 'odbc_mssql'; $supported_db[] = 'odbc_mssql';
@ -311,27 +309,28 @@
} }
else else
{ {
$detected .= lang('No ODBC support found. Disabling') . '<br>' . "\n"; $detected .= lang('No ODBC support found. Disabling') . '<br />' . "\n";
} }
if(check_load_extension('oci8')) if(check_load_extension('oci8'))
{ {
$detected .= lang('You appear to have Oracle V8 (OCI) support enabled') . '<br>' . "\n"; $detected .= lang('You appear to have Oracle V8 (OCI) support enabled') . '<br />' . "\n";
$supported_db[] = 'oracle'; $supported_db[] = 'oracle';
} }
else else
{ {
$detected .= lang('No Oracle-DB support found. Disabling') . '<br>' . "\n"; $detected .= lang('No Oracle-DB support found. Disabling') . '<br />' . "\n";
} }
if(!count($supported_db)) if(!count($supported_db))
{ {
$detected .= '<b><p align="center" class="msg">' $detected .= '<b><p align="center" class="msg">'
. lang('Did not find any valid DB support!') . lang('Did not find any valid DB support!')
. "<br>\n" . "<br />\n"
. lang('Try to configure your php to support one of the above mentioned DBMS, or install eGroupWare by hand.') . lang('Try to configure your php to support one of the above mentioned DBMS, or install eGroupWare by hand.')
. '</p></b><td></tr></table></body></html>'; . '</p></b>';
echo $detected; echo $detected;
$GLOBALS['egw_setup']->html->show_footer();
exit; exit;
} }
@ -339,13 +338,14 @@
{ {
$detected .= '<b><p align="center" class="msg">' $detected .= '<b><p align="center" class="msg">'
. lang('You appear to be using PHP earlier than 4.1.0. eGroupWare now requires 4.1.0 or later'). "\n" . lang('You appear to be using PHP earlier than 4.1.0. eGroupWare now requires 4.1.0 or later'). "\n"
. '</p></b><td></tr></table></body></html>'; . '</p></b>';
echo $detected; echo $detected;
$GLOBALS['egw_setup']->html->show_footer();
exit; exit;
} }
if (check_load_extension('session')) if (check_load_extension('session'))
{ {
$detected .= lang('You appear to have PHP4 session support. Enabling PHP4 sessions.') . '<br>' . "\n"; $detected .= lang('You appear to have PHP4 session support. Enabling PHP4 sessions.') . '<br />' . "\n";
$supported_sessions_type[] = 'php4'; // makeing php4 sessions the default $supported_sessions_type[] = 'php4'; // makeing php4 sessions the default
} }
$supported_sessions_type[] = 'db'; $supported_sessions_type[] = 'db';
@ -361,25 +361,25 @@
/* /*
if(check_load_extension('xml') || function_exists('xml_parser_create')) if(check_load_extension('xml') || function_exists('xml_parser_create'))
{ {
$detected .= lang('You appear to have XML support enabled') . '<br>' . "\n"; $detected .= lang('You appear to have XML support enabled') . '<br />' . "\n";
$xml_enabled = 'True'; $xml_enabled = 'True';
} }
else else
{ {
$detected .= lang('No XML support found. Disabling') . '<br>' . "\n"; $detected .= lang('No XML support found. Disabling') . '<br />' . "\n";
} }
*/ */
$no_guess = False; $no_guess = False;
if(file_exists('../header.inc.php') && is_file('../header.inc.php') && is_readable('../header.inc.php')) if(file_exists('../header.inc.php') && is_file('../header.inc.php') && is_readable('../header.inc.php'))
{ {
$detected .= lang('Found existing configuration file. Loading settings from the file...') . '<br>' . "\n"; $detected .= lang('Found existing configuration file. Loading settings from the file...') . '<br />' . "\n";
$GLOBALS['egw_info']['flags']['noapi'] = True; $GLOBALS['egw_info']['flags']['noapi'] = True;
$no_guess = true; $no_guess = true;
/* This code makes sure the newer multi-domain supporting header.inc.php is being used */ /* This code makes sure the newer multi-domain supporting header.inc.php is being used */
if(!isset($GLOBALS['egw_domain'])) if(!isset($GLOBALS['egw_domain']))
{ {
$detected .= lang('You need to add some domains to your header.inc.php.') . '<br>' . "\n"; $detected .= lang('You need to add some domains to your header.inc.php.') . '<br />' . "\n";
$GLOBALS['egw_domain']['default'] = array(); $GLOBALS['egw_domain']['default'] = array();
$setup_tpl->set_var('lang_domain',lang('Domain')); $setup_tpl->set_var('lang_domain',lang('Domain'));
$setup_tpl->set_var('lang_delete',lang('Delete')); $setup_tpl->set_var('lang_delete',lang('Delete'));
@ -392,7 +392,7 @@
$setup_tpl->set_var('config_pass',''); $setup_tpl->set_var('config_pass','');
while(list($k,$v) = @each($supported_db)) while(list($k,$v) = @each($supported_db))
{ {
$dbtype_options .= '<option value="' . $v . '">' . $db_fullnames[$v] . "\n"; $dbtype_options .= '<option value="' . $v . '">' . $db_fullnames[$v] . "</option>\n";
if (!isset($default_port)) if (!isset($default_port))
$default_port = $default_db_ports[$v]; $default_port = $default_db_ports[$v];
} }
@ -404,8 +404,8 @@
{ {
if(@$GLOBALS['egw_info']['server']['header_version'] != @$GLOBALS['egw_info']['server']['current_header_version']) if(@$GLOBALS['egw_info']['server']['header_version'] != @$GLOBALS['egw_info']['server']['current_header_version'])
{ {
$detected .= lang("You're using an old header.inc.php version...") . '<br>' . "\n"; $detected .= lang("You're using an old header.inc.php version...") . '<br />' . "\n";
$detected .= lang('Importing old settings into the new format....') . '<br>' . "\n"; $detected .= lang('Importing old settings into the new format....') . '<br />' . "\n";
} }
reset($GLOBALS['egw_domain']); reset($GLOBALS['egw_domain']);
$default_domain = each($GLOBALS['egw_domain']); $default_domain = each($GLOBALS['egw_domain']);
@ -454,14 +454,14 @@
{ {
if($v == $GLOBALS['egw_domain'][$key]['db_type']) if($v == $GLOBALS['egw_domain'][$key]['db_type'])
{ {
$selected = ' selected '; $selected = ' selected="selected" ';
$found_dbtype = true; $found_dbtype = true;
} }
else else
{ {
$selected = ''; $selected = '';
} }
$dbtype_options .= '<option ' . $selected . 'value="' . $v . '">' . $db_fullnames[$v] . "\n"; $dbtype_options .= '<option ' . $selected . 'value="' . $v . '">' . $db_fullnames[$v] . "</option>\n";
} }
$setup_tpl->set_var('dbtype_options',$dbtype_options); $setup_tpl->set_var('dbtype_options',$dbtype_options);
@ -485,7 +485,7 @@
} }
else else
{ {
$detected .= lang('Sample configuration not found. using built in defaults') . '<br>' . "\n"; $detected .= lang('Sample configuration not found. using built in defaults') . '<br />' . "\n";
$GLOBALS['egw_info']['server']['server_root'] = $realpath; $GLOBALS['egw_info']['server']['server_root'] = $realpath;
$GLOBALS['egw_info']['server']['include_root'] = $realpath; $GLOBALS['egw_info']['server']['include_root'] = $realpath;
/* This is the basic include needed on each page for eGroupWare application compliance */ /* This is the basic include needed on each page for eGroupWare application compliance */
@ -504,7 +504,7 @@
while(list($k,$v) = each($supported_db)) while(list($k,$v) = each($supported_db))
{ {
$dbtype_options .= '<option value="' . $v . '">' . $db_fullnames[$v] . "\n"; $dbtype_options .= '<option value="' . $v . '">' . $db_fullnames[$v] . "</option>\n";
if (!isset($default_port)) if (!isset($default_port))
$default_port = $default_db_ports[$v]; $default_port = $default_db_ports[$v];
} }
@ -539,13 +539,14 @@
// now guessing better settings then the default ones // now guessing better settings then the default ones
if(!$no_guess) if(!$no_guess)
{ {
$detected .= lang('Now guessing better values for defaults...') . '<br>' . "\n"; $detected .= lang('Now guessing better values for defaults...') . '<br />' . "\n";
$this_dir = dirname($_SERVER['SCRIPT_FILENAME']); $this_dir = dirname($_SERVER['SCRIPT_FILENAME']);
$updir = str_replace('/setup','',$this_dir); $updir = str_replace('/setup','',$this_dir);
$GLOBALS['egw_info']['server']['server_root'] = $updir; $GLOBALS['egw_info']['server']['server_root'] = $updir;
$GLOBALS['egw_info']['server']['include_root'] = $updir; $GLOBALS['egw_info']['server']['include_root'] = $updir;
} }
$detected .= "</td></tr>\n";
$setup_tpl->set_var('detected',$detected); $setup_tpl->set_var('detected',$detected);
/* End of detected settings, now display the form with the detected or prior values */ /* End of detected settings, now display the form with the detected or prior values */
@ -565,11 +566,11 @@
if(@$GLOBALS['egw_info']['server']['db_persistent']) if(@$GLOBALS['egw_info']['server']['db_persistent'])
{ {
$setup_tpl->set_var('db_persistent_yes',' selected'); $setup_tpl->set_var('db_persistent_yes',' selected="selected"');
} }
else else
{ {
$setup_tpl->set_var('db_persistent_no',' selected'); $setup_tpl->set_var('db_persistent_no',' selected="selected"');
} }
$selected = ''; $selected = '';
@ -578,23 +579,23 @@
{ {
if($v == @$GLOBALS['egw_info']['server']['sessions_type']) if($v == @$GLOBALS['egw_info']['server']['sessions_type'])
{ {
$selected = ' selected '; $selected = ' selected="selected" ';
} }
else else
{ {
$selected = ''; $selected = '';
} }
$session_options .= '<option ' . $selected . 'value="' . $v . '">' . $v . "\n"; $session_options .= '<option ' . $selected . 'value="' . $v . '">' . $v . "</option>\n";
} }
$setup_tpl->set_var('session_options',$session_options); $setup_tpl->set_var('session_options',$session_options);
if(@$GLOBALS['egw_info']['server']['mcrypt_enabled']) if(@$GLOBALS['egw_info']['server']['mcrypt_enabled'])
{ {
$setup_tpl->set_var('mcrypt_enabled_yes',' selected'); $setup_tpl->set_var('mcrypt_enabled_yes',' selected="selected"');
} }
else else
{ {
$setup_tpl->set_var('mcrypt_enabled_no',' selected'); $setup_tpl->set_var('mcrypt_enabled_no',' selected="selected"');
} }
$setup_tpl->set_var('mcrypt',$GLOBALS['egw_info']['server']['versions']['mcrypt']); $setup_tpl->set_var('mcrypt',$GLOBALS['egw_info']['server']['versions']['mcrypt']);
@ -605,18 +606,18 @@
if(@$GLOBALS['egw_info']['server']['show_domain_selectbox']) if(@$GLOBALS['egw_info']['server']['show_domain_selectbox'])
{ {
$setup_tpl->set_var('domain_selectbox_yes',' selected'); $setup_tpl->set_var('domain_selectbox_yes',' selected="selected"');
} }
else else
{ {
$setup_tpl->set_var('domain_selectbox_no',' selected'); $setup_tpl->set_var('domain_selectbox_no',' selected="selected"');
} }
$errors = ''; $errors = '';
if(!$found_dbtype) if(!$found_dbtype)
{ {
/* /*
$errors .= '<br><font color="red">' . lang('Warning!') . '<br>' $errors .= '<br /><font color="red">' . lang('Warning!') . '<br />'
. lang('The db_type in defaults (%1) is not supported on this server. using first supported type.',$GLOBALS['egw_info']['server']['db_type']) . lang('The db_type in defaults (%1) is not supported on this server. using first supported type.',$GLOBALS['egw_info']['server']['db_type'])
. '</font>'; . '</font>';
*/ */
@ -625,16 +626,15 @@
if(is_writeable('../header.inc.php') || if(is_writeable('../header.inc.php') ||
(!file_exists('../header.inc.php') && is_writeable('../'))) (!file_exists('../header.inc.php') && is_writeable('../')))
{ {
$errors .= '<br><input type="submit" name="action[write]" value="'.lang('Write config').'">&nbsp;' $errors .= '<br /><input type="submit" name="action[write]" value="'.lang('Write config').'" />&nbsp;'
. lang('or') . '&nbsp;<input type="submit" name="action[download]" value="'.lang('Download').'">&nbsp;' . lang('or') . '&nbsp;<input type="submit" name="action[download]" value="'.lang('Download').'" />&nbsp;'
. lang('or') . '&nbsp;<input type=submit name="action[view]" value="'.lang('View').'"> '.lang('the file').'.</form>'; . lang('or') . '&nbsp;<input type="submit" name="action[view]" value="'.lang('View').'" /> '.lang('the file').'.';
} }
else else
{ {
$errors .= '<br>' $errors .= '<br />'
. lang('Cannot create the header.inc.php due to file permission restrictions.<br> Instead you can %1 the file.', . lang('Cannot create the header.inc.php due to file permission restrictions.<br /> Instead you can %1 the file.',
'<input type="submit" name="action[download]" value="'.lang('Download').'">' . lang('or') . '&nbsp;<input type="submit" name="action[view]" value="'.lang('View').'">') '<input type="submit" name="action[download]" value="'.lang('Download').'" />' . lang('or') . '&nbsp;<input type="submit" name="action[view]" value="'.lang('View').'" />');
. '</form>';
} }
// set domain and password for the continue button // set domain and password for the continue button
@reset($GLOBALS['egw_domain']); @reset($GLOBALS['egw_domain']);
@ -676,7 +676,7 @@
$setup_tpl->set_var('lang_mcryptversion',lang('MCrypt version')); $setup_tpl->set_var('lang_mcryptversion',lang('MCrypt version'));
$setup_tpl->set_var('lang_mcryptversiondescr',lang('Set this to "old" for versions &lt; 2.4, otherwise the exact mcrypt version you use.')); $setup_tpl->set_var('lang_mcryptversiondescr',lang('Set this to "old" for versions &lt; 2.4, otherwise the exact mcrypt version you use.'));
$setup_tpl->set_var('lang_mcryptiv',lang('MCrypt initialization vector')); $setup_tpl->set_var('lang_mcryptiv',lang('MCrypt initialization vector'));
$setup_tpl->set_var('lang_mcryptivdescr',lang('This should be around 30 bytes in length.<br>Note: The default has been randomly generated.')); $setup_tpl->set_var('lang_mcryptivdescr',lang('This should be around 30 bytes in length.<br />Note: The default has been randomly generated.'));
$setup_tpl->set_var('lang_domselect',lang('Domain select box on login')); $setup_tpl->set_var('lang_domselect',lang('Domain select box on login'));
$setup_tpl->set_var('lang_finaldescr',lang('After retrieving the file, put it into place as the header.inc.php. Then, click "continue".')); $setup_tpl->set_var('lang_finaldescr',lang('After retrieving the file, put it into place as the header.inc.php. Then, click "continue".'));
$setup_tpl->set_var('lang_continue',lang('Continue')); $setup_tpl->set_var('lang_continue',lang('Continue'));

View File

@ -137,13 +137,13 @@
while(list($table,$null) = @each($phpgw_baseline)) while(list($table,$null) = @each($phpgw_baseline))
{ {
$terror[$appname]['tables'][] = $table; $terror[$appname]['tables'][] = $table;
echo '<br>Adding app table: ' . $table; echo '<br />Adding app table: ' . $table;
} }
} }
if($version[$appname]) if($version[$appname])
{ {
echo '<br>Processing ' . $terror[$appname]['name'] . ' to ' . $version[$appname]; echo '<br />Processing ' . $terror[$appname]['name'] . ' to ' . $version[$appname];
$terror = $GLOBALS['egw_setup']->process->droptables($terror,$GLOBALS['DEBUG']); $terror = $GLOBALS['egw_setup']->process->droptables($terror,$GLOBALS['DEBUG']);
$GLOBALS['egw_setup']->deregister_app($terror[$appname]['name']); $GLOBALS['egw_setup']->deregister_app($terror[$appname]['name']);
@ -156,17 +156,17 @@
} }
else else
{ {
echo '<br>Baseline-only completed for ' . $terror[$appname]['name']; echo '<br />Baseline-only completed for ' . $terror[$appname]['name'];
} }
echo '<br>' . $GLOBALS['setup_info'][$appname]['title'] . ' ' echo '<br />' . $GLOBALS['setup_info'][$appname]['title'] . ' '
. lang('tables installed, unless there are errors printed above') . '.'; . lang('tables installed, unless there are errors printed above') . '.';
$GLOBALS['setup_info'][$appname]['version'] = $terror[$appname]['version']; $GLOBALS['setup_info'][$appname]['version'] = $terror[$appname]['version'];
$GLOBALS['egw_setup']->register_app($appname); $GLOBALS['egw_setup']->register_app($appname);
echo '<br>' . $terror[$appname]['title'] . ' ' . lang('registered') . '.'; echo '<br />' . $terror[$appname]['title'] . ' ' . lang('registered') . '.';
} }
echo '<br><a href="schematoy.php">' . lang('Go back') . '</a>'; echo '<br /><a href="schematoy.php">' . lang('Go back') . '</a>';
$GLOBALS['setup_tpl']->pparse('out','footer'); $GLOBALS['setup_tpl']->pparse('out','footer');
exit; exit;
} }
@ -203,13 +203,13 @@
$GLOBALS['setup_tpl']->pparse('out','detail'); $GLOBALS['setup_tpl']->pparse('out','detail');
} }
echo '<br><a href="schematoy.php">' . lang('Go back') . '</a>'; echo '<br /><a href="schematoy.php">' . lang('Go back') . '</a>';
$GLOBALS['setup_tpl']->pparse('out','footer'); $GLOBALS['setup_tpl']->pparse('out','footer');
exit; exit;
} }
else else
{ {
$GLOBALS['setup_tpl']->set_var('description',lang("Select an app, enter a target version, then submit to process to that version.<br>If you do not enter a version, only the baseline tables will be installed for the app.<br><blink>THIS WILL DROP ALL OF THE APPS' TABLES FIRST!</blink>")); $GLOBALS['setup_tpl']->set_var('description',lang("Select an app, enter a target version, then submit to process to that version.<br />If you do not enter a version, only the baseline tables will be installed for the app.<br /><blink>THIS WILL DROP ALL OF THE APPS' TABLES FIRST!</blink>"));
$GLOBALS['setup_tpl']->pparse('out','header'); $GLOBALS['setup_tpl']->pparse('out','header');
$GLOBALS['setup_tpl']->set_var('appdata',lang('Application Data')); $GLOBALS['setup_tpl']->set_var('appdata',lang('Application Data'));
@ -258,7 +258,7 @@
$GLOBALS['setup_tpl']->set_var('instimg','completed.png'); $GLOBALS['setup_tpl']->set_var('instimg','completed.png');
$GLOBALS['setup_tpl']->set_var('instalt',lang('Completed')); $GLOBALS['setup_tpl']->set_var('instalt',lang('Completed'));
$GLOBALS['setup_tpl']->set_var('install','<input type="checkbox" name="install[' . $value['name'] . ']">'); $GLOBALS['setup_tpl']->set_var('install','<input type="checkbox" name="install[' . $value['name'] . ']" />');
$status = lang('OK') . ' - ' . $value['status']; $status = lang('OK') . ' - ' . $value['status'];
$GLOBALS['setup_tpl']->set_var('appinfo',$value['name'] . '-' . $status); $GLOBALS['setup_tpl']->set_var('appinfo',$value['name'] . '-' . $status);

View File

@ -48,7 +48,7 @@
$GLOBALS['egw_setup']->html->show_header(lang('Demo Server Setup')); $GLOBALS['egw_setup']->html->show_header(lang('Demo Server Setup'));
$setup_tpl->set_var('action_url','setup_demo.php'); $setup_tpl->set_var('action_url','setup_demo.php');
$setup_tpl->set_var('description',lang('<b>This will create 1 admin account and 3 demo accounts</b><br>The username/passwords are: demo/guest, demo2/guest and demo3/guest.')); $setup_tpl->set_var('description',lang('<b>This will create 1 admin account and 3 demo accounts</b><br />The username/passwords are: demo/guest, demo2/guest and demo3/guest.'));
$setup_tpl->set_var('lang_deleteall',lang('Delete all existing SQL accounts, groups, ACLs and preferences (normally not necessary)?')); $setup_tpl->set_var('lang_deleteall',lang('Delete all existing SQL accounts, groups, ACLs and preferences (normally not necessary)?'));
$setup_tpl->set_var('detailadmin',lang('Details for Admin account')); $setup_tpl->set_var('detailadmin',lang('Details for Admin account'));

View File

@ -95,7 +95,7 @@
} }
foreach($table_definitions as $table => $definition) foreach($table_definitions as $table => $definition)
{ {
if ($diagnostics) { echo "<br>start converting table '$table' ... "; } if ($diagnostics) { echo "<br />start converting table '$table' ... "; }
$db2->set_column_definitions($definitions['fd']); $db2->set_column_definitions($definitions['fd']);
$updates = 0; $updates = 0;
$GLOBALS['egw_setup']->db->query("SELECT * FROM $table",__LINE__,__FILE__); $GLOBALS['egw_setup']->db->query("SELECT * FROM $table",__LINE__,__FILE__);
@ -128,7 +128,7 @@
{ {
// if we have no primary key, we need to delete and re-write the row // if we have no primary key, we need to delete and re-write the row
$db2->query($query="DELETE FROM $table WHERE ".$db2->column_data_implode(' AND ',$columns),__LINE__,__FILE__); $db2->query($query="DELETE FROM $table WHERE ".$db2->column_data_implode(' AND ',$columns),__LINE__,__FILE__);
if ($diagnostics > 1) echo " &nbsp; $query<br>\n"; if ($diagnostics > 1) echo " &nbsp; $query<br />\n";
$db2->query($query="INSERT INTO $table (".implode(',',array_keys($columns)).") VALUES (".$db2->column_data_implode(',',array_merge($columns,$update),False).")",__LINE__,__FILE__); $db2->query($query="INSERT INTO $table (".implode(',',array_keys($columns)).") VALUES (".$db2->column_data_implode(',',array_merge($columns,$update),False).")",__LINE__,__FILE__);
} }
if ($diagnostics > 1) echo " &nbsp; $query<p>\n"; if ($diagnostics > 1) echo " &nbsp; $query<p>\n";
@ -150,13 +150,13 @@
$setup_tpl->set_var('stage_title',$stage_title); $setup_tpl->set_var('stage_title',$stage_title);
$setup_tpl->set_var('stage_desc',$stage_desc); $setup_tpl->set_var('stage_desc',$stage_desc);
$setup_tpl->set_var('error_msg',is_array($errors) ? implode('<br>',$errors) : '&nbsp'); $setup_tpl->set_var('error_msg',is_array($errors) ? implode('<br />',$errors) : '&nbsp');
$setup_tpl->set_var('lang_convert',lang('Convert')); $setup_tpl->set_var('lang_convert',lang('Convert'));
$setup_tpl->set_var('lang_cancel',lang('Cancel')); $setup_tpl->set_var('lang_cancel',lang('Cancel'));
$setup_tpl->set_var('lang_current',lang('Current system-charset')); $setup_tpl->set_var('lang_current',lang('Current system-charset'));
$setup_tpl->set_var('lang_convert_to',lang('Charset to convert to')); $setup_tpl->set_var('lang_convert_to',lang('Charset to convert to'));
$setup_tpl->set_var('lang_warning','<b>'.lang('Setting the system-charset to UTF-8 (unicode) allows the coexistens of data from languages of different charsets.').'</b><br>'. $setup_tpl->set_var('lang_warning','<b>'.lang('Setting the system-charset to UTF-8 (unicode) allows the coexistens of data from languages of different charsets.').'</b><br />'.
lang('If you use only languages of the same charset (eg. western european ones) you dont need to set a system-charset!')); lang('If you use only languages of the same charset (eg. western european ones) you dont need to set a system-charset!'));
$installed_charsets = $translation->get_installed_charsets(); $installed_charsets = $translation->get_installed_charsets();
@ -169,7 +169,7 @@
$current_charset = $translation->system_charset; $current_charset = $translation->system_charset;
} }
$setup_tpl->set_var('current_charset',"<b>$current_charset</b>". $setup_tpl->set_var('current_charset',"<b>$current_charset</b>".
"<input type=\"hidden\" name=\"current_charset\" value=\"$current_charset\">\n"); "<input type=\"hidden\" name=\"current_charset\" value=\"$current_charset\" />\n");
} }
else else
{ {
@ -188,7 +188,7 @@
{ {
$other_charset = 'utf-8'; $other_charset = 'utf-8';
} }
$setup_tpl->set_var('new_charset',"<b>$other_charset</b><input type=\"hidden\" name=\"new_charset\" value=\"$other_charset\">\n"); $setup_tpl->set_var('new_charset',"<b>$other_charset</b><input type=\"hidden\" name=\"new_charset\" value=\"$other_charset\" />\n");
} }
else else
{ {

View File

@ -1,5 +1,6 @@
<!-- BEGIN header --> <!-- BEGIN header -->
<script> <script type="text/javascript">
<!--
function check_all(which) function check_all(which)
{ {
for (i=0; i<document.apps.elements.length; i++) for (i=0; i<document.apps.elements.length; i++)
@ -17,20 +18,21 @@ function check_all(which)
} }
} }
} }
// -->
</script> </script>
<br> <br />
<div align="center"> <div align="center">
<table border="0" width="100%" cellspacing="0" cellpadding="2"> <table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr> <tr>
<td align="center">{description}</td> <td align="center">{description}</td>
</tr> </tr>
</table> </table>
<form name="apps" method="post" action="{action_url}">
<table width="90%" cellspacing="0" cellpadding="2"> <table width="90%" cellspacing="0" cellpadding="2">
<!-- END header --> <!-- END header -->
<!-- BEGIN app_header --> <!-- BEGIN app_header -->
<form name="apps" method="POST" action="{action_url}">
<tr class="th"> <tr class="th">
<td colspan="5" align="center">{appdata}</td> <td colspan="5" align="center">{appdata}</td>
<td colspan="4" align="center">{actions}</td> <td colspan="4" align="center">{actions}</td>
@ -48,21 +50,21 @@ function check_all(which)
<tr> <tr>
<td bgcolor="{bg_color}" colspan="5">&nbsp;</td> <td bgcolor="{bg_color}" colspan="5">&nbsp;</td>
<td bgcolor="{bg_color}" align="center"> <td bgcolor="{bg_color}" align="center">
<a href="javascript:check_all('install')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{install_all}"></a> <a href="javascript:check_all('install')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{install_all}" /></a>
</td> </td>
<td bgcolor="{bg_color}" align="center"> <td bgcolor="{bg_color}" align="center">
<a href="javascript:check_all('upgrade')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{upgrade_all}"></a> <a href="javascript:check_all('upgrade')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{upgrade_all}" /></a>
</td> </td>
<td bgcolor="{bg_color}">&nbsp;</td> <td bgcolor="{bg_color}">&nbsp;</td>
<td bgcolor="{bg_color}" align="center"> <td bgcolor="{bg_color}" align="center">
<a href="javascript:check_all('remove')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{remove_all}"></a> <a href="javascript:check_all('remove')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{remove_all}" /></a>
</td> </td>
</tr> </tr>
<!-- END app_header --> <!-- END app_header -->
<!-- BEGIN apps --> <!-- BEGIN apps -->
<tr bgcolor="{bg_color}"> <tr bgcolor="{bg_color}">
<td><a href="applications.php?detail={appname}"><img src="templates/default/images/{instimg}" alt="{instalt}" title="{instalt}" border="0"></a></td> <td><a href="applications.php?detail={appname}"><img src="templates/default/images/{instimg}" alt="{instalt}" title="{instalt}" border="0" /></a></td>
<td>{appinfo}&nbsp;</td> <td>{appinfo}&nbsp;</td>
<td>{apptitle}&nbsp;</td> <td>{apptitle}&nbsp;</td>
<td>{currentver}&nbsp;</td> <td>{currentver}&nbsp;</td>
@ -113,22 +115,22 @@ function check_all(which)
<tr> <tr>
<td bgcolor="{bg_color}" colspan="5">{debug} {lang_debug}</td> <td bgcolor="{bg_color}" colspan="5">{debug} {lang_debug}</td>
<td bgcolor="{bg_color}" align="center"> <td bgcolor="{bg_color}" align="center">
<a href="javascript:check_all('install')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{install_all}"></a> <a href="javascript:check_all('install')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{install_all}" /></a>
</td> </td>
<td bgcolor="{bg_color}" align="center"> <td bgcolor="{bg_color}" align="center">
<a href="javascript:check_all('upgrade')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{upgrade_all}"></a> <a href="javascript:check_all('upgrade')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{upgrade_all}" /></a>
</td> </td>
<td bgcolor="{bg_color}">&nbsp;</td> <td bgcolor="{bg_color}">&nbsp;</td>
<td bgcolor="{bg_color}" align="center"> <td bgcolor="{bg_color}" align="center">
<a href="javascript:check_all('remove')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{remove_all}"></a> <a href="javascript:check_all('remove')"><img src="templates/default/images/{check}" border="0" height="16" width="21" alt="{remove_all}" /></a>
</td> </td>
</tr> </tr>
</table> </table>
<table border="0" width="70%" cellspacing="0" cellpadding="2"> <table border="0" width="70%" cellspacing="0" cellpadding="2">
<tr> <tr>
<td colspan="2" align="center"> <td colspan="2" align="center">
<input type="submit" name="submit" value="{submit}"> <input type="submit" name="submit" value="{submit}" />
<input type="submit" name="cancel" value="{cancel}"> <input type="submit" name="cancel" value="{cancel}" />
</td> </td>
</tr> </tr>
</table> </table>
@ -136,9 +138,7 @@ function check_all(which)
<!-- END app_footer --> <!-- END app_footer -->
<!-- BEGIN footer --> <!-- BEGIN footer -->
</tr> <br />
</table>
<br>
<table width="100%" cellspacing="0"> <table width="100%" cellspacing="0">
<tr class="banner"> <tr class="banner">
<td>&nbsp;</td> <td>&nbsp;</td>

View File

@ -1,5 +1,5 @@
<!-- BEGIN appheader --> <!-- BEGIN appheader -->
<p><b>{lang_applist}:</b><hr><p> <p><b>{lang_applist}:</b><hr /><p>
<table width="60%" border="0" align="center" cellspacing="1" cellpadding="1"> <table width="60%" border="0" align="center" cellspacing="1" cellpadding="1">
<tr> <tr>
<td align="center">Select an application/module, or click 'Show all' to convert all tables.</td> <td align="center">Select an application/module, or click 'Show all' to convert all tables.</td>
@ -9,7 +9,7 @@
</tr> </tr>
</table> </table>
<table width="60%" border="0" align="center" cellspacing="1" cellpadding="1"> <table width="60%" border="0" align="center" cellspacing="1" cellpadding="1">
<form method="POST" action="{action_url}"> <form method="post" action="{action_url}">
<tr bgcolor="#DDDDDD"> <tr bgcolor="#DDDDDD">
<td>&nbsp;</td> <td>&nbsp;</td>
<td>Name</td> <td>Name</td>
@ -19,7 +19,7 @@
<!-- BEGIN appitem --> <!-- BEGIN appitem -->
<tr bgcolor="#EEEEEE"> <tr bgcolor="#EEEEEE">
<td><input type="radio" name="appname" value="{appname}"></td> <td><input type="radio" name="appname" value="{appname}" /></td>
<td>{appname}&nbsp;</td> <td>{appname}&nbsp;</td>
<td colspan="2">{apptitle}&nbsp;</td> <td colspan="2">{apptitle}&nbsp;</td>
</tr> </tr>
@ -30,11 +30,11 @@
<table width="60%" border="0" align="center" cellspacing="1" cellpadding="1"> <table width="60%" border="0" align="center" cellspacing="1" cellpadding="1">
<tr> <tr>
<td align="left" width="7%"> <td align="left" width="7%">
<input type="submit" name="submit" value="{lang_submit}"></td> <input type="submit" name="submit" value="{lang_submit}" /></td>
<td align="left" width="7%"> <td align="left" width="7%">
<input type="submit" name="showall" value="{lang_showall}"> <input type="submit" name="showall" value="{lang_showall}" />
</td> </td>
<td><input type="checkbox" name="download" value="1">{select_to_download_file}</td> <td><input type="checkbox" name="download" value="1" />{select_to_download_file}</td>
</tr> </tr>
</form> </form>
</table> </table>

View File

@ -2,7 +2,7 @@
<!-- BEGIN header --> <!-- BEGIN header -->
<form method="POST" action="{action_url}"> <form method="post" action="{action_url}">
<table align="center" cellspacing="0" border="5" width="90%" > <table align="center" cellspacing="0" border="5" width="90%" >
<tr class="th"> <tr class="th">
<td colspan="2">&nbsp;{title}</td> <td colspan="2">&nbsp;{title}</td>
@ -16,23 +16,23 @@
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_Enter_the_full_path_for_temporary_files.<br>Examples:_/tmp,_C:\TEMP}:</td> <td>{lang_Enter_the_full_path_for_temporary_files.<br />Examples:_/tmp,_C:\TEMP}:</td>
<td><input name="newsettings[temp_dir]" value="{value_temp_dir}" size="40"></td> <td><input name="newsettings[temp_dir]" value="{value_temp_dir}" size="40" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
<td>{lang_Enter_the_full_path_for_users_and_group_files.<br>Examples:_/files,_E:\FILES}:<br><b>{lang_This_has_to_be_outside_the_webservers_document-root!!!}</b><br>{lang_or_http://webdav.domain.com_(WebDAV)}:</td> <td>{lang_Enter_the_full_path_for_users_and_group_files.<br />Examples:_/files,_E:\FILES}:<br /><b>{lang_This_has_to_be_outside_the_webservers_document-root!!!}</b><br />{lang_or_http://webdav.domain.com_(WebDAV)}:</td>
<td><input name="newsettings[files_dir]" value="{value_files_dir}" size="40"></td> <td><input name="newsettings[files_dir]" value="{value_files_dir}" size="40" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_Enter_the_full_path_to_the_backup_directory.<br>if_empty:_files_directory}/db_backup:<br><b>{lang_This_has_to_be_outside_the_webservers_document-root!!!}</b></td> <td>{lang_Enter_the_full_path_to_the_backup_directory.<br />if_empty:_files_directory}/db_backup:<br /><b>{lang_This_has_to_be_outside_the_webservers_document-root!!!}</b></td>
<td><input name="newsettings[backup_dir]" value="{value_backup_dir}" size="40"></td> <td><input name="newsettings[backup_dir]" value="{value_backup_dir}" size="40" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
<td>{lang_Enter_the_location_of_eGroupWare's_URL.<br>Example:_http://www.domain.com/egroupware_&nbsp;_or_&nbsp;_/egroupware<br><b>No_trailing_slash</b>}:</td> <td>{lang_Enter_the_location_of_eGroupWare's_URL.<br />Example:_http://www.domain.com/egroupware_&nbsp;_or_&nbsp;_/egroupware<br /><b>No_trailing_slash</b>}:</td>
<td><input name="newsettings[webserver_url]" value="{value_webserver_url}" size="40"></td> <td><input name="newsettings[webserver_url]" value="{value_webserver_url}" size="40" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
@ -66,12 +66,12 @@
<tr class="row_on"> <tr class="row_on">
<td>{lang_Enter_the_hostname_of_the_machine_on_which_this_server_is_running}:</td> <td>{lang_Enter_the_hostname_of_the_machine_on_which_this_server_is_running}:</td>
<td><input name="newsettings[hostname]" value="{value_hostname}"></td> <td><input name="newsettings[hostname]" value="{value_hostname}" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_Enter_your_default_FTP_server}:</td> <td>{lang_Enter_your_default_FTP_server}:</td>
<td><input name="newsettings[default_ftp_server]" value="{value_default_ftp_server}"></td> <td><input name="newsettings[default_ftp_server]" value="{value_default_ftp_server}" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
@ -85,7 +85,7 @@
</tr> </tr>
<!-- this is not working correct <!-- this is not working correct
<tr class="row_off"> <tr class="row_off">
<td>{lang_Datetime_port.<br>If_using_port_13,_please_set_firewall_rules_appropriately_before_submitting_this_page.<br>(Port:_13_/_Host:_129.6.15.28)}</td> <td>{lang_Datetime_port.<br />If_using_port_13,_please_set_firewall_rules_appropriately_before_submitting_this_page.<br />(Port:_13_/_Host:_129.6.15.28)}</td>
<td> <td>
<select name="newsettings[daytime_port]"> <select name="newsettings[daytime_port]">
<option value="00"{selected_daytime_port_00}>{lang_00_(disable)}</option> <option value="00"{selected_daytime_port_00}>{lang_00_(disable)}</option>
@ -97,33 +97,33 @@
--> -->
<tr class="row_off"> <tr class="row_off">
<td>{lang_Enter_your_HTTP_proxy_server}:</td> <td>{lang_Enter_your_HTTP_proxy_server}:</td>
<td><input name="newsettings[httpproxy_server]" value="{value_httpproxy_server}"></td> <td><input name="newsettings[httpproxy_server]" value="{value_httpproxy_server}" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
<td>{lang_Enter_your_HTTP_proxy_server_port}:</td> <td>{lang_Enter_your_HTTP_proxy_server_port}:</td>
<td><input name="newsettings[httpproxy_port]" value="{value_httpproxy_port}"></td> <td><input name="newsettings[httpproxy_port]" value="{value_httpproxy_port}" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_Enter_your_HTTP_proxy_server_username}:</td> <td>{lang_Enter_your_HTTP_proxy_server_username}:</td>
<td><input name="newsettings[httpproxy_server_username]" value="{value_httpproxy_server_username}"></td> <td><input name="newsettings[httpproxy_server_username]" value="{value_httpproxy_server_username}" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
<td>{lang_Enter_your_HTTP_proxy_server_password}:</td> <td>{lang_Enter_your_HTTP_proxy_server_password}:</td>
<td><input name="newsettings[httpproxy_server_password]" value="{value_httpproxy_server_password}"></td> <td><input name="newsettings[httpproxy_server_password]" value="{value_httpproxy_server_password}" /></td>
</tr> </tr>
<!-- until they are working <!-- until they are working
<tr class="row_off"> <tr class="row_off">
<td>{lang_Enter_the_site_username_for_peer_servers}.</td> <td>{lang_Enter_the_site_username_for_peer_servers}.</td>
<td><input name="newsettings[site_username]" value="{value_site_username}"></td> <td><input name="newsettings[site_username]" value="{value_site_username}" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
<td>{lang_Enter_the_site_password_for_peer_servers}.</td> <td>{lang_Enter_the_site_password_for_peer_servers}.</td>
<td><input type="password" name="newsettings[site_password]" value="{value_site_password}"></td> <td><input type="password" name="newsettings[site_password]" value="{value_site_password}" /></td>
</tr> </tr>
--> -->
@ -197,21 +197,21 @@
<tr class="row_on"> <tr class="row_on">
<td>{lang_Allowed_migration_types_(comma-separated)}:</td> <td>{lang_Allowed_migration_types_(comma-separated)}:</td>
<td> <td>
<input name="newsettings[pwd_migration_types]" value="{value_pwd_migration_types}" size="20"> <input name="newsettings[pwd_migration_types]" value="{value_pwd_migration_types}" size="20" />
</td> </td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_Minimum_account_id_(e.g._500_or_100,_etc.)}:</td> <td>{lang_Minimum_account_id_(e.g._500_or_100,_etc.)}:</td>
<td><input name="newsettings[account_min_id]" value="{value_account_min_id}"></td> <td><input name="newsettings[account_min_id]" value="{value_account_min_id}" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
<td>{lang_Maximum_account_id_(e.g._65535_or_1000000)}:</td> <td>{lang_Maximum_account_id_(e.g._65535_or_1000000)}:</td>
<td><input name="newsettings[account_max_id]" value="{value_account_max_id}"></td> <td><input name="newsettings[account_max_id]" value="{value_account_max_id}" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_User_account_prefix}:</td> <td>{lang_User_account_prefix}:</td>
<td><input name="newsettings[account_prefix]" value="{value_account_prefix}"></td> <td><input name="newsettings[account_prefix]" value="{value_account_prefix}" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
@ -249,7 +249,7 @@
<tr class="row_off"> <tr class="row_off">
<td>{lang_Add_auto-created_users_to_this_group_('Default'_will_be_attempted_if_this_is_empty.)}:</td> <td>{lang_Add_auto-created_users_to_this_group_('Default'_will_be_attempted_if_this_is_empty.)}:</td>
<td><input name="newsettings[default_group_lid]" value="{value_default_group_lid}"></td> <td><input name="newsettings[default_group_lid]" value="{value_default_group_lid}" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
@ -285,42 +285,42 @@
<tr class="row_on"> <tr class="row_on">
<td>{lang_LDAP_Default_homedirectory_prefix_(e.g._/home_for_/home/username)}:</td> <td>{lang_LDAP_Default_homedirectory_prefix_(e.g._/home_for_/home/username)}:</td>
<td><input name="newsettings[ldap_account_home]" value="{value_ldap_account_home}"></td> <td><input name="newsettings[ldap_account_home]" value="{value_ldap_account_home}" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_LDAP_Default_shell_(e.g._/bin/bash)}:</td> <td>{lang_LDAP_Default_shell_(e.g._/bin/bash)}:</td>
<td><input name="newsettings[ldap_account_shell]" value="{value_ldap_account_shell}"></td> <td><input name="newsettings[ldap_account_shell]" value="{value_ldap_account_shell}" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
<td>{lang_LDAP_host}:</td> <td>{lang_LDAP_host}:</td>
<td><input name="newsettings[ldap_host]" value="{value_ldap_host}"></td> <td><input name="newsettings[ldap_host]" value="{value_ldap_host}" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_LDAP_accounts_context}:</td> <td>{lang_LDAP_accounts_context}:</td>
<td><input name="newsettings[ldap_context]" value="{value_ldap_context}" size="40"></td> <td><input name="newsettings[ldap_context]" value="{value_ldap_context}" size="40" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
<td>{lang_LDAP_search_filter_for_accounts,_default:_"(uid=%user)",_%domain=eGW-domain}:</td> <td>{lang_LDAP_search_filter_for_accounts,_default:_"(uid=%user)",_%domain=eGW-domain}:</td>
<td><input name="newsettings[ldap_search_filter]" value="{value_ldap_search_filter}" size="40"></td> <td><input name="newsettings[ldap_search_filter]" value="{value_ldap_search_filter}" size="40" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_LDAP_groups_context}:</td> <td>{lang_LDAP_groups_context}:</td>
<td><input name="newsettings[ldap_group_context]" value="{value_ldap_group_context}" size="40"></td> <td><input name="newsettings[ldap_group_context]" value="{value_ldap_group_context}" size="40" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
<td>{lang_LDAP_rootdn} {lang_(searching_accounts_and_changing_passwords)}:</td> <td>{lang_LDAP_rootdn} {lang_(searching_accounts_and_changing_passwords)}:</td>
<td><input name="newsettings[ldap_root_dn]" value="{value_ldap_root_dn}" size="40"></td> <td><input name="newsettings[ldap_root_dn]" value="{value_ldap_root_dn}" size="40" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_LDAP_root_password}:</td> <td>{lang_LDAP_root_password}:</td>
<td><input name="newsettings[ldap_root_pw]" type="password" value="{value_ldap_root_pw}"></td> <td><input name="newsettings[ldap_root_pw]" type="password" value="{value_ldap_root_pw}" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
@ -351,11 +351,11 @@
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
<td>{lang_Host/IP_Domain_controler}:</td> <td>{lang_Host/IP_Domain_controler}:</td>
<td><input name="newsettings[ads_host]" value="{value_ads_host}" size="40"></td> <td><input name="newsettings[ads_host]" value="{value_ads_host}" size="40" /></td>
</tr> </tr>
<tr class="row_on"> <tr class="row_on">
<td>{lang_Domain_name}:</td> <td>{lang_Domain_name}:</td>
<td><input name="newsettings[ads_domain]" value="{value_ads_domain}" size="40"></td> <td><input name="newsettings[ads_domain]" value="{value_ads_domain}" size="40" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
@ -368,7 +368,7 @@
<tr class="row_on"> <tr class="row_on">
<td>{lang_Enter_some_random_text_for_app_session_encryption}:</td> <td>{lang_Enter_some_random_text_for_app_session_encryption}:</td>
<td><input name="newsettings[encryptkey]" value="{value_encryptkey}" size="40"></td> <td><input name="newsettings[encryptkey]" value="{value_encryptkey}" size="40" /></td>
</tr> </tr>
<tr class="row_off"> <tr class="row_off">
@ -398,7 +398,7 @@
<tr class="row_on"> <tr class="row_on">
<td> <td>
{lang_Select_where_you_want_to_store/retrieve_filesystem_information}: {lang_Select_where_you_want_to_store/retrieve_filesystem_information}:
<br> <br />
({lang_file_type,_size,_version,_etc.}) ({lang_file_type,_size,_version,_etc.})
</td> </td>
<td> <td>
@ -412,7 +412,7 @@
<tr class="row_off"> <tr class="row_off">
<td> <td>
{lang_Select_where_you_want_to_store/retrieve_file_contents}: {lang_Select_where_you_want_to_store/retrieve_file_contents}:
<br> <br />
({lang_Recommended:_Filesystem}) ({lang_Recommended:_Filesystem})
</td> </td>
<td> <td>
@ -438,8 +438,8 @@
</tr> </tr>
<tr> <tr>
<td colspan="2" align="center"> <td colspan="2" align="center">
<input type="submit" name="submit" value="Submit"> <input type="submit" name="submit" value="Submit" />
<input type="submit" name="cancel" value="Cancel"> <input type="submit" name="cancel" value="Cancel" />
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -11,8 +11,8 @@
</tr> </tr>
<tr> <tr>
<td colspan="2" align="center"> <td colspan="2" align="center">
<input type="submit" name="submit" value="{lang_submit}"> <input type="submit" name="submit" value="{lang_submit}" />
<input type="submit" name="cancel" value="{lang_cancel}"> <input type="submit" name="cancel" value="{lang_cancel}" />
</td> </td>
</tr> </tr>
<tr class="banner"> <tr class="banner">

View File

@ -1,5 +1,5 @@
<!-- begin config_pre_script.tpl --> <!-- begin config_pre_script.tpl -->
<form method="POST" action="config.php"> <form method="post" action="config.php">
<table border="0" align="center" cellspacing="0" width="90%" "> <table border="0" align="center" cellspacing="0" width="90%">
<!-- end config_pre_script.tpl --> <!-- end config_pre_script.tpl -->

View File

@ -1,9 +1,9 @@
#setup_info { .setup_info {
color:#5F5F5F; color:#5F5F5F;
} }
#setup_error { .setup_error {
color:red; color:red;
} }
#setup_warning { .setup_warning {
color: #5F5F5F; color: #5F5F5F;
} }

View File

@ -1,7 +1,7 @@
<!-- begin db_backup.tpl --> <!-- begin db_backup.tpl -->
<p align="center"><font color="red">{error_msg}</font></p> <p align="center"><font color="red">{error_msg}</font></p>
<form method="POST" action="{self}" enctype="multipart/form-data"> <form method="post" action="{self}" enctype="multipart/form-data">
<table border="0" align="center" width="98%" cellpadding="5"> <table border="0" align="center" width="98%" cellpadding="5">
<!-- BEGIN setup_header --> <!-- BEGIN setup_header -->
<tr bgcolor="#486591"> <tr bgcolor="#486591">

View File

@ -16,7 +16,7 @@
</tr> </tr>
</tbody></table> </tbody></table>
<br></td> <br /></td>
<td width="15"></td> <td width="15"></td>
</tr> </tr>
</tbody></table> </tbody></table>

View File

@ -1,5 +1,5 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml:lang="{lang_code}" xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<!-- <!--
HTML Coding Standards; HTML Coding Standards;

View File

@ -1,6 +1,9 @@
<!-- begin lang_main.tpl --> <!-- begin lang_main.tpl -->
<p>&nbsp;</p> <p>&nbsp;</p>
<form method="post" action="lang.php">
{hidden_var1}
<table border="0" align="center" width="{tbl_width}"> <table border="0" align="center" width="{tbl_width}">
<tr bgcolor="#486591"> <tr bgcolor="#486591">
<td colspan="{td_colspan}"> <td colspan="{td_colspan}">
@ -15,36 +18,36 @@
<tr bgcolor="#e6e6e6"> <tr bgcolor="#e6e6e6">
<td {td_align} rowspan="2"> <td {td_align} rowspan="2">
{select_box_desc} {select_box_desc}
<form method="POST" action="lang.php"> <select name="lang_selected[]" multiple="multiple" size="25">
{hidden_var1}
<select name="lang_selected[]" multiple size="25">
{select_box_langs} {select_box_langs}
</select> </select>
</td> </td>
<!-- BEGIN B_choose_method --> <!-- BEGIN B_choose_method -->
<td valign="top"> <td valign="top">
{meth_desc} {meth_desc}
<br><br> <br /><br />
<input type="radio" name="upgrademethod" value="dumpold" checked> <input type="radio" name="upgrademethod" value="dumpold" checked="checked" />
&nbsp;{blurb_dumpold} &nbsp;{blurb_dumpold}
<br> <br />
<input type="radio" name="upgrademethod" value="addonlynew"> <input type="radio" name="upgrademethod" value="addonlynew" />
&nbsp;{blurb_addonlynew} &nbsp;{blurb_addonlynew}
<br> <br />
<input type="radio" name="upgrademethod" value="addmissing"> <input type="radio" name="upgrademethod" value="addmissing" />
&nbsp;{blurb_addmissing} &nbsp;{blurb_addmissing}
</td> </td>
<!-- END B_choose_method --> <!-- END B_choose_method -->
</tr> </tr>
<tr bgcolor="#e6e6e6"> <tr bgcolor="#e6e6e6">
<td> <td>
<input type="checkbox" name="debug" value="1"> {lang_debug} <input type="checkbox" name="debug" value="1" /> {lang_debug}
</td> </td>
</tr> </tr>
</table> </table>
<div align="center"> <div align="center">
<input type="submit" name="submit" value="{lang_install}"> <input type="submit" name="submit" value="{lang_install}" />
<input type="submit" name="cancel" value="{lang_cancel}"> <input type="submit" name="cancel" value="{lang_cancel}" />
</div> </div>
</form>
<!-- end lang_main.tpl --> <!-- end lang_main.tpl -->

View File

@ -1,8 +1,8 @@
<!-- BEGIN header --> <!-- BEGIN header -->
<form action="{action_url}" method="POST"> <form action="{action_url}" method="post">
<table border="0" align="center" width="70%"> <table border="0" align="center" width="70%">
<tr bgcolor="#486591"> <tr bgcolor="#486591">
<td colspan="2">&nbsp;<font color="#fefefe">{description}<br>&nbsp;</font></td> <td colspan="2">&nbsp;<font color="#fefefe">{description}<br />&nbsp;</font></td>
</tr> </tr>
<!-- END header --> <!-- END header -->
@ -65,7 +65,7 @@
<tr bgcolor="#e6e6e6"> <tr bgcolor="#e6e6e6">
<td align="left" valign="top"> <td align="left" valign="top">
&nbsp;{select_apps} &nbsp;{select_apps}
<br>&nbsp;{note} <br />&nbsp;{note}
</td> </td>
<td> <td>
<select name="s_apps[]" multiple size="10"> <select name="s_apps[]" multiple size="10">
@ -78,8 +78,8 @@
<!-- BEGIN submit --> <!-- BEGIN submit -->
<tr bgcolor="#e6e6e6"> <tr bgcolor="#e6e6e6">
<td colspan="2" align="center"> <td colspan="2" align="center">
<input type="submit" name="submit" value="{form_submit}"> <input type="submit" name="submit" value="{form_submit}" />
<input type="submit" name="cancel" value="{cancel}"> <input type="submit" name="cancel" value="{cancel}" />
</td> </td>
</tr> </tr>
<!-- END submit --> <!-- END submit -->
@ -87,7 +87,7 @@
<!-- BEGIN cancel_only --> <!-- BEGIN cancel_only -->
<tr bgcolor="#e6e6e6"> <tr bgcolor="#e6e6e6">
<td colspan="2" align="center"> <td colspan="2" align="center">
<input type="submit" name="cancel" value="{cancel}"> <input type="submit" name="cancel" value="{cancel}" />
</td> </td>
</tr> </tr>
<!-- END cancel_only --> <!-- END cancel_only -->

View File

@ -4,7 +4,7 @@
<table align="center" cellspacing="0" cellpadding="5" style="border: 0px solid rgb(72, 101, 145);" width="450"> <table align="center" cellspacing="0" cellpadding="5" style="border: 0px solid rgb(72, 101, 145);" width="450">
{V_login_stage_header} {V_login_stage_header}
<tr class="row_on" > <tr class="row_on" >
<td colspan="2">&nbsp;</strong></td> <td colspan="2">&nbsp;</td>
</tr> </tr>
<tr class="th"> <tr class="th">
<td bgcolor="#cccccc" colspan="2">&nbsp;<strong>{lang_header_login}</strong></td> <td bgcolor="#cccccc" colspan="2">&nbsp;<strong>{lang_header_login}</strong></td>
@ -18,16 +18,16 @@
<table> <table>
<tr> <tr>
<td>{lang_header_username}:</td> <td>{lang_header_username}:</td>
<td><input type="text" name="FormUser" value=""></td> <td><input type="text" name="FormUser" value="" /></td>
<td>{lang_select}</td> <td>{lang_select}</td>
</tr> </tr>
<tr> <tr>
<td>{lang_header_password}:</td> <td>{lang_header_password}:</td>
<td><input type="password" name="FormPW" value=""></td> <td><input type="password" name="FormPW" value="" /></td>
</tr> </tr>
</table> </table>
<input type="submit" name="Submit" value="Login"> <input type="submit" name="Submit" value="Login" />
<input type="hidden" name="HeaderLogin" value="Login"> <input type="hidden" name="HeaderLogin" value="Login" />
</form> </form>
</td> </td>
</tr> </tr>

View File

@ -22,7 +22,7 @@
<tr> <tr>
<td>{lang_config_username}:</td> <td>{lang_config_username}:</td>
<td> <td>
<input type="text" name="FormUser" value=""> <input type="text" name="FormUser" value="" />
</td> </td>
<td> <td>
{lang_select} {lang_select}
@ -31,7 +31,7 @@
<tr> <tr>
<td>{lang_config_password}:</td> <td>{lang_config_password}:</td>
<td> <td>
<input type="password" name="FormPW" value=""> <input type="password" name="FormPW" value="" />
</td> </td>
</tr> </tr>
</table> </table>
@ -42,7 +42,7 @@
<tr> <tr>
<td>{lang_config_username}:</td> <td>{lang_config_username}:</td>
<td> <td>
<input type="text" name="FormUser" value=""> <input type="text" name="FormUser" value="" />
</td> </td>
<td> <td>
{lang_select} {lang_select}
@ -51,14 +51,15 @@
<tr> <tr>
<td>{lang_config_password}:</td> <td>{lang_config_password}:</td>
<td> <td>
<input type="password" name="FormPW" value=""> <input type="password" name="FormPW" value="" />
</td> </td>
</tr>
</table> </table>
<input type="hidden" name="FormDomain" value="{default_domain_zero}"> <input type="hidden" name="FormDomain" value="{default_domain_zero}" />
<!-- END B_single_domain --> <!-- END B_single_domain -->
<input type="hidden" name="ConfigLogin" value="Login"> <input type="hidden" name="ConfigLogin" value="Login" />
<input type="submit" name="submit" value="Login"> <input type="submit" name="submit" value="Login" />
</form> </form>
</td> </td>
</tr> </tr>

View File

@ -17,35 +17,37 @@
</script> </script>
<table border="0" width="90%" cellspacing="0" cellpadding="0" align="center"> <table border="0" width="90%" cellspacing="0" cellpadding="0" align="center">
<tbody><tr><td> <tbody>
{lang_select}
{detected} {detected}
<tr>
<td>
<form name="domain_settings" action="manageheader.php" method="post">
<input type="hidden" name="setting[write_config]" value="true" />
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr class="th"> <tr class="th">
<th colspan="2">{lang_settings}</th> <th colspan="2">{lang_settings}</th>
</tr> </tr>
<form name="domain_settings" action="manageheader.php" method="post">
<input type="hidden" name="setting[write_config]" value="true">
<tr> <tr>
<td colspan="2"><b>{lang_serverroot}</b> <td colspan="2"><b>{lang_serverroot}</b><br /><input type="text" name="setting[server_root]" size="80" value="{server_root}" /></td>
<br><input type="text" name="setting[server_root]" size="80" value="{server_root}">
</td>
</tr> </tr>
<tr> <tr>
<td colspan="2"><b>{lang_includeroot}</b><br><input type="text" name="setting[include_root]" size="80" value="{include_root}"></td> <td colspan="2"><b>{lang_includeroot}</b><br /><input type="text" name="setting[include_root]" size="80" value="{include_root}" /></td>
</tr> </tr>
<tr> <tr>
<td colspan="2"><b>{lang_adminuser}</b><br><input type="text" name="setting[HEADER_ADMIN_USER]" size="30" value="{header_admin_user}"></td> <td colspan="2"><b>{lang_adminuser}</b><br /><input type="text" name="setting[HEADER_ADMIN_USER]" size="30" value="{header_admin_user}" /></td>
</tr> </tr>
<tr> <tr>
<td colspan="2"><b>{lang_adminpass}</b><br><input type="password" name="setting[HEADER_ADMIN_PASSWORD]" size="30" value="{header_admin_password}"><input type="hidden" name="setting[HEADER_ADMIN_PASS]" value="{header_admin_pass}"></td> <td colspan="2"><b>{lang_adminpass}</b><br /><input type="password" name="setting[HEADER_ADMIN_PASSWORD]" size="30" value="{header_admin_password}" /><input type="hidden" name="setting[HEADER_ADMIN_PASS]" value="{header_admin_pass}" /></td>
</tr> </tr>
<tr> <tr>
<td colspan="2"><b>{lang_setup_acl}</b><br><input type="text" name="setting[setup_acl]" size="30" value="{setup_acl}"></td> <td colspan="2"><b>{lang_setup_acl}</b><br /><input type="text" name="setting[setup_acl]" size="30" value="{setup_acl}" /></td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_persist}</b><br> <td><b>{lang_persist}</b><br />
<select type="checkbox" name="setting[db_persistent]"> <select name="setting[db_persistent]">
<option value="True"{db_persistent_yes}>{lang_Yes}</option> <option value="True"{db_persistent_yes}>{lang_Yes}</option>
<option value="False"{db_persistent_no}>{lang_No}</option> <option value="False"{db_persistent_no}>{lang_No}</option>
</select> </select>
@ -53,7 +55,7 @@
<td>{lang_persistdescr}</td> <td>{lang_persistdescr}</td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_sesstype}</b><br> <td><b>{lang_sesstype}</b><br />
<select name="setting[sessions_type]"> <select name="setting[sessions_type]">
{session_options} {session_options}
</select> </select>
@ -61,7 +63,7 @@
<td>{lang_sesstypedescr}</td> <td>{lang_sesstypedescr}</td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_enablemcrypt}</b><br> <td><b>{lang_enablemcrypt}</b><br />
<select name="setting[enable_mcrypt]"> <select name="setting[enable_mcrypt]">
<option value="True"{mcrypt_enabled_yes}>{lang_Yes}</option> <option value="True"{mcrypt_enabled_yes}>{lang_Yes}</option>
<option value="False"{mcrypt_enabled_no}>{lang_No}</option> <option value="False"{mcrypt_enabled_no}>{lang_No}</option>
@ -70,15 +72,15 @@
<td>{lang_mcrypt_warning}</td> <td>{lang_mcrypt_warning}</td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_mcryptversion}</b><br><input type="text" name="setting[mcrypt_version]" value="{mcrypt}"></td> <td><b>{lang_mcryptversion}</b><br /><input type="text" name="setting[mcrypt_version]" value="{mcrypt}" /></td>
<td>{lang_mcryptversiondescr}</td> <td>{lang_mcryptversiondescr}</td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_mcryptiv}</b><br><input type="text" name="setting[mcrypt_iv]" value="{mcrypt_iv}" size="30"></td> <td><b>{lang_mcryptiv}</b><br /><input type="text" name="setting[mcrypt_iv]" value="{mcrypt_iv}" size="30" /></td>
<td>{lang_mcryptivdescr}</td> <td>{lang_mcryptivdescr}</td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_domselect}</b><br> <td><b>{lang_domselect}</b><br />
<select name="setting[domain_selectbox]"> <select name="setting[domain_selectbox]">
<option value="True"{domain_selectbox_yes}>{lang_Yes}</option> <option value="True"{domain_selectbox_yes}>{lang_Yes}</option>
<option value="False"{domain_selectbox_no}>{lang_No}</option> <option value="False"{domain_selectbox_no}>{lang_No}</option>
@ -87,39 +89,50 @@
</tr> </tr>
{domains}{comment_l} {domains}{comment_l}
<tr class="th"> <tr class="th">
<td colspan="2"><input type="submit" name="adddomain" value="{lang_adddomain}"></td> <td colspan="2"><input type="submit" name="adddomain" value="{lang_adddomain}" /></td>
</tr>{comment_r} </tr>{comment_r}
<tr> <tr>
<td colspan="2">{errors}</td> <td colspan="2">{errors}</td>
</tr> </tr>
{formend} </tbody>
<tr> </table>
<td colspan="3">
<form action="index.php" method="post">
<br>{lang_finaldescr}<br>
<input type="hidden" name="FormLogout" value="header">
<input type="hidden" name="ConfigLogin" value="Login">
<input type="hidden" name="FormUser" value="{FormUser}">
<input type="hidden" name="FormPW" value="{FormPW}">
<input type="hidden" name="FormDomain" value="{FormDomain}">
<input type="submit" name="junk" value="{lang_continue}">
</form> </form>
</td> </td>
</tr> </tr>
<tr class="banner">
<td colspan="3">&nbsp;</td> <tr>
<td>
<form action="index.php" method="post">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<br />{lang_finaldescr}<br />
<input type="hidden" name="FormLogout" value="header" />
<input type="hidden" name="ConfigLogin" value="Login" />
<input type="hidden" name="FormUser" value="{FormUser}" />
<input type="hidden" name="FormPW" value="{FormPW}" />
<input type="hidden" name="FormDomain" value="{FormDomain}" />
<input type="submit" name="junk" value="{lang_continue}" />
</td>
</tr> </tr>
</tbody>
</table>
</form>
</td>
</tr>
</tbody>
</table> </table>
</body>
</html>
<!-- END manageheader --> <!-- END manageheader -->
<!-- BEGIN domain --> <!-- BEGIN domain -->
<tr class="th"> <tr class="th">
<td>{lang_domain}:</td>&nbsp;<td><input name="domains[{db_domain}]" value="{db_domain}">&nbsp;&nbsp;<input type="checkbox" name="deletedomain[{db_domain}]">&nbsp;<font color="fefefe">{lang_delete}</font></td> <td>{lang_domain}:</td>
<td><input name="domains[{db_domain}]" value="{db_domain}" />&nbsp;&nbsp;<input type="checkbox" name="deletedomain[{db_domain}]" />&nbsp;<font color="fefefe">{lang_delete}</font></td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_dbtype}</b><br> <td><b>{lang_dbtype}</b><br />
<select name="setting_{db_domain}[db_type]" onchange="setDefaultDBPort(this,this.form['setting_{db_domain}[db_port]']);"> <select name="setting_{db_domain}[db_type]" onchange="setDefaultDBPort(this,this.form['setting_{db_domain}[db_port]']);">
{dbtype_options} {dbtype_options}
</select> </select>
@ -127,26 +140,25 @@
<td>{lang_whichdb}</td> <td>{lang_whichdb}</td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_dbhost}</b><br><input type="text" name="setting_{db_domain}[db_host]" value="{db_host}"></td><td>{lang_dbhostdescr}</td> <td><b>{lang_dbhost}</b><br /><input type="text" name="setting_{db_domain}[db_host]" value="{db_host}" /></td><td>{lang_dbhostdescr}</td>
</tr> </tr>
<tr> <tr>
<tr> <td><b>{lang_dbport}</b><br /><input type="text" name="setting_{db_domain}[db_port]" value="{db_port}" /></td><td>{lang_dbportdescr}</td>
<td><b>{lang_dbport}</b><br><input type="text" name="setting_{db_domain}[db_port]" value="{db_port}"></td><td>{lang_dbportdescr}</td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_dbname}</b><br><input type="text" name="setting_{db_domain}[db_name]" value="{db_name}"></td><td>{lang_dbnamedescr}</td> <td><b>{lang_dbname}</b><br /><input type="text" name="setting_{db_domain}[db_name]" value="{db_name}" /></td><td>{lang_dbnamedescr}</td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_dbuser}</b><br><input type="text" name="setting_{db_domain}[db_user]" value="{db_user}"></td><td>{lang_dbuserdescr}</td> <td><b>{lang_dbuser}</b><br /><input type="text" name="setting_{db_domain}[db_user]" value="{db_user}" /></td><td>{lang_dbuserdescr}</td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_dbpass}</b><br><input type="password" name="setting_{db_domain}[db_pass]" value="{db_pass}"></td><td>{lang_dbpassdescr}</td> <td><b>{lang_dbpass}</b><br /><input type="password" name="setting_{db_domain}[db_pass]" value="{db_pass}" /></td><td>{lang_dbpassdescr}</td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_configuser}</b><br><input type="text" name="setting_{db_domain}[config_user]" value="{config_user}"></td> <td><b>{lang_configuser}</b><br /><input type="text" name="setting_{db_domain}[config_user]" value="{config_user}" /></td>
</tr> </tr>
<tr> <tr>
<td><b>{lang_configpass}</b><br><input type="password" name="setting_{db_domain}[config_pass]" value="{config_pass}"><input type="hidden" name="setting_{db_domain}[config_password]" value="{config_password}"></td> <td><b>{lang_configpass}</b><br /><input type="password" name="setting_{db_domain}[config_pass]" value="{config_pass}" /><input type="hidden" name="setting_{db_domain}[config_password]" value="{config_password}" /></td>
<td>{lang_passforconfig}</td> <td>{lang_passforconfig}</td>
</tr> </tr>
<!-- END domain --> <!-- END domain -->

View File

@ -1,5 +1,5 @@
<!-- BEGIN header --> <!-- BEGIN header -->
<br> <br />
<div align="center"> <div align="center">
<table border="0" width="70%" cellspacing="0" cellpadding="2"> <table border="0" width="70%" cellspacing="0" cellpadding="2">
<tr> <tr>
@ -10,7 +10,7 @@
<!-- END header --> <!-- END header -->
<!-- BEGIN app_header --> <!-- BEGIN app_header -->
<form method="POST" action="{action_url}"> <form method="post" action="{action_url}">
<tr> <tr>
<td colspan="4" bgcolor="#486591"><center><font color="#fefefe">{appdata}</font></center></td> <td colspan="4" bgcolor="#486591"><center><font color="#fefefe">{appdata}</font></center></td>
<td colspan="1" bgcolor="#486591"><center><font color="#fefefe">{actions}</font></center></td> <td colspan="1" bgcolor="#486591"><center><font color="#fefefe">{actions}</font></center></td>
@ -25,7 +25,7 @@
<!-- BEGIN apps --> <!-- BEGIN apps -->
<tr bgcolor="{bg_color}"> <tr bgcolor="{bg_color}">
<td><a href="schematoy.php?detail={appname}"><img src="templates/default/images/{instimg}" alt="{instalt}" border="0"></a></td> <td><a href="schematoy.php?detail={appname}"><img src="templates/default/images/{instimg}" alt="{instalt}" border="0" /></a></td>
<td>{appinfo}&nbsp;</td> <td>{appinfo}&nbsp;</td>
<td>{apptitle}&nbsp;</td> <td>{apptitle}&nbsp;</td>
<td align="center"><select name="version[{appname}]">{select_version}</select></td> <td align="center"><select name="version[{appname}]">{select_version}</select></td>
@ -72,8 +72,8 @@
<table border="0" width="70%" cellspacing="0" cellpadding="2"> <table border="0" width="70%" cellspacing="0" cellpadding="2">
<tr> <tr>
<td colspan="2" align="center"> <td colspan="2" align="center">
<input type="submit" name="submit" value="{submit}"> <input type="submit" name="submit" value="{submit}" />
<input type="submit" name="cancel" value="{cancel}"> <input type="submit" name="cancel" value="{cancel}" />
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -5,22 +5,22 @@
<!-- BEGIN B_db_stage_1 --> <!-- BEGIN B_db_stage_1 -->
<tr> <tr>
<td align="center"> <td align="center">
<img src="{img_incomplete}" alt="{notcomplete}" border="0"> <img src="{img_incomplete}" alt="{notcomplete}" border="0" />
</td> </td>
<td> <td>
{dbnotexist}<br> {dbnotexist}<br />
{makesure}.<br> {makesure}.<br />
<br> <br />
{instr}<p> {instr}<p>
<form action="index.php" method="post"> <form action="index.php" method="post">
{createdb}<br> {createdb}<br />
DB root username: <input type="text" name="db_root" value="root"><br> DB root username: <input type="text" name="db_root" value="root" /><br />
DB root password: <input type="password" name="db_pass"><br> DB root password: <input type="password" name="db_pass" /><br />
<input type="hidden" name="action" value="Create Database"> <input type="hidden" name="action" value="Create Database" />
<input type="submit" name="label" value="{create_database}"> <input type="submit" name="label" value="{create_database}" />
</form> </form>
<form method="POST" action="index.php"> <br> <form method="post" action="index.php"> <br />
<input type="submit" value="Re-Check my database"> <input type="submit" value="Re-Check my database" />
</form> </form>
</td> </td>
</tr> </tr>
@ -29,14 +29,14 @@
<!-- BEGIN B_db_stage_1a --> <!-- BEGIN B_db_stage_1a -->
<tr> <tr>
<td align="center"> <td align="center">
<img src="{img_incomplete}" alt="{notcomplete}" border="0"> <img src="{img_incomplete}" alt="{notcomplete}" border="0" />
</td> </td>
<td> <td>
{dbnotexist}<p> {dbnotexist}<p>
{makesure}. {makesure}.
<form method="POST" action="index.php"> <form method="post" action="index.php">
<input type="submit" value="Re-Check my database"> <input type="submit" value="Re-Check my database" />
</form><br> </form><br />
</td> </td>
</tr> </tr>
<!-- END B_db_stage_1a --> <!-- END B_db_stage_1a -->
@ -47,7 +47,7 @@
<tr> <tr>
<td align="center"> <td align="center">
<img src="{img_incomplete}" alt="{notcomplete}" border="0"> <img src="{img_incomplete}" alt="{notcomplete}" border="0" />
</td> </td>
<td> <td>
{prebeta} {prebeta}
@ -60,19 +60,19 @@
<!-- BEGIN B_db_stage_3 --> <!-- BEGIN B_db_stage_3 -->
<tr> <tr>
<td align="center"> <td align="center">
<img src="{img_incomplete}" alt="{Complete}" border="0"> <img src="{img_incomplete}" alt="{Complete}" border="0" />
</td> </td>
<td> <td>
<form action="index.php" method="post" enctype="multipart/form-data"> <form action="index.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="oldversion" value="new"> <input type="hidden" name="oldversion" value="new" />
{dbexists}<br> {dbexists}<br />
<input type="hidden" name="action" value="Install"> <input type="hidden" name="action" value="Install" />
{lang_system_charset} {system_charset}<br> {lang_system_charset} {system_charset}<br />
<input type="checkbox" name="debug" value="1"> {lang_debug}<br> <input type="checkbox" name="debug" value="1" /> {lang_debug}<br />
<input type="submit" name="label" value="{install}"> {coreapps} <input type="submit" name="label" value="{install}" /> {coreapps}
<hr> <hr />
{lang_restore}<br> {lang_restore}<br />
{upload} {upload}
</form> </form>
</td> </td>
@ -84,48 +84,48 @@
<!-- BEGIN B_db_stage_4 --> <!-- BEGIN B_db_stage_4 -->
<tr> <tr>
<td align="center"> <td align="center">
<img src="{img_incomplete}" alt="not complete" border="0"> <img src="{img_incomplete}" alt="not complete" border="0" />
</td> </td>
<td> <td>
{oldver}.<br> {oldver}.<br />
{automatic} {automatic}
{backupwarn}<br> {backupwarn}<br />
<form method="POST" action="index.php"> <form method="post" action="index.php">
<input type="hidden" name="oldversion" value="{oldver}"> <input type="hidden" name="oldversion" value="{oldver}" />
<input type="hidden" name="useglobalconfigsettings"> <input type="hidden" name="useglobalconfigsettings" />
<input type="hidden" name="action" value="Upgrade"> <input type="hidden" name="action" value="Upgrade" />
<input type="checkbox" name="backup" value="1" checked="1"> {lang_backup}<br> <input type="checkbox" name="backup" value="1" checked="checked" /> {lang_backup}<br />
<input type="checkbox" name="debug" value="1"> {lang_debug}<br> <input type="checkbox" name="debug" value="1" /> {lang_debug}<br />
<input type="submit" name="label" value="{upgrade}"><br> <input type="submit" name="label" value="{upgrade}" /><br />
</form> </form>
<hr> <hr />
<form method="POST" action="index.php"> <form method="post" action="index.php">
<input type="hidden" name="oldversion" value="{oldver}"> <input type="hidden" name="oldversion" value="{oldver}" />
<input type="hidden" name="useglobalconfigsettings"> <input type="hidden" name="useglobalconfigsettings" />
<input type="hidden" name="action" value="Uninstall all applications"> <input type="hidden" name="action" value="Uninstall all applications" />
<input type="submit" name="label" value="{uninstall_all_applications}"><br>({dropwarn}) <input type="submit" name="label" value="{uninstall_all_applications}" /><br />({dropwarn})
</form> </form>
<hr> <hr />
{dont_touch_my_data}.&nbsp;&nbsp;{goto}: {dont_touch_my_data}.&nbsp;&nbsp;{goto}:
<form method="POST" action="config.php"> <form method="post" action="config.php">
<input type="hidden" name="action" value="Dont touch my data"> <input type="hidden" name="action" value="Dont touch my data" />
<input type="submit" name="label" value="{configuration}"> <input type="submit" name="label" value="{configuration}" />
</form> </form>
<form method="POST" action="setup_demo.php"> <form method="post" action="setup_demo.php">
<input type="hidden" name="action" value="Dont touch my data"> <input type="hidden" name="action" value="Dont touch my data" />
<input type="submit" name="label" value="{admin_account}"> <input type="submit" name="label" value="{admin_account}" />
</form> </form>
<form method="POST" action="lang.php"> <form method="post" action="lang.php">
<input type="hidden" name="action" value="Dont touch my data"> <input type="hidden" name="action" value="Dont touch my data" />
<input type="submit" name="label" value="{language_management}"> <input type="submit" name="label" value="{language_management}" />
</form> </form>
<form method="POST" action="applications.php"> <form method="post" action="applications.php">
<input type="hidden" name="action" value="Dont touch my data"> <input type="hidden" name="action" value="Dont touch my data" />
<input type="submit" name="label" value="{applications}"> <input type="submit" name="label" value="{applications}" />
</form> </form>
<form method="POST" action="db_backup.php"> <form method="post" action="db_backup.php">
<input type="hidden" name="action" value="Dont touch my data"> <input type="hidden" name="action" value="Dont touch my data" />
<input type="submit" name="label" value="{db_backup}"> <input type="submit" name="label" value="{db_backup}" />
</form> </form>
</td> </td>
</tr> </tr>
@ -137,16 +137,16 @@
</tr> </tr>
<tr> <tr>
<td align="center"> <td align="center">
<img src="{img_incomplete}" alt="{Complete}" border="0"> <img src="{img_incomplete}" alt="{Complete}" border="0" />
</td> </td>
<td> <td>
<form action="index.php" method="post"> <form action="index.php" method="post">
<input type="hidden" name="oldversion" value="new"> <input type="hidden" name="oldversion" value="new" />
<input type="hidden" name="action" value="REALLY Uninstall all applications"> <input type="hidden" name="action" value="REALLY Uninstall all applications" />
<input type="submit" name="label" value="{really_uninstall_all_applications}"> {dropwarn} <input type="submit" name="label" value="{really_uninstall_all_applications}" /> {dropwarn}
</form> </form>
<form action="index.php" method="post"> <form action="index.php" method="post">
<input type="submit" name="cancel" value="{cancel}"> <input type="submit" name="cancel" value="{cancel}" />
</form> </form>
</td> </td>
</tr> </tr>
@ -157,7 +157,7 @@
<!-- BEGIN B_db_stage_6_pre --> <!-- BEGIN B_db_stage_6_pre -->
<tr> <tr>
<td align="center"> <td align="center">
<img src="{img_incomplete}" alt="{notcomplete}" border="0"> <img src="{img_incomplete}" alt="{notcomplete}" border="0" />
</td> </td>
<td> <td>
<table width="100%"> <table width="100%">
@ -193,8 +193,8 @@
</tr> </tr>
</table> </table>
<form method="POST" action="index.php"> <br> <form method="post" action="index.php"> <br />
<input type="submit" value="{re-check_my_installation}"> <input type="submit" value="{re-check_my_installation}" />
</form> </form>
</td> </td>
</tr> </tr>
@ -205,15 +205,15 @@
<!-- BEGIN B_db_stage_10 --> <!-- BEGIN B_db_stage_10 -->
<tr> <tr>
<td align="center"> <td align="center">
<img src="{img_completed}" alt="completed" border="0"> <img src="{img_completed}" alt="completed" border="0" />
</td> </td>
<td> <td>
{tablescurrent} {tablescurrent}
<form method="POST" action="index.php"> <form method="post" action="index.php">
<input type="hidden" name="oldversion" value="new"> <br> <input type="hidden" name="oldversion" value="new" /> <br />
{insanity}: {insanity}:
<input type="hidden" name="action" value="Uninstall all applications"> <input type="hidden" name="action" value="Uninstall all applications" />
<input type="submit" name="label" value="{uninstall_all_applications}"><br>({dropwarn}) <input type="submit" name="label" value="{uninstall_all_applications}" /><br />({dropwarn})
</form> </form>
</td> </td>
</tr> </tr>
@ -224,12 +224,12 @@
<!-- BEGIN B_db_stage_default --> <!-- BEGIN B_db_stage_default -->
<tr> <tr>
<td align="center"> <td align="center">
<img src="{img_incomplete}" alt="not complete" border="0"> <img src="{img_incomplete}" alt="not complete" border="0" />
</td> </td>
<td> <td>
<form action="index.php" method="post"> <form action="index.php" method="post">
{dbnotexist}.<br> {dbnotexist}.<br />
<input type="submit" value="{create_one_now}"> <input type="submit" value="{create_one_now}" />
</form> </form>
</td> </td>
</tr> </tr>

View File

@ -1,11 +1,12 @@
<!-- BEGIN setup_demo --> <!-- BEGIN setup_demo -->
<form method="POST" action="{action_url}"> <form method="post" action="{action_url}">
<table border="0" width="90%" cellspacing="0" cellpadding="2"> <table border="0" width="90%" cellspacing="0" cellpadding="2">
<tr> <tr>
<td> <td>
{description} {description}
<p> <p>
<input type="checkbox" name="delete_all">{lang_deleteall} <input type="checkbox" name="delete_all" />{lang_deleteall}
</p>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -16,31 +17,31 @@
<table border="0"> <table border="0">
<tr> <tr>
<td>{adminusername}</td> <td>{adminusername}</td>
<td><input type="text" name="username"></td> <td><input type="text" name="username" /></td>
</tr> </tr>
<tr> <tr>
<td>{adminfirstname}</td> <td>{adminfirstname}</td>
<td><input type="text" name="fname"></td> <td><input type="text" name="fname" /></td>
</tr> </tr>
<tr> <tr>
<td>{adminlastname}</td> <td>{adminlastname}</td>
<td><input type="text" name="lname"></td> <td><input type="text" name="lname" /></td>
</tr> </tr>
<tr> <tr>
<td>{adminpassword}</td> <td>{adminpassword}</td>
<td><input type="password" name="passwd"></td> <td><input type="password" name="passwd" /></td>
</tr> </tr>
<tr> <tr>
<td>{adminpassword2}</td> <td>{adminpassword2}</td>
<td><input type="password" name="passwd2"></td> <td><input type="password" name="passwd2" /></td>
</tr> </tr>
<tr> <tr>
<td>{create_demo_accounts}</td> <td>{create_demo_accounts}</td>
<td><input type="checkbox" name="create_demo"></td> <td><input type="checkbox" name="create_demo" /></td>
</tr> </tr>
<tr> <tr>
<td><input type="submit" name="submit" value="{lang_submit}"> </td> <td><input type="submit" name="submit" value="{lang_submit}" /></td>
<td><input type="submit" name="cancel" value="{lang_cancel}"> </td> <td><input type="submit" name="cancel" value="{lang_cancel}" /></td>
</tr> </tr>
</table> </table>
</td> </td>

View File

@ -14,7 +14,7 @@
</tr> </tr>
<tr> <tr>
<td align="center" width="30%"> <td align="center" width="30%">
<img src="{config_status_img}" alt="{config_status_alt}" border="0"> <img src="{config_status_img}" alt="{config_status_alt}" border="0" />
</td> </td>
<td> <td>
{config_table_data} {config_table_data}
@ -33,7 +33,7 @@
</tr> </tr>
<tr> <tr>
<td align="center" width="30%"> <td align="center" width="30%">
<img src="{admin_status_img}" alt="{admin_status_alt}" border="0"> <img src="{admin_status_img}" alt="{admin_status_alt}" border="0" />
</td> </td>
<td> <td>
{admin_table_data} {admin_table_data}
@ -46,7 +46,7 @@
</tr> </tr>
<tr> <tr>
<td align="center"> <td align="center">
<img src="{lang_status_img}" alt="{lang_status_alt}" border="0"> <img src="{lang_status_img}" alt="{lang_status_alt}" border="0" />
</td> </td>
<td> <td>
{lang_table_data} {lang_table_data}
@ -59,7 +59,7 @@
</tr> </tr>
<tr> <tr>
<td align="center"> <td align="center">
<img src="{apps_status_img}" alt="{apps_status_alt}" border="0"> <img src="{apps_status_img}" alt="{apps_status_alt}" border="0" />
</td> </td>
<td> <td>
{apps_table_data} {apps_table_data}
@ -72,7 +72,7 @@
</tr> </tr>
<tr> <tr>
<td align="center"> <td align="center">
<img src="{backup_status_img}" alt="{backup_status_alt}" border="0"> <img src="{backup_status_img}" alt="{backup_status_alt}" border="0" />
</td> </td>
<td> <td>
{backup_table_data} {backup_table_data}

View File

@ -22,16 +22,16 @@
</pre> </pre>
</td> </td>
</tr> </tr>
<form method="GET" action="{action_url}"> <form method="get" action="{action_url}">
<tr> <tr>
<td align="left" width="7%"> <td align="left" width="7%">
<input type="submit" name="download" value="{lang_download}">&nbsp; <input type="submit" name="download" value="{lang_download}" />&nbsp;
<input type="submit" name="cancel" value="{lang_cancel}"> <input type="submit" name="cancel" value="{lang_cancel}" />
<input type="hidden" name="appname" value="{appname}"> <input type="hidden" name="appname" value="{appname}" />
<input type="hidden" name="table" value="{table}"> <input type="hidden" name="table" value="{table}" />
<input type="hidden" name="apps" value="{apps}"> <input type="hidden" name="apps" value="{apps}" />
<input type="hidden" name="showall" value="{showall}"> <input type="hidden" name="showall" value="{showall}" />
<input type="hidden" name="submit" value="True"> <input type="hidden" name="submit" value="True" />
</td> </td>
</tr> </tr>
</form> </form>

View File

@ -1,7 +1,7 @@
<!-- begin system_charset.tpl --> <!-- begin system_charset.tpl -->
<p align="center"><font color="red">{error_msg}</font></p> <p align="center"><font color="red">{error_msg}</font></p>
<form method="POST" action="system_charset.php"> <form method="post" action="system_charset.php">
<table border="0" align="center" width="80%"> <table border="0" align="center" width="80%">
<tr bgcolor="#486591"> <tr bgcolor="#486591">
<td colspan="2"> <td colspan="2">
@ -36,8 +36,8 @@
</tr> </tr>
<tr> <tr>
<td colspan="2" align="center"> <td colspan="2" align="center">
<input type="submit" name="convert" value="{lang_convert}"> &nbsp; <input type="submit" name="convert" value="{lang_convert}" /> &nbsp;
<input type="submit" name="cancel" value="{lang_cancel}"> <input type="submit" name="cancel" value="{lang_cancel}" />
</td> </td>
</tr> </tr>
</table> </table>