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)
{
$selected = ' selected';
$selected = ' selected="selected"';
}
else
{
@ -77,7 +77,7 @@
{
if ($config['mcrypt_mode'] == $value)
{
$selected = ' selected';
$selected = ' selected="selected"';
}
else
{
@ -92,12 +92,12 @@
if(!$found)
{
/* 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
{
$out = '<option value="cbc" selected>CBC</option>' . "\n";
$out = '<option value="cbc" selected="selected">CBC</option>' . "\n";
}
return $out;
}

View File

@ -798,17 +798,17 @@
if ($file)
{
printf("<br><b>File:</b> %s",$file);
printf("<br /><b>File:</b> %s",$file);
}
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")
{
echo "<p><b>Session halted.</b>";
echo "<p><b>Session halted.</b></p>";
if (is_object($GLOBALS['egw']->common))
{
$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)).'"' : '') . '>'.
$this->htmlspecialchars($no_lang || $label == '' ? $label : lang($label)) . "</option>\n";
}

View File

@ -140,22 +140,22 @@
if ($setup_info[$appname]['tables'])
{
$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']);
echo '<br>' . $app_title . ' ' . lang('deregistered') . '.';
echo '<br />' . $app_title . ' ' . lang('deregistered') . '.';
if ($setup_info[$appname]['hooks'])
{
$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;
if ($historylog->delete($appname))
{
echo '<br>' . $app_title . ' ' . lang('Historylog removed') . '.';
echo '<br />' . $app_title . ' ' . lang('Historylog removed') . '.';
}
// delete all application categories and ACL
@ -176,7 +176,7 @@
{
$terror = $GLOBALS['egw_setup']->process->current($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') . '.';
}
else
@ -189,12 +189,12 @@
{
$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'])
{
$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;
@ -212,12 +212,12 @@
$GLOBALS['egw_setup']->process->upgrade($terror,$DEBUG);
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
}
else
{
echo '<br>' . $app_title . ' ' . lang('upgraded') . '.';
echo '<br />' . $app_title . ' ' . lang('upgraded') . '.';
}
$do_langs = true;
}
@ -227,7 +227,7 @@
$GLOBALS['egw_setup']->process->translation->drop_add_all_langs();
}
//$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','footer');
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');
exit;
}
@ -291,18 +291,18 @@
{
echo '"' . $app_title . '" ' . lang('may be broken') . ' ';
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 '<br>';
echo '<br />';
echo lang('However, the application may still work') . '.';
}
elseif(get_var('badinstall',Array('GET')))
{
echo '"' . $app_title . '" ' . lang('is broken') . ' ';
echo lang('because of a failed upgrade or install') . '.';
echo '<br>';
echo '<br />';
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') . '.';
}
elseif (!$version)
@ -320,12 +320,12 @@
{
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);
$depapp_count = count($depapp);
for ($i=0; $i<$depapp_count; $i++)
{
echo '<br>' . $depapp[$i] . ': ';
echo '<br />' . $depapp[$i] . ': ';
$list = '';
foreach($depver[$i] as $x => $y)
{
@ -334,7 +334,7 @@
$list = substr($list,0,-2);
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
{
@ -351,32 +351,32 @@
}
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") . '.';
}
echo '<br>' . lang('However, the application is otherwise installed') . '.';
echo '<br />' . lang('However, the application is otherwise installed') . '.';
}
else
{
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 '<br>';
echo '<br />';
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');
exit;
}
else
{
$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->set_var('appdata',lang('Application Data'));
$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_title',lang('Application Title'));
$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('remove_all',lang('Remove All'));
$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->pparse('out','app_header');
@ -409,7 +409,7 @@
switch($value['status'])
{
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;');
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))
{
// 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>');
$status = lang('Requires reinstall or manual repair') . ' - ' . $value['status'];
}
@ -463,7 +463,7 @@
$status = lang('Requires upgrade') . ' - ' . $value['status'];
}
$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;');
$status = lang('Please install') . ' - ' . $value['status'];
}
@ -472,8 +472,8 @@
$setup_tpl->set_var('bg_color','CCCCFF');
$setup_tpl->set_var('install','&nbsp;');
// 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('remove','<input type="checkbox" name="remove[' . $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('resolution','');
$status = lang('Requires upgrade') . ' - ' . $value['status'];
}
@ -482,8 +482,8 @@
$setup_tpl->set_var('instimg','incomplete.png');
$setup_tpl->set_var('instalt',lang('Not Completed'));
$setup_tpl->set_var('install','&nbsp;');
$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('remove','<input type="checkbox" name="remove[' . $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>');
$status = lang('Version Mismatch') . ' - ' . $value['status'];
break;

View File

@ -38,9 +38,9 @@
exit;
}
}
$passed_icon = '<img src="templates/default/images/completed.png" title="Passed" align="middle"> ';
$error_icon = '<img src="templates/default/images/incomplete.png" title="Error" align="middle"><span id="setup_error">';
$warning_icon = '<img src="templates/default/images/dep.png" title="Warning" align="middle"><span id="setup_warning"> ';
$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" alt="Error" align="middle" />';
$warning_icon = '<img src="templates/default/images/dep.png" title="Warning" alt="Warning" align="middle" />';
}
else
{
@ -98,42 +98,42 @@
),
'mysql' => array(
'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(
'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(
'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
),
'odbc' => array(
'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(
'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(
'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(
'func' => 'php_ini_check',
'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' : '',
),
'imap' => array(
'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(
'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(
'func' => 'permission_check',
@ -178,17 +178,17 @@
return True; // check only under windows
}
// 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 "\n";
return $availible;
return $available;
}
function verbosePerms( $in_Perms )
@ -278,17 +278,17 @@
$checks = implode(', ',$checks);
$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))
{
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;
}
$warning = False;
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_writable']);
$warning = True;
@ -296,22 +296,22 @@
$Ok = True;
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;
}
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;
}
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;
}
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;
}
if ($Ok && !$warning && $verbose)
@ -322,7 +322,7 @@
{
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();
}
@set_time_limit(0);
@ -386,30 +386,30 @@
$result = $ini_value == $args['value'];
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)
{
echo $passed_icon.$msg;
echo "<div>".$passed_icon.$msg."</div>\n";
}
if (!$result)
{
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']))
{
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['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 '*** '.lang('Please make the following change in your php.ini').' ('.get_php_ini().'): '.(@$args['safe_mode']?$args['safe_mode']:$args['change'])."<br>\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('AND reload your webserver, so the above changes take effect !!!')."</div>\n";
}
}
@ -431,7 +431,7 @@
global $passed_icon, $warning_icon;
$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)
{
@ -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>'.lang('The first step in installing eGroupWare is to ensure your environment has the necessary settings to correctly run the application.');
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('The first step in installing eGroupWare is to ensure your environment has the necessary settings to correctly run the application.').'</p>';
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>';
$setup_tpl->pparse('out','T_footer');
exit;
@ -509,7 +509,7 @@
{
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');
//echo "</body>\n</html>\n";

View File

@ -94,14 +94,14 @@
call_user_func($setting,$newsettings);
if($GLOBALS['config_error'])
{
$GLOBALS['error'] .= '<br>' . lang($GLOBALS['config_error']) . '&nbsp;';
$GLOBALS['error'] .= '<br />' . lang($GLOBALS['config_error']) . '&nbsp;';
$GLOBALS['config_error'] = '';
/* Bail out, stop writing config data */
break;
}
else
{
/* echo '<br>Updating: ' . $setting . '=' . $value; */
/* echo '<br />Updating: ' . $setting . '=' . $value; */
/* Don't erase passwords, since we also do not print them below */
if($value || (!stristr($setting,'passwd') && !stristr($setting,'password') && !stristr($setting,'root_pw')))
{
@ -254,7 +254,7 @@
{
/* Please check the number and dial again :) */
$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') . '.');
}

View File

@ -218,7 +218,7 @@
'lang_year' => lang('year'),
'lang_month' => lang('month'),
'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_minute' => lang('minute'),
'lang_next_run' => lang('next run'),

View File

@ -181,12 +181,12 @@
$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 */
$simple_form = $pre_frm_blurb ."\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"
. $post_frm_blurb . "\n";
return $simple_form;
@ -226,7 +226,7 @@
{
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);

View File

@ -101,7 +101,7 @@
{
$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();
usort($languages,create_function('$a,$b','return strcmp(@$a[\'descr\'],@$b[\'descr\']);'));
foreach($languages as $data)
@ -112,7 +112,7 @@
$short = substr($data['lang'],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";
}

View File

@ -33,7 +33,7 @@
{
if($config['mcrypt_algo'] == $value)
{
$selected = ' selected';
$selected = ' selected="selected"';
}
else
{
@ -79,7 +79,7 @@
{
if($config['mcrypt_mode'] == $value)
{
$selected = ' selected';
$selected = ' selected="selected"';
}
else
{
@ -94,12 +94,12 @@
if(!$found)
{
/* 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
{
$out = '<option value="cbc" selected>CBC</option>' . "\n";
$out = '<option value="cbc" selected="selected">CBC</option>' . "\n";
}
return $out;
}
@ -123,7 +123,7 @@
{
if($config['ldap_encryption_type'] == $value)
{
$selected = ' selected';
$selected = ' selected="selected"';
}
else
{
@ -173,7 +173,7 @@
{
if($config['sql_encryption_type'] == $value)
{
$selected = ' selected';
$selected = ' selected="selected"';
}
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_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();
exit;
}
@ -193,21 +193,21 @@
case 'mysql':
$setup_tpl->set_var('instr',
lang("Instructions for creating the database in %1:",'MySql')
. '<br>'.lang('Login to mysql -')
. '<br><i>[user@server user]# mysql -u root -p</i><br>'
. '<br />'.lang('Login to mysql -')
. '<br /><i>[user@server user]# mysql -u root -p</i><br />'
. lang('Create the empty database and grant user permissions -')
. "<br><i>mysql> create database $info[db_name];</i>"
. "<br><i>mysql> grant all on " . $info['db_name']
. "<br /><i>mysql> create database $info[db_name];</i>"
. "<br /><i>mysql> grant all on " . $info['db_name']
. ".* to " . $info['db_user'] . "@localhost identified by '" . $info['db_pass'] . "';</i>");
$setup_tpl->parse('V_db_stage_1','B_db_stage_1');
break;
case 'pgsql':
$setup_tpl->set_var('instr',
lang('Instructions for creating the database in %1:','PostgreSQL')
. '<br>'.lang('Start the postmaster')
. "<br><i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br>"
. '<br />'.lang('Start the postmaster')
. "<br /><i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br />"
. 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');
break;
default:
@ -217,7 +217,7 @@
$setup_tpl->set_var('V_db_filled_block',$db_filled_block);
break;
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->parse('V_db_stage_2','B_db_stage_2');
$db_filled_block = $setup_tpl->get_var('V_db_stage_2');
@ -241,7 +241,7 @@
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('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_debug',lang('enable for extra debug-messages'));
$setup_tpl->set_var('upgrade',lang('Upgrade'));
@ -433,7 +433,7 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
case 1:
$btn_config_now = $GLOBALS['egw_setup']->html->make_frm_btn_simple(
lang('Please configure eGroupWare for your environment'),
'POST','config.php',
'post','config.php',
'submit',lang('Configure 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))
{
$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))
{
$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)
{
@ -475,7 +475,7 @@ function check_dir($dir,&$msg,$check_in_docroot=false)
}
$btn_edit_config = $GLOBALS['egw_setup']->html->make_frm_btn_simple(
$config_msg,
'POST','config.php',
'post','config.php',
'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(
lang('LDAP account import/export'),
'POST','ldap.php',
'post','ldap.php',
'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_table_data',$GLOBALS['egw_setup']->html->make_frm_btn_simple(
$no_accounts ? lang('No accounts existing') : lang('Accounts existing'),
'POST','setup_demo.php',
'post','setup_demo.php',
'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_alt','not completed');
$btn_install_lang = $GLOBALS['egw_setup']->html->make_frm_btn_simple(
lang('You do not have any languages installed. Please install one now <br>'),
'POST','lang.php',
lang('You do not have any languages installed. Please install one now <br />'),
'post','lang.php',
'submit',lang('Install Language'),
'');
$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_alt','completed');
$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)),
'POST','lang.php',
lang('This stage is completed<br />') . lang('Currently installed languages: %1 <br />',implode(', ',$langs_list)),
'post','lang.php',
'submit',lang('Manage Languages'),
'');
// 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(
count($to_upgrade) ? '<b>'.lang('The following applications need to be upgraded:').'</b> '.implode(', ',$to_upgrade) :
lang('This stage is completed<br>'),
'','applications.php',
lang('This stage is completed<br />'),
'post','applications.php',
'submit',lang('Manage Applications'),
'');
$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_alt',lang('completed'));
$setup_tpl->set_var('backup_table_data',$GLOBALS['egw_setup']->html->make_frm_btn_simple(
''/*lang('This stage is completed<br>')*/,
'','db_backup.php',
''/*lang('This stage is completed<br />')*/,
'post','db_backup.php',
'submit',lang('backup and restore'),
''));
break;

View File

@ -57,7 +57,7 @@
$tbl_width = @$newinstall ? '60%' : '80%';
$td_colspan = @$newinstall ? '1' : '2';
$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']))
{
@ -72,7 +72,7 @@
$select_box_langs =
@$select_box_langs
.'<option value="' . $id . '"'
.(@$GLOBALS['egw_info']['setup']['installed_langs'][$id]?' SELECTED="1"':'').'>'
.(@$GLOBALS['egw_info']['setup']['installed_langs'][$id]?' selected="selected"':'').'>'
. $data['descr'] . '</option>'
."\n";
}
@ -104,7 +104,7 @@
{
$_f_buffer = split("[/\\]", $badline['appfile']);
$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_msg', $str);

View File

@ -7,7 +7,7 @@
13 (ntp) setup de 13 (ntp)
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ä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ö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örter sind: demo/guest, demo2/guest und demo3/guest.
accounts existing setup de Benutzerkonten existieren
actions setup de Aktionen
add a domain setup de Eine Domain hinzufü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ängt upgegradet wurde
because it depends upon setup de weil es abhä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 ü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 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 the enable flag for this app is set to 0, or is undefined setup de weil der verfügbar-Eintrag für diese Applikation auf 0 gesetzt oder undefiniert ist
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
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
charset setup de ISO-8859-1
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 is %1, click %2here%3 to change it. setup de Aktueller Systemzeichensatz ist %1, %2hier%3 klicken um ihn zu ändern.
current version setup de Gegenwärtige Version
currently installed languages: %1 <br> setup de Gegenwärtig installierte Sprachen: %1 <br>
currently installed languages: %1 <br /> setup de Gegenwärtig installierte Sprachen: %1 <br />
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 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 host setup de Datenbank-Host
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 mcrypt setup de MCrypt einschalten
enter some random text for app session encryption setup de Zufallstext zur Verschlüsselung der Anwendungssitzung
enter some random text for app_session <br>encryption (requires mcrypt) setup de Zufallstext zur Verschlüsselung der Anwendungssitzung<br>(benötigt mcrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup de Vollständiger Pfad für temporäre Dateien.<br>Beispiel: /tmp, C:\TEMP
enter the full path for temporary files.<br>examples: /tmp, c:temp setup de Vollständiger Pfad für temporäre Dateien.<br>Beispiel: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup de Vollstä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ä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ändiger Pfad für das Datensicherungsverzeichnis.<br>Wenn leer: Dateiverzeichnis
enter some random text for app_session <br />encryption (requires mcrypt) setup de Zufallstext zur Verschlüsselung der Anwendungssitzung<br />(benötigt mcrypt)
enter the full path for temporary files.<br />examples: /tmp, c:\temp setup de Vollständiger Pfad für temporäre Dateien.<br />Beispiel: /tmp, C:\TEMP
enter the full path for temporary files.<br />examples: /tmp, c:temp setup de Vollständiger Pfad für temporäre Dateien.<br />Beispiel: /tmp, C:\TEMP
enter the full path for users and group files.<br />examples: /files, e:\files setup de Vollstä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ä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ä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 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 username for peer servers setup de Site Benutzername für Peer Server
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
schedule setup de planen
scheduled backups setup de Regelmäß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ä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ä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ä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 desired action(s) from the available choices setup de Wählen Sie die verlangten Aktion(en) aus der verfügbaren Auswahl
@ -390,7 +390,7 @@ selectbox setup de Auswahlfeld
server root setup de Server-Root
sessions type setup de Session-Typ
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ätzen.
settings setup de Einstellungen
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ätze vollständig zu unterstützen.
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
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>please check your ldap server configuration setup de Es gab ein Problem eine Verbindung zu Ihrem LDAP-Server herzustellen.<br>Bitte überprü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 />please check your ldap server configuration setup de Es gab ein Problem eine Verbindung zu Ihrem LDAP-Server herzustellen.<br />Bitte überprü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 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äßige Datensicherung planen oder sie zurü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 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 should be around 30 bytes in length.<br>note: the default has been randomly generated. setup de Das sollte ungefähr 30 Zeichen lang sein<br>Hinweis: Die Vorgabe wurde zufällig erzeugt.
this stage is completed<br> setup de Dieser Schritt ist abgeschlossen<br>
this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup de Das sollte ungefähr 30 Zeichen lang sein<br />Hinweis: Die Vorgabe wurde zufällig erzeugt.
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 setup 1 admin account and 3 demo accounts. setup de zum Anlegen von eines Administratorkontos und ggf. 3 Demo-Benutzerkonten.
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 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 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 ?
writable by the webserver setup de schreibar durch den Webserver
write config setup de Konfiguration schreiben
year setup de Jahr
yes setup de Ja
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ü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>Ältere PHP-Versionen könnten eGroupWare (wenn überhaupt) nicht korrekt ausführen. <br><br>Biite aktualisieren Sie mindestens auf Version %1
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ü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 />Ältere PHP-Versionen könnten eGroupWare (wenn überhaupt) nicht korrekt ausfü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 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ö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ü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ützung zu haben.
you appear to have postgresql support enabled setup de Sie scheinen PostgreSQL Unterstützung zu haben.
you appear to have xml support enabled setup de Sie scheinen XML Unterstü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 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 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 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 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 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 need to add some domains to your header.inc.php. setup de Sie müssen mindestens eine Domain zu Ihrer header.inc.php hinzufü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 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.<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ötigte GD Unterstützung. Die Anwendung Projekte benö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 will be dropped and you will lose data setup de Ihre Tabellen werden gelöscht werden und Sie werden alle Daten verlieren!

View File

@ -7,7 +7,7 @@
13 (ntp) setup en 13 (ntp)
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>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
actions setup en Actions
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 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 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 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 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
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
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
charset setup en ISO-8859-1
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 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
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'
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 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 host setup en DB Host
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 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 <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 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 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 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 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 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
@ -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
schedule setup en schedule
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 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
@ -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 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
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 /> 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
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 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 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 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 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 />
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.
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 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 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 ?
writable by the webserver setup en writable by the webserver
write config setup en Write config
year setup en year
yes setup en Yes
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 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 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 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 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 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 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 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 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 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 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 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 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 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.<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 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 !!

View File

@ -7,7 +7,7 @@
13 (ntp) setup es-ca 13 (ntp)
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àcters a utilitzar</b> (utilitzeu utf-8 si heu fer servir llenguatges amb diferents conjunts de carà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ò crearà un compte d'administrador i 3 de demostració</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ò crearà un compte d'administrador i 3 de demostració</b><br />Els noms d'usuari i contrasenyes són: demo/guest, demo2/guest i demo3/guest.
accounts existing setup es-ca Comptes existents
actions setup es-ca Accions
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è una aplicació de la que en depèn s'ha actualitzat
because it depends upon setup es-ca perquè depèn de
because it is not a user application, or access is controlled via acl setup es-ca perqué no és una aplicació d'usuari, o bé l'accés està controlat per ACL
because it requires manual table installation, <br>or the table definition was incorrect setup es-ca perquè necessita una instal·lació manual de les taules,<br> o bé la seva definició fou incorrecta
because it requires manual table installation, <br />or the table definition was incorrect setup es-ca perquè necessita una instal·lació manual de les taules,<br /> o bé la seva definició fou incorrecta
because it was manually disabled setup es-ca perquè es desactivà manualment
because of a failed upgrade or install setup es-ca perquè 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é va fallar la actualització, o la base de dades és més nova que la versió instal.lada d'aquesta aplicació
because the enable flag for this app is set to 0, or is undefined setup es-ca perqué la senyal d' "activada" d'aquesta aplicació està a 0, o no està definida
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ò us <u>recomanem que feu copia de seguretat</u> de les taules per el cas que el script faci malbé l'informació.<br><strong>Aquests scripts automàtics poden fàcilment destruir la vostra informació.</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ò us <u>recomanem que feu copia de seguretat</u> de les taules per el cas que el script faci malbé l'informació.<br /><strong>Aquests scripts automàtics poden fàcilment destruir la vostra informació.</strong>
cancel setup es-ca Cancel·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àcters del sistema
charset setup es-ca ISO-8859-1
charset to convert to setup es-ca Joc de caràcters al que convertir
@ -120,11 +120,11 @@ creating tables setup es-ca Creant Taules
current system-charset setup es-ca Joc de caràcters actual del sistema
current system-charset is %1, click %2here%3 to change it. setup es-ca El joc de caràcters del sistema actualment és %1. Premeu %2aquí%3 per canviar.
current version setup es-ca Versió Actual
currently installed languages: %1 <br> setup es-ca Idiomes actualment instal·lats: %1 <br>
currently installed languages: %1 <br /> setup es-ca Idiomes actualment instal·lats: %1 <br />
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 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ó de la BBDD
db host setup es-ca Servidor 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ó 3
enable mcrypt setup es-ca Activar MCrypt
enter some random text for app session encryption setup es-ca Introduïu qualsevol text aleatori per el xifrat de la sessió de l'aplicació
enter some random text for app_session <br>encryption (requires mcrypt) setup es-ca Introduïu qualsevol text aleatori per el xifrat de la sessió<br> de l'aplicació (necessita mcrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup es-ca Introduï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ï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ïu la ruta completa per al directori de la còpia de seguretat.<br>si es deixa en blanc: directori dels fitxers
enter some random text for app_session <br />encryption (requires mcrypt) setup es-ca Introduïu qualsevol text aleatori per el xifrat de la sessió<br /> de l'aplicació (necessita mcrypt)
enter the full path for temporary files.<br />examples: /tmp, c:\temp setup es-ca Introduï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ï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ï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ï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ïu l'adreç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ïu l'adreç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ïu la contrasenya del lloc per a servidors parells
enter the site username for peer servers setup es-ca Introduïu el nom d'usuari del lloc per a servidors parells
enter the title for your site setup es-ca Introduï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
schedule setup es-ca programar
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ó, entreu una versió destí, llavors premeu "Enviar" per a processar l'actualització fins a aquesta versió.<br>Si no entreu una versió, només s'instal·laran les taules base per a l'aplicació.<br><blink>AIXÒ ESBORRARÀ TOTES LES TAULES DE L'APLICACIÓ 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ó, entreu una versió destí, llavors premeu "Enviar" per a processar l'actualització fins a aquesta versió.<br />Si no entreu una versió, només s'instal·laran les taules base per a l'aplicació.<br /><blink>AIXÒ ESBORRARÀ TOTES LES TAULES DE L'APLICACIÓ PRIMER!</blink>
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é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
@ -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 és necessària per a suportar completament l'unicode (utf-8) o altres conjunts de caràcters de més d'un byte.
the table definition was correct, and the tables were installed setup es-ca La definició de la taula ha estat correcta, i s'han instal·lat 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>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ó del servidor LDAP
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ó del servidor LDAP
this has to be outside the webservers document-root!!! setup es-ca Això ha d'estar fora de l'arrel de documents dels servidors web!!!
this might take a while, please wait ... setup es-ca Això 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.
@ -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ó intentarà 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ó us ajudarà 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ó us ajudarà 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àcters.<br>Nota: la predeterminada s'ha generat aleatòriament.
this stage is completed<br> setup es-ca Fase acabada<br>
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àcters.<br />Nota: la predeterminada s'ha generat aleatòriament.
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ó 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
top setup es-ca capç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 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òria cau la matriu d'informació phpgw?
would you like egroupware to check for a new version<br>when admins login ? setup es-ca Voleu que eGroupWare comprovi l'existència de noves versions<br>quan un administrador inicïi la sessió?
would you like egroupware to check for a new version<br />when admins login ? setup es-ca Voleu que eGroupWare comprovi l'existència de noves versions<br />quan un administrador inicïi la sessió?
would you like to show each application's upgrade status ? setup es-ca Voleu mostrar l'estat de l'actualització de cada aplicació?
writable by the webserver setup es-ca pot ser modificat pel servidor web
write config setup es-ca Escriure configuració
year setup es-ca any
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ó pre-beta d'eGroupWare.<br>Aquestes versions ja no se suporten, i no hi ha camí d'actualització per a elles a la instal·lació.<br>Hauríeu d'actualitzar primer a la 0.9.10 (la darrera versió amb suport d'actualitzacions pre-beta)<br>i després actualitzar a la versió 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ó antiga de PHP<br>Es recomana que actualitzeu a una nova versió.<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ó %1
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ó pre-beta d'eGroupWare.<br />Aquestes versions ja no se suporten, i no hi ha camí d'actualització per a elles a la instal·lació.<br />Hauríeu d'actualitzar primer a la 0.9.10 (la darrera versió amb suport d'actualitzacions pre-beta)<br />i després actualitzar a la versió 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ó antiga de PHP<br />Es recomana que actualitzeu a una nova versió.<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ó %1
you appear to be running version %1 of egroupware setup es-ca Sembla que esteu executant la versió %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ó 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
@ -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 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 are ready for this stage, but this stage is not yet written.<br> setup es-ca Esteu preparats per a aquesta fase, però aquesta fase no està 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ò aquesta fase no està escrita encara.<br />
you didn't enter a config password for domain %1 setup es-ca No heu entrat una contrasenya de configuració 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ó per al domini %1
you didn't enter a header admin password setup es-ca No heu entrat una contrasenya per a l'administració de capceleres
you didn't enter a header admin username setup es-ca No heu entrat un nom d'usuari per a l'administració de capceleres
you do not have any languages installed. please install one now <br> setup es-ca No teniu cap idioma instal·lat. Si us plau, instal·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 do not have any languages installed. please install one now <br /> setup es-ca No teniu cap idioma instal·lat. Si us plau, instal·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 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 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 header admin password is not set. please set it now! setup es-ca La contrasenya d'administrador de capceleres NO està configurada. Si us plau, entreu-ne una ara.
your header.inc.php needs upgrading. setup es-ca El vostre header.inc.php necessita actualització
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ó.<br><blink><b class="msg">ATENCIÓ!!</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ó.<br /><blink><b class="msg">ATENCIÓ!!</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·lació de PHP no te el suport GD adient. Necessiteu la llibreria gd versió 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 will be dropped and you will lose data setup es-ca Les vostres taules s'esborraran i perdreu la informació que continguin!!

View File

@ -8,7 +8,7 @@
13 (ntp) setup es-es 13 (ntp)
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>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á 1 cuenta de administrador y 3 de demostración</b><br>Los nombres de usuario y contraseñ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á 1 cuenta de administrador y 3 de demostración</b><br />Los nombres de usuario y contraseñas son: demo/guest, demo2/guest y demo3/guest.
accounts existing setup es-es Existen cuentas
actions setup es-es Acciones
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ón de la que depende se actualizó
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ón de usuario, o el acceso está controlado por ACL
because it requires manual table installation, <br>or the table definition was incorrect setup es-es porque requiere de instalación manual de las tablas,<br> o la definición de las misma fué incorrecta
because it requires manual table installation, <br />or the table definition was incorrect setup es-es porque requiere de instalación manual de las tablas,<br /> o la definición de las misma fué incorrecta
because it was manually disabled setup es-es porque se desactivó manualmente
because of a failed upgrade or install setup es-es porque ocurrió 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ó la actualización, o la base de datos es mas reciente que la versión instalada de esta aplicació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ón está a 0, o no está definido
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ón cause daños a su información.<br><strong>Estos guiones automáticos pueden facilmente destruir su informació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ón cause daños a su información.<br /><strong>Estos guiones automáticos pueden facilmente destruir su información.</strong>
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
charset setup es-es ISO-8859-1
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 is %1, click %2here%3 to change it. setup es-es El juego de caracteres del sistema es actualmente %1. Pulse %2aquí%3 para cambiarlo.
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ó 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 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 host setup es-es Servidor 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ón 3
enable mcrypt setup es-es Activar MCrypt
enter some random text for app session encryption setup es-es Introduzca algún texto aleatorio para el cifrado de la sesión de la aplicación
enter some random text for app_session <br>encryption (requires mcrypt) setup es-es Introduzca algún texto aleatorio para el cifrado de la sesión de la aplicació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 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á vacio: directorio de los ficheros
enter some random text for app_session <br />encryption (requires mcrypt) setup es-es Introduzca algún texto aleatorio para el cifrado de la sesión de la aplicació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 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á 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á ejecutando esta instalació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ñ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 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
schedule setup es-es planificar
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ón, elija una versión objetivo, luego elija "Enviar" para realizar el proceso de actualización hasta dicha versión.<br>Si no selecciona una versión, solo la tablas de la versión base será instaladas.<br><blink>¡ESTO ELIMINARÁ 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ón, elija una versión objetivo, luego elija "Enviar" para realizar el proceso de actualización hasta dicha versión.<br />Si no selecciona una versión, solo la tablas de la versión base será instaladas.<br /><blink>¡ESTO ELIMINARÁ TODAS LAS TABLAS DE LAS APLICACIONES PRIMERO!</blink>
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á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
@ -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ó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ón de las tablas fué correcta, y las tablas fueron instaladas
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ó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>please check your ldap server configuration setup es-es Hubo un problema intentando conecar al servidor LDAP.<br>Por favor, compruebe la configuración del 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ó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 />please check your ldap server configuration setup es-es Hubo un problema intentando conecar al servidor LDAP.<br />Por favor, compruebe la configuración del servidor LDAP
this has to be outside the webservers document-root!!! setup es-es ¡Tiene que estar fuera de la raí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 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ón intentará exportar los usuarios y grupos de la cuenta de las tablas de eGroupWare en el á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ón le ayudará a importar usuarios y grupos del á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ón le ayudará 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 stage is completed<br> setup es-es Esta fase está 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á 1 cuenta de administrador y 3 cuentas de demostración<br>Los nombres de usuario y contraseñas son: demo/guest, demo2/guest and demo3/guest.<br><b>¡¡¡ESTO ELIMINARÁ TODAS LAS CUENTAS EXISTENTES!!!</b><br>
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á 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á 1 cuenta de administrador y 3 cuentas de demostración<br />Los nombres de usuario y contraseñas son: demo/guest, demo2/guest and demo3/guest.<br /><b>¡¡¡ESTO ELIMINARÁ TODAS LAS CUENTAS EXISTENTES!!!</b><br />
to a version it does not know about setup es-es a una versió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.<br><b>this will delete all existing accounts</b> setup es-es para configurar 1 cuenta de administrador y 3 cuentas de demonstración.<br><b>Esto eliminará 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ón.<br /><b>Esto eliminará todas las cuentas existentes</b>
top setup es-es parte superior
translations added setup es-es Traducciones añadidas
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 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ón phpgw?
would you like egroupware to check for a new version<br>when admins login ? setup es-es ¿Desea que eGroupWare compruebe una nueva versión<br>cuando un administrador inicie la sesión?
would you like egroupware to check for a new version<br />when admins login ? setup es-es ¿Desea que eGroupWare compruebe una nueva versión<br />cuando un administrador inicie la sesión?
would you like to show each application's upgrade status ? setup es-es ¿Desea mostrar el estado de la actualización de cada aplicación?
writable by the webserver setup es-es con permiso de escritura para el servidor web
write config setup es-es Escribir configuración
year setup es-es año
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á ejecutando una versión pre-beta de eGroupWare.<br>Estas versiones ya no están soportadas, y no hay ruta de actualización para ellas en la instalación.<br>Puede que desee actualizar primero a la 0.9.10 (la última versión con soporte de actualizaciones pre-beta)<br>y luego actualizar desde ahí a la versió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á ejecutando una versión antigua de PHP<br>Se recomienda que actualice a una nueva versió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ón %1
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á ejecutando una versión pre-beta de eGroupWare.<br />Estas versiones ya no están soportadas, y no hay ruta de actualización para ellas en la instalación.<br />Puede que desee actualizar primero a la 0.9.10 (la última versión con soporte de actualizaciones pre-beta)<br />y luego actualizar desde ahí a la versió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á ejecutando una versión antigua de PHP<br />Se recomienda que actualice a una nueva versió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ón %1
you appear to be running version %1 of egroupware setup es-es Parece que está ejecutando la versió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á usando una versió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á 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 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 are ready for this stage, but this stage is not yet written.<br> setup es-es Está listo para esta fase, pero esta fase aún no está escrita.<br>
you are ready for this stage, but this stage is not yet written.<br /> setup es-es Está listo para esta fase, pero esta fase aún no está escrita.<br />
you didn't enter a config password for domain %1 setup es-es No introdujo una contraseña de configuración para el dominio %1
you didn't enter a config username for domain %1 setup es-es No introdujo un usuario de configuración para el dominio %1
you didn't enter a header admin password setup es-es No introdujo una contraseña para la administració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 do not have any languages installed. please install one now <br> setup es-es No tiene ningú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 ¡No ha creado todavía el header.inc.php!<br>Puede crearlo ahora.
you do not have any languages installed. please install one now <br /> setup es-es No tiene ningú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 ¡No ha creado todavía el header.inc.php!<br />Puede crearlo ahora.
you have successfully logged out setup es-es Ha cerrado la sesión correctamente.
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.
@ -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 header admin password is not set. please set it now! setup es-es La contraseña de administrador de cabeceras no está configurada. Por favor, ponga una ahora.
your header.inc.php needs upgrading. setup es-es Su header.inc.php necesita actualizació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ón.<br><blink><b class="msg">¡ATENCION!</b></blink><br><b>¡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ón.<br /><blink><b class="msg">¡ATENCION!</b></blink><br /><b>¡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ón de PHP no tiene el soporte apropiado de GD. Necesita la versión 1.8 de la librería gd o superior para ver diagamas de Gantt en los proyectos.
your tables are current setup es-es Sus tablas está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ón

View File

@ -6,7 +6,7 @@
00 (disable) setup fi 00 (ei käytössä / suositus)
13 (ntp) setup fi 13 (ntp)
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äpito- ja 3 demotunnusta.</b><br>Käyttäjä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äpito- ja 3 demotunnusta.</b><br />Käyttäjätunnukset ovat: demo/guest, demo2/guest ja demo3/guest.
accounts existing setup fi Käyttäjätunnuksia on olemassa
actions setup fi Toimenpiteet
add a domain setup fi Lisää toimialue
@ -50,18 +50,18 @@ auto-created user accounts expire setup fi Automaattisesti luotujen tilien vanhe
available version setup fi Käytettävissä oleva versio
back to the previous screen setup fi Takaisin edelliselle sivulle
back to user login setup fi Kirjaudu sisään
backupwarn setup fi Suosittelemme, että <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ä <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 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äjien sovellus, tai sen käyttöä 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ääritykset ovat virheellisiä
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ääritykset ovat virheellisiä
because it was manually disabled setup fi koska se on otettu käsin pois käytöstä
because of a failed upgrade or install setup fi epäonnistuneesta päivityksestä tai asennuksesta johtuen
because of a failed upgrade, or the database is newer than the installed version of this app setup fi epäonnistuneesta päivityksestä 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än sovelluksen käyttömääritys on 0 tai määrittelemätön
bottom setup fi alas
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ö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öoikeuksista johtuen.<br /> Voit %1 tiedoston
change system-charset setup fi Muuta järjestelmän merkistöä
charset setup fi ISO-8859-15
charset to convert to setup fi Merkistö, johon konvertoidaan
@ -104,9 +104,9 @@ creating tables setup fi Luodaan tauluja
current system-charset setup fi Nykyinen järjestelmän merkistö
current system-charset is %1, click %2here%3 to change it. setup fi Järjestelmän merkistö on %1, napsauta %2tästä%3, jos haluat muuttaa sitä.
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'
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ät porttia 13, määrittele palomuuriasetukset oikein ennen kuin lähetät tämä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ät porttia 13, määrittele palomuuriasetukset oikein ennen kuin lähetät tämän lomakkeen tiedot.<br />(Port: 13 / Host: 129.6.15.28)
db host setup fi Tietokantapalvelin
db name setup fi Tietokannan nimi
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öön
enable mcrypt setup fi Ota MCrypt käyttöön
enter some random text for app session encryption setup fi Anna hieman satunnaisia merkkejä sovellusistunnon salaukseen
enter some random text for app_session <br>encryption (requires mcrypt) setup fi Anna hieman satunnaisia merkkejä 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ä: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup fi Anna käyttäjien ja ryhmien tiedostojen absoluuttinen polku.<br>Esimerkkejä: /files, E:\FILES
enter some random text for app_session <br />encryption (requires mcrypt) setup fi Anna hieman satunnaisia merkkejä 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ä: /tmp, C:\TEMP
enter the full path for users and group files.<br />examples: /files, e:\files setup fi Anna käyttäjien ja ryhmien tiedostojen absoluuttinen polku.<br />Esimerkkejä: /files, E:\FILES
enter the hostname of the machine on which this server is running setup fi Anna tämä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 username for peer servers setup fi Anna peer-palvelinten site-tunnus
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ään oletuksia
save setup fi Tallenna
save this text as contents of your header.inc.php setup fi Tallenna tämä 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ä 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ä tiedot.<br />Jos et anna versionumeroa, vain perustaulut asennetaan.<br /><blink>KAIKKI SOVELLUKSEN TAULUT POISTETAAN ENSIN!</blink>
select one... setup fi valitse...
select the default applications to which your users will have access setup fi Valitse oletussovellukset, joihin käyttäjillä on käyttöoikeus
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 table definition was correct, and the tables were installed setup fi Taulumääritykset ovat kunnossa, ja taulut on asennettu
the tables setup fi Taulut
there was a problem trying to connect to your ldap server. <br> setup fi LDAP-palvelinyhteydessä 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ä ilmeni ongelma. <br>Tarkista LDAP-palvelimen asetukset
there was a problem trying to connect to your ldap server. <br /> setup fi LDAP-palvelinyhteydessä 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ä 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 might take a while, please wait ... setup fi Voi kestää hetken, odota ...
this program will convert your database to a new system-charset. setup fi Tämä ohjelma muuntaa tietokantasi uuteen merkistöö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ä osassa voit viedä eGroupWaren käyttäjät ja ryhmä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ä osassa voit tuoda LDAP-hakemistopalvelusta käyttäjät ja ryhmät eGroupWareen
this section will help you setup your ldap accounts for use with egroupware setup fi Tässä osassa voit määritellä LDAP-käyttäjätunnukset eGroupWaren käyttöön
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup fi Tämän pitäisi olla noin 30 tavua pitkä.<br>Huom: oletusarvo on luotu satunnaisesti.
this stage is completed<br> setup fi Tämä vaihe on valmis<br>
this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup fi Tämän pitäisi olla noin 30 tavua pitkä.<br />Huom: oletusarvo on luotu satunnaisesti.
this stage is completed<br /> setup fi Tämä vaihe on valmis<br />
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äpitäjän ja 3 demotunnusta.
top setup fi ylö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 writable setup fi kaikkien kirjoitettavissa
would you like egroupware to cache the phpgw info array ? setup fi Haluatko, että eGroupWare pitää phpgw -tietorakenteen muistissa?
would you like egroupware to check for a new version<br>when admins login ? setup fi Haluatko, että eGroupWare tarkistaa onko uusia versioita julkaistu, kun pääkäyttäjä sisäänkirjautuu?
would you like egroupware to check for a new version<br />when admins login ? setup fi Haluatko, että eGroupWare tarkistaa onko uusia versioita julkaistu, kun pääkäyttäjä sisäänkirjautuu?
would you like to show each application's upgrade status ? setup fi Haluatko näyttää kunkin sovelluksen päivitystilan?
writable by the webserver setup fi www-palvelimen kirjoitettavissa
write config setup fi Tallenna asetukset
yes setup fi Kyllä
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ät eGroupWaren esibetaversiota.<br>Näitä versioita ei tueta enää, ja niitä ei voi päivittää asennuksessa.<br>Päivitä versioon 0.9.10 (viimeisin versio, joka tukee esibetaversioita) <br>ja päivitä 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ät vanhaa PHP-versiota.<br>On suositeltavaa päivittää PHP uudempaan versioon.<br>Vanhat PHP-versiot eivät toimi oikein.<br>Päivitä vähintään versioon %1.
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ät eGroupWaren esibetaversiota.<br />Näitä versioita ei tueta enää, ja niitä ei voi päivittää asennuksessa.<br />Päivitä versioon 0.9.10 (viimeisin versio, joka tukee esibetaversioita) <br />ja päivitä 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ät vanhaa PHP-versiota.<br />On suositeltavaa päivittää PHP uudempaan versioon.<br />Vanhat PHP-versiot eivät toimi oikein.<br />Päivitä vähintään versioon %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 php3. disabling php4 sessions support setup fi Käytät PHP3:ää. Ei käytetä 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ävissä
you appear to have postgresql support enabled setup fi PostgreSQL on käytettävissä
you appear to have xml support enabled setup fi XML on käytettävissä
you are ready for this stage, but this stage is not yet written.<br> setup fi Olet valmis tätä vaihetta varten, mutta tätä vaihetta ei ole vielä kirjoitettu.<br>
you are ready for this stage, but this stage is not yet written.<br /> setup fi Olet valmis tätä vaihetta varten, mutta tätä vaihetta ei ole vielä kirjoitettu.<br />
you didn't enter a config password for domain %1 setup fi Et määritellyt konfiguraatiosalasanaa toimialueelle %1
you didn't enter a config username for domain %1 setup fi Et määritellyt konfiguraatiotunnusta toimialueelle %1
you didn't enter a header admin password setup fi Et määritellyt header-ylläpidon salasanaa
you didn't enter a header admin username setup fi Et määritellyt header-ylläpidon käyttäjätunnusta
you do not have any languages installed. please install one now <br> setup fi Et ole asentanut yhtään kieltä.<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 do not have any languages installed. please install one now <br /> setup fi Et ole asentanut yhtään kieltä.<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 successfully logged out setup fi Olet poistunut järjestelmästä
you must enter a username for the admin setup fi Anna ylläpidon käyttäjätunnus
you need to add some domains to your header.inc.php. setup fi Mää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ään sovellusta ei ole asennettu
your header admin password is not set. please set it now! setup fi Header-ylläpidon salasanaa ei ole määritelty. Määrittele se nyt!
your header.inc.php needs upgrading. setup fi header.inc.php-tiedosto on päivitettävä.
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ävä.<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ävä.<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ämäsi PHP ei tue GD-kirjastoa. Gantt -karttojen näyttö Projektien hallinnassa tarvitsee GD-kirjaston versio 1.8 tai uudempi.
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ää tietoja.

View File

@ -8,7 +8,7 @@
00 (disable) setup fr 00 (désactiver)
13 (ntp) setup fr 13 (ntp)
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é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é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à créés
actions setup fr Actions
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
back to the previous screen setup fr Retour à l'écran précédent
back to user login setup fr Revenir à 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ées.<br><strong>Ces scripts automatiques peuvent facilement endommager vos donné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ées.<br /><strong>Ces scripts automatiques peuvent facilement endommager vos données.</strong>
because an application it depends upon was upgraded setup fr parce-qu'une application de laquelle il dépend a été mise à jour
because it depends upon setup fr Parce-que ç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ès est contrôlé par ACL
because it requires manual table installation, <br>or the table definition was incorrect setup fr Parce-que ça nécessite une installation manuelle de table, <br>ou la définition de la table était incorrecte
because it requires manual table installation, <br />or the table definition was incorrect setup fr Parce-que ça nécessite une installation manuelle de table, <br />ou la définition de la table était incorrecte
because it was manually disabled setup fr Parce-que ça a été désactivé manuellement
because of a failed upgrade or install setup fr A cause d'une mise à 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 à jour défectueuse, ou la base de données est plus récente que celle de la version installé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
calendar setup fr Calendrier
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éer le fichier header.inc.php à 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éer le fichier header.inc.php à 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ère
charset setup fr ISO-8859-1
charset to convert to setup fr Conversion vers
@ -106,11 +106,11 @@ created setup fr Cr
created header.inc.php! setup fr Créé header.inc.php!
creating tables setup fr Création de tables en cours
current system-charset setup fr Jeu de caractère courant
current system-charset is %1, click %2here%3 to change it. setup fr Le jeu de caractè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è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
currently installed languages: %1 <br> setup fr Langues installées actuellement: %1 <br>
currently installed languages: %1 <br /> setup fr Langues installées actuellement: %1 <br />
database successfully converted from '%1' to '%2' setup fr Base de données convertie de '%1' à '%2' avec succè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ées
db name setup fr Nom de la base de données
db password setup fr Mot de passe d'accès à la base de donné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 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 <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 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 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 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é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) à 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) à 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 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
@ -242,7 +242,7 @@ logout setup fr Se d
makesure setup fr Assurez-vous que votre base de données est créé et que les permissions sur les comptes sont positionnées
manage applications setup fr Gérer les Applications
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 «Max Execution Time» est positionné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 «Max Execution Time» est positionné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)
may be broken setup fr pourrait être inconsistant
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)
module setup fr module
multi-language support setup setup fr Setup pour le support multilingue
mysqlinstr setup fr Instructions pour créer la base de données dans MySQL:<br>Se connecter à mysql -<br><i>[user@server user]# mysql -u root -p</i><br>Créer la base de donné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éer la base de données dans MySQL:<br />Se connecter à mysql -<br /><i>[user@server user]# mysql -u root -p</i><br />Créer la base de donné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ées
name of db user egroupware uses to connect setup fr Nom de l'utilisateur de la base de données dont eGroupWare se sert pour se connecter
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 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
pgsqlinstr setup fr Instructions pour créer la base de données dans PostgreSQL:<br>Démarrer le postmaster<br><i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br>Créer la base de données vide-<br><i>[user@server user]# createdb egroupware</i>
pgsqlinstr setup fr Instructions pour créer la base de données dans PostgreSQL:<br />Démarrer le postmaster<br /><i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br />Créer la base de données vide-<br /><i>[user@server user]# createdb egroupware</i>
phpldapadmin setup fr PHPLdapAdmin
please check for sql scripts within the application's directory setup fr SVP vérifiez la pré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/écriture sur les répertoires, ou faî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ée. J'utilise les valeurs par défaut définies en interne
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
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é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é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 the default applications to which your users will have access setup fr Choisisseez les applications par défaut auxquelles vos utilisaturs auront accès
select the desired action(s) from the available choices setup fr Choisissez la(les) action(s) désirée(s) dans les choix possibles
@ -389,7 +389,7 @@ tables upgraded setup fr tables mises
target version setup fr Version de Destination
tcp port number of database server setup fr numéro de port du serveur de base de données
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é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é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ées (db_type) figurant dans les valeurs par défaut (%1) n'est pas supporté sur ce serveur. J'utilise le premier type supporté.
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ère étape lors de l'installation d'eGroupWare est la vérification de votre environnement systè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ètre mbstring.func_overload = 7 est requis pour supporter pleinement unicode (utf-8) ou d'autres jeux de caractères multibyte.
the table definition was correct, and the tables were installed setup fr La définition de la table était correcte, et les tables ont été installées
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ème lors de la tentative de connexion à 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ème lors de la tentative de connexion à 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 /> setup fr Il y a eu un problème lors de la tentative de connexion à 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ème lors de la tentative de connexion à 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 à l'exté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 program will convert your database to a new system-charset. setup fr Ce programme va convertir les informations de votre base de données vers le nouveau jeu de caractè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 à 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 à 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 à 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 été générée au hasard.
this stage is completed<br> setup fr Cette étape est complété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é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 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 été générée au hasard.
this stage is completed<br /> setup fr Cette étape est complété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é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ît pas
to setup 1 admin account and 3 demo accounts. setup fr pour cré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é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éer 1 compte admin et 3 comptes demo.<br /><b>ceci va supprimer tous les comptes existants</b>
top setup fr top
translations added setup fr Traductions Ajoutées
translations removed setup fr Traductions Enlevé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 writable setup fr accès en é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 check for a new version<br>when admins login ? setup fr Voudriez-vous que eGroupWare vérifie la disponibilité 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é 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 à jour de chaque application ?
writable by the webserver setup fr accès en écriture pour le serveur Web
write config setup fr Ecrire la configuration
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ées, et il n'y a pas de possibilité de mise à jour pour elles dans le setup.<br> Vous devriez d'abord mettre votre version à jour vers la version 0.9.10 (la dernière version à supporter les mises à jour pre-beta) <br>puis mettre à jour depuis cette version jusqu'à 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é de faire une mise à jour.<br>Les anciennes versions de PHP pourraient ne pas fonctionner correctement, ou pas du tout, avec eGroupWare.<br><br>SVP faites une mise à jour à la derniè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é que vous mettiez votre système à 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ème à jour vers au moins la version 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 fr Vous semblez utiliser une version pre-beta de eGroupWare.<br />Ces versions ne sont plus supportées, et il n'y a pas de possibilité de mise à jour pour elles dans le setup.<br /> Vous devriez d'abord mettre votre version à jour vers la version 0.9.10 (la dernière version à supporter les mises à jour pre-beta) <br />puis mettre à jour depuis cette version jusqu'à 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é de faire une mise à jour.<br />Les anciennes versions de PHP pourraient ne pas fonctionner correctement, ou pas du tout, avec eGroupWare.<br /><br />SVP faites une mise à jour à la derniè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é que vous mettiez votre système à 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ème à 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 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
@ -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é
you appear to have postgresql support enabled setup fr Votre support PostgreSQL semble activé
you appear to have xml support enabled setup fr Votre support XML semble activé
you are ready for this stage, but this stage is not yet written.<br> setup fr Vous êtes prêt pour cette étape, mais ceci n'est pas encore écrit.<br>
you are ready for this stage, but this stage is not yet written.<br /> setup fr Vous êtes prêt pour cette étape, mais ceci n'est pas encore écrit.<br />
you didn't enter a config password for domain %1 setup fr Vous n'avez pas entré 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é de nom d'utilisateur pour le domaine %1
you didn't enter a header admin password setup fr Vous n'avez pas entré de mot de passe pour l'administration d'entête
you didn't enter a header admin username setup fr Vous n'avez pas entré de nom d'utilisateur pour l'administration d'entête
you do not have any languages installed. please install one now <br> setup fr Vous n'avez aucun langage installé. 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éé votre fichier header.inc.php!<br> Vous pouvez le créer maintenant.
you do not have any languages installed. please install one now <br /> setup fr Vous n'avez aucun langage installé. 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éé votre fichier header.inc.php!<br /> Vous pouvez le créer maintenant.
you have successfully logged out setup fr Vous vous êtes déconnecté avec succès
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.
@ -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ées fonctionne, mais vous n'avez pas d'application installée
your header admin password is not set. please set it now! setup fr Votre mot de passe d'administration d'entête n'est PAS configuré. SVP configurez-le maintenant!
your header.inc.php needs upgrading. setup fr Votre fichier header.inc.php a besoin d'une mise à 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 à 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 à 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é. <br/>Vous avez besoin de la bibliothèque gd supérieure ou égale à la version 1.8 pour voir les diagrammes de Gantt dans les Projets.
your tables are current setup fr Vos tables sont à jour
your tables may be altered and you may lose data setup fr Vos tables pourraient être altérées et vous pourriez perdre des données.

View File

@ -5,7 +5,7 @@
00 (disable) setup hr 00 (disable / recomended)
13 (ntp) setup hr 13 (ntp)
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
actions setup hr Actions
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
back to the previous screen setup hr Back to the previous screen
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 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 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 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 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
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
charset setup hr ISO-8859-1
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 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
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'
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 name setup hr DB Name
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 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 <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 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 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 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 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 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
@ -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
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
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 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
@ -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 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
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 /> 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
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 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 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 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 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 />
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.
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 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 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 ?
writable by the webserver setup hr writable by the webserver
write config setup hr Write config
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 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 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 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 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 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 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 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 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 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 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 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 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 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.<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 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.

View File

@ -6,8 +6,8 @@
00 (disable) setup it 00 (disabilitato/ consigliato)
13 (ntp) setup it 13 (ntp)
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à 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>
<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à 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>
accounts existing setup it Esistono Account
actions setup it Azioni
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
back to the previous screen setup it Indietro alla schermata precedente
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é un'applicazione da cui dipende è stata aggiornata
because it depends upon setup it perché dipende da
because it is not a user application, or access is controlled via acl setup it perché non si tratta di un'applicazione dell'utente, o l'accesso è controllato tramite ACL
because it requires manual table installation, <br>or the table definition was incorrect setup it perrché richiede un'installazione manuale delle tabelle, <br>o la definizione delle tabelle non è corretta
because it requires manual table installation, <br />or the table definition was incorrect setup it perrché richiede un'installazione manuale delle tabelle, <br />o la definizione delle tabelle non è corretta
because it was manually disabled setup it perché è 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 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 is %1, click %2here%3 to change it. setup it Il set di caratteri attuale è %1, clicca %2qui%3 per cambiarlo.
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'
db host setup it Host 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
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
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 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
@ -257,14 +257,14 @@ target version setup it Versione di destinazione
text entry setup it Voce di testo
the file setup it il file
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ò 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 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 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>
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>
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 />
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
uninstall setup it disinstalla
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
write config setup it Scrivi configurazione
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 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 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 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 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 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 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
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
(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 אין לעדכן את בסיס הנתונים בעזרת הגדרה,
<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-יש לבצע את השינוים ידנית ב
<br>לעבוד בצורה שלמה eGW-כדי לגרום לך ש
<br />לעבוד בצורה שלמה eGW-כדי לגרום לך ש
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 זה ייצור חשבון מנהל אחד ושלוש חשבונות דמו
<br> 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 iw זה ייצור חשבון מנהל אחד ושלוש חשבונות דמו
<br /> demo/guest, demo2/guest and demo3/guest :שמות הכניסה / הסיסמאות הנם
accounts existing setup iw החשבונות קיימות
actions setup iw פעולות
add a domain setup iw הוסף דומיין
@ -52,20 +52,20 @@ available version setup iw גירסה זמינה
back to the previous screen setup iw חזרה למסך הקודם
back to user login setup iw חזרה לכניסת המשתמש
backupwarn setup iw .אבל אנו ממליצים בחום שתגבה את הנתונים שלך במקרה שהסקריפט גורם נזק לנתונים
<br>.סקריפטים אוטומטים אלה יכולים להרוס את הנתונים שלך בקלות. נא לגבות לפני שתמשיך הלאה
<br />.סקריפטים אוטומטים אלה יכולים להרוס את הנתונים שלך בקלות. נא לגבות לפני שתמשיך הלאה
because an application it depends upon was upgraded 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 requires manual table installation, <br>or the table definition was incorrect setup iw ,מיכוון שדרוש התקנת טבלאות ידנית
<br>או שהגדרת הטבלה החתה שגויה
because it requires manual table installation, <br />or the table definition was incorrect setup iw ,מיכוון שדרוש התקנת טבלאות ידנית
<br />או שהגדרת הטבלה החתה שגויה
because it was manually disabled 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 the enable flag for this app is set to 0, or is undefined setup iw בגלל שדגל הפעיל של יישום זה הנו 0 או שאינו מוגדר כלל
bottom 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 לא מצליח ליצור את הקובץ
<br>במקום זאת נסה ל%1 את הקובץ
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 את הקובץ
change system-charset setup iw שנה את סט התוים של המערכת
charset setup iw סט התוים
charset to convert to setup iw סט התוים אליו יש לעבור
@ -108,10 +108,10 @@ creating tables setup iw יוצר טבלאות
current system-charset setup iw סט תוים הנוכחי של המערכת
current system-charset is %1, click %2here%3 to change it. setup iw .סט התוים הנוכחי של המערכת הנו %1, לחץ %2כאן%3 כדי לשנות אותו
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'
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>
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 />
(Port: 13 / Host: 129.6.15.28)
db host 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 mcrypt setup iw MCrypt לאפשר
enter some random text for app session encryption setup iw הכנס טקסט אקראי כלשהו עבור הצפנת יישומים
enter some random text for app_session <br>encryption (requires mcrypt) setup iw הכנס טקסט אקראי כלשהו עבור הצפנת יישומים
<br>(MCrypt מחייב)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup iw .הכנס את המסלול המלא אל קבצים זמניים
<br>/tmp, C:\TEMP :דוגמאות
enter the full path for users and group files.<br>examples: /files, e:\files setup iw .הכנס את המסלול המלא אל קבצים של משתמשים וקבוצות
<br>/files, E:\FILES :דוגמאות
enter some random text for app_session <br />encryption (requires mcrypt) setup iw הכנס טקסט אקראי כלשהו עבור הצפנת יישומים
<br />(MCrypt מחייב)
enter the full path for temporary files.<br />examples: /tmp, c:\temp setup iw .הכנס את המסלול המלא אל קבצים זמניים
<br />/tmp, C:\TEMP :דוגמאות
enter the full path for users and group files.<br />examples: /files, e:\files setup iw .הכנס את המסלול המלא אל קבצים של משתמשים וקבוצות
<br />/files, E:\FILES :דוגמאות
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-הכנס את מיקום ה
<br>http://www.domain.com/egroupware &nbsp; או &nbsp; /egroupware :לדוגמא
<br>ללא קו נטוי בסיום
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 />ללא קו נטוי בסיום
enter the site password for peer servers setup iw הכנס סיסמה עבור שרתים חברים
enter the site username for peer servers 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 יחד עם זאת, יתכן שהיישום יפעל
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 אם
<br>הוא לא יכול לשנות הגדרות מסוימות בשעת ריצה, וגם לא לטעון מודול שעדיין לא טעונים
<br />הוא לא יכול לשנות הגדרות מסוימות בשעת ריצה, וגם לא לטעון מודול שעדיין לא טעונים
if the application has no defined tables, selecting upgrade should remedy the problem setup iw .ליישום אין כל טבלאות מוגדרות . בחירת עדכון אמורה לתקן בעיה זו
if using ldap setup iw 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 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 (שניות
<br>זקוק לזמן הרצה מירבי גבוה יותר. תצפה לבעיות לעתים eGroupWare
<br />זקוק לזמן הרצה מירבי גבוה יותר. תצפה לבעיות לעתים eGroupWare
maximum account id (e.g. 65535 or 1000000) setup iw (זיהוי חשבון מירבי (למשל 65335 או 100000
may be broken setup iw יתכן ששבור
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-לא נמצאה תמיכה ב
not setup iw אינו
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 completed 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 לא מצאתי דוגמא של הגדרות, משתמשי בברירות מחדל המובנות
save setup iw שמור
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 .בחר יישום, הכנס גירסת יעד, והגש כדי לטפל בגירסה זו
<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 iw .בחר יישום, הכנס גירסת יעד, והגש כדי לטפל בגירסה זו
<br />אם לא תציין גרסה, רק טבלאות הבסיסיות יותקנו עבור היישום.
<br /><blink>זה קודם יפיל את כל טבלאות היישום</blink>
select one... 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 בחר את הפעולות המבוקשות מהבחירות
@ -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 table definition was correct, and the tables were installed 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>please check your ldap server configuration setup iw שלך LDAP-היתה בעיה בהתחברות לשרת ה
<br>שלך 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-היתה בעיה בהתחברות לשרת ה
<br />שלך LDAP-נא לבדוק את הגדרות שרת ה
this has to be outside the webservers document-root!!! setup iw !זה חייב להיות מחוץ לשורש המסמכים של שרת הווב
this might take a while, please wait ... 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 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 should be around 30 bytes in length.<br>note: the default has been randomly generated. setup iw .זה צריך להיות באורך של כ-30 בתים
<br>.הערה: ברירת המחדל חולל באופן אקראי
this stage is completed<br> setup iw שלב זה הסתיים<br>
this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup iw .זה צריך להיות באורך של כ-30 בתים
<br />.הערה: ברירת המחדל חולל באופן אקראי
this stage is completed<br /> setup iw שלב זה הסתיים<br />
to a version it does not know about setup iw לגירסה לא מוכרת לו
to setup 1 admin account and 3 demo accounts. 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 .נריץ כעת סדרת בדיקות, מה שעלול להארך זמן מה. הקלק על הקישור למטה להמשיך
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 ?איזה סוג של ניהול מושבים ברצונך להשתמש
<br>?(עשוי להיות בעל ביצועים טובים יותר php4 ניהול מושבים של)
<br />?(עשוי להיות בעל ביצועים טובים יותר php4 ניהול מושבים של)
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 check for a new version<br>when admins login ? setup iw יבדוק אם יש גרסה חדשה eGroupWare-ברצונך ש
<br>כאשר מנהלים נכנסים למערכת
would you like egroupware to check for a new version<br />when admins login ? setup iw יבדוק אם יש גרסה חדשה eGroupWare-ברצונך ש
<br />כאשר מנהלים נכנסים למערכת
would you like to show each application's upgrade status ? setup iw ?ברצונך הלציג את סטטוס העדכון של כל יישום
yes setup iw כן
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 postgresql support enabled setup iw מאפשרת PostgreSQL-כנראה שתמיכה ב
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 username for domain %1 setup iw לא הכנסתשם משתמש קונפיגורציה עבור דומיין %1
you didn't enter a header admin password 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 have not created your header.inc.php yet!<br> you can create it now. setup iw !שלך header.inc.php-עוד לא יצרת את ה
<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-עוד לא יצרת את ה
<br />אפשר ליצור כזה כעת
you have successfully logged out 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-עליך להוסיף כמה דוניינים ל
@ -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 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.<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><b>!גבה את החומר</b>
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 /><b>!גבה את החומר</b>
your tables are current 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 !הטבלאות שלך ייופלו ואתה תאבד נתונים

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 古いテーブルを現在のフォーマットにアップグレードしました。
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 アプリケーションアンインストールで、テーブルとデータを削除しました
attempt to use correct mimetype for ftp instead of default 'application/octet-stream' setup ja FTP のMIMEタイプで &nbsp; 'application/octet-stream' &nbsp; の代わりに<br>正しいタイプを使う
attempt to use correct mimetype for ftp instead of default 'application/octet-stream' setup ja FTP のMIMEタイプで &nbsp; 'application/octet-stream' &nbsp; の代わりに<br />正しいタイプを使う
authentication / accounts setup ja 認証/アカウント情報
auto create account records for authenticated users setup ja 認証したユーザ情報を自動的に作成する
auto-created user accounts expire setup ja 自動作成したユーザの有効期限
available version setup ja 最新の<BR>バージョン
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>しかし、この処理が、あなたのデータを破壊してしまった場合に備えて、<u>データバックアップをお勧めします。</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 />しかし、この処理が、あなたのデータを破壊してしまった場合に備えて、<u>データバックアップをお勧めします。</u>
because it depends upon setup ja 理由は次のとおりです
because it is not a user application, or access is controlled via acl setup ja ユーザのアプリケーションでないか、ACL によってアクセス制限しています。
because it requires manual table installation, <br>or the table definition was incorrect setup ja 手動でテーブルをインストールする必要があるか、<br>テーブル定義が正しくありません。
because it requires manual table installation, <br />or the table definition was incorrect setup ja 手動でテーブルをインストールする必要があるか、<br />テーブル定義が正しくありません。
because of a failed upgrade or install setup ja 追加もしくは更新に失敗しました。
because of a failed upgrade, or the database is newer than the installed version of this app setup ja データベースのバージョンがこのアプリケーションの動作可能バージョンよりも新しいため、更新に失敗しました。
because the enable flag for this app is set to 0, or is undefined setup ja このアプリケーションが利用可能となっていません。
@ -48,7 +48,7 @@ create setup ja
create database setup ja データベースを作成しました
created setup ja 作成
creating tables setup ja テーブルを作成しました。
currently installed languages: %1 <br> setup ja 現在の言語: %1 <br>
currently installed languages: %1 <br /> setup ja 現在の言語: %1 <br />
current version setup ja 現在の<BR>バージョン
delete all my tables and data setup ja すべてのテーブルとデータを削除します
delete all old languages and install new ones setup ja 現在の言語をすべて削除して、選択した言語をインストールする
@ -60,12 +60,12 @@ deregistered setup ja
details for admin account setup ja 管理者アカウントの詳細情報
domain setup ja ドメイン
edit current configuration setup ja 環境設定
enter some random text for app session <br>encryption (requires mcrypt) setup ja アプリケーションセッション暗号化のための<br>任意テキスト入力(mcrypt 時必要)
enter some random text for app session <br />encryption (requires mcrypt) setup ja アプリケーションセッション暗号化のための<br />任意テキスト入力(mcrypt 時必要)
enter some random text for app session encryption setup ja アプリケーションセッション暗号化のための任意テキスト入力
enter the full path for temporary files.<br>Examples: /tmp, c:\temp setup ja テンポラリファイル(フルパス)<br>例:/tmp や C:\TEMP など
enter the full path for users and group files.<br>examples: /files, e:\files setup ja ファイルマネージャのファイル保存先(フルパス)<br>例:/files や E:\FILES など
enter the full path for temporary files.<br />Examples: /tmp, c:\temp setup ja テンポラリファイル(フルパス)<br />例:/tmp や C:\TEMP など
enter the full path for users and group files.<br />examples: /files, e:\files setup ja ファイルマネージャのファイル保存先(フルパス)<br />例:/files や E:\FILES など
enter the hostname of the machine on which this server is running setup ja eGroupWare が動作するホスト名
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 の URL<BR>例http://www.itheart.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 ja eGroupWare の URL<BR>例http://www.itheart.com/egroupware &nbsp; や &nbsp; /egroupware など<BR><b>最後はスラッシュを指定しないこと</b>
enter the site username for peer servers setup ja 同等サーバのユーザ名
enter the site password for peer servers setup ja 同等サーバのパスワード
enter the title for your site setup ja タイトル名
@ -98,7 +98,7 @@ is disabled setup ja
ldap account import/export setup ja LDAP アカウント インポート/エクスポート
ldap accounts configuration setup ja LDAP アカウント設定
ldap accounts context setup ja LDAP アカウントコンテキスト
ldap default homedirectory prefix (e.g. /home for /home/username) setup ja 既定のホームディレクトリプレフィックス<br> &nbsp; &nbsp; (例:/home ならば /home/uername となります)
ldap default homedirectory prefix (e.g. /home for /home/username) setup ja 既定のホームディレクトリプレフィックス<br /> &nbsp; &nbsp; (例:/home ならば /home/uername となります)
ldap default shell (e.g. /bin/bash) setup ja 既定のシェル &nbsp; (例:/bin/bashなど)
ldap encryption type setup ja LDAP 暗号化タイプ
ldap export users setup ja LDAP エクスポートユーザ
@ -175,14 +175,14 @@ tables dropped setup ja
tables installed, unless there are errors printed above setup ja をインストールしました。エラー表示がなければ完了です。
tables upgraded setup ja テーブルを更新しました
text entry setup ja テキスト入力
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
this program will help you upgrade or install different languages for eGroupWare setup ja eGroupWare での、言語環境を設定します。
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 stage is completed<br> setup ja この段階は完了しました。<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 1つの管理者アカウントと3つのデモアカウントをセットアップします。<br>デモアカウントのユーザ名とパスワードは demo/guest, demo2/guest, demo3/guest です。<br><b>現在のアカウントをすべて削除しますので注意してください。</b><br>
to setup 1 admin account and 3 demo accounts.<br><b>this will delete all existing accounts</b> setup ja と、1つの管理者アカウントと3つのデモアカウントをセットアップします。<br><b>現在のアカウントをすべて削除しますので注意してください。</b>
this stage is completed<br /> setup ja この段階は完了しました。<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 1つの管理者アカウントと3つのデモアカウントをセットアップします。<br />デモアカウントのユーザ名とパスワードは demo/guest, demo2/guest, demo3/guest です。<br /><b>現在のアカウントをすべて削除しますので注意してください。</b><br />
to setup 1 admin account and 3 demo accounts.<br /><b>this will delete all existing accounts</b> setup ja と、1つの管理者アカウントと3つのデモアカウントをセットアップします。<br /><b>現在のアカウントをすべて削除しますので注意してください。</b>
top setup ja 上部
two weeks setup ja 2週間
uninstall all applications setup ja アプリケーションのアンインストール
@ -195,15 +195,15 @@ use cookies to pass sessionid setup ja cookie
users choice setup ja ユーザ選択
version mismatch setup ja Version Mismatch
we will automatically update your tables/records to %1 setup ja セットアップは、%1 用のテーブルやデータに自動アップグレードします。
would you like egroupware to check for a new version<br>when admins login ? setup ja 管理者でログイン時、eGroupWareのバージョンチェックを行う
would you like egroupware to check for a new version<br />when admins login ? setup ja 管理者でログイン時、eGroupWareのバージョンチェックを行う
would you like egroupware to cache the phpgw info array ? setup ja eGroupWare のキャッシュにphpgw info 配列を利用する
would you like to show each application's upgrade status ? setup ja アプリケーションのアップグレード状況表示
yes setup ja はい
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のバージョンが古いようです。<br>バージョンアップをお勧めします。<br>古いバージョンの PHP では、eGroupWare のすべての機能が正確に動作しません。<br><br>Ver 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 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 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のバージョンが古いようです。<br />バージョンアップをお勧めします。<br />古いバージョンの PHP では、eGroupWare のすべての機能が正確に動作しません。<br /><br />Ver 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 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 現在、eGroupWare Ver. %1 が動作していると思われます。
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 どの言語環境もありません。最低1つの言語環境をインストールして下さい。<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 どの言語環境もありません。最低1つの言語環境をインストールして下さい。<br />
you must enter a username for the admin setup ja ユーザIDを入力して下さい。
your applications are current setup ja アプリケーションのインストールは完了しました。
your database does not exist setup ja データベースが存在しません。

View File

@ -5,7 +5,7 @@
00 (disable) setup ko 00 ( 미사용 / 추천 )
13 (ntp) setup ko 13 (ntp)
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>이것은 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 ko <b>이것은 1개의 관리자 계정돠 3개의 데모 계정을 생성합니다</b><br />사용자이름/암호는 demo/guest, demo2/guest, demo3/guest 입니다
accounts existing setup ko 계정 존재함
actions setup ko 액션
add a domain setup ko 도메인 추가
@ -49,18 +49,18 @@ auto-created user accounts expire setup ko
available version setup ko 가능한 버전
back to the previous screen setup ko 이전 화면으로 돌아가기
back to user login setup ko 사용자 접속으로 돌아가기
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 하지만 저희는 스크립트가 실행도중 데이터를 손상할 수 있기때문에 귀하의 테이블을 <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 ko 하지만 저희는 스크립트가 실행도중 데이터를 손상할 수 있기때문에 귀하의 테이블을 <u>백업하길 적극 권장</u>합니다<br /><strong>이 자동화된 스크립트는 데이터손실이 일어날수 있습니다.</strong>
because an application it depends upon was upgraded setup ko 응용프로그램이 업그레이드 되었는지 여부에 달려있음
because it depends upon setup ko 의존성때문에
because it is not a user application, or access is controlled via acl setup ko 사용자 응용프로그램이 아니기때문에, 접근 제어는 ACL을 통해서
because it requires manual table installation, <br>or the table definition was incorrect setup ko 이는 테이블 설치를 수동으로 해야하거나, 테이블 정의가 틀렸기 때문입니다
because it requires manual table installation, <br />or the table definition was incorrect setup ko 이는 테이블 설치를 수동으로 해야하거나, 테이블 정의가 틀렸기 때문입니다
because it was manually disabled setup ko 직접 사용안함으로 설정했기 때문입니다
because of a failed upgrade or install setup ko 업그레이드나 설치에 실패했기 때문입니다
because of a failed upgrade, or the database is newer than the installed version of this app setup ko 업그레이드에 실패했거나, 데이터베이스가 설치된 응용프로그램보다 새 버전이 때문입니다
because the enable flag for this app is set to 0, or is undefined setup ko 이 응용프로그램의 활성화플레그가 0으로 설정되었거나, 아에 정의되지 않았기 때문입니다
bottom setup ko 하단
cancel setup ko 취소
cannot create the header.inc.php due to file permission restrictions.<br> instead you can %1 the file. setup ko 파일 권한이 없기때문에 header.inc.php를 생성할수 없습니다. 대신 %1 파일로 할수 있습니다
cannot create the header.inc.php due to file permission restrictions.<br /> instead you can %1 the file. setup ko 파일 권한이 없기때문에 header.inc.php를 생성할수 없습니다. 대신 %1 파일로 할수 있습니다
change system-charset setup ko 시스템 문자셋 바꾸기
charset setup ko 문자셋
charset to convert to setup ko 전환할 문자셋
@ -103,9 +103,9 @@ creating tables setup ko
current system-charset setup ko 현재 시스템 문자셋
current system-charset is %1, click %2here%3 to change it. setup ko 현재 시스템 문자셋은 %1입니다. 바꾸시려면 %2여기%3을 누르세요.
current version setup ko 현재 버전
currently installed languages: %1 <br> setup ko 현재 설치된 언어: %1 <br>
currently installed languages: %1 <br /> setup ko 현재 설치된 언어: %1 <br />
database successfully converted from '%1' to '%2' setup ko 데이터베이스가 '%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 ko 날짜시간 포트를 설정합니다<br> 만약 13번 포트를 사용하신다면 적합한 방화벽 정책을 설정하시고 이 페이지를 서브밋(submit)해 주세요.<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 ko 날짜시간 포트를 설정합니다<br /> 만약 13번 포트를 사용하신다면 적합한 방화벽 정책을 설정하시고 이 페이지를 서브밋(submit)해 주세요.<br />(포트:13 / 호스트:129.6.15.28)
db host setup ko DB 호스트
db name setup ko DB 이름
db password setup ko DB 암호
@ -142,11 +142,11 @@ enable for extra debug-messages setup ko
enable ldap version 3 setup ko LDAP Version 3 활성화
enable mcrypt setup ko MCrypt 활성화
enter some random text for app session encryption setup ko 응용프로그램 세션 암호화에 사용할 무작위 문자열 입력
enter some random text for app_session <br>encryption (requires mcrypt) setup ko 응용프로그램 세션 암호화에 <br>사용할 임의 문자열을 입력하세요 (mcrypt 필요)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup ko 임시 파일의 완전한경로를 입력하세요.<br>예: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup ko 사용자와 그룹파일을 위한 완전한경로를 입력하세요. <br>예: /files, E:\FILES
enter some random text for app_session <br />encryption (requires mcrypt) setup ko 응용프로그램 세션 암호화에 <br />사용할 임의 문자열을 입력하세요 (mcrypt 필요)
enter the full path for temporary files.<br />examples: /tmp, c:\temp setup ko 임시 파일의 완전한경로를 입력하세요.<br />예: /tmp, C:\TEMP
enter the full path for users and group files.<br />examples: /files, e:\files setup ko 사용자와 그룹파일을 위한 완전한경로를 입력하세요. <br />예: /files, E:\FILES
enter the hostname of the machine on which this server is running setup ko 이 서버가 실행되고 있는 장비의 호스트 이름을 입력하세요
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의 URL을 입력<br>예: http://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 ko eGroupWare의 URL을 입력<br />예: http://domain.com/egroupware &nbsp;이나 &nbsp/egroupware<br /><b>단 슬래시(/)로 끝나지 않게 하세요</b>
enter the site password for peer servers setup ko 피어서버의 사이트암호 입력
enter the site username for peer servers setup ko 피어서버의 사이트사용자이름 입력
enter the title for your site setup ko 귀하의 사이트 제목을 입력
@ -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 구성 예제를 찾을수 없습니다. 기본설정으로 작성됩니다
save setup ko 저장
save this text as contents of your header.inc.php setup ko 이 텍스트를 귀하의 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 ko 응용프로그램을 선택해서 대상 버전을 입력한후 보내세요(submit).<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 ko 응용프로그램을 선택해서 대상 버전을 입력한후 보내세요(submit).<br />만약 버전을 입력하지 않으시면, 설치된 응용프로그램의 기본 테이블들만 설치됩니다.<br /><blink>이 작업은 모든 응용프로그램의 테이블을 먼저 삭제합니다</blink>
select one... setup ko 하나를 선택하세요...
select the default applications to which your users will have access setup ko 사용자가 접근할 기본응용프로그램 선택
select the desired action(s) from the available choices setup ko 가능한 선택들 중에서 원하는 액션을 선택
@ -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 확장은 유니코드(UTF-8)이나 기타 다중바이트-문자셋을 완벽히 지원하는데 필요합니다
the table definition was correct, and the tables were installed setup ko 테이블 정의가 수정되었고 테이블들이 설치되었습니다
the tables setup ko 여러 테이블
there was a problem trying to connect to your ldap server. <br> setup ko LDAP서버에 접속하는데 문제가 있습니다.<br>
there was a problem trying to connect to your ldap server. <br>please check your ldap server configuration setup ko +* LDAP서버에 접속하는데 문제가 있습니다.<br> 귀하의 LDAP 서버의 구성을 확인해보세요
there was a problem trying to connect to your ldap server. <br /> setup ko LDAP서버에 접속하는데 문제가 있습니다.<br />
there was a problem trying to connect to your ldap server. <br />please check your ldap server configuration setup ko +* LDAP서버에 접속하는데 문제가 있습니다.<br /> 귀하의 LDAP 서버의 구성을 확인해보세요
this has to be outside the webservers document-root!!! setup ko 웹서버의 DocumentRoot 외부에 있어야 합니다!!!
this might take a while, please wait ... setup ko 약간 시간이 걸립니다, 잠시만 기다리세요...
this program will convert your database to a new system-charset. setup ko 이 프로그램은 귀하의 데이터베이스를 새 시스템-문자셋으로 변환해줍니다
@ -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 이 섹션은 eGroupWare의 사용자와 그룹들의 계정 테이블을 LDAP 트리로 내보는데 도움을 줍니다
this section will help you import users and groups from your ldap tree into egroupware's account tables setup ko 이 섹션은 LDAP 트리의 사용자와 그룹들의 eGroupWare의 계정 테이블로 가져오는데 도움을 줍니다
this section will help you setup your ldap accounts for use with egroupware setup ko 이 섹션은 eGroupWare와 함께 사용할 LDAP 계정을 설정하는데 도움을 줍니다.
this should be around 30 bytes in length.<br>note: the default has been randomly generated. setup ko 30 바이트 내외여야 합니다.<br> 주의: 기본설정은 아무값이나 생성됩니다
this stage is completed<br> setup ko 스테이지가 완료됨<br>
this should be around 30 bytes in length.<br />note: the default has been randomly generated. setup ko 30 바이트 내외여야 합니다.<br /> 주의: 기본설정은 아무값이나 생성됩니다
this stage is completed<br /> setup ko 스테이지가 완료됨<br />
to a version it does not know about setup ko 잘 알수 없는 버전으로
to setup 1 admin account and 3 demo accounts. setup ko 1개의 관리자 계정과 3개의 데모 계정을 설정
top setup ko 최상위
@ -422,13 +422,13 @@ which database type do you want to use with egroupware? setup ko eGroupWare
world readable setup ko 누구나 읽을수 있음
world writable setup ko 누구나 쓸수 있음
would you like egroupware to cache the phpgw info array ? setup ko eGroupWare가 phpgw info 배열을 캐쉬하길 원하십니까?
would you like egroupware to check for a new version<br>when admins login ? setup ko 관리자가 로그인했을때 <br> eGroupWare 새버전을 확인할까요?
would you like egroupware to check for a new version<br />when admins login ? setup ko 관리자가 로그인했을때 <br /> eGroupWare 새버전을 확인할까요?
would you like to show each application's upgrade status ? setup ko 각 응용프로그램의 업그레이드 상태를 보여줄까요?
writable by the webserver setup ko 웹서버가 쓸수 있음
write config setup ko 구성 기록
yes setup ko 예
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 베타버전을 사용하시고 계십니다.<br>이 버전은 더이상 지원하지 않으며 설정에 업그레이드할 경로도 없습니다<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 ko PHP버전이 오래되었습니다<br>새로운 버전으로 업그레이드 하시길 권장합니다.<br>이전 버전의 PHP는 eGroupWare가 정상적으로 동작하지 않습니다<br><br>적어도 %1 버전으로는 업그레이드 해주셔야 합니다.
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 베타버전을 사용하시고 계십니다.<br />이 버전은 더이상 지원하지 않으며 설정에 업그레이드할 경로도 없습니다<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 ko PHP버전이 오래되었습니다<br />새로운 버전으로 업그레이드 하시길 권장합니다.<br />이전 버전의 PHP는 eGroupWare가 정상적으로 동작하지 않습니다<br /><br />적어도 %1 버전으로는 업그레이드 해주셔야 합니다.
you appear to be running version %1 of egroupware setup ko eGroupWare 버전 %1을 사용하고 있습니다
you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup ko PHP버전 4.1.0 이전버전을 사용하고 계십니다. eGroupWare는 4.1.0 이나 이 이후 버전이 필요합니다
you appear to be using php3. disabling php4 sessions support setup ko PHP3을 사용하고 계십니다. PHP4 세션 지원을 비활성화 합니다
@ -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) 을 지원합니다.
you appear to have postgresql support enabled setup ko PostgreSQL을 지원합니다.
you appear to have xml support enabled setup ko XML을 지원합니다.
you are ready for this stage, but this stage is not yet written.<br> setup ko 현재 스테이지를 수행할 준비가 되었습니다만, 아직 완전히 작성되지는 않았습니다.<br>
you are ready for this stage, but this stage is not yet written.<br /> setup ko 현재 스테이지를 수행할 준비가 되었습니다만, 아직 완전히 작성되지는 않았습니다.<br />
you didn't enter a config password for domain %1 setup ko %1도메인의 구성암호를 입력하지 않았습니다
you didn't enter a config username for domain %1 setup ko %1도메인의 구성사용자이름을 입력하지 않았습니다
you didn't enter a header admin password setup ko 상위관리자 암호를 입력하지 않았습니다
you didn't enter a header admin username setup ko 상위관리자 사용자이름을 입력하지 않았습니다.
you do not have any languages installed. please install one now <br> setup ko 아무언어도 설치되어 있지 않습니다. 한가지를 지금 설치하세요<br>
you have not created your header.inc.php yet!<br> you can create it now. setup ko 귀하의 header.inc.php를 아직 생성하지 않았습니다!<br>지금 생성하세요.
you do not have any languages installed. please install one now <br /> setup ko 아무언어도 설치되어 있지 않습니다. 한가지를 지금 설치하세요<br />
you have not created your header.inc.php yet!<br /> you can create it now. setup ko 귀하의 header.inc.php를 아직 생성하지 않았습니다!<br />지금 생성하세요.
you have successfully logged out setup ko 성공적으로 접속종료 되었습니다
you must enter a username for the admin setup ko 관리할 사용자이름을 입력하세요
you need to add some domains to your header.inc.php. setup ko header.inc.php 에 어떤 도메인이든 추가하셔야 합니다.
@ -460,7 +460,7 @@ your database is not working! setup ko
your database is working, but you dont have any applications installed setup ko 데이터베이스는 장동합니다만, 설치된 응용프로그램이 없습니다
your header admin password is not set. please set it now! setup ko 상위관리자 암호가 설정되지 않았습니다. 지금 설정하세요!
your header.inc.php needs upgrading. setup ko header.inc.php 의 업그레이드가 필요합니다.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup ko 귀하의 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 ko 귀하의 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 ko 귀하의 PHP에 GD지원이 없습니다. gd 라이브러리버전 1.8 이나 그 이후의 버전을 설치하셔야 프로젝트에서 간트챠트를 보실수 있습니다
your tables are current setup ko 테이블에 이상 없음
your tables may be altered and you may lose data setup ko 테이블이 변경되면서 데이터를 잃을수도 있습니다.

View File

@ -6,7 +6,7 @@
00 (disable) setup nl 00 (deactiveer / aanbevolen)
13 (ntp) setup nl 13 (ntp)
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
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ë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 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 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 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ï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 do not have any languages installed. please install one now <br /> setup nl U heeft nog geen talen geï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 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 need to add some domains to your header.inc.php. setup nl U moet éé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ï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.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 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 !!

View File

@ -1,5 +1,5 @@
(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
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ê administratora
@ -28,10 +28,10 @@ authentication / accounts setup pl Uwierzytelnianie / Konta
auto create account records for authenticated users setup pl Automatycznie twórz zapisy kont dla uwierzytelnionych u¿ytkowników
auto-created user accounts expire setup pl Utworzone automatycznie konta u¿ytkowników wygas³y
available version setup pl Dostê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 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 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
@ -50,7 +50,7 @@ create database setup pl Tworzenie bazy danych
create one now setup pl Create one now
creating tables setup pl Tworzenie tabel
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³o root do bazy danych
db root username setup pl nazwa u¿ytkownika root bazy danych
default file system space per user/group ? setup pl Domy¶lny rozmiar plików na u¿ytkownika/grupê ?
@ -66,11 +66,11 @@ domain setup pl Ustawienia domeny
dont touch my data setup pl Nie dotykaj moich danych
edit current configuration setup pl Edytuj bie¿±c± konfiguracjê
enter some random text for app session encryption setup pl Wprowad¼ losowy tekst dla zaszyfrowania sesji aplikacji
enter some random text for app_session <br>encryption (requires mcrypt) setup pl Wprowad¼ 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³n± ¶cie¿kê do katalogu dla plików tymczasowych.<br>Na przyk³ad: /tmp, C:\TEMP
enter the full path for users and group files.<br>examples: /files, e:\files setup pl Podaj pe³n± ¶ie¿kê do plików u¿ytkowników i grup.<br>Na przyk³ad: /files, E:\FILES
enter some random text for app_session <br />encryption (requires mcrypt) setup pl Wprowad¼ 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³n± ¶cie¿kê do katalogu dla plików tymczasowych.<br />Na przyk³ad: /tmp, C:\TEMP
enter the full path for users and group files.<br />examples: /files, e:\files setup pl Podaj pe³n± ¶ie¿kê do plików u¿ytkowników i grup.<br />Na przyk³ad: /files, E:\FILES
enter the hostname of the machine on which this server is running setup pl Podaj nazwê komputera, na któ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³ad: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br><b>Bez koñcz±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³ad: http://www.domain.com/egroupware &nbsp; or &nbsp; /egroupware<br /><b>Bez koñcz±cego ciacha (,,/'')</b>
enter the site password for peer servers setup pl Wprowad¼ has³o serwisu dla serwerów równorzêdnych (peer servers)
enter the site username for peer servers setup pl Wprowad¼ nazwê u¿ytkownika serwisu dla serwerów równorzêdnych (peer servers)
enter the title for your site setup pl Podaj nazwê 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 upgrade setup pl Wymaga aktualizacji
resolve setup pl Rozwi±¿
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 desired action(s) from the available choices setup pl Wybierz z dostêpnych ¿±dane polecenie
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
the table definition was correct, and the tables were installed setup pl Definicja tabel jest poprawna i tabele zosta³y zainstalowane
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¿e Ci zainstalowaæ lub uaktualniæ 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 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ñ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ów/has³a: demo/guest, demo2/guest i demo3/guest.<br><b>UWAGA! Wszystkie istniej±ce konta zostan± usuniê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³o¿yæ jedno konto administracyjne i trzy konta demo.<br><b>Istniej±ce konta zostan± usuniete!</b>
this stage is completed<br /> setup pl Etap zakoñ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ów/has³a: demo/guest, demo2/guest i demo3/guest.<br /><b>UWAGA! Wszystkie istniej±ce konta zostan± usuniê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³o¿yæ jedno konto administracyjne i trzy konta demo.<br /><b>Istniej±ce konta zostan± usuniete!</b>
top setup pl U góry
translations added setup pl Dodano t³umaczenia
translations removed setup pl Usuniêto t³umaczenia
@ -216,14 +216,14 @@ users choice setup pl Wyb
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
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æ czy jest nowa wersja eGroupWare<br>gdy loguje siê administrator?
would you like egroupware to check for a new version<br />when admins login ? setup pl Chcesz sprawdzaæ czy jest nowa wersja eGroupWare<br />gdy loguje siê administrator?
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
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 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 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 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 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 must enter a username for the admin setup pl Musisz podaæ nazwê 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
your applications are current setup pl Your applications are current

View File

@ -5,7 +5,7 @@
00 (disable) setup pt-br 00 (desabilitado / recomendado)
13 (ntp) setup pt-br 13 (ntp)
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á criar 1 conta de administrador e 3 contas demo</b><br>Os usuá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á criar 1 conta de administrador e 3 contas demo</b><br />Os usuários/senhas são: demo/guest, demo2/guest and demo3/guest.
accounts existing setup pt-br Contas existentes
actions setup pt-br Ações
add a domain setup pt-br Adicionar um domínio
@ -47,18 +47,18 @@ auto-created user accounts expire setup pt-br Usu
available version setup pt-br Versão Disponível
back to the previous screen setup pt-br Voltar a tela anterior
back to user login setup pt-br Voltar a tela de conexã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 é <u>altamente recomendável</u> fazer uma cópia de segurança das tabelas do banco de dados caso o script danifique seus dados. <br><strong>Estes scripts automá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 é <u>altamente recomendável</u> fazer uma cópia de segurança das tabelas do banco de dados caso o script danifique seus dados. <br /><strong>Estes scripts automá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 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 é uma aplicação de usuário ou o acesso é controlado através das regras de acesso
because it requires manual table installation, <br>or the table definition was incorrect setup pt-br porque requer instalação das tabelas do banco de dados manualmente, <br>ou a definição da tabela está incorreta
because it requires manual table installation, <br />or the table definition was incorrect setup pt-br porque requer instalação das tabelas do banco de dados manualmente, <br />ou a definição da tabela está incorreta
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ção ou instalaçã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ção, ou a base de dados é mais nova que a versão instalada desta aplicação
because the enable flag for this app is set to 0, or is undefined setup pt-br porque o campo de habilitação (flag) desta aplicação está definido como 0, ou está indefinido
bottom setup pt-br Inferior
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ível criar o header.inc.php devido a restrições no acesso ao arquivo.<br> Em vez disso você 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ível criar o header.inc.php devido a restrições no acesso ao arquivo.<br /> Em vez disso você deve %1 o arquivo.
change system-charset setup pt-br Trocar o Conjunto de Carcteres do Sistema
charset setup pt-br Conjunto de Carácteres (iso-8859-1)
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ácteres atual no sistema
current system-charset is %1, click %2here%3 to change it. setup pt-br O conjunto de carácteres atual é %1, clique %2aqui%3 para mudá-lo
current version setup pt-br Versã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ã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 name setup pt-br Nome 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ão 3
enable mcrypt setup pt-br Habilitar MCrypt
enter some random text for app session encryption setup pt-br Digite algum texto aleatório para encriptação de sessão
enter some random text for app_session <br>encryption (requires mcrypt) setup pt-br Digite um texto aleatório para a encriptação de sessã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á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á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á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ários e grupos.<br>Ex.: /files, E:FILES
enter some random text for app_session <br />encryption (requires mcrypt) setup pt-br Digite um texto aleatório para a encriptação de sessã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á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á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á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á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á 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 username for peer servers setup pt-br Digite o usuário do servidor para uso com servidores parceiros
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ção padrão não encontrada. usado os valores padrões internos.
save setup pt-br Salvar
save this text as contents of your header.inc.php setup pt-br Salve este texto como conteú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ão de destino e clique em Enviar para processar esta versão.<br>Se você não definir uma versão somente as tabelas base serão instaladas para o aplicativo.<br><blink>Primeiro, esta operação irá 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ão de destino e clique em Enviar para processar esta versão.<br />Se você não definir uma versão somente as tabelas base serão instaladas para o aplicativo.<br /><blink>Primeiro, esta operação irá remover todas as tabelas de Aplicativos!</blink>
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ão.
select the desired action(s) from the available choices setup pt-br Selecione a ação (ou ações) desejada(s) a partir das opçõ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ões mbstring são necessárias para suporte unicode (utf-8) completo ou para outros conjuntos de carácteres multibyte.
the table definition was correct, and the tables were installed setup pt-br As definições de tabelas estão corretas e as tabelas estão instaladas
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ã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ão com o servidor LDAP <br> por favor verifique as configurações do servidor LDAP
there was a problem trying to connect to your ldap server. <br /> setup pt-br Ocorreu um problema durante a tentativa de conexã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ão com o servidor LDAP <br /> por favor verifique as configurações do servidor LDAP
this has to be outside the webservers document-root!!! setup pt-br Isto tem que estar fora do diretó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 program will convert your database to a new system-charset. setup pt-br Este programa converterá 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ção irá ajudá-lo a exportar usuários e grupos de contas e tabelas do eGroupWare para sua á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ção ajudará a importar usuá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ção irá ajudará 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ão foi aleatóriamente gerado
this stage is completed<br> setup pt-br Este passo está completo<br>
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ão foi aleatóriamente gerado
this stage is completed<br /> setup pt-br Este passo está completo<br />
to a version it does not know about setup pt-br para uma versão desconhecida
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
@ -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 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çõ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ão disponí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ão disponí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ção de cada aplicativo?
writable by the webserver setup pt-br Escrita permitida para o servidor Web
write config setup pt-br Configuração de escrita
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ê está usando uma versão pré-beta do eGroupWare.<br>Estas versões não são mais suportadas, e não há como usar o configurador para atualizá-las.<br> Você deve primeiro atualizar para a versão 0.9.10 (a última versão que suporta atualização de pré-betas) <br>e então atualizar a partir desta versão para a versã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ê está rodando uma versão antiga do PHP <br> é altamente recomendável que você faça a atualização para uma versão mais nova <br> Versões antigas do PHP podem não rodar corretamente com o eGroupWare. <br><br>Por favor atualize para, no mínimo, a versão %1
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ê está usando uma versão pré-beta do eGroupWare.<br />Estas versões não são mais suportadas, e não há como usar o configurador para atualizá-las.<br /> Você deve primeiro atualizar para a versão 0.9.10 (a última versão que suporta atualização de pré-betas) <br />e então atualizar a partir desta versão para a versã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ê está rodando uma versão antiga do PHP <br /> é altamente recomendável que você faça a atualização para uma versão mais nova <br /> Versões antigas do PHP podem não rodar corretamente com o eGroupWare. <br /><br />Por favor atualize para, no mínimo, a versão %1
you appear to be running version %1 of egroupware setup pt-br Aparentemente você está rodando a versã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ê está utilizando uma versão anterior a 4.1.0 do PHP. Atualmente o eGroupWare requer a versão 4.1.0 ou maior.
you appear to be using php3. disabling php4 sessions support setup pt-br Aparentemente você está usando o PHP3. Desabilitando o suporte a seçõ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ê tem suporte ao Orale V8
you appear to have postgresql support enabled setup pt-br Aparentemente você tem suporte ao PostgreSQL
you appear to have xml support enabled setup pt-br Aparentemente você tem suporte a XML
you are ready for this stage, but this stage is not yet written.<br> setup pt-br Você está pronto para este passo, mas este estágio não está escrito ainda.<br>
you are ready for this stage, but this stage is not yet written.<br /> setup pt-br Você está pronto para este passo, mas este estágio não está escrito ainda.<br />
you didn't enter a config password for domain %1 setup pt-br Você não digitou uma senha de configuração para o domínio %1
you didn't enter a config username for domain %1 setup pt-br Você não digitou um usuário de configuração para o domínio %1
you didn't enter a header admin password setup pt-br Você não digitou uma senha para administração do Header
you didn't enter a header admin username setup pt-br Você não digitou um usuário para administraçã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 have not created your header.inc.php yet!<br> you can create it now. setup pt-br Você ainda não criou seu arquivo heades.inc.php!<br> Você pode criá-lo agora.
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ê ainda não criou seu arquivo heades.inc.php!<br /> Você pode criá-lo agora.
you have successfully logged out setup pt-br Você foi desconectado com sucesso.
you must enter a username for the admin setup pt-br Você deve especificar um nome de usuário para o Administrador
you need to add some domains to your header.inc.php. setup pt-br Você precisa adicionar um domí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á funcionando, mas não há nenhuma aplicaçã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á 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.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup pt-br Seu arquivo header.inc.php necessita de atualização <br><blink><b class="msg">AVISO!</b></blink><br><b>FAÇA CÓPIAS DE SEGURANÇ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ção <br /><blink><b class="msg">AVISO!</b></blink><br /><b>FAÇA CÓPIAS DE SEGURANÇ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ção PHP não possui suporte apropriado à biblioteca GD. Você precisa da versão 1.8 ou superior para ver os diagramas de Gantt dos projetos.
your tables are current setup pt-br Suas tabelas estã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.

View File

@ -27,16 +27,16 @@ Authentication / Accounts setup pt Autentica
Auto create account records for authenticated users setup pt Criar contas de usuários automaticamente para usuários autenticados
auto-created user accounts expire setup pt Usuários criados automaticamente expiram em
available version setup pt Versão disponí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 é <u>altamente recomendável</u> fazer um backup das tabelas do banco de dados caso o script danifique seus dados. <br><strong>Estes scripts automá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 é <u>altamente recomendável</u> fazer um backup das tabelas do banco de dados caso o script danifique seus dados. <br /><strong>Estes scripts automáticos podem destruir seus dados facilmente</strong>
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 é uma aplicação de usuário ou o acesso é controlado através das regras de acesso
because it requires manual table installation, <br>or the table definition was incorrect setup pt pois requer instalação das tabelas do banco de dados manualmente, <br>ou a definição da tabela está incorreta
because it requires manual table installation, <br />or the table definition was incorrect setup pt pois requer instalação das tabelas do banco de dados manualmente, <br />ou a definição da tabela está incorreta
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ção ou instalaçã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ção, ou a base de dados é mais nova que a versão instalada desta aplicação
because the enable flag for this app is set to 0, or is undefined setup pt pois o campo de habilitação (flag) desta aplicação está definido como 0, ou está indefinido
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ção foi completada! Clique <a href="index.php">aqui</a> para retornar para configuraçã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ção foi completada! Clique <a href="index.php">aqui</a> para retornar para configuração </center>
cancel setup pt Cancelar
charset setup pt ISO-8859-1
check ip address of all sessions setup pt Verificar endereço IP de todas sessões
@ -49,7 +49,7 @@ create database setup pt Criar base de dados
create one now setup pt Criar uma agora
create setup pt Criar
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ão atual
db root password setup pt Senha do super-usuário no banco de dados
db root username setup pt Código do super-usuário no banco de dados
@ -65,12 +65,12 @@ details for admin account setup pt Detalhes da conta do Administrador
domain setup pt Domínio
dont touch my data setup pt Não alterar meus dados
edit current configuration setup pt Editar configuração atual
Enter some random text for app_session <br>encryption (requires mcrypt) setup pt Digite algum texto aleatório para a encriptação de sessão (requer mcrypt)
Enter some random text for app_session <br />encryption (requires mcrypt) setup pt Digite algum texto aleatório para a encriptação de sessão (requer mcrypt)
enter some random text for app session encryption setup pt Digite algum texto aleatório para encriptação de sessão
Enter the full path for temporary files.<br>Examples: /tmp, C:\TEMP setup pt Digite o caminho completo para arquivos temporá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ários e grupos.<br>Exemplos: /files, E:FILES
Enter the full path for temporary files.<br />Examples: /tmp, C:\TEMP setup pt Digite o caminho completo para arquivos temporá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á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á 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ção com servidores remotos
Enter the site username for peer servers setup pt Digite o usuário do servidor para comunicação com servidores remotos
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ção ou reparo manual
requires upgrade setup pt Requer atualização
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ção, escolha a versão de destino e clique em Enviar para processar esta versão.<br>Se você não definir uma versão somente as tabelas base serão instaladas para a aplicação.<br><blink>Isto irá limpar todas aplicaçõ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ção, escolha a versão de destino e clique em Enviar para processar esta versão.<br />Se você não definir uma versão somente as tabelas base serão instaladas para a aplicação.<br /><blink>Isto irá limpar todas aplicações da tabela primeiro!</blink>
Selectbox setup pt Caixa de seleção
select the default applications to which your users will have access setup pt Selecione a aplicação padrão a qual os usuários terão acesso
select the desired action(s) from the available choices setup pt Selecione a ação (ou ações) desejada(s) a partir das opções
@ -191,16 +191,16 @@ tables installed, unless there are errors printed above setup pt tabelas instala
tables upgraded setup pt tabelas atualizadas
target version setup pt Versão de destino
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çã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ção
the table definition was correct, and the tables were installed setup pt As definições de tabelas estão corretas e as tabelas estão instaladas
the tables setup pt as tabelas
this program will help you upgrade or install different languages for eGroupWare setup pt Este programa ajudará 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ção ajudará a exportar usuá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ção ajudará a importar usuários e grupos LDAP para as tabelas do eGroupWare
this stage is completed<br> setup pt Este passo está 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á criar 1 conta de administrador e 3 contas de usuários para demonstração<br>Os usuários/senhas são: demo/guest, demo2/guest and demo3/guest.<br><b>!!!Isto irá remover TODAS as contas e grupos existentes!!!</b><br>
this stage is completed<br /> setup pt Este passo está 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á criar 1 conta de administrador e 3 contas de usuários para demonstração<br />Os usuários/senhas são: demo/guest, demo2/guest and demo3/guest.<br /><b>!!!Isto irá remover TODAS as contas e grupos existentes!!!</b><br />
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ção.<br><b>Isto irá 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ção.<br /><b>Isto irá remover todas as contas existentes</b>
translations added setup pt Traduções adicionadas
translations removed setup pt Traduções removidas
translations upgraded setup pt Traduções atualizadas
@ -217,14 +217,14 @@ version setup pt vers
version mismatch setup pt Erro de versão
we will automatically update your tables/records to %1 setup pt As tabelas/registros serão automaticamente atualizadas para %1
Would you like eGroupWare to cache the phpgw info array ? setup pt Deseja que o eGroupWare faça cache do vetor de informaçõ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ã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ã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ção está atualizada ?
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á sendo usado uma versão antiga de PHP.<br>É recomendado que a versão seja atualizada.<br>Versões antigas do PHP podem não executar o eGroupWare corretamente. <br><br>Por favor atualize para versõ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ê está usando uma versão pré-beta do eGroupWare.<br>Estas versões não são mais suportadas, e não há como usar a Configuração para atualizar.<br> Você deve primeiro atualizar para a versão 0.9.10 (a última versão que suporta atualização de pré-betas) <br>e então atualizar a partir desta versão para a versã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 4.1.0 setup pt Está sendo usado uma versão antiga de PHP.<br />É recomendado que a versão seja atualizada.<br />Versões antigas do PHP podem não executar o eGroupWare corretamente. <br /><br />Por favor atualize para versõ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ê está usando uma versão pré-beta do eGroupWare.<br />Estas versões não são mais suportadas, e não há como usar a Configuração para atualizar.<br /> Você deve primeiro atualizar para a versão 0.9.10 (a última versão que suporta atualização de pré-betas) <br />e então atualizar a partir desta versão para a versão atual.
you appear to be running version %1 of eGroupWare setup pt Aparentemente esta versão do eGroupWare é a %1
you are ready for this stage, but this stage is not yet written.<br> setup pt Você está pronto para este passo, mas este estágio não está 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 are ready for this stage, but this stage is not yet written.<br /> setup pt Você está pronto para este passo, mas este estágio não está 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 must enter a username for the admin setup pt Deve ser especificado um código de usuário para o Administrador
your applications are current setup pt Suas aplicações estão atualizadas
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 淞
your database is not working! setup ru 髁哿 饬诹 淞挝偃 闻 伊孪粤旁!
your header.inc.php needs upgrading. setup ru 媪侍 header.inc.php 砸怕张<E68095> 下蜗滋盼裳.
your header.inc.php needs upgrading.<br><blink><b class="msg">warning!</b></blink><br><b>make backups!</b> setup ru æÁÊÌ 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 ru æÁÊÌ header.inc.php ÔÒÅÂÕÅÔ ÏÂÎÏ×ÌÅÎÉÑ.<br /><blink><b class="msg">÷îéíáîéå!</b></blink><br /><b>óäåìáêôå òåúåò÷îõà ëïðéà!</b>

View File

@ -8,7 +8,7 @@
13 (ntp) setup sl 13 (ntp)
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Ä<61>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Ä<61>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Ä<61>uni</b><br />UporabniÅ¡ka imena in gesla bodo: demo/guest, demo2/guest in demo3/guest.
accounts existing setup sl RaÄ<61>un obstaja
actions setup sl Akcije
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 sets setup sl arhivski nizi
backup started, this might take a view minutes ... setup sl zaganjam arhiviranje, ki lahko traja nekaj minut ...
backupwarn setup sl toda, <u>zelo priporoÄ<6F>amo izdelavo rezervne kopije</u> vaÅ¡ih podatkov, Ä<>e skripta le te poÅ¡koduje. <br><strong>Samodejne skripte lahko zaradi nepredvidenih okoliÅ¡Ä<C2A1>in uniÄ<69>ijo vaÅ¡e podatke.</strong> <br><em>Preden nadaljujete, izdelajte rezervno kopijo podatkov!</em>
backupwarn setup sl toda, <u>zelo priporoÄ<6F>amo izdelavo rezervne kopije</u> vaÅ¡ih podatkov, Ä<>e skripta le te poÅ¡koduje. <br /><strong>Samodejne skripte lahko zaradi nepredvidenih okoliÅ¡Ä<C2A1>in uniÄ<69>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 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 requires manual table installation, <br>or the table definition was incorrect setup sl ker zahteva roÄ<6F>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Ä<6F>no namestitev tabel, <br />ali pa so bile definicije tabel neveljavne
because it was manually disabled setup sl ker je bila roÄ<6F>no onemogoÄ<6F>ena
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Å¡Ä<C2A1>ene razliÄ<69>ice aplikacije
because the enable flag for this app is set to 0, or is undefined setup sl ker je oznaÄ<61>ba za vklop aplikacije nastavljena na 0, ali pa je nedefinirana
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Ä<6F>no priporoÄ<6F>am izdelavo rezervne kopije</u> vseh tabel v primeru, da skripta poÅ¡koduje podatke.<br><strong>Samodejne skripte lahko celo uniÄ<69>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Ä<6F>no priporoÄ<6F>am izdelavo rezervne kopije</u> vseh tabel v primeru, da skripta poÅ¡koduje podatke.<br /><strong>Samodejne skripte lahko celo uniÄ<69>ijo podatke</strong>.
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
charset setup sl nabor znakov
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 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Ä<69>ica
currently installed languages: %1 <br> setup sl Trenutno nameÅ¡Ä<C2A1>eni jeziki: %1<br>
currently installed languages: %1 <br /> setup sl Trenutno nameÅ¡Ä<C2A1>eni jeziki: %1<br />
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 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 host setup sl Podatkovni strežnik
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Ä<6F>i LDAP razliÄ<69>ico 3
enable mcrypt setup sl OmogoÄ<6F>i mcrypt
enter some random text for app session encryption setup sl Vnesite nekaj nakljuÄ<75>nega besedila za kriptiranje aplikacijskih sej
enter some random text for app_session <br>encryption (requires mcrypt) setup sl Vnesite nekaj nakljuÄ<75>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Ä<61>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 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 some random text for app_session <br />encryption (requires mcrypt) setup sl Vnesite nekaj nakljuÄ<75>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Ä<61>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 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Ä<65>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Ä<61>unalniku.<br>Na primer: http://www.podjetje.si/egroupware &nbsp; ali &nbsp; /egroupware<br><b>Naslov naj bo brez zakljuÄ<75>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Ä<61>unalniku.<br />Na primer: http://www.podjetje.si/egroupware &nbsp; ali &nbsp; /egroupware<br /><b>Naslov naj bo brez zakljuÄ<75>ne poÅ¡evnice</b>
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 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
schedule setup sl urnik
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Ä<61>ite aplikacijo, vnesite ciljno razliÄ<69>ico, in poÅ¡ljite procesu to razliÄ<69>ico.<br>ÄŒe ne boste vnesli razliÄ<69>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Ä<61>ite aplikacijo, vnesite ciljno razliÄ<69>ico, in poÅ¡ljite procesu to razliÄ<69>ico.<br />ÄŒe ne boste vnesli razliÄ<69>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 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
@ -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 table definition was correct, and the tables were installed setup sl Definicije tabel so pravilne in tabele so nameÅ¡Ä<C2A1>ene.
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>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 /> 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.
this has to be outside the webservers document-root!!! setup sl To mora biti izven strežnikovega spletnega podroÄ<6F>ja!
this might take a while, please wait ... setup sl To lahko traja nekaj Ä<>asa, prosim poÄ<6F>akajte ...
this program lets you backup your database, schedule a backup or restore it. setup sl Ta program vam omogoÄ<6F>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 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Ä<61>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Ä<75>no generirano.
this stage is completed<br> setup sl Korak je zakljuÄ<75>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š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 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Ä<75>no generirano.
this stage is completed<br /> setup sl Korak je zakljuÄ<75>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š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Ä<69>ico, ki je ne pozna
to setup 1 admin account and 3 demo accounts. setup sl za kreiranj 1 upravljalskega in 3 demo raÄ<61>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š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ških ra&#269;unov. <br /><b>To bo izbrisalo vse obstoje&#269;e ra&#269;une.</b>
top setup sl vrh
translations added setup sl prevodi dodani
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 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 check for a new version<br>when admins login ? setup sl Ali želite, da eGroupWare preveri za novo razliÄ<69>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Ä<69>ico ob prijavi upravljalca?
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
write config setup sl Zapiši konfiguracijo
year setup sl leto
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Ä<69>ico egroupWare.<br> Te razliÄ<69>ice niso veÄ<65> podprte in nadgradnja z njih ni mogoÄ<6F>a.<br> Prosimo, da najprej nadgradite na 0.9.10, (zadnja razliÄ<69>ica, ki podpira pred-beta posodabljanje) <br> in potem nadgradite na posodobljeno razliÄ<69>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Ä<69>ico PHP.<br>PriporoÄ<6F>amo, da nadgradite na novo razliÄ<69>ico.<br>StarejÅ¡e razliÄ<69>ice morda ne bodo pravilno izvajale eGroupWare programov, Ä<>e jih sploh bodo.<br><br>Prosim, nadgradite vsaj na PHP razliÄ<69>ico %1.
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Ä<69>ico egroupWare.<br /> Te razliÄ<69>ice niso veÄ<65> podprte in nadgradnja z njih ni mogoÄ<6F>a.<br /> Prosimo, da najprej nadgradite na 0.9.10, (zadnja razliÄ<69>ica, ki podpira pred-beta posodabljanje) <br /> in potem nadgradite na posodobljeno razliÄ<69>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Ä<69>ico PHP.<br />PriporoÄ<6F>amo, da nadgradite na novo razliÄ<69>ico.<br />StarejÅ¡e razliÄ<69>ice morda ne bodo pravilno izvajale eGroupWare programov, Ä<>e jih sploh bodo.<br /><br />Prosim, nadgradite vsaj na PHP razliÄ<69>ico %1.
you appear to be running version %1 of egroupware setup sl Videti je, da imate eGroupWare razliÄ<69>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Ä<69>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Ä<6F>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žnika.
you appear to have postgresql support enabled setup sl Videti je, da imate omogoÄ<6F>eno podporo za PostgreSQL podatkovni strežnik.
you appear to have xml support enabled setup sl Videti je, da imate omogoÄ<6F>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 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 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Å¡Ä<C2A1>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 do not have any languages installed. please install one now <br /> setup sl Nimate nameÅ¡Ä<C2A1>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 successfully logged out setup sl Uspešno ste se odjavili.
you must enter a username for the admin setup sl Vnesti morate upravljaÄ<61>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.
@ -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 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.<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Ä<69>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 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)
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ändas</b> (använd utf-8 om du skall ha stöd för språ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ändarnamnen/lösenorden ä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ändarnamnen/lösenorden är demo/guest, demo2/guest samt demo3/guest.
accounts existing setup sv Existerande konton
actions setup sv Åtgärder
add a domain setup sv Lägg till domä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 it depends upon setup sv eftersom den är beroende av
because it is not a user application, or access is controlled via acl setup sv eftersom det inte är en användarapplikation, eller för att åtkomst kontrolleras med en ACL
because it requires manual table installation, <br>or the table definition was incorrect setup sv eftersom den krä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äver manuell installation av tabeller, <br />eller att tabelldefinitionen var inkorrekt
because it was manually disabled setup sv eftersom den stängts av manuellt
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 är nyare ä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 är satt till 0 eller är odefinerad
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öra data. <br> <strong>Dessa automatiserade skript kan med lätthet förstö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öra data. <br /> <strong>Dessa automatiserade skript kan med lätthet förstöra data i dina tabeller!</strong>
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örighet.<br>Istä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örighet.<br />Istället kan du %1 filen.
change system-charset setup sv Ändra system-teckentabell
charset setup sv teckentabell
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 is %1, click %2here%3 to change it. setup sv Nuvarande system-teckentabell är %1, klicka %2här%3 för att ändra
current version setup sv Aktuell version
currently installed languages: %1 <br> setup sv Installerade språk: %1 <br>
currently installed languages: %1 <br /> setup sv Installerade språk: %1 <br />
database successfully converted from '%1' to '%2' setup sv Databas konverterad frå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änder port 13, sätt brandvä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änder port 13, sätt brandväggsreglerna korrekt innan du trycker på Klar<br />(Port: 13 / Host 129.6.15.28)
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 host setup sv DB host
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ör LDAP version 3
enable mcrypt setup sv möjliggör MCrypt
enter some random text for app session encryption setup sv Skriv in lite slumpmässig text för kryptering av sessionsinformation
enter some random text for app_session <br>encryption (requires mcrypt) setup sv Skriv in lite slumpmässig text för<br>kryptering av sessionsinformation (kräver MCrypt)
enter the full path for temporary files.<br>examples: /tmp, c:\temp setup sv Ange fullständig sökvä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ändig sökväg för anvä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ändig sökväg för backupkatalog <br>om tomt: samma som användarfiler
enter some random text for app_session <br />encryption (requires mcrypt) setup sv Skriv in lite slumpmässig text för<br />kryptering av sessionsinformation (kräver MCrypt)
enter the full path for temporary files.<br />examples: /tmp, c:\temp setup sv Ange fullständig sökvä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ändig sökväg för anvä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ändig sökväg för backupkatalog <br />om tomt: samma som anvä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 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ösenord för peer-servers
enter the site username for peer servers setup sv Ange siteanvändarnamn för peer-servers
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ållet i din header.inc.php
schedule setup sv schema
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ä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ä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 the default applications to which your users will have access setup sv Välj vilka applikationer användare skall ha access till default
select the desired action(s) from the available choices setup sv Välj återgärder frå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övs för att fullt ut kunna stödja Unicode (UTF-8) eller andra multi-byte teckenuppsättningar
the table definition was correct, and the tables were installed setup sv Tabelldefinitionen var korrekt och tabellerna installerades
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>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 /> 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
this has to be outside the webservers document-root!!! setup sv Måste ligga utanför webserverns dokumentrot!!!
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ägga en backup eller återstä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älper dig exportera användare och grupper från eGroupWares tabeller till ett LDAP-träd
this section will help you import users and groups from your ldap tree into egroupware's account tables setup sv Denna sektion hjälper dig att importera användare och grupper från ditt LDAP-träd till eGroupWares tabeller
this section will help you setup your ldap accounts for use with egroupware setup sv Denna sektion hjälper dig ställa in dina LDAP-konton för anvä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 är slumpmässigt genererat.
this stage is completed<br> setup sv Detta stadium klart
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 är slumpmässigt genererat.
this stage is completed<br /> setup sv Detta stadium klart
to a version it does not know about setup sv till en okänd version
to setup 1 admin account and 3 demo accounts. setup sv för att skapa ett adminkonto och tre demokonton
top setup sv ö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 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 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?
writable by the webserver setup sv Skrivbar av webservern
write config setup sv Skriv konfiguration
year setup sv år
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öds inte längre och det finns ingen uppgraderingsväg via setup.<br>Du måste först uppgradera till 0.9.10(sista versionen som stö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 äldre version av PHP.<br>Det är rekommenderat att du uppgraderar till en nyare version.<br>Äldre versioner av PHP kanske inte kör eGroupWare korrekt, om alls.<br><br>Du rekommenderas starkt att uppgradera till åtminstone version %1
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öds inte längre och det finns ingen uppgraderingsväg via setup.<br />Du måste först uppgradera till 0.9.10(sista versionen som stö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 äldre version av PHP.<br />Det är rekommenderat att du uppgraderar till en nyare version.<br />Äldre versioner av PHP kanske inte kör eGroupWare korrekt, om alls.<br /><br />Du rekommenderas starkt att uppgradera till å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 using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup sv Du verkar köra en äldre version av PHP än 4.1.0. eGroupWare krä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änger av PHP4:as sessionsstö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öd för Oracle V8 (OC1) aktiverat
you appear to have postgresql support enabled setup sv Du verkar ha stöd för PostgreSQL aktiverat
you appear to have xml support enabled setup sv Du verkar ha stöd för XML aktiverat
you are ready for this stage, but this stage is not yet written.<br> setup sv Du är redo för detta stadium, men detta stadium är inte skrivet ännu.<br>
you are ready for this stage, but this stage is not yet written.<br /> setup sv Du är redo för detta stadium, men detta stadium är inte skrivet ännu.<br />
you didn't enter a config password for domain %1 setup sv Du angav inget config-lösenord för domän %1
you didn't enter a config username for domain %1 setup sv Du angav inget config-användarnamn för domä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 username setup sv Du angav inget header admin-användarnamn
you do not have any languages installed. please install one now <br> setup sv Du har för närvarande inga språ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 ännu!<br>Du kan skapa den nu.
you do not have any languages installed. please install one now <br /> setup sv Du har för närvarande inga språ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 ännu!<br />Du kan skapa den nu.
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 need to add some domains to your header.inc.php. setup sv Du måste lägga till några domä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 header admin password is not set. please set it now! setup sv Ditt header admin-lösenord är inte satt. Skriv in det nu!
your header.inc.php needs upgrading. setup sv Din header.inc.php behö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ö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ö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öd. Du behöver GD-library version 1.8 eller bättre om du vill använda Gantt-diagram i Projekt
your tables are current setup sv Dina tabeller ä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!!

View File

@ -40,18 +40,18 @@ auto-created user accounts expire setup zh 自动建立的用户帐户已过期
available version setup zh 可用版本
back to the previous screen 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 it depends upon setup zh 因为它依赖于
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 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 the enable flag for this app is set to 0, or is undefined setup zh 因为该应用程序的启用标志为0或未定义
bottom 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 更改系统编码
charset setup zh utf-8
charset to convert to setup zh 更改系统编码为
@ -82,9 +82,9 @@ creating tables setup zh 正在创建表格
current system-charset setup zh 当前系统编码
current system-charset is %1, click %2here%3 to change it. setup zh 当前系统编码为%1,点击%2此处%3更改系统编码.
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'
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 name 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 mcrypt 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 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 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 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 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 username for peer servers 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 未找到配置范例. 将使用内置的默认配置
save setup zh 保存
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 the default applications to which your users will have access 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 table definition was correct, and the tables were installed 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>please check your ldap server configuration setup zh 无法连接到您的LDAP服务器. <br>请检查您的LDAP服务器的配置
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服务器的配置
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 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 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 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 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 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 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 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 顶部
translations added 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的会话管理性能较好)
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 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 您希望显示每个应用程序的升级状态吗 ?
write config setup zh 保存配置
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 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 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 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 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 postgres-db support enabled setup zh Postgres-DB已启用
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 header admin password setup zh 您没有输入主管理员密码
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 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 successfully logged out 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中添加域.
@ -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 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.<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 may be altered and you may 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)
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>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>
<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>
accounts existing setup zt 帳號已經存在
actions 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 it depends upon 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 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 the enable flag for this app is set to 0, or is undefined setup zt 因為此應用程式的啟用設定值被設定為 0 或是為被設定。
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 取消
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 修改系統字元設定
charset setup zt utf-8
charset to convert to setup zt 字元轉換成
@ -123,11 +123,11 @@ creating tables setup zt 正在建立資料表
current system-charset setup zt 目前系統字元編碼
current system-charset is %1, click %2here%3 to change it. setup zt 目前系統字元編碼是%1點選 %2這裡%3 來改變。
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'
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 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 host 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 mcrypt setup zt 啟用MCrypt
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 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 to the backup directory.<br>if empty: files directory setup zt 輸入備份檔案存放的完整路徑:<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 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 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 username for peer servers 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帳號)
month 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 db user egroupware uses to connect setup zt eGroupWare用來與資料庫連結的帳號
never setup zt 從未
@ -320,7 +320,7 @@ passwords did not match, please re-enter setup zt 密碼不符,請重新輸入
path information setup zt 路徑資訊
path to user and group files has to be outside of the webservers document-root!!! 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 read/write permissions on directories, or back up and use another option. setup zt 請檢查資料夾讀取/寫入的權限或是備份後使用其他選項。
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內容
schedule 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 the default applications to which your users will have access 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 table definition was correct, and the tables were installed 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 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 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 />please check your ldap server configuration setup zt 嘗試連接您的LDAP伺服器時發生錯誤。<br />請檢查您的設定
this has to be outside the webservers document-root!!! 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 這個程式能夠讓您備份、排程備份或是還原資料庫。
@ -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 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 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 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 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 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 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 頂部
translations added 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 writable setup zt 所有人可寫入
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 您希望顯示每一個應用程式升級的資訊嗎?
writable by the webserver setup zt 網頁伺服器可以寫入
write config setup zt 寫入設定
year 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 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 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 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 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支援關閉中
@ -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 postgresql support enabled setup zt 您的系統支援PostgreSQL
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 username for domain %1 setup zt 您並未輸入
you didn't enter a header admin password 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 have not created your header.inc.php yet!<br> you can create it now. setup zt 您尚未建立您的header.inc.php<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 successfully logged out 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新增一些網域的設定
@ -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 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.<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 tables are current setup zt 您的資料表目前狀態
your tables may be altered and you may lose data setup zt 您的資料表已經被更動過並有可能遺失部份資料

View File

@ -47,7 +47,7 @@
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']);
}

View File

@ -154,9 +154,9 @@
}
$id_exist = $groups->exists((int)$thisacctid);
echo '<br>accountid: ' . $thisacctid;
echo '<br>accountlid: ' . $thisacctlid;
echo '<br>exists: ' . $id_exist;
echo '<br />accountid: ' . $thisacctid;
echo '<br />accountlid: ' . $thisacctlid;
echo '<br />exists: ' . $id_exist;
/* If not, create it now. */
if(!$id_exist)
@ -205,7 +205,7 @@
// If not, create it now.
if(!$id_exist)
{
echo '<br>Adding' . $thisacctid;
echo '<br />Adding' . $thisacctid;
$thisaccount_info = array(
'account_type' => 'u',
'account_id' => $thisacctid,
@ -231,14 +231,14 @@
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);
}
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('Click <a href="index.php">here</a> to return to setup.').'</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>';
$GLOBALS['egw_setup']->html->show_footer();
exit;
}

View File

@ -152,12 +152,12 @@
{
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))
{
$error .= '<br>You must select at least 1 application';
$error .= '<br />You must select at least 1 application';
}
if(!$error)
@ -295,12 +295,12 @@
{
continue;
}
/* echo '<br>members: ' . $members; */
/* echo '<br />members: ' . $members; */
$tmpid = 0;
@reset($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'])
{
$tmpid = $acct->name2id($y['account_lid']);
@ -411,13 +411,13 @@
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);
}
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();
exit;
}
@ -467,7 +467,7 @@
}
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();
$thisacctid = $group_info[$groupid]['gidnumber'][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];
$thismembers = $group_info[$groupid]['memberuid'];
$thisdn = $group_info[$groupid]['dn'];
@ -199,12 +199,12 @@
{
continue;
}
/* echo '<br>members: ' . $members; */
/* echo '<br />members: ' . $members; */
$tmpid = 0;
@reset($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'])
{
$tmpid = $y['account_id'];
@ -254,7 +254,7 @@
$id_exist = 0;
$thisacctid = $account_info[$id]['uidnumber'][0];
$thisacctlid = $account_info[$id]['uid'][0];
/* echo "Updating USERID : ".$thisacctlid."<br>\n"; */
/* echo "Updating USERID : ".$thisacctlid."<br />\n"; */
$thisdn = $account_info[$id]['dn'];
/* Do some checks before we try to import the data. */
@ -349,13 +349,13 @@
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']);
}
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();
exit;
}

View File

@ -101,29 +101,30 @@
$dom = get_var('setting_'.$variableName,Array('POST'));
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'])
{
$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'));
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'])
{
$errors .= '<br>' . lang("You didn't enter a header admin username");
$errors .= '<br />' . lang("You didn't enter a header admin username");
}
if($errors)
{
$GLOBALS['egw_setup']->html->show_header('Error',True);
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;
}
}
@ -152,7 +153,7 @@
{
case '1':
$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;
case '2':
$GLOBALS['egw_info']['setup']['HeaderFormMSG'] = lang('Your header admin password is NOT set. Please set it now!');
@ -172,7 +173,7 @@
break;
case '4':
$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.');
if(!$GLOBALS['egw_setup']->auth('Header'))
{
@ -218,15 +219,15 @@
$header_template = CreateObject('setup.Template','../');
$GLOBALS['egw_setup']->html->show_header('Generated header.inc.php', False, 'header');
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();
echo '<pre>';
echo htmlentities($newheader);
echo '</pre><hr>';
echo '</pre><hr />';
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 '<input type="hidden" name="FormLogout" value="header">';
echo '<input type="submit" name="junk" value="'.lang('Continue').'">';
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="submit" name="junk" value="'.lang('Continue').'" />';
echo '</form>';
echo '</td></tr></table>';
$GLOBALS['egw_setup']->html->show_footer();
@ -242,68 +243,65 @@
fclose($fsetup);
$GLOBALS['egw_setup']->html->show_header('Saved header.inc.php', False, 'header');
echo '<form action="index.php" method="post">';
echo '<br>' . lang('Created header.inc.php!');
echo '<input type="hidden" name="FormLogout" value="header">';
echo '<input type="submit" name="junk" value="'.lang('Continue').'">';
echo '<br />' . lang('Created header.inc.php!');
echo '<input type="hidden" name="FormLogout" value="header" />';
echo '<input type="submit" name="junk" value="'.lang('Continue').'" />';
echo '</form>';
echo '</body></html>';
$GLOBALS['egw_setup']->html->show_footer();
break;
}
else
{
$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('Please check read/write permissions on directories, or back up and use another option.') . '<br>';
echo '</td></tr></table></body></html>';
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 />';
$GLOBALS['egw_setup']->html->show_footer();
}
break;
default:
$GLOBALS['egw_setup']->html->show_header($GLOBALS['egw_info']['setup']['HeaderFormMSG'], False, 'header');
$detected = '';
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 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();
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';
}
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'))
{
$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';
}
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'))
{
$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';
}
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'))
{
$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
$supported_db[] = 'sapdb';
$supported_db[] = 'odbc_mssql';
@ -311,27 +309,28 @@
}
else
{
$detected .= lang('No ODBC support found. Disabling') . '<br>' . "\n";
$detected .= lang('No ODBC support found. Disabling') . '<br />' . "\n";
}
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';
}
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))
{
$detected .= '<b><p align="center" class="msg">'
. 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.')
. '</p></b><td></tr></table></body></html>';
. '</p></b>';
echo $detected;
$GLOBALS['egw_setup']->html->show_footer();
exit;
}
@ -339,13 +338,14 @@
{
$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"
. '</p></b><td></tr></table></body></html>';
. '</p></b>';
echo $detected;
$GLOBALS['egw_setup']->html->show_footer();
exit;
}
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[] = 'db';
@ -361,25 +361,25 @@
/*
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';
}
else
{
$detected .= lang('No XML support found. Disabling') . '<br>' . "\n";
$detected .= lang('No XML support found. Disabling') . '<br />' . "\n";
}
*/
$no_guess = False;
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;
$no_guess = true;
/* This code makes sure the newer multi-domain supporting header.inc.php is being used */
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();
$setup_tpl->set_var('lang_domain',lang('Domain'));
$setup_tpl->set_var('lang_delete',lang('Delete'));
@ -392,7 +392,7 @@
$setup_tpl->set_var('config_pass','');
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))
$default_port = $default_db_ports[$v];
}
@ -404,8 +404,8 @@
{
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('Importing old settings into the new format....') . '<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";
}
reset($GLOBALS['egw_domain']);
$default_domain = each($GLOBALS['egw_domain']);
@ -454,14 +454,14 @@
{
if($v == $GLOBALS['egw_domain'][$key]['db_type'])
{
$selected = ' selected ';
$selected = ' selected="selected" ';
$found_dbtype = true;
}
else
{
$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);
@ -485,7 +485,7 @@
}
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']['include_root'] = $realpath;
/* This is the basic include needed on each page for eGroupWare application compliance */
@ -504,7 +504,7 @@
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))
$default_port = $default_db_ports[$v];
}
@ -539,13 +539,14 @@
// now guessing better settings then the default ones
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']);
$updir = str_replace('/setup','',$this_dir);
$GLOBALS['egw_info']['server']['server_root'] = $updir;
$GLOBALS['egw_info']['server']['include_root'] = $updir;
}
$detected .= "</td></tr>\n";
$setup_tpl->set_var('detected',$detected);
/* 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'])
{
$setup_tpl->set_var('db_persistent_yes',' selected');
$setup_tpl->set_var('db_persistent_yes',' selected="selected"');
}
else
{
$setup_tpl->set_var('db_persistent_no',' selected');
$setup_tpl->set_var('db_persistent_no',' selected="selected"');
}
$selected = '';
@ -578,23 +579,23 @@
{
if($v == @$GLOBALS['egw_info']['server']['sessions_type'])
{
$selected = ' selected ';
$selected = ' selected="selected" ';
}
else
{
$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);
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
{
$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']);
@ -605,18 +606,18 @@
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
{
$setup_tpl->set_var('domain_selectbox_no',' selected');
$setup_tpl->set_var('domain_selectbox_no',' selected="selected"');
}
$errors = '';
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'])
. '</font>';
*/
@ -625,16 +626,15 @@
if(is_writeable('../header.inc.php') ||
(!file_exists('../header.inc.php') && is_writeable('../')))
{
$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[view]" value="'.lang('View').'"> '.lang('the file').'.</form>';
$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[view]" value="'.lang('View').'" /> '.lang('the file').'.';
}
else
{
$errors .= '<br>'
. 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').'">')
. '</form>';
$errors .= '<br />'
. 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').'" />');
}
// set domain and password for the continue button
@reset($GLOBALS['egw_domain']);
@ -676,7 +676,7 @@
$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_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_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'));

View File

@ -137,13 +137,13 @@
while(list($table,$null) = @each($phpgw_baseline))
{
$terror[$appname]['tables'][] = $table;
echo '<br>Adding app table: ' . $table;
echo '<br />Adding app table: ' . $table;
}
}
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']);
$GLOBALS['egw_setup']->deregister_app($terror[$appname]['name']);
@ -156,17 +156,17 @@
}
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') . '.';
$GLOBALS['setup_info'][$appname]['version'] = $terror[$appname]['version'];
$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');
exit;
}
@ -203,13 +203,13 @@
$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');
exit;
}
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']->set_var('appdata',lang('Application Data'));
@ -258,7 +258,7 @@
$GLOBALS['setup_tpl']->set_var('instimg','completed.png');
$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'];
$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'));
$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('detailadmin',lang('Details for Admin account'));

View File

@ -95,7 +95,7 @@
}
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']);
$updates = 0;
$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
$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__);
}
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_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_cancel',lang('Cancel'));
$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_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!'));
$installed_charsets = $translation->get_installed_charsets();
@ -169,7 +169,7 @@
$current_charset = $translation->system_charset;
}
$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
{
@ -188,7 +188,7 @@
{
$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
{

View File

@ -1,5 +1,6 @@
<!-- BEGIN header -->
<script>
<script type="text/javascript">
<!--
function check_all(which)
{
for (i=0; i<document.apps.elements.length; i++)
@ -17,20 +18,21 @@ function check_all(which)
}
}
}
// -->
</script>
<br>
<br />
<div align="center">
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<td align="center">{description}</td>
</tr>
</table>
<form name="apps" method="post" action="{action_url}">
<table width="90%" cellspacing="0" cellpadding="2">
<!-- END header -->
<!-- BEGIN app_header -->
<form name="apps" method="POST" action="{action_url}">
<tr class="th">
<td colspan="5" align="center">{appdata}</td>
<td colspan="4" align="center">{actions}</td>
@ -48,21 +50,21 @@ function check_all(which)
<tr>
<td bgcolor="{bg_color}" colspan="5">&nbsp;</td>
<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 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 bgcolor="{bg_color}">&nbsp;</td>
<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>
</tr>
<!-- END app_header -->
<!-- BEGIN apps -->
<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>{apptitle}&nbsp;</td>
<td>{currentver}&nbsp;</td>
@ -113,22 +115,22 @@ function check_all(which)
<tr>
<td bgcolor="{bg_color}" colspan="5">{debug} {lang_debug}</td>
<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 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 bgcolor="{bg_color}">&nbsp;</td>
<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>
</tr>
</table>
<table border="0" width="70%" cellspacing="0" cellpadding="2">
<tr>
<td colspan="2" align="center">
<input type="submit" name="submit" value="{submit}">
<input type="submit" name="cancel" value="{cancel}">
<input type="submit" name="submit" value="{submit}" />
<input type="submit" name="cancel" value="{cancel}" />
</td>
</tr>
</table>
@ -136,9 +138,7 @@ function check_all(which)
<!-- END app_footer -->
<!-- BEGIN footer -->
</tr>
</table>
<br>
<br />
<table width="100%" cellspacing="0">
<tr class="banner">
<td>&nbsp;</td>

View File

@ -1,5 +1,5 @@
<!-- 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">
<tr>
<td align="center">Select an application/module, or click 'Show all' to convert all tables.</td>
@ -9,7 +9,7 @@
</tr>
</table>
<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">
<td>&nbsp;</td>
<td>Name</td>
@ -19,7 +19,7 @@
<!-- BEGIN appitem -->
<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 colspan="2">{apptitle}&nbsp;</td>
</tr>
@ -30,11 +30,11 @@
<table width="60%" border="0" align="center" cellspacing="1" cellpadding="1">
<tr>
<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%">
<input type="submit" name="showall" value="{lang_showall}">
<input type="submit" name="showall" value="{lang_showall}" />
</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>
</form>
</table>

View File

@ -2,7 +2,7 @@
<!-- BEGIN header -->
<form method="POST" action="{action_url}">
<form method="post" action="{action_url}">
<table align="center" cellspacing="0" border="5" width="90%" >
<tr class="th">
<td colspan="2">&nbsp;{title}</td>
@ -16,23 +16,23 @@
</tr>
<tr class="row_off">
<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>{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>
</tr>
<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><input name="newsettings[files_dir]" value="{value_files_dir}" size="40"></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>
</tr>
<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><input name="newsettings[backup_dir]" value="{value_backup_dir}" size="40"></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>
</tr>
<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><input name="newsettings[webserver_url]" value="{value_webserver_url}" size="40"></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>
</tr>
<tr class="row_off">
@ -66,12 +66,12 @@
<tr class="row_on">
<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 class="row_off">
<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 class="row_on">
@ -85,7 +85,7 @@
</tr>
<!-- this is not working correct
<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>
<select name="newsettings[daytime_port]">
<option value="00"{selected_daytime_port_00}>{lang_00_(disable)}</option>
@ -97,33 +97,33 @@
-->
<tr class="row_off">
<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 class="row_on">
<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 class="row_off">
<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 class="row_on">
<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>
<!-- until they are working
<tr class="row_off">
<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 class="row_on">
<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>
-->
@ -197,21 +197,21 @@
<tr class="row_on">
<td>{lang_Allowed_migration_types_(comma-separated)}:</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>
</tr>
<tr class="row_off">
<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 class="row_on">
<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 class="row_off">
<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 class="row_on">
@ -249,7 +249,7 @@
<tr class="row_off">
<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 class="row_on">
@ -285,42 +285,42 @@
<tr class="row_on">
<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 class="row_off">
<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 class="row_on">
<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 class="row_off">
<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 class="row_on">
<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 class="row_off">
<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 class="row_on">
<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 class="row_off">
<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 class="row_on">
@ -351,11 +351,11 @@
</tr>
<tr class="row_off">
<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 class="row_on">
<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 class="row_off">
@ -368,7 +368,7 @@
<tr class="row_on">
<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 class="row_off">
@ -398,7 +398,7 @@
<tr class="row_on">
<td>
{lang_Select_where_you_want_to_store/retrieve_filesystem_information}:
<br>
<br />
({lang_file_type,_size,_version,_etc.})
</td>
<td>
@ -412,7 +412,7 @@
<tr class="row_off">
<td>
{lang_Select_where_you_want_to_store/retrieve_file_contents}:
<br>
<br />
({lang_Recommended:_Filesystem})
</td>
<td>
@ -438,8 +438,8 @@
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" name="submit" value="Submit">
<input type="submit" name="cancel" value="Cancel">
<input type="submit" name="submit" value="Submit" />
<input type="submit" name="cancel" value="Cancel" />
</td>
</tr>
</table>

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
<!-- begin db_backup.tpl -->
<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">
<!-- BEGIN setup_header -->
<tr bgcolor="#486591">

View File

@ -7,16 +7,16 @@
</div>
</div>
<div id="divPoweredBy"><br/><span>&nbsp;<a class="copyright" href="http://www.egroupware.org/">eGroupWare</a> {lang_version} {pgw_ver} </span></div>
<div id="divPoweredBy"><br /><span>&nbsp;<a class="copyright" href="http://www.egroupware.org/">eGroupWare</a> {lang_version} {pgw_ver} </span></div>
</body>
</html>
<!-- END footer.tpl -->
<!--<br/><br/>
<!--<br /><br />
</td>
</tr>
</tbody></table>
<br></td>
<br /></td>
<td width="15"></td>
</tr>
</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">
<html xml:lang="{lang_code}" xmlns="http://www.w3.org/1999/xhtml">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!--
HTML Coding Standards;
@ -59,7 +59,7 @@
</head>
<body>
<div id="divLogo"><a href="http://www.egroupware.org" target="_blank"><img src="../phpgwapi/templates/idots/images/logo-setup.png" border="0" alt="egroupware"/></a></div>
<div id="divLogo"><a href="http://www.egroupware.org" target="_blank"><img src="../phpgwapi/templates/idots/images/logo-setup.png" border="0" alt="egroupware" /></a></div>
<div id="divMain">
<div id="divAppIconBar">

View File

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

View File

@ -1,8 +1,8 @@
<!-- BEGIN header -->
<form action="{action_url}" method="POST">
<form action="{action_url}" method="post">
<table border="0" align="center" width="70%">
<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>
<!-- END header -->
@ -65,7 +65,7 @@
<tr bgcolor="#e6e6e6">
<td align="left" valign="top">
&nbsp;{select_apps}
<br>&nbsp;{note}
<br />&nbsp;{note}
</td>
<td>
<select name="s_apps[]" multiple size="10">
@ -78,8 +78,8 @@
<!-- BEGIN submit -->
<tr bgcolor="#e6e6e6">
<td colspan="2" align="center">
<input type="submit" name="submit" value="{form_submit}">
<input type="submit" name="cancel" value="{cancel}">
<input type="submit" name="submit" value="{form_submit}" />
<input type="submit" name="cancel" value="{cancel}" />
</td>
</tr>
<!-- END submit -->
@ -87,7 +87,7 @@
<!-- BEGIN cancel_only -->
<tr bgcolor="#e6e6e6">
<td colspan="2" align="center">
<input type="submit" name="cancel" value="{cancel}">
<input type="submit" name="cancel" value="{cancel}" />
</td>
</tr>
<!-- 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">
{V_login_stage_header}
<tr class="row_on" >
<td colspan="2">&nbsp;</strong></td>
<td colspan="2">&nbsp;</td>
</tr>
<tr class="th">
<td bgcolor="#cccccc" colspan="2">&nbsp;<strong>{lang_header_login}</strong></td>
@ -18,16 +18,16 @@
<table>
<tr>
<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>
</tr>
<tr>
<td>{lang_header_password}:</td>
<td><input type="password" name="FormPW" value=""></td>
<td><input type="password" name="FormPW" value="" /></td>
</tr>
</table>
<input type="submit" name="Submit" value="Login">
<input type="hidden" name="HeaderLogin" value="Login">
<input type="submit" name="Submit" value="Login" />
<input type="hidden" name="HeaderLogin" value="Login" />
</form>
</td>
</tr>

View File

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

View File

@ -17,35 +17,37 @@
</script>
<table border="0" width="90%" cellspacing="0" cellpadding="0" align="center">
<tbody><tr><td>
<tbody>
{lang_select}
{detected}
{detected}
<tr class="th">
<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">
<th colspan="2">{lang_settings}</th>
</tr>
<form name="domain_settings" action="manageheader.php" method="post">
<input type="hidden" name="setting[write_config]" value="true">
<tr>
<td colspan="2"><b>{lang_serverroot}</b>
<br><input type="text" name="setting[server_root]" size="80" value="{server_root}">
</td>
<td colspan="2"><b>{lang_serverroot}</b><br /><input type="text" name="setting[server_root]" size="80" value="{server_root}" /></td>
</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>
<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>
<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>
<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>
<td><b>{lang_persist}</b><br>
<select type="checkbox" name="setting[db_persistent]">
<td><b>{lang_persist}</b><br />
<select name="setting[db_persistent]">
<option value="True"{db_persistent_yes}>{lang_Yes}</option>
<option value="False"{db_persistent_no}>{lang_No}</option>
</select>
@ -53,7 +55,7 @@
<td>{lang_persistdescr}</td>
</tr>
<tr>
<td><b>{lang_sesstype}</b><br>
<td><b>{lang_sesstype}</b><br />
<select name="setting[sessions_type]">
{session_options}
</select>
@ -61,7 +63,7 @@
<td>{lang_sesstypedescr}</td>
</tr>
<tr>
<td><b>{lang_enablemcrypt}</b><br>
<td><b>{lang_enablemcrypt}</b><br />
<select name="setting[enable_mcrypt]">
<option value="True"{mcrypt_enabled_yes}>{lang_Yes}</option>
<option value="False"{mcrypt_enabled_no}>{lang_No}</option>
@ -70,15 +72,15 @@
<td>{lang_mcrypt_warning}</td>
</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>
</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>
</tr>
<tr>
<td><b>{lang_domselect}</b><br>
<td><b>{lang_domselect}</b><br />
<select name="setting[domain_selectbox]">
<option value="True"{domain_selectbox_yes}>{lang_Yes}</option>
<option value="False"{domain_selectbox_no}>{lang_No}</option>
@ -87,39 +89,50 @@
</tr>
{domains}{comment_l}
<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>
<td colspan="2">{errors}</td>
</tr>
{formend}
</tbody>
</table>
</form>
</td>
</tr>
<tr>
<td>
<form action="index.php" method="post">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<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>
<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 class="banner">
<td colspan="3">&nbsp;</td>
</tr>
</tbody>
</table>
</form>
</td>
</tr>
</tbody>
</table>
</body>
</html>
<!-- END manageheader -->
<!-- BEGIN domain -->
<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>
<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]']);">
{dbtype_options}
</select>
@ -127,26 +140,25 @@
<td>{lang_whichdb}</td>
</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>
<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>
<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>
<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>
<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>
<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>
<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>
</tr>
<!-- END domain -->

View File

@ -1,5 +1,5 @@
<!-- BEGIN header -->
<br>
<br />
<div align="center">
<table border="0" width="70%" cellspacing="0" cellpadding="2">
<tr>
@ -10,7 +10,7 @@
<!-- END header -->
<!-- BEGIN app_header -->
<form method="POST" action="{action_url}">
<form method="post" action="{action_url}">
<tr>
<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>
@ -25,7 +25,7 @@
<!-- BEGIN apps -->
<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>{apptitle}&nbsp;</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">
<tr>
<td colspan="2" align="center">
<input type="submit" name="submit" value="{submit}">
<input type="submit" name="cancel" value="{cancel}">
<input type="submit" name="submit" value="{submit}" />
<input type="submit" name="cancel" value="{cancel}" />
</td>
</tr>
</table>

View File

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

View File

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

View File

@ -14,7 +14,7 @@
</tr>
<tr>
<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>
{config_table_data}
@ -33,7 +33,7 @@
</tr>
<tr>
<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>
{admin_table_data}
@ -46,7 +46,7 @@
</tr>
<tr>
<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>
{lang_table_data}
@ -59,7 +59,7 @@
</tr>
<tr>
<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>
{apps_table_data}
@ -72,7 +72,7 @@
</tr>
<tr>
<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>
{backup_table_data}

View File

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

View File

@ -1,7 +1,7 @@
<!-- begin system_charset.tpl -->
<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%">
<tr bgcolor="#486591">
<td colspan="2">
@ -36,8 +36,8 @@
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" name="convert" value="{lang_convert}"> &nbsp;
<input type="submit" name="cancel" value="{lang_cancel}">
<input type="submit" name="convert" value="{lang_convert}" /> &nbsp;
<input type="submit" name="cancel" value="{lang_cancel}" />
</td>
</tr>
</table>