diff --git a/admin/inc/hook_config.inc.php b/admin/inc/hook_config.inc.php index 84b2b14277..333a79a9fa 100644 --- a/admin/inc/hook_config.inc.php +++ b/admin/inc/hook_config.inc.php @@ -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 = '' . "\n"; + $out = '' . "\n"; } } else { - $out = '' . "\n"; + $out = '' . "\n"; } return $out; } diff --git a/phpgwapi/inc/class.egw_db.inc.php b/phpgwapi/inc/class.egw_db.inc.php index f0c6dbe3df..a4fedcf128 100644 --- a/phpgwapi/inc/class.egw_db.inc.php +++ b/phpgwapi/inc/class.egw_db.inc.php @@ -798,17 +798,17 @@ if ($file) { - printf("
File: %s",$file); + printf("
File: %s",$file); } if ($line) { - printf("
Line: %s",$line); + printf("
Line: %s",$line); } - printf("
Function: %s\n",function_backtrace(2)); + printf("
Function: %s

\n",function_backtrace(2)); if ($this->Halt_On_Error != "report") { - echo "

Session halted."; + echo "

Session halted.

"; if (is_object($GLOBALS['egw']->common)) { $GLOBALS['egw']->common->phpgw_exit(True); diff --git a/phpgwapi/inc/class.html.inc.php b/phpgwapi/inc/class.html.inc.php index 8b94be25e7..d94d423fa0 100644 --- a/phpgwapi/inc/class.html.inc.php +++ b/phpgwapi/inc/class.html.inc.php @@ -349,7 +349,7 @@ class html } } } - return '\n"; } diff --git a/setup/applications.php b/setup/applications.php index 3c1ebed9fb..82aa88b89e 100644 --- a/setup/applications.php +++ b/setup/applications.php @@ -140,22 +140,22 @@ if ($setup_info[$appname]['tables']) { $GLOBALS['egw_setup']->process->droptables($terror,$DEBUG); - echo '
' . $app_title . ' ' . lang('tables dropped') . '.'; + echo '
' . $app_title . ' ' . lang('tables dropped') . '.'; } $GLOBALS['egw_setup']->deregister_app($setup_info[$appname]['name']); - echo '
' . $app_title . ' ' . lang('deregistered') . '.'; + echo '
' . $app_title . ' ' . lang('deregistered') . '.'; if ($setup_info[$appname]['hooks']) { $GLOBALS['egw_setup']->deregister_hooks($setup_info[$appname]['name']); - echo '
' . $app_title . ' ' . lang('hooks deregistered') . '.'; + echo '
' . $app_title . ' ' . lang('hooks deregistered') . '.'; } $do_langs = true; if ($historylog->delete($appname)) { - echo '
' . $app_title . ' ' . lang('Historylog removed') . '.'; + echo '
' . $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 '
' . $app_title . ' ' + echo '
' . $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 '
' . $app_title . ' ' . lang('registered') . '.'; + echo '
' . $app_title . ' ' . lang('registered') . '.'; if ($setup_info[$appname]['hooks']) { $GLOBALS['egw_setup']->register_hooks($setup_info[$appname]['name']); - echo '
' . $app_title . ' ' . lang('hooks registered') . '.'; + echo '
' . $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 '
' . $app_title . ' ' . lang('tables upgraded') . '.'; + echo '
' . $app_title . ' ' . lang('tables upgraded') . '.'; // The process_upgrade() function also handles registration } else { - echo '
' . $app_title . ' ' . lang('upgraded') . '.'; + echo '
' . $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 '
' . lang('Go back') . ''; + echo '
' . lang('Go back') . ''; //$setup_tpl->pparse('out','submit'); $setup_tpl->pparse('out','footer'); exit; @@ -275,7 +275,7 @@ } } - echo '
' . lang('Go back') . ''; + echo '
' . lang('Go back') . ''; $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 '
'; + echo '
'; echo lang('to a version it does not know about') . '.'; - echo '
'; + echo '
'; 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 '
'; + echo '
'; echo lang('Some or all of its tables are missing') . '.'; - echo '
'; + echo '
'; 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') . ':
' . "\n"; + echo lang('because it depends upon') . ':
' . "\n"; list($depapp,$depver) = parsedep($setup_info[$resolve]['depends'],False); $depapp_count = count($depapp); for ($i=0; $i<$depapp_count; $i++) { - echo '
' . $depapp[$i] . ': '; + echo '
' . $depapp[$i] . ': '; $list = ''; foreach($depver[$i] as $x => $y) { @@ -334,7 +334,7 @@ $list = substr($list,0,-2); echo "$list\n"; } - echo '

' . lang('The table definition was correct, and the tables were installed') . '.'; + echo '

' . 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,
or the table definition was incorrect') . ".\n" + echo lang('because it requires manual table installation,
or the table definition was incorrect') . ".\n" . lang("Please check for sql scripts within the application's directory") . '.'; } - echo '
' . lang('However, the application is otherwise installed') . '.'; + echo '
' . 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 '
'; + echo '
'; echo lang('If the application has no defined tables, selecting upgrade should remedy the problem') . '.'; - echo '
' . lang('However, the application is otherwise installed') . '.'; + echo '
' . lang('However, the application is otherwise installed') . '.'; } - echo '
' . lang('Go back') . ''; + echo '
' . lang('Go back') . ''; $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',''); + $setup_tpl->set_var('debug',''); $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',''); + $setup_tpl->set_var('remove',''); $setup_tpl->set_var('upgrade',' '); 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',''); + $setup_tpl->set_var('remove',''); $setup_tpl->set_var('resolution','' . lang('Potential Problem') . ''); $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',''); + $setup_tpl->set_var('install',''); $setup_tpl->set_var('upgrade',' '); $status = lang('Please install') . ' - ' . $value['status']; } @@ -472,8 +472,8 @@ $setup_tpl->set_var('bg_color','CCCCFF'); $setup_tpl->set_var('install',' '); // TODO display some info about breakage if you mess with this app - $setup_tpl->set_var('upgrade',''); - $setup_tpl->set_var('remove',''); + $setup_tpl->set_var('upgrade',''); + $setup_tpl->set_var('remove',''); $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',' '); - $setup_tpl->set_var('remove',''); - $setup_tpl->set_var('upgrade',''); + $setup_tpl->set_var('remove',''); + $setup_tpl->set_var('upgrade',''); $setup_tpl->set_var('resolution','' . lang('Possible Solutions') . ''); $status = lang('Version Mismatch') . ' - ' . $value['status']; break; diff --git a/setup/check_install.php b/setup/check_install.php index fbadebe5af..5bf881846f 100644 --- a/setup/check_install.php +++ b/setup/check_install.php @@ -38,9 +38,9 @@ exit; } } - $passed_icon = ' '; - $error_icon = ''; - $warning_icon = ' '; + $passed_icon = 'Passed'; + $error_icon = 'Error'; + $warning_icon = 'Warning'; } else { @@ -98,42 +98,42 @@ ), 'mysql' => array( 'func' => 'extension_check', - 'warning' => "
" . lang('The %1 extension is needed, if you plan to use a %2 database.','mysql','MySQL').'
' + 'warning' => "
" . lang('The %1 extension is needed, if you plan to use a %2 database.','mysql','MySQL').'
' ), 'pgsql' => array( 'func' => 'extension_check', - 'warning' => '
' . lang('The %1 extension is needed, if you plan to use a %2 database.','pgsql','pgSQL').'
' + 'warning' => '
' . lang('The %1 extension is needed, if you plan to use a %2 database.','pgsql','pgSQL').'
' ), 'mssql' => array( 'func' => 'extension_check', - 'warning' => '
' . lang('The %1 extension is needed, if you plan to use a %2 database.','mssql','MsSQL') . '
', + 'warning' => '
' . lang('The %1 extension is needed, if you plan to use a %2 database.','mssql','MsSQL') . '
', 'win_only' => True ), 'odbc' => array( 'func' => 'extension_check', - 'warning' => '
' . lang('The %1 extension is needed, if you plan to use a %2 database.','odbc','MaxDB, MsSQL or Oracle') . '
', + 'warning' => '
' . lang('The %1 extension is needed, if you plan to use a %2 database.','odbc','MaxDB, MsSQL or Oracle') . '
', ), 'oci8' => array( 'func' => 'extension_check', - 'warning' => '
' . lang('The %1 extension is needed, if you plan to use a %2 database.','oci','Oracle') . '
', + 'warning' => '
' . lang('The %1 extension is needed, if you plan to use a %2 database.','oci','Oracle') . '
', ), 'mbstring' => array( 'func' => 'extension_check', - 'warning' => '
' . lang('The mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets.') . "
" + 'warning' => '
' . lang('The mbstring extension is needed to fully support unicode (utf-8) or other multibyte-charsets.') . "
" ), 'mbstring.func_overload' => array( 'func' => 'php_ini_check', 'value' => 7, - 'warning' => '
' . lang('The mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets.') . "
", + 'warning' => '
' . lang('The mbstring.func_overload = 7 is needed to fully support unicode (utf-8) or other multibyte-charsets.') . "
", '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' => '
' . lang('The imap extension is needed by the two email apps (even if you use email with pop3 as protocoll).') . '
' + 'warning' => '
' . lang('The imap extension is needed by the two email apps (even if you use email with pop3 as protocoll).') . '
' ), 'session' => array( 'func' => 'extension_check', - 'warning' => '
' . lang('The session extension is needed to use php4 session (db-sessions work without).') . "
" + 'warning' => '
' . lang('The session extension is needed to use php4 session (db-sessions work without).') . "
" ), '.' => 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'))."

\n"; + echo '
'.($available ? $passed_icon : $warning_icon).' '.lang('Checking extension %1 is loaded or loadable',$name).': '.($available ? lang('True') : lang('False'))."
\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)."
\n"; + $msg = lang('Checking file-permissions of %1 for %2: %3',$rel_name,$checks,$perms)."
\n"; if (!file_exists($name)) { - echo $error_icon . $msg . lang('%1 does not exist !!!',$rel_name)."

\n"; + echo '
'. $error_icon . '' . $msg . lang('%1 does not exist !!!',$rel_name)."
\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.')."
\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'))."
\n"; + echo '
'.$error_icon.' '.$msg.' '.lang('%1 is %2%3 !!!',$rel_name,$args['is_writable']?lang('not').' ':'',lang('writable by the webserver'))."
\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'))."
\n"; + echo '
'.$error_icon.' '.$msg.' '.lang('%1 is %2%3 !!!',$rel_name,$args['is_readable']?lang('not').' ':'',lang('readable by the webserver'))."
\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'))."
\n"; + echo '
'.$error_icon.' '.$msg.' '.lang('%1 is %2%3 !!!',$rel_name,$args['is_world_readable']?lang('not').' ':'',lang('world readable'))."
\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'))."
\n"; + echo '
'.$error_icon.' '.$msg.' '.lang('%1 is %2%3 !!!',$rel_name,$args['is_world_writable']?lang('not').' ':'',lang('world writable'))."
\n"; $Ok = False; } if ($Ok && !$warning && $verbose) @@ -322,7 +322,7 @@ { if ($verbose) { - echo "
" . lang('This might take a while, please wait ...')."
\n"; + echo "
" . lang('This might take a while, please wait ...')."
\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:
ini_get('$name')='$ini_value'$ini_value_verbose
\n"; + $msg = ' '.lang('Checking php.ini').": $name $check $verbose_value: ini_get('$name')='$ini_value'$ini_value_verbose"; if ($result) { - echo $passed_icon.$msg; + echo "
".$passed_icon.$msg."
\n"; } if (!$result) { if (isset($args['warning'])) { - echo $warning_icon.$msg.$args['warning']."
\n"; + echo "
".$warning_icon.' '.$msg.'
'.$args['warning']."
\n"; } if (isset($args['error'])) { - echo $error_icon.$msg.$args['error']."
\n"; + echo "
".$error_icon.' '.$msg.'
'.$args['error']."
\n"; } if (isset($args['safe_mode']) && $safe_mode || @$args['change']) { if (!isset($args['warning']) && !isset($args['error'])) { - echo $error_icon.$msg."
"; + echo '
'.$error_icon.' '.$msg.'
'; } - echo "
\n"; - echo '*** '.lang('Please make the following change in your php.ini').' ('.get_php_ini().'): '.(@$args['safe_mode']?$args['safe_mode']:$args['change'])."
\n"; + echo "
\n"; + echo '*** '.lang('Please make the following change in your php.ini').' ('.get_php_ini().'): '.(@$args['safe_mode']?$args['safe_mode']:$args['change'])."
\n"; echo '*** '.lang('AND reload your webserver, so the above changes take effect !!!')."
\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'))."
\n"; + echo "
".($available ? $passed_icon : $warning_icon).' '.lang('Checking for GD support...').': '.($available ? lang('True') : lang('False'))."
\n"; if (!$available) { @@ -461,8 +461,8 @@ { echo '

Please Select your language '.lang_select(True,'en')."

\n"; } - echo '

'.lang('The first step in installing eGroupWare is to ensure your environment has the necessary settings to correctly run the application.'); - echo '

'.lang('We will now run a series of tests, which may take a few minutes. Click the link below to proceed.'); + echo '

'.lang('The first step in installing eGroupWare is to ensure your environment has the necessary settings to correctly run the application.').'

'; + echo '

'.lang('We will now run a series of tests, which may take a few minutes. Click the link below to proceed.').'

'; echo '

'.lang('Run installation tests').'

'; $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 '
'.lang('Return to Setup')."\n"; + echo '
'.lang('Return to Setup')."\n"; } $setup_tpl->pparse('out','T_footer'); //echo "\n\n"; diff --git a/setup/config.php b/setup/config.php index fac078a825..563631e24c 100644 --- a/setup/config.php +++ b/setup/config.php @@ -94,14 +94,14 @@ call_user_func($setting,$newsettings); if($GLOBALS['config_error']) { - $GLOBALS['error'] .= '
' . lang($GLOBALS['config_error']) . ' '; + $GLOBALS['error'] .= '
' . lang($GLOBALS['config_error']) . ' '; $GLOBALS['config_error'] = ''; /* Bail out, stop writing config data */ break; } else { - /* echo '
Updating: ' . $setting . '=' . $value; */ + /* echo '
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.
' + lang('There was a problem trying to connect to your LDAP server.
' .'please check your LDAP server configuration') . '.'); } diff --git a/setup/db_backup.php b/setup/db_backup.php index 23d093b6c0..b93358a705 100644 --- a/setup/db_backup.php +++ b/setup/db_backup.php @@ -218,7 +218,7 @@ 'lang_year' => lang('year'), 'lang_month' => lang('month'), 'lang_day' => lang('day'), - 'lang_dow' => lang('day of week
(0-6, 0=sunday)'), + 'lang_dow' => lang('day of week
(0-6, 0=sunday)'), 'lang_hour' => lang('hour (0-24)'), 'lang_minute' => lang('minute'), 'lang_next_run' => lang('next run'), diff --git a/setup/inc/class.setup_html.inc.php b/setup/inc/class.setup_html.inc.php index 60e8f743bf..4419b1978f 100644 --- a/setup/inc/class.setup_html.inc.php +++ b/setup/inc/class.setup_html.inc.php @@ -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" . '
' . "\n" - . '' . "\n" + . '' . "\n" . '
' . "\n" . $post_frm_blurb . "\n"; return $simple_form; @@ -226,7 +226,7 @@ { foreach($GLOBALS['egw_domain'] as $domain => $data) { - $domains .= "\n"; + $domains .= "\n"; } $GLOBALS['setup_tpl']->set_var('domains',$domains); diff --git a/setup/inc/functions.inc.php b/setup/inc/functions.inc.php index 263404c537..438ffad51a 100644 --- a/setup/inc/functions.inc.php +++ b/setup/inc/functions.inc.php @@ -101,7 +101,7 @@ { $ConfigLang = get_var('ConfigLang',Array('POST','COOKIE')); } - $select = '' . "\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 .= '' . "\n"; } diff --git a/setup/inc/hook_config.inc.php b/setup/inc/hook_config.inc.php index 4cd717ac35..dee7c4ce9b 100644 --- a/setup/inc/hook_config.inc.php +++ b/setup/inc/hook_config.inc.php @@ -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 = '' . "\n"; + $out = '' . "\n"; } } else { - $out = '' . "\n"; + $out = '' . "\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 { diff --git a/setup/index.php b/setup/index.php index a00a92bb84..e9ecee308a 100644 --- a/setup/index.php +++ b/setup/index.php @@ -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
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

Please upgrade to at least version %1','4.1')); + lang('You appear to be running an old version of PHP
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

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') - . '
'.lang('Login to mysql -') - . '
[user@server user]# mysql -u root -p
' + . '
'.lang('Login to mysql -') + . '
[user@server user]# mysql -u root -p
' . lang('Create the empty database and grant user permissions -') - . "
mysql> create database $info[db_name];" - . "
mysql> grant all on " . $info['db_name'] + . "
mysql> create database $info[db_name];" + . "
mysql> grant all on " . $info['db_name'] . ".* to " . $info['db_user'] . "@localhost identified by '" . $info['db_pass'] . "';"); $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') - . '
'.lang('Start the postmaster') - . "
[user@server user]# postmaster -i -D /home/[username]/[dataDir]
" + . '
'.lang('Start the postmaster') + . "
[user@server user]# postmaster -i -D /home/[username]/[dataDir]
" . lang('Create the empty database -') - . "
[user@server user]# createdb " . $info['db_name'] . ""); + . "
[user@server user]# createdb " . $info['db_name'] . ""); $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.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
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.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
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 highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data.')); + $setup_tpl->set_var('backupwarn',lang('but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data.')); $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?"
\n":'').lang("Your files directory '%1' %2",$config['files_dir'],$error_msg); + $config_msg .= ($config_msg?"
\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?"
\n":'').lang("Your backup directory '%1' %2",$config['backup_dir'],$error_msg); + $config_msg .= ($config_msg?"
\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
'), - 'POST','lang.php', + lang('You do not have any languages installed. Please install one now
'), + '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
') . lang('Currently installed languages: %1
',implode(', ',$langs_list)), - 'POST','lang.php', + lang('This stage is completed
') . lang('Currently installed languages: %1
',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) ? ''.lang('The following applications need to be upgraded:').' '.implode(', ',$to_upgrade) : - lang('This stage is completed
'), - '','applications.php', + lang('This stage is completed
'), + '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
')*/, - '','db_backup.php', + ''/*lang('This stage is completed
')*/, + 'post','db_backup.php', 'submit',lang('backup and restore'), '')); break; diff --git a/setup/lang.php b/setup/lang.php index 20482f673c..bd9bf175e1 100644 --- a/setup/lang.php +++ b/setup/lang.php @@ -57,7 +57,7 @@ $tbl_width = @$newinstall ? '60%' : '80%'; $td_colspan = @$newinstall ? '1' : '2'; $td_align = @$newinstall ? ' align="center"' : ''; - $hidden_var1 = @$newinstall ? '' : ''; + $hidden_var1 = @$newinstall ? '' : ''; if (!@$newinstall && !isset($GLOBALS['egw_info']['setup']['installed_langs'])) { @@ -72,7 +72,7 @@ $select_box_langs = @$select_box_langs .'' ."\n"; } @@ -104,7 +104,7 @@ { $_f_buffer = split("[/\\]", $badline['appfile']); $str .= lang('Application: %1, File: %2, Line: "%3"',''.$_f_buffer[count($_f_buffer)-3].'', - ''.$_f_buffer[count($_f_buffer)-1].'',$badline['line'])."
\n"; + ''.$_f_buffer[count($_f_buffer)-1].'',$badline['line'])."
\n"; } $setup_tpl->set_var('V_alert_word', lang('Rejected lines')); $setup_tpl->set_var('V_alert_msg', $str); diff --git a/setup/lang/phpgw_de.lang b/setup/lang/phpgw_de.lang index db0f147840..54f12a644c 100644 --- a/setup/lang/phpgw_de.lang +++ b/setup/lang/phpgw_de.lang @@ -7,7 +7,7 @@ 13 (ntp) setup de 13 (ntp) 80 (http) setup de 80 (http) charset to use (use utf-8 if you plan to use languages with different charsets): setup de Zeichensatz (benutzen sie utf-8 wenn sie planen Sprachen mit verschiedenen Zeichensätzen zu verwenden) -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup de Dies wird 1 Admin- und 3 Demo-Benutzerkonten anlegen.
Die Benutzernamen/Passwörter sind: demo/guest, demo2/guest und demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup de Dies wird 1 Admin- und 3 Demo-Benutzerkonten anlegen.
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,
or the table definition was incorrect setup de weil es manuelle Installation der Tabelle erfordert,
oder die Tabellen-definition war nicht korrekt +because it requires manual table installation,
or the table definition was incorrect setup de weil es manuelle Installation der Tabelle erfordert,
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 highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup de Aber wir raten Ihnen dringend, eine Sicherungskopie anzulegen für den Fall, dass dieses Skript Ihre bestehenden Daten beschädigt!
Diese automatisierten Skripts können leicht Ihre Daten beschädigen!. +but we highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup de Aber wir raten Ihnen dringend, eine Sicherungskopie anzulegen für den Fall, dass dieses Skript Ihre bestehenden Daten beschädigt!
Diese automatisierten Skripts können leicht Ihre Daten beschädigen!. cancel setup de Abbrechen -cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup de Kann die Datei header.inc.php wegen unzureichenden Zugriffsrechten nicht erzeugen.
Stattdessen können Sie die Datei %1. +cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup de Kann die Datei header.inc.php wegen unzureichenden Zugriffsrechten nicht erzeugen.
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
setup de Gegenwärtig installierte Sprachen: %1
+currently installed languages: %1
setup de Gegenwärtig installierte Sprachen: %1
database successfully converted from '%1' to '%2' setup de Datenbank erfolgreich von "%1" nach "%2" konvertiert -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup de Port für Datum/Zeitabfragen
Wenn der Port 13 verwendet wird, bitte VOR dem Absenden die Firewallregeln dementsprechend setzen.
(Port 13/Host: 129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup de Port für Datum/Zeitabfragen
Wenn der Port 13 verwendet wird, bitte VOR dem Absenden die Firewallregeln dementsprechend setzen.
(Port 13/Host: 129.6.15.28) day setup de Tag -day of week
(0-6, 0=sunday) setup de Wochentag
(0-6, 0=Sonntag) +day of week
(0-6, 0=sunday) setup de Wochentag
(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
encryption (requires mcrypt) setup de Zufallstext zur Verschlüsselung der Anwendungssitzung
(benötigt mcrypt) -enter the full path for temporary files.
examples: /tmp, c:\temp setup de Vollständiger Pfad für temporäre Dateien.
Beispiel: /tmp, C:\TEMP -enter the full path for temporary files.
examples: /tmp, c:temp setup de Vollständiger Pfad für temporäre Dateien.
Beispiel: /tmp, C:\TEMP -enter the full path for users and group files.
examples: /files, e:\files setup de Vollständiger Pfad für Benutzer- und Gruppendateien.
Beispiel: /files, E:\Files -enter the full path for users and group files.
examples: /files, e:files setup de Vollständiger Pfad für Benutzer- und Gruppendateien.
Beispiel: /files, E:\Files -enter the full path to the backup directory.
if empty: files directory setup de Vollständiger Pfad für das Datensicherungsverzeichnis.
Wenn leer: Dateiverzeichnis +enter some random text for app_session
encryption (requires mcrypt) setup de Zufallstext zur Verschlüsselung der Anwendungssitzung
(benötigt mcrypt) +enter the full path for temporary files.
examples: /tmp, c:\temp setup de Vollständiger Pfad für temporäre Dateien.
Beispiel: /tmp, C:\TEMP +enter the full path for temporary files.
examples: /tmp, c:temp setup de Vollständiger Pfad für temporäre Dateien.
Beispiel: /tmp, C:\TEMP +enter the full path for users and group files.
examples: /files, e:\files setup de Vollständiger Pfad für Benutzer- und Gruppendateien.
Beispiel: /files, E:\Files +enter the full path for users and group files.
examples: /files, e:files setup de Vollständiger Pfad für Benutzer- und Gruppendateien.
Beispiel: /files, E:\Files +enter the full path to the backup directory.
if empty: files directory setup de Vollständiger Pfad für das Datensicherungsverzeichnis.
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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup de URL zur eGroupWare Installation.
Beispiel: http://www.domain.com/egroupware or /egroupware
keinen nachfolgenden Slash / +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup de URL zur eGroupWare Installation.
Beispiel: http://www.domain.com/egroupware or /egroupware
keinen nachfolgenden Slash / 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup de Wählen Sie eine Applikation, geben Sie eine Zielversion ein, dann bestätigen Sie den Vorgang.
Wenn Sie keine Version angeben, werden nur die Basis-Tabellen der Applikation installiert werden.
DIES WIRD ZUERST ALLE TABELLEN DER APPLI +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup de Wählen Sie eine Applikation, geben Sie eine Zielversion ein, dann bestätigen Sie den Vorgang.
Wenn Sie keine Version angeben, werden nur die Basis-Tabellen der Applikation installiert werden.
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 < 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 < 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. 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.
please check your ldap server configuration setup de Es gab ein Problem bei dem Versuch, eine Verbindung mit Ihrem LDAP-Server aufzubauen.
Bitte überprüfen Sie die Konfiguration Ihres LDAP-Servers. -there was a problem trying to connect to your ldap server.
setup de Es gab ein Problem eine Verbindung zu Ihrem LDAP-Server herzustellen.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup de Es gab ein Problem eine Verbindung zu Ihrem LDAP-Server herzustellen.
Bitte überprüfen Sie die Konfiguration Ihres LDAP-Servers. +there was a problem tring to connect to your ldap server.
please check your ldap server configuration setup de Es gab ein Problem bei dem Versuch, eine Verbindung mit Ihrem LDAP-Server aufzubauen.
Bitte überprüfen Sie die Konfiguration Ihres LDAP-Servers. +there was a problem trying to connect to your ldap server.
setup de Es gab ein Problem eine Verbindung zu Ihrem LDAP-Server herzustellen.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup de Es gab ein Problem eine Verbindung zu Ihrem LDAP-Server herzustellen.
Bitte überprüfen Sie die Konfiguration Ihres LDAP-Servers. this has to be outside the webservers document-root!!! setup de Muss auß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.
note: the default has been randomly generated. setup de Das sollte ungefähr 30 Zeichen lang sein
Hinweis: Die Vorgabe wurde zufällig erzeugt. -this stage is completed
setup de Dieser Schritt ist abgeschlossen
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup de Das sollte ungefähr 30 Zeichen lang sein
Hinweis: Die Vorgabe wurde zufällig erzeugt. +this stage is completed
setup de Dieser Schritt ist abgeschlossen
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
when admins login ? setup de Soll eGroupWare nach neuen Versionen suchen,
wenn sich ein Administrator anmeldet ? +would you like egroupware to check for a new version
when admins login ? setup de Soll eGroupWare nach neuen Versionen suchen,
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
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.
Diese Versionen werden nicht länger unterstützt, und es gibt keinen Aktualisierungs-Pfad für Sie im Einrichtung-Programm.
Sie möchten vieleicht erst auf -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup de Es sieht so aus als ob Sie eine alte PHP-Version benutzen
Es ist notwendig auf eine neue Version zu aktualisieren.
Ältere PHP-Versionen könnten eGroupWare (wenn überhaupt) nicht korrekt ausführen.

Biite aktualisieren Sie mindestens auf Version %1 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
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.
Diese Versionen werden nicht länger unterstützt, und es gibt keinen Aktualisierungs-Pfad für Sie im Einrichtung-Programm.
Sie möchten vieleicht erst auf +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup de Es sieht so aus als ob Sie eine alte PHP-Version benutzen
Es ist notwendig auf eine neue Version zu aktualisieren.
Ältere PHP-Versionen könnten eGroupWare (wenn überhaupt) nicht korrekt ausführen.

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.
setup de Sie sind bereit für diesen Schritt, aber dieser Abschnitt wurde noch nicht geschrieben.
+you are ready for this stage, but this stage is not yet written.
setup de Sie sind bereit für diesen Schritt, aber dieser Abschnitt wurde noch nicht geschrieben.
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
setup de Sie installierten noch keine Sprache. bitte installieren Sie nun eine.
-you have not created your header.inc.php yet!
you can create it now. setup de Sie haben bisher noch keine header.inc.php angelegt!
Sie können sie jetzt anlegen. +you do not have any languages installed. please install one now
setup de Sie installierten noch keine Sprache. bitte installieren Sie nun eine.
+you have not created your header.inc.php yet!
you can create it now. setup de Sie haben bisher noch keine header.inc.php angelegt!
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.
warning!
make backups! setup de Ihre header.inc.php muss aktualisiert werden.
WARNUNG!
MACHEN SIE EINE SICHERUNG! +your header.inc.php needs upgrading.
warning!
make backups! setup de Ihre header.inc.php muss aktualisiert werden.
WARNUNG!
MACHEN SIE EINE SICHERUNG! 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! diff --git a/setup/lang/phpgw_en.lang b/setup/lang/phpgw_en.lang index b04c501f45..d054c7147d 100644 --- a/setup/lang/phpgw_en.lang +++ b/setup/lang/phpgw_en.lang @@ -7,7 +7,7 @@ 13 (ntp) setup en 13 (ntp) 80 (http) setup en 80 (http) charset to use (use utf-8 if you plan to use languages with different charsets): setup en charset to use (use utf-8 if you plan to use languages with different charsets): -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup en This will create 1 admin account and 3 demo accounts
The username/passwords are: demo/guest, demo2/guest and demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup en This will create 1 admin account and 3 demo accounts
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,
or the table definition was incorrect setup en because it requires manual table installation,
or the table definition was incorrect +because it requires manual table installation,
or the table definition was incorrect setup en because it requires manual table installation,
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 highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup en but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. +but we highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup en but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. cancel setup en Cancel -cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup en Cannot create the header.inc.php due to file permission restrictions.
Instead you can %1 the file. +cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup en Cannot create the header.inc.php due to file permission restrictions.
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
setup en Currently installed languages: %1
+currently installed languages: %1
setup en Currently installed languages: %1
database successfully converted from '%1' to '%2' setup en Database successfully converted from '%1' to '%2' -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup en Datetime port.
If using port 13, please set firewall rules appropriately before submitting this page.
(Port: 13 / Host: 129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup en Datetime port.
If using port 13, please set firewall rules appropriately before submitting this page.
(Port: 13 / Host: 129.6.15.28) day setup en day -day of week
(0-6, 0=sunday) setup en day of week
(0-6, 0=sunday) +day of week
(0-6, 0=sunday) setup en day of week
(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
encryption (requires mcrypt) setup en Enter some random text for app_session
encryption (requires mcrypt) -enter the full path for temporary files.
examples: /tmp, c:\temp setup en Enter the full path for temporary files.
Examples: /tmp, C:\TEMP -enter the full path for users and group files.
examples: /files, e:\files setup en Enter the full path for users and group files.
Examples: /files, E:\FILES -enter the full path to the backup directory.
if empty: files directory setup en Enter the full path to the backup directory.
if empty: files directory +enter some random text for app_session
encryption (requires mcrypt) setup en Enter some random text for app_session
encryption (requires mcrypt) +enter the full path for temporary files.
examples: /tmp, c:\temp setup en Enter the full path for temporary files.
Examples: /tmp, C:\TEMP +enter the full path for users and group files.
examples: /files, e:\files setup en Enter the full path for users and group files.
Examples: /files, E:\FILES +enter the full path to the backup directory.
if empty: files directory setup en Enter the full path to the backup directory.
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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup en Enter the location of eGroupWare's URL.
Example: http://www.domain.com/egroupware   or   /egroupware
No trailing slash +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup en Enter the location of eGroupWare's URL.
Example: http://www.domain.com/egroupware   or   /egroupware
No trailing slash 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup en Select an app, enter a target version, then submit to process to that version.
If you do not enter a version, only the baseline tables will be installed for the app.
THIS WILL DROP ALL OF THE APPS' TABLES FIRST! +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup en Select an app, enter a target version, then submit to process to that version.
If you do not enter a version, only the baseline tables will be installed for the app.
THIS WILL DROP ALL OF THE APPS' TABLES FIRST! 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.
setup en There was a problem trying to connect to your LDAP server.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup en There was a problem trying to connect to your LDAP server.
please check your LDAP server configuration +there was a problem trying to connect to your ldap server.
setup en There was a problem trying to connect to your LDAP server.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup en There was a problem trying to connect to your LDAP server.
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.
note: the default has been randomly generated. setup en This should be around 30 bytes in length.
Note: The default has been randomly generated. -this stage is completed
setup en This stage is completed
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup en This should be around 30 bytes in length.
Note: The default has been randomly generated. +this stage is completed
setup en This stage is completed
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
when admins login ? setup en Would you like eGroupWare to check for a new version
when admins login ? +would you like egroupware to check for a new version
when admins login ? setup en Would you like eGroupWare to check for a new version
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup en You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup en You appear to be running an old version of PHP
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

Please upgrade to at least version %1 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup en You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup en You appear to be running an old version of PHP
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

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.
setup en You are ready for this stage, but this stage is not yet written.
+you are ready for this stage, but this stage is not yet written.
setup en You are ready for this stage, but this stage is not yet written.
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
setup en You do not have any languages installed. Please install one now
-you have not created your header.inc.php yet!
you can create it now. setup en You have not created your header.inc.php yet!
You can create it now. +you do not have any languages installed. please install one now
setup en You do not have any languages installed. Please install one now
+you have not created your header.inc.php yet!
you can create it now. setup en You have not created your header.inc.php yet!
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.
warning!
make backups! setup en Your header.inc.php needs upgrading.
WARNING!
MAKE BACKUPS! +your header.inc.php needs upgrading.
warning!
make backups! setup en Your header.inc.php needs upgrading.
WARNING!
MAKE BACKUPS! 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 !! diff --git a/setup/lang/phpgw_es-ca.lang b/setup/lang/phpgw_es-ca.lang index 12d8b52778..9098265e01 100644 --- a/setup/lang/phpgw_es-ca.lang +++ b/setup/lang/phpgw_es-ca.lang @@ -7,7 +7,7 @@ 13 (ntp) setup es-ca 13 (ntp) 80 (http) setup es-ca 80 (http) charset to use (use utf-8 if you plan to use languages with different charsets): setup es-ca conjunt de caràcters a utilitzar (utilitzeu utf-8 si heu fer servir llenguatges amb diferents conjunts de caràcters -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup es-ca Això crearà un compte d'administrador i 3 de demostració
Els noms d'usuari i contrasenyes són: demo/guest, demo2/guest i demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup es-ca Això crearà un compte d'administrador i 3 de demostració
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,
or the table definition was incorrect setup es-ca perquè necessita una instal·lació manual de les taules,
o bé la seva definició fou incorrecta +because it requires manual table installation,
or the table definition was incorrect setup es-ca perquè necessita una instal·lació manual de les taules,
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 highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup es-ca però us recomanem que feu copia de seguretat de les taules per el cas que el script faci malbé l'informació.
Aquests scripts automàtics poden fàcilment destruir la vostra informació. +but we highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup es-ca però us recomanem que feu copia de seguretat de les taules per el cas que el script faci malbé l'informació.
Aquests scripts automàtics poden fàcilment destruir la vostra informació. cancel setup es-ca Cancel·lar -cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup es-ca No es pot crear l'arxiu header.inc.php degut als permisos d'arxius.
Altrament podeu %1 l'arxiu. +cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup es-ca No es pot crear l'arxiu header.inc.php degut als permisos d'arxius.
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
setup es-ca Idiomes actualment instal·lats: %1
+currently installed languages: %1
setup es-ca Idiomes actualment instal·lats: %1
database successfully converted from '%1' to '%2' setup es-ca Base de dades convertida correctament de '%1' a '%2' -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup es-ca Port de l'hora.
Si utilitzeu el port 13, establiu les regles del tallafocs acuradament abans d'enviar aquesta plana. +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup es-ca Port de l'hora.
Si utilitzeu el port 13, establiu les regles del tallafocs acuradament abans d'enviar aquesta plana. day setup es-ca dia -day of week
(0-6, 0=sunday) setup es-ca dia de la setmana
(0-6. 0=diumenge) +day of week
(0-6, 0=sunday) setup es-ca dia de la setmana
(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
encryption (requires mcrypt) setup es-ca Introduïu qualsevol text aleatori per el xifrat de la sessió
de l'aplicació (necessita mcrypt) -enter the full path for temporary files.
examples: /tmp, c:\temp setup es-ca Introduïu la ruta completa per als fitxers temporals.
Exemple: /tmp, C:TEMP -enter the full path for users and group files.
examples: /files, e:\files setup es-ca Introduïu la ruta completa per als fitxers d'usuaris i grups.
Exemple: /files, E:FILES -enter the full path to the backup directory.
if empty: files directory setup es-ca Introduïu la ruta completa per al directori de la còpia de seguretat.
si es deixa en blanc: directori dels fitxers +enter some random text for app_session
encryption (requires mcrypt) setup es-ca Introduïu qualsevol text aleatori per el xifrat de la sessió
de l'aplicació (necessita mcrypt) +enter the full path for temporary files.
examples: /tmp, c:\temp setup es-ca Introduïu la ruta completa per als fitxers temporals.
Exemple: /tmp, C:TEMP +enter the full path for users and group files.
examples: /files, e:\files setup es-ca Introduïu la ruta completa per als fitxers d'usuaris i grups.
Exemple: /files, E:FILES +enter the full path to the backup directory.
if empty: files directory setup es-ca Introduïu la ruta completa per al directori de la còpia de seguretat.
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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup es-ca Introduïu l'adreça URL d'eGroupWare.
Exemple: http://www.domini.com/egroupware o bé   /egroupware
Sense la barra final +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup es-ca Introduïu l'adreça URL d'eGroupWare.
Exemple: http://www.domini.com/egroupware o bé   /egroupware
Sense la barra final 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup es-ca Seleccioneu una aplicació, entreu una versió destí, llavors premeu "Enviar" per a processar l'actualització fins a aquesta versió.
Si no entreu una versió, només s'instal·laran les taules base per a l'aplicació.
AIXÒ ESBORRARÀ TOTES LES TAULES DE L'APLICACIÓ PRIMER! +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup es-ca Seleccioneu una aplicació, entreu una versió destí, llavors premeu "Enviar" per a processar l'actualització fins a aquesta versió.
Si no entreu una versió, només s'instal·laran les taules base per a l'aplicació.
AIXÒ ESBORRARÀ TOTES LES TAULES DE L'APLICACIÓ PRIMER! 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.
setup es-ca Hi ha un problema intentant connectar al servidor LDAP.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup es-ca Hi ha un problema intentant connectar al servidor LDAP.
Si us plau, comproveu la configuració del servidor LDAP +there was a problem trying to connect to your ldap server.
setup es-ca Hi ha un problema intentant connectar al servidor LDAP.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup es-ca Hi ha un problema intentant connectar al servidor LDAP.
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.
note: the default has been randomly generated. setup es-ca Ha de ser una cadena d'uns 30 caràcters.
Nota: la predeterminada s'ha generat aleatòriament. -this stage is completed
setup es-ca Fase acabada
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup es-ca Ha de ser una cadena d'uns 30 caràcters.
Nota: la predeterminada s'ha generat aleatòriament. +this stage is completed
setup es-ca Fase acabada
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
when admins login ? setup es-ca Voleu que eGroupWare comprovi l'existència de noves versions
quan un administrador inicïi la sessió? +would you like egroupware to check for a new version
when admins login ? setup es-ca Voleu que eGroupWare comprovi l'existència de noves versions
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup es-ca Sembla que esteu executant una versió pre-beta d'eGroupWare.
Aquestes versions ja no se suporten, i no hi ha camí d'actualització per a elles a la instal·lació.
Hauríeu d'actualitzar primer a la 0.9.10 (la darrera versió amb suport d'actualitzacions pre-beta)
i després actualitzar a la versió actual. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup es-ca Sembla que esteu executant una versió antiga de PHP
Es recomana que actualitzeu a una nova versió.
Les versions antiges de PHP pot ser que no funcionin correctament o ni siquiera funcionin a eGroupWare.

Si us plau, actualitzeu al menys a la versió %1 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup es-ca Sembla que esteu executant una versió pre-beta d'eGroupWare.
Aquestes versions ja no se suporten, i no hi ha camí d'actualització per a elles a la instal·lació.
Hauríeu d'actualitzar primer a la 0.9.10 (la darrera versió amb suport d'actualitzacions pre-beta)
i després actualitzar a la versió actual. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup es-ca Sembla que esteu executant una versió antiga de PHP
Es recomana que actualitzeu a una nova versió.
Les versions antiges de PHP pot ser que no funcionin correctament o ni siquiera funcionin a eGroupWare.

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.
setup es-ca Esteu preparats per a aquesta fase, però aquesta fase no està escrita encara.
+you are ready for this stage, but this stage is not yet written.
setup es-ca Esteu preparats per a aquesta fase, però aquesta fase no està escrita encara.
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
setup es-ca No teniu cap idioma instal·lat. Si us plau, instal·leu-ne un ara
-you have not created your header.inc.php yet!
you can create it now. setup es-ca No heu creat encara l'arxiu header.inc.php!
Podeu crear-lo ara. +you do not have any languages installed. please install one now
setup es-ca No teniu cap idioma instal·lat. Si us plau, instal·leu-ne un ara
+you have not created your header.inc.php yet!
you can create it now. setup es-ca No heu creat encara l'arxiu header.inc.php!
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.
warning!
make backups! setup es-ca El vostre header.inc.php necessita actualització.
ATENCIÓ!!
FEU COPIES DE SEGURETAT!! +your header.inc.php needs upgrading.
warning!
make backups! setup es-ca El vostre header.inc.php necessita actualització.
ATENCIÓ!!
FEU COPIES DE SEGURETAT!! 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!! diff --git a/setup/lang/phpgw_es-es.lang b/setup/lang/phpgw_es-es.lang index ae03580412..10bd6a3faf 100644 --- a/setup/lang/phpgw_es-es.lang +++ b/setup/lang/phpgw_es-es.lang @@ -8,7 +8,7 @@ 13 (ntp) setup es-es 13 (ntp) 80 (http) setup es-es 80 (http) charset to use (use utf-8 if you plan to use languages with different charsets): setup es-es juego de caracteres a usar (usar utf-8 si se van a usar idiomas con distintos juegos de caracteres): -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup es-es Esto creará 1 cuenta de administrador y 3 de demostración
Los nombres de usuario y contraseñas son: demo/guest, demo2/guest y demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup es-es Esto creará 1 cuenta de administrador y 3 de demostración
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,
or the table definition was incorrect setup es-es porque requiere de instalación manual de las tablas,
o la definición de las misma fué incorrecta +because it requires manual table installation,
or the table definition was incorrect setup es-es porque requiere de instalación manual de las tablas,
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 highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup es-es pero le recomendamos encarecidamente que haga copia de seguridad de sus tablas en caso de que el guión cause daños a su información.
Estos guiones automáticos pueden facilmente destruir su información. +but we highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup es-es pero le recomendamos encarecidamente que haga copia de seguridad de sus tablas en caso de que el guión cause daños a su información.
Estos guiones automáticos pueden facilmente destruir su información. cancel setup es-es Cancelar -cannot create the header.inc.php due to file permission restrictions.
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.
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
setup es-es Idiomas actualmente instalados: %1
+currently installed languages: %1
setup es-es Idiomas actualmente instalados: %1
database successfully converted from '%1' to '%2' setup es-es La base de datos se convirtió correctamen de '%1' a '%2' -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup es-es Puerto de hora.
Si usa el puerto 13, por favor, configure las reglas del cortafuegos adecuadamente antes de enviar esta página. +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup es-es Puerto de hora.
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
(0-6, 0=sunday) setup es-es día de la semana
(0-6, 0=domingo) +day of week
(0-6, 0=sunday) setup es-es día de la semana
(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
encryption (requires mcrypt) setup es-es Introduzca algún texto aleatorio para el cifrado de la sesión de la aplicación
cifrado (necesita mcrypt) -enter the full path for temporary files.
examples: /tmp, c:\temp setup es-es Introduzca la ruta completa para los ficheros temporales.
Ejemplo: /tmp, C:TEMP -enter the full path for users and group files.
examples: /files, e:\files setup es-es Introduzca la ruta completa para los ficheros de usuarios y grupos.
Ejemplo: /files, E:FILES -enter the full path to the backup directory.
if empty: files directory setup es-es Introduzca la ruta completa al directorio de la copia de seguridad.
Si está vacio: directorio de los ficheros +enter some random text for app_session
encryption (requires mcrypt) setup es-es Introduzca algún texto aleatorio para el cifrado de la sesión de la aplicación
cifrado (necesita mcrypt) +enter the full path for temporary files.
examples: /tmp, c:\temp setup es-es Introduzca la ruta completa para los ficheros temporales.
Ejemplo: /tmp, C:TEMP +enter the full path for users and group files.
examples: /files, e:\files setup es-es Introduzca la ruta completa para los ficheros de usuarios y grupos.
Ejemplo: /files, E:FILES +enter the full path to the backup directory.
if empty: files directory setup es-es Introduzca la ruta completa al directorio de la copia de seguridad.
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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup es-es Introduzca la URL de eGroupWare.
Ejemplo: http://www.dominio.com/egroupware o /egroupware
Sin barra invertida al final +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup es-es Introduzca la URL de eGroupWare.
Ejemplo: http://www.dominio.com/egroupware o /egroupware
Sin barra invertida al final 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! 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.
Si no selecciona una versión, solo la tablas de la versión base será instaladas.
¡ESTO ELIMINARÁ TODAS LAS TABLAS DE LAS APLICACIONES PRIMERO! +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! 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.
Si no selecciona una versión, solo la tablas de la versión base será instaladas.
¡ESTO ELIMINARÁ TODAS LAS TABLAS DE LAS APLICACIONES PRIMERO! 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.
please check your ldap server configuration setup es-es Hubo un problema intentando conectar con su servidor LDAP.
Por favor comprueve la configuración de su servidor LDAP -there was a problem trying to connect to your ldap server.
setup es-es Hubo un problema intentando conectar al servidor LDAP.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup es-es Hubo un problema intentando conecar al servidor LDAP.
Por favor, compruebe la configuración del servidor LDAP +there was a problem tring to connect to your ldap server.
please check your ldap server configuration setup es-es Hubo un problema intentando conectar con su servidor LDAP.
Por favor comprueve la configuración de su servidor LDAP +there was a problem trying to connect to your ldap server.
setup es-es Hubo un problema intentando conectar al servidor LDAP.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup es-es Hubo un problema intentando conecar al servidor LDAP.
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.
note: the default has been randomly generated. setup es-es Debe ser una cadena de unos 30 caracteres.
Nota: la predeterminada se ha generado aleatoriamente. -this stage is completed
setup es-es Esta fase está completada
-this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup es-es Esto creará 1 cuenta de administrador y 3 cuentas de demostración
Los nombres de usuario y contraseñas son: demo/guest, demo2/guest and demo3/guest.
¡¡¡ESTO ELIMINARÁ TODAS LAS CUENTAS EXISTENTES!!!
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup es-es Debe ser una cadena de unos 30 caracteres.
Nota: la predeterminada se ha generado aleatoriamente. +this stage is completed
setup es-es Esta fase está completada
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup es-es Esto creará 1 cuenta de administrador y 3 cuentas de demostración
Los nombres de usuario y contraseñas son: demo/guest, demo2/guest and demo3/guest.
¡¡¡ESTO ELIMINARÁ TODAS LAS CUENTAS EXISTENTES!!!
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.
this will delete all existing accounts setup es-es para configurar 1 cuenta de administrador y 3 cuentas de demonstración.
Esto eliminará todas las cuentas existentes +to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup es-es para configurar 1 cuenta de administrador y 3 cuentas de demonstración.
Esto eliminará todas las cuentas existentes 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
when admins login ? setup es-es ¿Desea que eGroupWare compruebe una nueva versión
cuando un administrador inicie la sesión? +would you like egroupware to check for a new version
when admins login ? setup es-es ¿Desea que eGroupWare compruebe una nueva versión
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup es-es Parece que está ejecutando una versión pre-beta de eGroupWare.
Estas versiones ya no están soportadas, y no hay ruta de actualización para ellas en la instalación.
Puede que desee actualizar primero a la 0.9.10 (la última versión con soporte de actualizaciones pre-beta)
y luego actualizar desde ahí a la versión actual. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup es-es Parece que está ejecutando una versión antigua de PHP
Se recomienda que actualice a una nueva versión.
Las versiones antiguas de PHP puede que no funcionen correctamente o ni siquiera funcionen en eGroupWare.

Por favor, actualice al menos a la versión %1 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup es-es Parece que está ejecutando una versión pre-beta de eGroupWare.
Estas versiones ya no están soportadas, y no hay ruta de actualización para ellas en la instalación.
Puede que desee actualizar primero a la 0.9.10 (la última versión con soporte de actualizaciones pre-beta)
y luego actualizar desde ahí a la versión actual. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup es-es Parece que está ejecutando una versión antigua de PHP
Se recomienda que actualice a una nueva versión.
Las versiones antiguas de PHP puede que no funcionen correctamente o ni siquiera funcionen en eGroupWare.

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.
setup es-es Está listo para esta fase, pero esta fase aún no está escrita.
+you are ready for this stage, but this stage is not yet written.
setup es-es Está listo para esta fase, pero esta fase aún no está escrita.
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
setup es-es No tiene ningún idioma instalado. Por favor, instale uno ahora -you have not created your header.inc.php yet!
you can create it now. setup es-es ¡No ha creado todavía el header.inc.php!
Puede crearlo ahora. +you do not have any languages installed. please install one now
setup es-es No tiene ningún idioma instalado. Por favor, instale uno ahora +you have not created your header.inc.php yet!
you can create it now. setup es-es ¡No ha creado todavía el header.inc.php!
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.
warning!
make backups! setup es-es Su header.inc.php necesita actualización.
¡ATENCION!
¡HAGA COPIAS DE SEGURIDAD! +your header.inc.php needs upgrading.
warning!
make backups! setup es-es Su header.inc.php necesita actualización.
¡ATENCION!
¡HAGA COPIAS DE SEGURIDAD! 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 diff --git a/setup/lang/phpgw_fi.lang b/setup/lang/phpgw_fi.lang index 0617161516..e868f6239b 100644 --- a/setup/lang/phpgw_fi.lang +++ b/setup/lang/phpgw_fi.lang @@ -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) -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup fi Luodaan 1 ylläpito- ja 3 demotunnusta.
Käyttäjätunnukset ovat: demo/guest, demo2/guest ja demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup fi Luodaan 1 ylläpito- ja 3 demotunnusta.
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ä varmuuskopioit taulujen tiedot, jotta voit tarvittaessa palauttaa ne.
Automaattiset skriptit voivat tuhota dataa.
Varmuuskopioi, ennen kuin jatkat! +backupwarn setup fi Suosittelemme, että varmuuskopioit taulujen tiedot, jotta voit tarvittaessa palauttaa ne.
Automaattiset skriptit voivat tuhota dataa.
Varmuuskopioi, ennen kuin jatkat! 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,
or the table definition was incorrect setup fi koska sen taulut täytyy asentaa käsin,
tai sen taulumääritykset ovat virheellisiä +because it requires manual table installation,
or the table definition was incorrect setup fi koska sen taulut täytyy asentaa käsin,
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.
instead you can %1 the file. setup fi Tiedostoa header.inc.php ei voitu luoda käyttöoikeuksista johtuen.
Voit %1 tiedoston +cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup fi Tiedostoa header.inc.php ei voitu luoda käyttöoikeuksista johtuen.
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
setup fi Asennetut kielet: %1
+currently installed languages: %1
setup fi Asennetut kielet: %1
database successfully converted from '%1' to '%2' setup fi Tietokanta on konvertoitu versiosta '%1' versioon '%2' -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup fi Datetime-portti.
Jos käytät porttia 13, määrittele palomuuriasetukset oikein ennen kuin lähetät tämän lomakkeen tiedot.
(Port: 13 / Host: 129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup fi Datetime-portti.
Jos käytät porttia 13, määrittele palomuuriasetukset oikein ennen kuin lähetät tämän lomakkeen tiedot.
(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
encryption (requires mcrypt) setup fi Anna hieman satunnaisia merkkejä sovellusistunnon
salaukseen (tarvitaan mcrypt) -enter the full path for temporary files.
examples: /tmp, c:\temp setup fi Anna väliaikaisten tiedostojen absoluuttinen polku.
Esimerkkejä: /tmp, C:\TEMP -enter the full path for users and group files.
examples: /files, e:\files setup fi Anna käyttäjien ja ryhmien tiedostojen absoluuttinen polku.
Esimerkkejä: /files, E:\FILES +enter some random text for app_session
encryption (requires mcrypt) setup fi Anna hieman satunnaisia merkkejä sovellusistunnon
salaukseen (tarvitaan mcrypt) +enter the full path for temporary files.
examples: /tmp, c:\temp setup fi Anna väliaikaisten tiedostojen absoluuttinen polku.
Esimerkkejä: /tmp, C:\TEMP +enter the full path for users and group files.
examples: /files, e:\files setup fi Anna käyttäjien ja ryhmien tiedostojen absoluuttinen polku.
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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup fi Anna eGroupWaren URL.
Esimerkki: http://www.yritys.com/egroupware   tai   /egroupware
(ei kauttaviivaa loppuun) +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup fi Anna eGroupWaren URL.
Esimerkki: http://www.yritys.com/egroupware   tai   /egroupware
(ei kauttaviivaa loppuun) 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup fi Valitse sovellus, anna versio ja lähetä tiedot.
Jos et anna versionumeroa, vain perustaulut asennetaan.
KAIKKI SOVELLUKSEN TAULUT POISTETAAN ENSIN! +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup fi Valitse sovellus, anna versio ja lähetä tiedot.
Jos et anna versionumeroa, vain perustaulut asennetaan.
KAIKKI SOVELLUKSEN TAULUT POISTETAAN ENSIN! 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.
setup fi LDAP-palvelinyhteydessä ilmeni ongelma.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup fi LDAP-palvelinyhteydessä ilmeni ongelma.
Tarkista LDAP-palvelimen asetukset +there was a problem trying to connect to your ldap server.
setup fi LDAP-palvelinyhteydessä ilmeni ongelma.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup fi LDAP-palvelinyhteydessä ilmeni ongelma.
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.
note: the default has been randomly generated. setup fi Tämän pitäisi olla noin 30 tavua pitkä.
Huom: oletusarvo on luotu satunnaisesti. -this stage is completed
setup fi Tämä vaihe on valmis
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup fi Tämän pitäisi olla noin 30 tavua pitkä.
Huom: oletusarvo on luotu satunnaisesti. +this stage is completed
setup fi Tämä vaihe on valmis
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
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
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup fi Käytät eGroupWaren esibetaversiota.
Näitä versioita ei tueta enää, ja niitä ei voi päivittää asennuksessa.
Päivitä versioon 0.9.10 (viimeisin versio, joka tukee esibetaversioita)
ja päivitä sitten nykyiseen versioon. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup fi Käytät vanhaa PHP-versiota.
On suositeltavaa päivittää PHP uudempaan versioon.
Vanhat PHP-versiot eivät toimi oikein.
Päivitä vähintään versioon %1. +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup fi Käytät eGroupWaren esibetaversiota.
Näitä versioita ei tueta enää, ja niitä ei voi päivittää asennuksessa.
Päivitä versioon 0.9.10 (viimeisin versio, joka tukee esibetaversioita)
ja päivitä sitten nykyiseen versioon. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup fi Käytät vanhaa PHP-versiota.
On suositeltavaa päivittää PHP uudempaan versioon.
Vanhat PHP-versiot eivät toimi oikein.
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.
setup fi Olet valmis tätä vaihetta varten, mutta tätä vaihetta ei ole vielä kirjoitettu.
+you are ready for this stage, but this stage is not yet written.
setup fi Olet valmis tätä vaihetta varten, mutta tätä vaihetta ei ole vielä kirjoitettu.
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
setup fi Et ole asentanut yhtään kieltä.
Asenna yksi nyt. -you have not created your header.inc.php yet!
you can create it now. setup fi Et ole luonut tiedostoa header.inc.php!
Voit luoda sen nyt. +you do not have any languages installed. please install one now
setup fi Et ole asentanut yhtään kieltä.
Asenna yksi nyt. +you have not created your header.inc.php yet!
you can create it now. setup fi Et ole luonut tiedostoa header.inc.php!
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.
warning!
make backups! setup fi Tiedosto header.inc.php on päivitettävä.
VAROITUS!
TEE VARMUUSKOPIOT! +your header.inc.php needs upgrading.
warning!
make backups! setup fi Tiedosto header.inc.php on päivitettävä.
VAROITUS!
TEE VARMUUSKOPIOT! 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. diff --git a/setup/lang/phpgw_fr.lang b/setup/lang/phpgw_fr.lang index 4aedcb1d9f..4d353b151c 100644 --- a/setup/lang/phpgw_fr.lang +++ b/setup/lang/phpgw_fr.lang @@ -8,7 +8,7 @@ 00 (disable) setup fr 00 (désactiver) 13 (ntp) setup fr 13 (ntp) 80 (http) setup fr 80 (http) -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup fr Ceci va créer un compte administrateur et trois comptes de démonstration
Les identifiants et mots de passes des comptes de démonstrations sont: demo/guest, demo2/guest et demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup fr Ceci va créer un compte administrateur et trois comptes de démonstration
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 highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup fr Mais nous vous recommendons fortement de sauvegarder vos tables pour le cas où le script endommagerait vos données.
Ces scripts automatiques peuvent facilement endommager vos données. +but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup fr Mais nous vous recommendons fortement de sauvegarder vos tables pour le cas où le script endommagerait vos données.
Ces scripts automatiques peuvent facilement endommager vos données. 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,
or the table definition was incorrect setup fr Parce-que ça nécessite une installation manuelle de table,
ou la définition de la table était incorrecte +because it requires manual table installation,
or the table definition was incorrect setup fr Parce-que ça nécessite une installation manuelle de table,
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.
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.
A la place vous pouvez %1 le fichier. +cannot create the header.inc.php due to file permission restrictions.
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.
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
(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
(note: attention, certain navigateur ne le supporte pas, notamment Internet Explorer sous MacOS) current version setup fr Version actuelle -currently installed languages: %1
setup fr Langues installées actuellement: %1
+currently installed languages: %1
setup fr Langues installées actuellement: %1
database successfully converted from '%1' to '%2' setup fr Base de données convertie de '%1' à '%2' avec succès -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup fr Port Date/heure.
Si vous utilisez le port 13, SVP modifiez les règles du firewall avant de modifier cette page.
(Port: 13 / Serveur: 129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup fr Port Date/heure.
Si vous utilisez le port 13, SVP modifiez les règles du firewall avant de modifier cette page.
(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
encryption (requires mcrypt) setup fr Entrez du texte au hasard pour le
cryptage app_session (nécessite mcrypt) -enter the full path for temporary files.
examples: /tmp, c:\temp setup fr Entrez le chemin complet pour les fichiers temporaires.
Exemples: /tmp, C:\TEMP -enter the full path for temporary files.
examples: /tmp, c:temp setup fr Entrez le chemin complet pour les fichiers temporaires.
Exemples: /tmp, C:\TEMP -enter the full path for users and group files.
examples: /files, e:\files setup fr Entrez le chemin complet pour les fichiers d'utilisateurs et de groupes.
Exemples: /files, E:\FILES -enter the full path for users and group files.
examples: /files, e:files setup fr Entrez le chemin complet pour les fichiers d'utilisateurs et de groupes.
Exemples: /files, E:\FILES +enter some random text for app_session
encryption (requires mcrypt) setup fr Entrez du texte au hasard pour le
cryptage app_session (nécessite mcrypt) +enter the full path for temporary files.
examples: /tmp, c:\temp setup fr Entrez le chemin complet pour les fichiers temporaires.
Exemples: /tmp, C:\TEMP +enter the full path for temporary files.
examples: /tmp, c:temp setup fr Entrez le chemin complet pour les fichiers temporaires.
Exemples: /tmp, C:\TEMP +enter the full path for users and group files.
examples: /files, e:\files setup fr Entrez le chemin complet pour les fichiers d'utilisateurs et de groupes.
Exemples: /files, E:\FILES +enter the full path for users and group files.
examples: /files, e:files setup fr Entrez le chemin complet pour les fichiers d'utilisateurs et de groupes.
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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup fr Entrez l'emplacement de l'URL de eGroupWare.
Exemple: http://www.domain.com/egroupware   ou   /egroupware
Pas de / (slash ou division) à la fin +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup fr Entrez l'emplacement de l'URL de eGroupWare.
Exemple: http://www.domain.com/egroupware   ou   /egroupware
Pas de / (slash ou division) à la fin 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;
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;
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:
Se connecter à mysql -
[user@server user]# mysql -u root -p
Créer la base de données vide et attribuer les permissions utilisateurs -
mysql> create database egroupware;
mysql> grant all on egroupware.* to egroupware@localhost identified by 'password'; +mysqlinstr setup fr Instructions pour créer la base de données dans MySQL:
Se connecter à mysql -
[user@server user]# mysql -u root -p
Créer la base de données vide et attribuer les permissions utilisateurs -
mysql> create database egroupware;
mysql> grant all on egroupware.* to egroupware@localhost identified by 'password'; 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:
Démarrer le postmaster
[user@server user]# postmaster -i -D /home/[username]/[dataDir]
Créer la base de données vide-
[user@server user]# createdb egroupware +pgsqlinstr setup fr Instructions pour créer la base de données dans PostgreSQL:
Démarrer le postmaster
[user@server user]# postmaster -i -D /home/[username]/[dataDir]
Créer la base de données vide-
[user@server user]# createdb egroupware 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup fr Choisissez une application, entrez une version de destination, puis soumettez pour transformer vers cette version.
Si vous n'entrez pas de version, seules les tables de base pour cette application seront installées.
CETTE MANIPULATION VA D'ABORD EFFACER TOUTES LES TABLES DE DONNEES DES APPLICATIONS! +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup fr Choisissez une application, entrez une version de destination, puis soumettez pour transformer vers cette version.
Si vous n'entrez pas de version, seules les tables de base pour cette application seront installées.
CETTE MANIPULATION VA D'ABORD EFFACER TOUTES LES TABLES DE DONNEES DES APPLICATIONS! 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
+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
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.
setup fr Il y a eu un problème lors de la tentative de connexion à votre serveur LDAP.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup fr l y a eu un problème lors de la tentative de connexion à votre serveur LDAP.
SVP vérifiez la configuration de votre serveur LDAP +there was a problem trying to connect to your ldap server.
setup fr Il y a eu un problème lors de la tentative de connexion à votre serveur LDAP.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup fr l y a eu un problème lors de la tentative de connexion à votre serveur LDAP.
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.
note: the default has been randomly generated. setup fr Ceci devrait faire environ 30 octets de long.
Note: la valeur par défaut a été générée au hasard. -this stage is completed
setup fr Cette étape est complétée
-this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup fr Ceci va créer 1 compte admin et 3 comptes demo
Les utilisateurs/mots de passe sont: demo/guest, demo2/guest et demo3/guest.
!!!CECI VA SUPPRIMER TOUS LES COMPTES EXISTANTS!!!
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup fr Ceci devrait faire environ 30 octets de long.
Note: la valeur par défaut a été générée au hasard. +this stage is completed
setup fr Cette étape est complétée
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup fr Ceci va créer 1 compte admin et 3 comptes demo
Les utilisateurs/mots de passe sont: demo/guest, demo2/guest et demo3/guest.
!!!CECI VA SUPPRIMER TOUS LES COMPTES EXISTANTS!!!
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.
this will delete all existing accounts setup fr Pour créer 1 compte admin et 3 comptes demo.
ceci va supprimer tous les comptes existants +to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup fr Pour créer 1 compte admin et 3 comptes demo.
ceci va supprimer tous les comptes existants 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
when admins login ? setup fr Voudriez-vous que eGroupWare vérifie la disponibilité d'une nouvelle version
quand les administrateurs se connectent ? +would you like egroupware to check for a new version
when admins login ? setup fr Voudriez-vous que eGroupWare vérifie la disponibilité d'une nouvelle version
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup fr Vous semblez utiliser une version pre-beta de eGroupWare.
Ces versions ne sont plus supportées, et il n'y a pas de possibilité de mise à jour pour elles dans le setup.
Vous devriez d'abord mettre votre version à jour vers la version 0.9.10 (la dernière version à supporter les mises à jour pre-beta)
puis mettre à jour depuis cette version jusqu'à la version actuelle. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup fr Vous semblez utiliser une ancienne version de PHP
Il est recommandé de faire une mise à jour.
Les anciennes versions de PHP pourraient ne pas fonctionner correctement, ou pas du tout, avec eGroupWare.

SVP faites une mise à jour à la dernière version %1 -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version 4.1.0 setup fr Vous semblez utiliser une version ancienne de PHP
Il est recommandé que vous mettiez votre système à jour vers une version plus récente.
Les anciennes version de PHP pourraient ne pas faire fonctionner correctement eGroupWare, voire pas du tout.

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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup fr Vous semblez utiliser une version pre-beta de eGroupWare.
Ces versions ne sont plus supportées, et il n'y a pas de possibilité de mise à jour pour elles dans le setup.
Vous devriez d'abord mettre votre version à jour vers la version 0.9.10 (la dernière version à supporter les mises à jour pre-beta)
puis mettre à jour depuis cette version jusqu'à la version actuelle. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup fr Vous semblez utiliser une ancienne version de PHP
Il est recommandé de faire une mise à jour.
Les anciennes versions de PHP pourraient ne pas fonctionner correctement, ou pas du tout, avec eGroupWare.

SVP faites une mise à jour à la dernière version %1 +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version 4.1.0 setup fr Vous semblez utiliser une version ancienne de PHP
Il est recommandé que vous mettiez votre système à jour vers une version plus récente.
Les anciennes version de PHP pourraient ne pas faire fonctionner correctement eGroupWare, voire pas du tout.

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.
setup fr Vous êtes prêt pour cette étape, mais ceci n'est pas encore écrit.
+you are ready for this stage, but this stage is not yet written.
setup fr Vous êtes prêt pour cette étape, mais ceci n'est pas encore écrit.
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
setup fr Vous n'avez aucun langage installé. SVP installez-en un maintenant
-you have not created your header.inc.php yet!
you can create it now. setup fr Vous n'avez pas encore créé votre fichier header.inc.php!
Vous pouvez le créer maintenant. +you do not have any languages installed. please install one now
setup fr Vous n'avez aucun langage installé. SVP installez-en un maintenant
+you have not created your header.inc.php yet!
you can create it now. setup fr Vous n'avez pas encore créé votre fichier header.inc.php!
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.
warning!
make backups! setup fr Votre fichier header.inc.php a besoin d'une mise à jour.
ATTENTION!
FAITES DES SAUVEGARDES! +your header.inc.php needs upgrading.
warning!
make backups! setup fr Votre fichier header.inc.php a besoin d'une mise à jour.
ATTENTION!
FAITES DES SAUVEGARDES! 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é.
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. diff --git a/setup/lang/phpgw_hr.lang b/setup/lang/phpgw_hr.lang index 3154d853a7..d894b15731 100755 --- a/setup/lang/phpgw_hr.lang +++ b/setup/lang/phpgw_hr.lang @@ -5,7 +5,7 @@ 00 (disable) setup hr 00 (disable / recomended) 13 (ntp) setup hr 13 (ntp) 80 (http) setup hr 80 (http) -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup hr This will create 1 admin account and 3 demo accounts
The username/passwords are: demo/guest, demo2/guest and demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup hr This will create 1 admin account and 3 demo accounts
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 highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data.
Please backup before going any further! +backupwarn setup hr but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data.
Please backup before going any further! 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,
or the table definition was incorrect setup hr because it requires manual table installation,
or the table definition was incorrect +because it requires manual table installation,
or the table definition was incorrect setup hr because it requires manual table installation,
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.
instead you can %1 the file. setup hr Cannot create the header.inc.php due to file permission restrictions.
Instead you can %1 the file. +cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup hr Cannot create the header.inc.php due to file permission restrictions.
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
setup hr Currently installed languages: %1
+currently installed languages: %1
setup hr Currently installed languages: %1
database successfully converted from '%1' to '%2' setup hr Database successfully converted from '%1' to '%2' -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup hr Datetime port.
If using port 13, please set firewall rules appropriately before submitting this page.
(Port: 13 / Host: 129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup hr Datetime port.
If using port 13, please set firewall rules appropriately before submitting this page.
(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
encryption (requires mcrypt) setup hr Enter some random text for app_session
encryption (requires mcrypt) -enter the full path for temporary files.
examples: /tmp, c:\temp setup hr Enter the full path for temporary files.
Examples: /tmp, C:\TEMP -enter the full path for users and group files.
examples: /files, e:\files setup hr Enter the full path for users and group files.
Examples: /files, E:\FILES +enter some random text for app_session
encryption (requires mcrypt) setup hr Enter some random text for app_session
encryption (requires mcrypt) +enter the full path for temporary files.
examples: /tmp, c:\temp setup hr Enter the full path for temporary files.
Examples: /tmp, C:\TEMP +enter the full path for users and group files.
examples: /files, e:\files setup hr Enter the full path for users and group files.
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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup hr Enter the location of eGroupWare's URL.
Example: http://www.domain.com/egroupware   or   /egroupware
No trailing slash +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup hr Enter the location of eGroupWare's URL.
Example: http://www.domain.com/egroupware   or   /egroupware
No trailing slash 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup hr Select an app, enter a target version, then submit to process to that version.
If you do not enter a version, only the baseline tables will be installed for the app.
THIS WILL DROP ALL OF THE APPS' TABLES FIRST! +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup hr Select an app, enter a target version, then submit to process to that version.
If you do not enter a version, only the baseline tables will be installed for the app.
THIS WILL DROP ALL OF THE APPS' TABLES FIRST! 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.
setup hr There was a problem trying to connect to your LDAP server.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup hr There was a problem trying to connect to your LDAP server.
please check your LDAP server configuration +there was a problem trying to connect to your ldap server.
setup hr There was a problem trying to connect to your LDAP server.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup hr There was a problem trying to connect to your LDAP server.
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.
note: the default has been randomly generated. setup hr This should be around 30 bytes in length.
Note: The default has been randomly generated. -this stage is completed
setup hr This stage is completed
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup hr This should be around 30 bytes in length.
Note: The default has been randomly generated. +this stage is completed
setup hr This stage is completed
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
when admins login ? setup hr Would you like eGroupWare to check for a new version
when admins login ? +would you like egroupware to check for a new version
when admins login ? setup hr Would you like eGroupWare to check for a new version
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup hr You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup hr You appear to be running an old version of PHP
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

Please upgrade to at least version %1 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup hr You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup hr You appear to be running an old version of PHP
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

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.
setup hr You are ready for this stage, but this stage is not yet written.
+you are ready for this stage, but this stage is not yet written.
setup hr You are ready for this stage, but this stage is not yet written.
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
setup hr You do not have any languages installed. Please install one now
-you have not created your header.inc.php yet!
you can create it now. setup hr You have not created your header.inc.php yet!
You can create it now. +you do not have any languages installed. please install one now
setup hr You do not have any languages installed. Please install one now
+you have not created your header.inc.php yet!
you can create it now. setup hr You have not created your header.inc.php yet!
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.
warning!
make backups! setup hr Your header.inc.php needs upgrading.
WARNING!
MAKE BACKUPS! +your header.inc.php needs upgrading.
warning!
make backups! setup hr Your header.inc.php needs upgrading.
WARNING!
MAKE BACKUPS! 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. diff --git a/setup/lang/phpgw_it.lang b/setup/lang/phpgw_it.lang index f88f570c69..909feb527e 100644 --- a/setup/lang/phpgw_it.lang +++ b/setup/lang/phpgw_it.lang @@ -6,8 +6,8 @@ 00 (disable) setup it 00 (disabilitato/ consigliato) 13 (ntp) setup it 13 (ntp) 80 (http) setup it 80 (http) -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup it Questo creerà 1 account admin e 3 account demoI nome utente/password sono: demo/guest, demo2/guest e demo3/guest. -
import has been completed! click here to return to setup
setup it
L'importazione è stata completata! Cliccare qui per titornare al setup
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup it Questo creerà 1 account admin e 3 account demoI nome utente/password sono: demo/guest, demo2/guest e demo3/guest. +
import has been completed! click here to return to setup
setup it
L'importazione è stata completata! Cliccare qui per titornare al setup
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 highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup it ma noi consigliamo vivamente di salvare le tue tabelle nel caso in cui la procedura causidanni ai tuoi dati.
Queste procedure automatizzate possono distruggere molto facilmente i tuoi dati. +but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup it ma noi consigliamo vivamente di salvare le tue tabelle nel caso in cui la procedura causidanni ai tuoi dati.
Queste procedure automatizzate possono distruggere molto facilmente i tuoi dati. 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,
or the table definition was incorrect setup it perrché richiede un'installazione manuale delle tabelle,
o la definizione delle tabelle non è corretta +because it requires manual table installation,
or the table definition was incorrect setup it perrché richiede un'installazione manuale delle tabelle,
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é è avvenuto un aggiornamento non corretto, o il database è più 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
setup it Lingue attualmente installate: %1
+currently installed languages: %1
setup it Lingue attualmente installate: %1
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.
this will drop all of the apps' tables first! setup it Seleziona una'applicazione, inserisci una versione di destinazione, quindi invia per processare verso quella versione.
QUESTO CANGELLERA' PRIMA TUTTE LE TABELLE DELL'APPLICAZIONE +select an app, enter a target version, then submit to process to that version.
this will drop all of the apps' tables first! setup it Seleziona una'applicazione, inserisci una versione di destinazione, quindi invia per processare verso quella versione.
QUESTO CANGELLERA' PRIMA TUTTE LE TABELLE DELL'APPLICAZIONE 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.
please check your ldap server configuration setup it Si è verificato un problema nel contattare il tuo server LDAP.
Per favore controlla la configurazione del tuo server LDAP +there was a problem tring to connect to your ldap server.
please check your ldap server configuration setup it Si è verificato un problema nel contattare il tuo server LDAP.
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à 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à 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à ad importare utenti e gruppi dalle relative tabelle di eGroupWare nel tuo LDAP tree -this stage is completed
setup it Questo passaggio è stato completato
-this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup it Questo creerà 1 utente amministratore e 3 utenti di esempio
I nome utente/password sono: demo/guest, demo2/guest and demo3/guest.
!!!QUESTO CANCELLERÀ TUTTI GLI UTENTI PREESISTENTI!!!
-to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup it per predisporre 1 account amministratore e 3 account dimostrativi.
Questa operazione cancellerà tutti gli account esistenti +this stage is completed
setup it Questo passaggio è stato completato
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup it Questo creerà 1 utente amministratore e 3 utenti di esempio
I nome utente/password sono: demo/guest, demo2/guest and demo3/guest.
!!!QUESTO CANCELLERÀ TUTTI GLI UTENTI PREESISTENTI!!!
+to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup it per predisporre 1 account amministratore e 3 account dimostrativi.
Questa operazione cancellerà tutti gli account esistenti 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ò 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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup it Sembra che tu stia usando una versione pre-beta di eGroupWare.
Queste versioni non sono più supportate, e non esiste un modo di aggiornarle direttamente con questo setup.
Puoi provare ad effettuare prima l'aggiornamento alla versione 0.9.10 (l'ultima versione a supportare gli aggiornamenti dalle pre-beta)
e poi aggiornare da lì usando questa versione. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version 4.1.0 setup it Sembra che tu stia usando una vecchia versione di PHP
È raccomandabile che tu esegua un aggiornamento ad una versione recente.
Vecchie versioni di PHP potrebbero non far funzionare correttamenterun eGroupWare, o potrebbero non farlo funzionare per nulla.

Per favore aggiorna almeno alla versione 4.1.0 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup it Sembra che tu stia usando una versione pre-beta di eGroupWare.
Queste versioni non sono più supportate, e non esiste un modo di aggiornarle direttamente con questo setup.
Puoi provare ad effettuare prima l'aggiornamento alla versione 0.9.10 (l'ultima versione a supportare gli aggiornamenti dalle pre-beta)
e poi aggiornare da lì usando questa versione. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version 4.1.0 setup it Sembra che tu stia usando una vecchia versione di PHP
È raccomandabile che tu esegua un aggiornamento ad una versione recente.
Vecchie versioni di PHP potrebbero non far funzionare correttamenterun eGroupWare, o potrebbero non farlo funzionare per nulla.

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.
setup it Sei pronto per questo passaggio, ma questa procedura non è ancora stata scritta.
-you do not have any languages installed. please install one now
setup it Non hai nessuna lingua installata. Per favore installane una adesso.
+you are ready for this stage, but this stage is not yet written.
setup it Sei pronto per questo passaggio, ma questa procedura non è ancora stata scritta.
+you do not have any languages installed. please install one now
setup it Non hai nessuna lingua installata. Per favore installane una adesso.
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 diff --git a/setup/lang/phpgw_iw.lang b/setup/lang/phpgw_iw.lang index aecc8d1a9b..d1439a941d 100755 --- a/setup/lang/phpgw_iw.lang +++ b/setup/lang/phpgw_iw.lang @@ -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 ×ין לעדכן ×ת בסיס ×”× ×ª×•× ×™× ×‘×¢×–×¨×ª הגדרה, -
(יתכן שייגמר זמן הרצה המירבי ובסיס ×”× ×ª×•× ×™× ×™×©×ר במצב ש×ין ממנו חזרה (×”× ×ª×•× ×™× ×™×בדו +
(יתכן שייגמר זמן הרצה המירבי ובסיס ×”× ×ª×•× ×™× ×™×©×ר במצב ש×ין ממנו חזרה (×”× ×ª×•× ×™× ×™×בדו *** 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-יש לבצע ×ת ×”×©×™× ×•×™× ×™×“× ×™×ª ב -
לעבוד בצורה שלמה eGW-כדי ×œ×’×¨×•× ×œ×š ש +
לעבוד בצורה שלמה eGW-כדי ×œ×’×¨×•× ×œ×š ש 00 (disable) setup iw 00 (בטל/מומלץ) -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup iw ×–×” ייצור חשבון מנהל ×חד ושלוש חשבונות דמו -
demo/guest, demo2/guest and demo3/guest :שמות הכניסה / הסיסמ×ות ×”× × +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup iw ×–×” ייצור חשבון מנהל ×חד ושלוש חשבונות דמו +
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 .×בל ×נו ×ž×ž×œ×™×¦×™× ×‘×—×•× ×©×ª×’×‘×” ×ת ×”× ×ª×•× ×™× ×©×œ×š במקרה שהסקריפט ×’×•×¨× × ×–×§ ×œ× ×ª×•× ×™× -
.×¡×§×¨×™×¤×˜×™× ××•×˜×•×ž×˜×™× ×לה ×™×›×•×œ×™× ×œ×”×¨×•×¡ ×ת ×”× ×ª×•× ×™× ×©×œ×š בקלות. × × ×œ×’×‘×•×ª לפני שתמשיך הל××” +
.×¡×§×¨×™×¤×˜×™× ××•×˜×•×ž×˜×™× ×לה ×™×›×•×œ×™× ×œ×”×¨×•×¡ ×ת ×”× ×ª×•× ×™× ×©×œ×š בקלות. × × ×œ×’×‘×•×ª לפני שתמשיך הל××” 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,
or the table definition was incorrect setup iw ,מיכוון שדרוש התקנת טבל×ות ידנית -
×ו שהגדרת הטבלה החתה שגויה +because it requires manual table installation,
or the table definition was incorrect setup iw ,מיכוון שדרוש התקנת טבל×ות ידנית +
×ו שהגדרת הטבלה החתה שגויה 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.
instead you can %1 the file. setup iw .בגלל מגבלות של הרש×ות header.inc.php ×œ× ×ž×¦×œ×™×— ליצור ×ת הקובץ -
×‘×ž×§×•× ×–×ת נסה ל%1 ×ת הקובץ +cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup iw .בגלל מגבלות של הרש×ות header.inc.php ×œ× ×ž×¦×œ×™×— ליצור ×ת הקובץ +
×‘×ž×§×•× ×–×ת נסה ל%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
setup iw שפות מותקנות : %1
+currently installed languages: %1
setup iw שפות מותקנות : %1
database successfully converted from '%1' to '%2' setup iw בסיס ×”× ×ª×•× ×™× ×”×•×ž×¨ בהצלחה מ-'%1' ל-'%2' -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup iw פורט ת×ריך/שעה
-.לפני הגשת עמוד ×–×” firewall-×× × ×” להגדיר נכון ×ת חוקי ×”
+datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup iw פורט ת×ריך/שעה
+.לפני הגשת עמוד ×–×” firewall-×× × ×” להגדיר נכון ×ת חוקי ×”
(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
encryption (requires mcrypt) setup iw הכנס טקסט ×קר××™ כלשהו עבור הצפנת ×™×™×©×•×ž×™× -
(MCrypt מחייב) -enter the full path for temporary files.
examples: /tmp, c:\temp setup iw .הכנס ×ת המסלול ×”×ž×œ× ×ל ×§×‘×¦×™× ×–×ž× ×™×™× -
/tmp, C:\TEMP :דוגמ×ות -enter the full path for users and group files.
examples: /files, e:\files setup iw .הכנס ×ת המסלול ×”×ž×œ× ×ל ×§×‘×¦×™× ×©×œ ×ž×©×ª×ž×©×™× ×•×§×‘×•×¦×•×ª -
/files, E:\FILES :דוגמ×ות +enter some random text for app_session
encryption (requires mcrypt) setup iw הכנס טקסט ×קר××™ כלשהו עבור הצפנת ×™×™×©×•×ž×™× +
(MCrypt מחייב) +enter the full path for temporary files.
examples: /tmp, c:\temp setup iw .הכנס ×ת המסלול ×”×ž×œ× ×ל ×§×‘×¦×™× ×–×ž× ×™×™× +
/tmp, C:\TEMP :דוגמ×ות +enter the full path for users and group files.
examples: /files, e:\files setup iw .הכנס ×ת המסלול ×”×ž×œ× ×ל ×§×‘×¦×™× ×©×œ ×ž×©×ª×ž×©×™× ×•×§×‘×•×¦×•×ª +
/files, E:\FILES :דוגמ×ות enter the hostname of the machine on which this server is running setup iw הכנס ×ת ×©× ×”×ž×—×©×‘ בו שרת ×–×” רץ -enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup iw eGroupWare של URL-הכנס ×ת ×ž×™×§×•× ×” -
http://www.domain.com/egroupware   ×ו   /egroupware :×œ×“×•×’×ž× -
×œ×œ× ×§×• נטוי ×‘×¡×™×•× +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup iw eGroupWare של URL-הכנס ×ת ×ž×™×§×•× ×” +
http://www.domain.com/egroupware   ×ו   /egroupware :×œ×“×•×’×ž× +
×œ×œ× ×§×• נטוי ×‘×¡×™×•× 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 ×× -
×”×•× ×œ× ×™×›×•×œ לשנות הגדרות מסוימות בשעת ריצה, ×•×’× ×œ× ×œ×˜×¢×•×Ÿ מודול שעדיין ×œ× ×˜×¢×•× ×™× +
×”×•× ×œ× ×™×›×•×œ לשנות הגדרות מסוימות בשעת ריצה, ×•×’× ×œ× ×œ×˜×¢×•×Ÿ מודול שעדיין ×œ× ×˜×¢×•× ×™× 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 (שניות -
זקוק לזמן הרצה מירבי גבוה יותר. תצפה לבעיות ×œ×¢×ª×™× eGroupWare +
זקוק לזמן הרצה מירבי גבוה יותר. תצפה לבעיות ×œ×¢×ª×™× 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 ×œ× ×›×œ ×”××œ×’×•×¨×™×˜×ž×™× ×•×ž×¦×‘×™× ×©×œ -
×× ×תה נתקל בבעיות, נסה לכבות ×ותו +
×× ×תה נתקל בבעיות, נסה לכבות ×ותו 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup iw .בחר יישו×, הכנס גירסת יעד, והגש כדי לטפל בגירסה זו -
×× ×œ× ×ª×¦×™×™×Ÿ גרסה, רק טבל×ות הבסיסיות יותקנו עבור היישו×. -
×–×” ×§×•×“× ×™×¤×™×œ ×ת כל טבל×ות ×”×™×™×©×•× +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup iw .בחר יישו×, הכנס גירסת יעד, והגש כדי לטפל בגירסה זו +
×× ×œ× ×ª×¦×™×™×Ÿ גרסה, רק טבל×ות הבסיסיות יותקנו עבור היישו×. +
×–×” ×§×•×“× ×™×¤×™×œ ×ת כל טבל×ות ×”×™×™×©×•× 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.
setup iw שלך LDAP-היתה בעיה בהתחברות לשרת ה -there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup iw שלך LDAP-היתה בעיה בהתחברות לשרת ה -
שלך LDAP-× × ×œ×‘×“×•×§ ×ת הגדרות שרת ×” +there was a problem trying to connect to your ldap server.
setup iw שלך LDAP-היתה בעיה בהתחברות לשרת ה +there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup iw שלך LDAP-היתה בעיה בהתחברות לשרת ה +
שלך 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.
note: the default has been randomly generated. setup iw .×–×” צריך להיות ב×ורך של ×›-30 ×‘×ª×™× -
.הערה: ברירת המחדל חולל ב×ופן ×קר××™ -this stage is completed
setup iw שלב ×–×” הסתיי×
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup iw .×–×” צריך להיות ב×ורך של ×›-30 ×‘×ª×™× +
.הערה: ברירת המחדל חולל ב×ופן ×קר××™ +this stage is completed
setup iw שלב ×–×” הסתיי×
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 ?××™×–×” סוג של ניהול ×ž×•×©×‘×™× ×‘×¨×¦×•× ×š להשתמש -
?(עשוי להיות בעל ×‘×™×¦×•×¢×™× ×˜×•×‘×™× ×™×•×ª×¨ php4 ניהול ×ž×•×©×‘×™× ×©×œ) +
?(עשוי להיות בעל ×‘×™×¦×•×¢×™× ×˜×•×‘×™× ×™×•×ª×¨ 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
when admins login ? setup iw יבדוק ×× ×™×© גרסה חדשה eGroupWare-ברצונך ש -
×›×שר ×ž× ×”×œ×™× × ×›× ×¡×™× ×œ×ž×¢×¨×›×ª +would you like egroupware to check for a new version
when admins login ? setup iw יבדוק ×× ×™×© גרסה חדשה eGroupWare-ברצונך ש +
×›×שר ×ž× ×”×œ×™× × ×›× ×¡×™× ×œ×ž×¢×¨×›×ª 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.
setup iw .×תה מוכן לשלב ×”×–×”, ×בל השלב ×”×–×” עוד ×œ× × ×›×ª×‘
+you are ready for this stage, but this stage is not yet written.
setup iw .×תה מוכן לשלב ×”×–×”, ×בל השלב ×”×–×” עוד ×œ× × ×›×ª×‘
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
setup iw ×ין ×©×•× ×©×¤×” מותקנת. × × ×œ×”×ª×§×™×Ÿ ×חת כעת
-you have not created your header.inc.php yet!
you can create it now. setup iw !שלך header.inc.php-עוד ×œ× ×™×¦×¨×ª ×ת ×” -
×פשר ליצור ×›×–×” כעת +you do not have any languages installed. please install one now
setup iw ×ין ×©×•× ×©×¤×” מותקנת. × × ×œ×”×ª×§×™×Ÿ ×חת כעת
+you have not created your header.inc.php yet!
you can create it now. setup iw !שלך header.inc.php-עוד ×œ× ×™×¦×¨×ª ×ת ×” +
×פשר ליצור ×›×–×” כעת 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.
warning!
make backups! setup iw .שלך זקוק לעדכון header.inc.php-קובץ ה -
×זהרה! -
!גבה ×ת החומר +your header.inc.php needs upgrading.
warning!
make backups! setup iw .שלך זקוק לעדכון header.inc.php-קובץ ה +
×זהרה! +
!גבה ×ת החומר 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 !הטבל×ות שלך ייופלו ו×תה ת×בד × ×ª×•× ×™× diff --git a/setup/lang/phpgw_ja.lang b/setup/lang/phpgw_ja.lang index 4daadeaac3..fdc2e6569a 100644 --- a/setup/lang/phpgw_ja.lang +++ b/setup/lang/phpgw_ja.lang @@ -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¥¿¥¤¥×¤Ç   'application/octet-stream'   ¤ÎÂå¤ï¤ê¤Ë
Àµ¤·¤¤¥¿¥¤¥×¤ò»È¤¦ +attempt to use correct mimetype for ftp instead of default 'application/octet-stream' setup ja FTP ¤ÎMIME¥¿¥¤¥×¤Ç   'application/octet-stream'   ¤ÎÂå¤ï¤ê¤Ë
Àµ¤·¤¤¥¿¥¤¥×¤ò»È¤¦ authentication / accounts setup ja ǧ¾Ú/¥¢¥«¥¦¥ó¥È¾ðÊó auto create account records for authenticated users setup ja ǧ¾Ú¤·¤¿¥æ¡¼¥¶¾ðÊó¤ò¼«Æ°Åª¤ËºîÀ®¤¹¤ë auto-created user accounts expire setup ja ¼«Æ°ºîÀ®¤·¤¿¥æ¡¼¥¶¤ÎÍ­¸ú´ü¸Â available version setup ja ºÇ¿·¤Î
¥Ð¡¼¥¸¥ç¥ó -but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup ja
¤·¤«¤·¡¢¤³¤Î½èÍý¤¬¡¢¤¢¤Ê¤¿¤Î¥Ç¡¼¥¿¤òÇ˲õ¤·¤Æ¤·¤Þ¤Ã¤¿¾ì¹ç¤ËÈ÷¤¨¤Æ¡¢¥Ç¡¼¥¿¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò¤ª´«¤á¤·¤Þ¤¹¡£ +but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup ja
¤·¤«¤·¡¢¤³¤Î½èÍý¤¬¡¢¤¢¤Ê¤¿¤Î¥Ç¡¼¥¿¤òÇ˲õ¤·¤Æ¤·¤Þ¤Ã¤¿¾ì¹ç¤ËÈ÷¤¨¤Æ¡¢¥Ç¡¼¥¿¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò¤ª´«¤á¤·¤Þ¤¹¡£ 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,
or the table definition was incorrect setup ja ¼êÆ°¤Ç¥Æ¡¼¥Ö¥ë¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëɬÍפ¬¤¢¤ë¤«¡¢
¥Æ¡¼¥Ö¥ëÄêµÁ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó¡£ +because it requires manual table installation,
or the table definition was incorrect setup ja ¼êÆ°¤Ç¥Æ¡¼¥Ö¥ë¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëɬÍפ¬¤¢¤ë¤«¡¢
¥Æ¡¼¥Ö¥ëÄêµÁ¤¬Àµ¤·¤¯¤¢¤ê¤Þ¤»¤ó¡£ 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
setup ja ¸½ºß¤Î¸À¸ì: %1
+currently installed languages: %1
setup ja ¸½ºß¤Î¸À¸ì: %1
current version setup ja ¸½ºß¤Î
¥Ð¡¼¥¸¥ç¥ó 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
encryption (requires mcrypt) setup ja ¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¥»¥Ã¥·¥ç¥ó°Å¹æ²½¤Î¤¿¤á¤Î
Ǥ°Õ¥Æ¥­¥¹¥ÈÆþÎÏ(mcrypt »þɬÍ×) +enter some random text for app session
encryption (requires mcrypt) setup ja ¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¥»¥Ã¥·¥ç¥ó°Å¹æ²½¤Î¤¿¤á¤Î
Ǥ°Õ¥Æ¥­¥¹¥ÈÆþÎÏ(mcrypt »þɬÍ×) enter some random text for app session encryption setup ja ¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¥»¥Ã¥·¥ç¥ó°Å¹æ²½¤Î¤¿¤á¤ÎǤ°Õ¥Æ¥­¥¹¥ÈÆþÎÏ -enter the full path for temporary files.
Examples: /tmp, c:\temp setup ja ¥Æ¥ó¥Ý¥é¥ê¥Õ¥¡¥¤¥ë¡Ê¥Õ¥ë¥Ñ¥¹¡Ë
Î㡧/tmp ¤ä C:\TEMP ¤Ê¤É -enter the full path for users and group files.
examples: /files, e:\files setup ja ¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¤Î¥Õ¥¡¥¤¥ëÊݸÀè¡Ê¥Õ¥ë¥Ñ¥¹¡Ë
Î㡧/files ¤ä E:\FILES ¤Ê¤É +enter the full path for temporary files.
Examples: /tmp, c:\temp setup ja ¥Æ¥ó¥Ý¥é¥ê¥Õ¥¡¥¤¥ë¡Ê¥Õ¥ë¥Ñ¥¹¡Ë
Î㡧/tmp ¤ä C:\TEMP ¤Ê¤É +enter the full path for users and group files.
examples: /files, e:\files setup ja ¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¤Î¥Õ¥¡¥¤¥ëÊݸÀè¡Ê¥Õ¥ë¥Ñ¥¹¡Ë
Î㡧/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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup ja eGroupWare ¤Î URL
Î㡧http://www.itheart.com/egroupware   ¤ä   /egroupware ¤Ê¤É
ºÇ¸å¤Ï¥¹¥é¥Ã¥·¥å¤ò»ØÄꤷ¤Ê¤¤¤³¤È +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup ja eGroupWare ¤Î URL
Î㡧http://www.itheart.com/egroupware   ¤ä   /egroupware ¤Ê¤É
ºÇ¸å¤Ï¥¹¥é¥Ã¥·¥å¤ò»ØÄꤷ¤Ê¤¤¤³¤È 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 ´ûÄê¤Î¥Û¡¼¥à¥Ç¥£¥ì¥¯¥È¥ê¥×¥ì¥Õ¥£¥Ã¥¯¥¹
    (Î㡧/home ¤Ê¤é¤Ð /home/uername ¤È¤Ê¤ê¤Þ¤¹) +ldap default homedirectory prefix (e.g. /home for /home/username) setup ja ´ûÄê¤Î¥Û¡¼¥à¥Ç¥£¥ì¥¯¥È¥ê¥×¥ì¥Õ¥£¥Ã¥¯¥¹
    (Î㡧/home ¤Ê¤é¤Ð /home/uername ¤È¤Ê¤ê¤Þ¤¹) ldap default shell (e.g. /bin/bash) setup ja ´ûÄê¤Î¥·¥§¥ë   (Î㡧/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.
please check your LDAP server configuration setup ja There was a problem tring to connect to your LDAP server.
please check your LDAP server configuration +there was a problem tring to connect to your ldap server.
please check your LDAP server configuration setup ja There was a problem tring to connect to your LDAP server.
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
setup ja ¤³¤ÎÃʳ¬¤Ï´°Î»¤·¤Þ¤·¤¿¡£
-this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!THIS WILL DELETE ALL EXISTING ACCOUNTS!!!
setup ja £±¤Ä¤Î´ÉÍý¼Ô¥¢¥«¥¦¥ó¥È¤È£³¤Ä¤Î¥Ç¥â¥¢¥«¥¦¥ó¥È¤ò¥»¥Ã¥È¥¢¥Ã¥×¤·¤Þ¤¹¡£
¥Ç¥â¥¢¥«¥¦¥ó¥È¤Î¥æ¡¼¥¶Ì¾¤È¥Ñ¥¹¥ï¡¼¥É¤Ï demo/guest, demo2/guest, demo3/guest ¤Ç¤¹¡£
¸½ºß¤Î¥¢¥«¥¦¥ó¥È¤ò¤¹¤Ù¤Æºï½ü¤·¤Þ¤¹¤Î¤ÇÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£
-to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup ja ¤È¡¢£±¤Ä¤Î´ÉÍý¼Ô¥¢¥«¥¦¥ó¥È¤È£³¤Ä¤Î¥Ç¥â¥¢¥«¥¦¥ó¥È¤ò¥»¥Ã¥È¥¢¥Ã¥×¤·¤Þ¤¹¡£
¸½ºß¤Î¥¢¥«¥¦¥ó¥È¤ò¤¹¤Ù¤Æºï½ü¤·¤Þ¤¹¤Î¤ÇÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£ +this stage is completed
setup ja ¤³¤ÎÃʳ¬¤Ï´°Î»¤·¤Þ¤·¤¿¡£
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!THIS WILL DELETE ALL EXISTING ACCOUNTS!!!
setup ja £±¤Ä¤Î´ÉÍý¼Ô¥¢¥«¥¦¥ó¥È¤È£³¤Ä¤Î¥Ç¥â¥¢¥«¥¦¥ó¥È¤ò¥»¥Ã¥È¥¢¥Ã¥×¤·¤Þ¤¹¡£
¥Ç¥â¥¢¥«¥¦¥ó¥È¤Î¥æ¡¼¥¶Ì¾¤È¥Ñ¥¹¥ï¡¼¥É¤Ï demo/guest, demo2/guest, demo3/guest ¤Ç¤¹¡£
¸½ºß¤Î¥¢¥«¥¦¥ó¥È¤ò¤¹¤Ù¤Æºï½ü¤·¤Þ¤¹¤Î¤ÇÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£
+to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup ja ¤È¡¢£±¤Ä¤Î´ÉÍý¼Ô¥¢¥«¥¦¥ó¥È¤È£³¤Ä¤Î¥Ç¥â¥¢¥«¥¦¥ó¥È¤ò¥»¥Ã¥È¥¢¥Ã¥×¤·¤Þ¤¹¡£
¸½ºß¤Î¥¢¥«¥¦¥ó¥È¤ò¤¹¤Ù¤Æºï½ü¤·¤Þ¤¹¤Î¤ÇÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£ top setup ja ¾åÉô two weeks setup ja £²½µ´Ö 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
when admins login ? setup ja ´ÉÍý¼Ô¤Ç¥í¥°¥¤¥ó»þ¡¢eGroupWare¤Î¥Ð¡¼¥¸¥ç¥ó¥Á¥§¥Ã¥¯¤ò¹Ô¤¦ +would you like egroupware to check for a new version
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
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

Please upgrade to at least version 4.1.0 setup ja PHP¤Î¥Ð¡¼¥¸¥ç¥ó¤¬¸Å¤¤¤è¤¦¤Ç¤¹¡£
¥Ð¡¼¥¸¥ç¥ó¥¢¥Ã¥×¤ò¤ª´«¤á¤·¤Þ¤¹¡£
¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤Î PHP ¤Ç¤Ï¡¢eGroupWare ¤Î¤¹¤Ù¤Æ¤Îµ¡Ç½¤¬Àµ³Î¤ËÆ°ºî¤·¤Þ¤»¤ó¡£

Ver 4.1.0 °Ê¹ß¤Ë¥Ð¡¼¥¸¥ç¥ó¥¢¥Ã¥×¤·¤Æ¤¯¤À¤µ¤¤¡£ -You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup ja You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. +you appear to be running an old version of PHP
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

Please upgrade to at least version 4.1.0 setup ja PHP¤Î¥Ð¡¼¥¸¥ç¥ó¤¬¸Å¤¤¤è¤¦¤Ç¤¹¡£
¥Ð¡¼¥¸¥ç¥ó¥¢¥Ã¥×¤ò¤ª´«¤á¤·¤Þ¤¹¡£
¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤Î PHP ¤Ç¤Ï¡¢eGroupWare ¤Î¤¹¤Ù¤Æ¤Îµ¡Ç½¤¬Àµ³Î¤ËÆ°ºî¤·¤Þ¤»¤ó¡£

Ver 4.1.0 °Ê¹ß¤Ë¥Ð¡¼¥¸¥ç¥ó¥¢¥Ã¥×¤·¤Æ¤¯¤À¤µ¤¤¡£ +You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup ja You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
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.
setup ja You are ready for this stage, but this stage is not yet written.
-you do not have any languages installed. please install one now
setup ja ¤É¤Î¸À¸ì´Ä¶­¤â¤¢¤ê¤Þ¤»¤ó¡£ºÇÄ㣱¤Ä¤Î¸À¸ì´Ä¶­¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ²¼¤µ¤¤¡£
+you are ready for this stage, but this stage is not yet written.
setup ja You are ready for this stage, but this stage is not yet written.
+you do not have any languages installed. please install one now
setup ja ¤É¤Î¸À¸ì´Ä¶­¤â¤¢¤ê¤Þ¤»¤ó¡£ºÇÄ㣱¤Ä¤Î¸À¸ì´Ä¶­¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ²¼¤µ¤¤¡£
you must enter a username for the admin setup ja ¥æ¡¼¥¶ID¤òÆþÎϤ·¤Æ²¼¤µ¤¤¡£ your applications are current setup ja ¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï´°Î»¤·¤Þ¤·¤¿¡£ your database does not exist setup ja ¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬Â¸ºß¤·¤Þ¤»¤ó¡£ diff --git a/setup/lang/phpgw_ko.lang b/setup/lang/phpgw_ko.lang index 4164584c7e..00704506a1 100644 --- a/setup/lang/phpgw_ko.lang +++ b/setup/lang/phpgw_ko.lang @@ -5,7 +5,7 @@ 00 (disable) setup ko 00 ( ¹Ì»ç¿ë / Ãßõ ) 13 (ntp) setup ko 13 (ntp) 80 (http) setup ko 80 (http) -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup ko ÀÌ°ÍÀº 1°³ÀÇ °ü¸®ÀÚ °èÁ¤µÂ 3°³ÀÇ µ¥¸ð °èÁ¤À» »ý¼ºÇÕ´Ï´Ù
»ç¿ëÀÚÀ̸§/¾ÏÈ£´Â demo/guest, demo2/guest, demo3/guest ÀÔ´Ï´Ù +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup ko ÀÌ°ÍÀº 1°³ÀÇ °ü¸®ÀÚ °èÁ¤µÂ 3°³ÀÇ µ¥¸ð °èÁ¤À» »ý¼ºÇÕ´Ï´Ù
»ç¿ëÀÚÀ̸§/¾ÏÈ£´Â 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 highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup ko ÇÏÁö¸¸ ÀúÈñ´Â ½ºÅ©¸³Æ®°¡ ½ÇÇ൵Áß µ¥ÀÌÅ͸¦ ¼Õ»óÇÒ ¼ö Àֱ⶧¹®¿¡ ±ÍÇÏÀÇ Å×À̺íÀ» ¹é¾÷Çϱæ Àû±Ø ±ÇÀåÇÕ´Ï´Ù
ÀÌ ÀÚµ¿È­µÈ ½ºÅ©¸³Æ®´Â µ¥ÀÌÅͼսÇÀÌ ÀϾ¼ö ÀÖ½À´Ï´Ù. +but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup ko ÇÏÁö¸¸ ÀúÈñ´Â ½ºÅ©¸³Æ®°¡ ½ÇÇ൵Áß µ¥ÀÌÅ͸¦ ¼Õ»óÇÒ ¼ö Àֱ⶧¹®¿¡ ±ÍÇÏÀÇ Å×À̺íÀ» ¹é¾÷Çϱæ Àû±Ø ±ÇÀåÇÕ´Ï´Ù
ÀÌ ÀÚµ¿È­µÈ ½ºÅ©¸³Æ®´Â µ¥ÀÌÅͼսÇÀÌ ÀϾ¼ö ÀÖ½À´Ï´Ù. 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,
or the table definition was incorrect setup ko ÀÌ´Â Å×ÀÌºí ¼³Ä¡¸¦ ¼öµ¿À¸·Î ÇؾßÇϰųª, Å×À̺í Á¤ÀÇ°¡ Ʋ·È±â ¶§¹®ÀÔ´Ï´Ù +because it requires manual table installation,
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.
instead you can %1 the file. setup ko ÆÄÀÏ ±ÇÇÑÀÌ ¾ø±â¶§¹®¿¡ header.inc.php¸¦ »ý¼ºÇÒ¼ö ¾ø½À´Ï´Ù. ´ë½Å %1 ÆÄÀÏ·Î ÇÒ¼ö ÀÖ½À´Ï´Ù +cannot create the header.inc.php due to file permission restrictions.
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
setup ko ÇöÀç ¼³Ä¡µÈ ¾ð¾î: %1
+currently installed languages: %1
setup ko ÇöÀç ¼³Ä¡µÈ ¾ð¾î: %1
database successfully converted from '%1' to '%2' setup ko µ¥ÀÌÅͺ£À̽º°¡ '%1'¿¡¼­ '%2'À¸·Î Àüȯ¿¡ ¼º°øÇß½À´Ï´Ù. -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup ko ³¯Â¥½Ã°£ Æ÷Æ®¸¦ ¼³Á¤ÇÕ´Ï´Ù
¸¸¾à 13¹ø Æ÷Æ®¸¦ »ç¿ëÇϽŴٸé ÀûÇÕÇÑ ¹æÈ­º® Á¤Ã¥À» ¼³Á¤ÇϽðí ÀÌ ÆäÀÌÁö¸¦ ¼­ºê¹Ô(submit)ÇØ ÁÖ¼¼¿ä.
(Æ÷Æ®:13 / È£½ºÆ®:129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup ko ³¯Â¥½Ã°£ Æ÷Æ®¸¦ ¼³Á¤ÇÕ´Ï´Ù
¸¸¾à 13¹ø Æ÷Æ®¸¦ »ç¿ëÇϽŴٸé ÀûÇÕÇÑ ¹æÈ­º® Á¤Ã¥À» ¼³Á¤ÇϽðí ÀÌ ÆäÀÌÁö¸¦ ¼­ºê¹Ô(submit)ÇØ ÁÖ¼¼¿ä.
(Æ÷Æ®: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
encryption (requires mcrypt) setup ko ÀÀ¿ëÇÁ·Î±×·¥ ¼¼¼Ç ¾Ïȣȭ¿¡
»ç¿ëÇÒ ÀÓÀÇ ¹®ÀÚ¿­À» ÀÔ·ÂÇϼ¼¿ä (mcrypt ÇÊ¿ä) -enter the full path for temporary files.
examples: /tmp, c:\temp setup ko Àӽà ÆÄÀÏÀÇ ¿ÏÀüÇÑ°æ·Î¸¦ ÀÔ·ÂÇϼ¼¿ä.
¿¹: /tmp, C:\TEMP -enter the full path for users and group files.
examples: /files, e:\files setup ko »ç¿ëÀÚ¿Í ±×·ìÆÄÀÏÀ» À§ÇÑ ¿ÏÀüÇÑ°æ·Î¸¦ ÀÔ·ÂÇϼ¼¿ä.
¿¹: /files, E:\FILES +enter some random text for app_session
encryption (requires mcrypt) setup ko ÀÀ¿ëÇÁ·Î±×·¥ ¼¼¼Ç ¾Ïȣȭ¿¡
»ç¿ëÇÒ ÀÓÀÇ ¹®ÀÚ¿­À» ÀÔ·ÂÇϼ¼¿ä (mcrypt ÇÊ¿ä) +enter the full path for temporary files.
examples: /tmp, c:\temp setup ko Àӽà ÆÄÀÏÀÇ ¿ÏÀüÇÑ°æ·Î¸¦ ÀÔ·ÂÇϼ¼¿ä.
¿¹: /tmp, C:\TEMP +enter the full path for users and group files.
examples: /files, e:\files setup ko »ç¿ëÀÚ¿Í ±×·ìÆÄÀÏÀ» À§ÇÑ ¿ÏÀüÇÑ°æ·Î¸¦ ÀÔ·ÂÇϼ¼¿ä.
¿¹: /files, E:\FILES enter the hostname of the machine on which this server is running setup ko ÀÌ ¼­¹ö°¡ ½ÇÇàµÇ°í ÀÖ´Â ÀåºñÀÇ È£½ºÆ® À̸§À» ÀÔ·ÂÇϼ¼¿ä -enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup ko eGroupWareÀÇ URLÀ» ÀÔ·Â
¿¹: http://domain.com/egroupware  À̳ª  /egroupware
´Ü ½½·¡½Ã(/)·Î ³¡³ªÁö ¾Ê°Ô Çϼ¼¿ä +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup ko eGroupWareÀÇ URLÀ» ÀÔ·Â
¿¹: http://domain.com/egroupware  À̳ª  /egroupware
´Ü ½½·¡½Ã(/)·Î ³¡³ªÁö ¾Ê°Ô Çϼ¼¿ä 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup ko ÀÀ¿ëÇÁ·Î±×·¥À» ¼±ÅÃÇؼ­ ´ë»ó ¹öÀüÀ» ÀÔ·ÂÇÑÈÄ º¸³»¼¼¿ä(submit).
¸¸¾à ¹öÀüÀ» ÀÔ·ÂÇÏÁö ¾ÊÀ¸½Ã¸é, ¼³Ä¡µÈ ÀÀ¿ëÇÁ·Î±×·¥ÀÇ ±âº» Å×À̺íµé¸¸ ¼³Ä¡µË´Ï´Ù.
ÀÌ ÀÛ¾÷Àº ¸ðµç ÀÀ¿ëÇÁ·Î±×·¥ÀÇ Å×À̺íÀ» ¸ÕÀú »èÁ¦ÇÕ´Ï´Ù +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup ko ÀÀ¿ëÇÁ·Î±×·¥À» ¼±ÅÃÇؼ­ ´ë»ó ¹öÀüÀ» ÀÔ·ÂÇÑÈÄ º¸³»¼¼¿ä(submit).
¸¸¾à ¹öÀüÀ» ÀÔ·ÂÇÏÁö ¾ÊÀ¸½Ã¸é, ¼³Ä¡µÈ ÀÀ¿ëÇÁ·Î±×·¥ÀÇ ±âº» Å×À̺íµé¸¸ ¼³Ä¡µË´Ï´Ù.
ÀÌ ÀÛ¾÷Àº ¸ðµç ÀÀ¿ëÇÁ·Î±×·¥ÀÇ Å×À̺íÀ» ¸ÕÀú »èÁ¦ÇÕ´Ï´Ù 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.
setup ko LDAP¼­¹ö¿¡ Á¢¼ÓÇϴµ¥ ¹®Á¦°¡ ÀÖ½À´Ï´Ù.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup ko +* LDAP¼­¹ö¿¡ Á¢¼ÓÇϴµ¥ ¹®Á¦°¡ ÀÖ½À´Ï´Ù.
±ÍÇÏÀÇ LDAP ¼­¹öÀÇ ±¸¼ºÀ» È®ÀÎÇغ¸¼¼¿ä +there was a problem trying to connect to your ldap server.
setup ko LDAP¼­¹ö¿¡ Á¢¼ÓÇϴµ¥ ¹®Á¦°¡ ÀÖ½À´Ï´Ù.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup ko +* LDAP¼­¹ö¿¡ Á¢¼ÓÇϴµ¥ ¹®Á¦°¡ ÀÖ½À´Ï´Ù.
±ÍÇÏÀÇ 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.
note: the default has been randomly generated. setup ko 30 ¹ÙÀÌÆ® ³»¿Ü¿©¾ß ÇÕ´Ï´Ù.
ÁÖÀÇ: ±âº»¼³Á¤Àº ¾Æ¹«°ªÀ̳ª »ý¼ºµË´Ï´Ù -this stage is completed
setup ko ½ºÅ×ÀÌÁö°¡ ¿Ï·áµÊ
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup ko 30 ¹ÙÀÌÆ® ³»¿Ü¿©¾ß ÇÕ´Ï´Ù.
ÁÖÀÇ: ±âº»¼³Á¤Àº ¾Æ¹«°ªÀ̳ª »ý¼ºµË´Ï´Ù +this stage is completed
setup ko ½ºÅ×ÀÌÁö°¡ ¿Ï·áµÊ
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 ¹è¿­À» ij½¬ÇÏ±æ ¿øÇϽʴϱî? -would you like egroupware to check for a new version
when admins login ? setup ko °ü¸®ÀÚ°¡ ·Î±×ÀÎÇßÀ»¶§
eGroupWare »õ¹öÀüÀ» È®ÀÎÇÒ±î¿ä? +would you like egroupware to check for a new version
when admins login ? setup ko °ü¸®ÀÚ°¡ ·Î±×ÀÎÇßÀ»¶§
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup ko eGroupWare º£Å¸¹öÀüÀ» »ç¿ëÇÏ½Ã°í °è½Ê´Ï´Ù.
ÀÌ ¹öÀüÀº ´õÀÌ»ó Áö¿øÇÏÁö ¾ÊÀ¸¸ç ¼³Á¤¿¡ ¾÷±×·¹À̵åÇÒ °æ·Îµµ ¾ø½À´Ï´Ù
¸ÕÀú 0.9.10 ¹öÀü(º£Å¸¾÷±×·¹À̵å Áö¿ø ¸¶Áö¸·¹öÀü)À¸·Î ¾÷±×·¹À̵å ÇϽðí
±× ÈÄ¿¡ ÃֽŠ¹öÀüÀ¸·Î ¾÷±×·¹À̵å Çϼ¼¿ä. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup ko PHP¹öÀüÀÌ ¿À·¡µÇ¾ú½À´Ï´Ù
»õ·Î¿î ¹öÀüÀ¸·Î ¾÷±×·¹À̵å ÇÏ½Ã±æ ±ÇÀåÇÕ´Ï´Ù.
ÀÌÀü ¹öÀüÀÇ PHP´Â eGroupWare°¡ Á¤»óÀûÀ¸·Î µ¿ÀÛÇÏÁö ¾Ê½À´Ï´Ù

Àû¾îµµ %1 ¹öÀüÀ¸·Î´Â ¾÷±×·¹À̵å ÇØÁÖ¼Å¾ß ÇÕ´Ï´Ù. +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup ko eGroupWare º£Å¸¹öÀüÀ» »ç¿ëÇÏ½Ã°í °è½Ê´Ï´Ù.
ÀÌ ¹öÀüÀº ´õÀÌ»ó Áö¿øÇÏÁö ¾ÊÀ¸¸ç ¼³Á¤¿¡ ¾÷±×·¹À̵åÇÒ °æ·Îµµ ¾ø½À´Ï´Ù
¸ÕÀú 0.9.10 ¹öÀü(º£Å¸¾÷±×·¹À̵å Áö¿ø ¸¶Áö¸·¹öÀü)À¸·Î ¾÷±×·¹À̵å ÇϽðí
±× ÈÄ¿¡ ÃֽŠ¹öÀüÀ¸·Î ¾÷±×·¹À̵å Çϼ¼¿ä. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup ko PHP¹öÀüÀÌ ¿À·¡µÇ¾ú½À´Ï´Ù
»õ·Î¿î ¹öÀüÀ¸·Î ¾÷±×·¹À̵å ÇÏ½Ã±æ ±ÇÀåÇÕ´Ï´Ù.
ÀÌÀü ¹öÀüÀÇ PHP´Â eGroupWare°¡ Á¤»óÀûÀ¸·Î µ¿ÀÛÇÏÁö ¾Ê½À´Ï´Ù

Àû¾îµµ %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.
setup ko ÇöÀç ½ºÅ×ÀÌÁö¸¦ ¼öÇàÇÒ Áغñ°¡ µÇ¾ú½À´Ï´Ù¸¸, ¾ÆÁ÷ ¿ÏÀüÈ÷ ÀÛ¼ºµÇÁö´Â ¾Ê¾Ò½À´Ï´Ù.
+you are ready for this stage, but this stage is not yet written.
setup ko ÇöÀç ½ºÅ×ÀÌÁö¸¦ ¼öÇàÇÒ Áغñ°¡ µÇ¾ú½À´Ï´Ù¸¸, ¾ÆÁ÷ ¿ÏÀüÈ÷ ÀÛ¼ºµÇÁö´Â ¾Ê¾Ò½À´Ï´Ù.
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
setup ko ¾Æ¹«¾ð¾îµµ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù. ÇÑ°¡Áö¸¦ Áö±Ý ¼³Ä¡Çϼ¼¿ä
-you have not created your header.inc.php yet!
you can create it now. setup ko ±ÍÇÏÀÇ header.inc.php¸¦ ¾ÆÁ÷ »ý¼ºÇÏÁö ¾Ê¾Ò½À´Ï´Ù!
Áö±Ý »ý¼ºÇϼ¼¿ä. +you do not have any languages installed. please install one now
setup ko ¾Æ¹«¾ð¾îµµ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù. ÇÑ°¡Áö¸¦ Áö±Ý ¼³Ä¡Çϼ¼¿ä
+you have not created your header.inc.php yet!
you can create it now. setup ko ±ÍÇÏÀÇ header.inc.php¸¦ ¾ÆÁ÷ »ý¼ºÇÏÁö ¾Ê¾Ò½À´Ï´Ù!
Áö±Ý »ý¼ºÇϼ¼¿ä. 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.
warning!
make backups! setup ko ±ÍÇÏÀÇ header.inc.php ´Â ¾÷±×·¹À̵尡 ÇÊ¿äÇÕ´Ï´Ù.
°æ°í!
¹é¾÷Çϼ¼¿ä! +your header.inc.php needs upgrading.
warning!
make backups! setup ko ±ÍÇÏÀÇ header.inc.php ´Â ¾÷±×·¹À̵尡 ÇÊ¿äÇÕ´Ï´Ù.
°æ°í!
¹é¾÷Çϼ¼¿ä! 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 Å×À̺íÀÌ º¯°æµÇ¸é¼­ µ¥ÀÌÅ͸¦ ÀÒÀ»¼öµµ ÀÖ½À´Ï´Ù. diff --git a/setup/lang/phpgw_nl.lang b/setup/lang/phpgw_nl.lang index c5bd9cf176..929778f563 100644 --- a/setup/lang/phpgw_nl.lang +++ b/setup/lang/phpgw_nl.lang @@ -6,7 +6,7 @@ 00 (disable) setup nl 00 (deactiveer / aanbevolen) 13 (ntp) setup nl 13 (ntp) 80 (http) setup nl 80 (http) -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup nl Dit maakt 1 beheerdersaccount en 3 demo accounts
De gebruikersnamen/wachtwoorden zijn: demo/guest, demo2/guest and demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup nl Dit maakt 1 beheerdersaccount en 3 demo accounts
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.
setup nl U bent klaar voor dit stadium, maar dit stadium is nog niet weggeschreven.
+you are ready for this stage, but this stage is not yet written.
setup nl U bent klaar voor dit stadium, maar dit stadium is nog niet weggeschreven.
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
setup nl U heeft nog geen talen geïnstalleerd. Doe dit a.u.b. nu.
-you have not created your header.inc.php yet!
you can create it now. setup nl U heeft nog geen header.inc.php gemaakt!
U kunt dit nu doen. +you do not have any languages installed. please install one now
setup nl U heeft nog geen talen geïnstalleerd. Doe dit a.u.b. nu.
+you have not created your header.inc.php yet!
you can create it now. setup nl U heeft nog geen header.inc.php gemaakt!
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.
warning!
make backups! setup nl Het is noodzakelijk uw header.inc.php bij te werken.
+your header.inc.php needs upgrading.
warning!
make backups! setup nl Het is noodzakelijk uw header.inc.php bij te werken.
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 !! diff --git a/setup/lang/phpgw_pl.lang b/setup/lang/phpgw_pl.lang index 9501225a13..bdc9063cca 100755 --- a/setup/lang/phpgw_pl.lang +++ b/setup/lang/phpgw_pl.lang @@ -1,5 +1,5 @@ (account deletion in sql only) setup pl (dotyczy tylko kont w SQL) -
import has been completed! click here to return to setup
setup pl
Import has been completed! Click here to return to setup
+
import has been completed! click here to return to setup
setup pl
Import has been completed! Click here to return to setup
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 highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup pl but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. +but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup pl but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. 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,
or the table definition was incorrect setup pl because it requires manual table installation,
or the table definition was incorrect +because it requires manual table installation,
or the table definition was incorrect setup pl because it requires manual table installation,
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
setup pl Zainstalowane wersje jêzykowe: %1
+currently installed languages: %1
setup pl Zainstalowane wersje jêzykowe: %1
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
encryption (requires mcrypt) setup pl Wprowad¼ losowy tekst dla zaszyfrowania
sesji aplikacji (wymaga mcrypt) -enter the full path for temporary files.
examples: /tmp, c:\temp setup pl Podaj pe³n± ¶cie¿kê do katalogu dla plików tymczasowych.
Na przyk³ad: /tmp, C:\TEMP -enter the full path for users and group files.
examples: /files, e:\files setup pl Podaj pe³n± ¶ie¿kê do plików u¿ytkowników i grup.
Na przyk³ad: /files, E:\FILES +enter some random text for app_session
encryption (requires mcrypt) setup pl Wprowad¼ losowy tekst dla zaszyfrowania
sesji aplikacji (wymaga mcrypt) +enter the full path for temporary files.
examples: /tmp, c:\temp setup pl Podaj pe³n± ¶cie¿kê do katalogu dla plików tymczasowych.
Na przyk³ad: /tmp, C:\TEMP +enter the full path for users and group files.
examples: /files, e:\files setup pl Podaj pe³n± ¶ie¿kê do plików u¿ytkowników i grup.
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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup pl Podaj URL do twojego portala eGroupWare's URL.
Na przyk³ad: http://www.domain.com/egroupware   or   /egroupware
Bez koñcz±cego ciacha (,,/'') +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup pl Podaj URL do twojego portala eGroupWare's URL.
Na przyk³ad: http://www.domain.com/egroupware   or   /egroupware
Bez koñcz±cego ciacha (,,/'') 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup pl Select an app, enter a target version, then submit to process to that version.
If you do not enter a version, only the baseline tables will be installed for the app.
THIS WILL DROP ALL OF THE APPS' TABLES FIRST! +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup pl Select an app, enter a target version, then submit to process to that version.
If you do not enter a version, only the baseline tables will be installed for the app.
THIS WILL DROP ALL OF THE APPS' TABLES FIRST! 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.
please check your ldap server configuration setup pl There was a problem tring to connect to your LDAP server.
please check your LDAP server configuration +there was a problem tring to connect to your ldap server.
please check your ldap server configuration setup pl There was a problem tring to connect to your LDAP server.
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
setup pl Etap zakoñczony
-this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup pl Zostanie utworzone jedno konto administratora i trzy konta demonstracyne
Nazwy u¿ytkowników/has³a: demo/guest, demo2/guest i demo3/guest.
UWAGA! Wszystkie istniej±ce konta zostan± usuniête!!!
-to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup pl aby za³o¿yæ jedno konto administracyjne i trzy konta demo.
Istniej±ce konta zostan± usuniete! +this stage is completed
setup pl Etap zakoñczony
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup pl Zostanie utworzone jedno konto administratora i trzy konta demonstracyne
Nazwy u¿ytkowników/has³a: demo/guest, demo2/guest i demo3/guest.
UWAGA! Wszystkie istniej±ce konta zostan± usuniête!!!
+to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup pl aby za³o¿yæ jedno konto administracyjne i trzy konta demo.
Istniej±ce konta zostan± usuniete! 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
when admins login ? setup pl Chcesz sprawdzaæ czy jest nowa wersja eGroupWare
gdy loguje siê administrator? +would you like egroupware to check for a new version
when admins login ? setup pl Chcesz sprawdzaæ czy jest nowa wersja eGroupWare
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup pl You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version 4.1.0 setup pl You appear to be running an old version of PHP
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

Please upgrade to at least version 4.1.0 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup pl You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version 4.1.0 setup pl You appear to be running an old version of PHP
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

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.
setup pl You are ready for this stage, but this stage is not yet written.
-you do not have any languages installed. please install one now
setup pl You do not have any languages installed. Please install one now
+you are ready for this stage, but this stage is not yet written.
setup pl You are ready for this stage, but this stage is not yet written.
+you do not have any languages installed. please install one now
setup pl You do not have any languages installed. Please install one now
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 diff --git a/setup/lang/phpgw_pt-br.lang b/setup/lang/phpgw_pt-br.lang index ff2824ac3d..2b34f3c814 100644 --- a/setup/lang/phpgw_pt-br.lang +++ b/setup/lang/phpgw_pt-br.lang @@ -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) -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup pt-br Isto irá criar 1 conta de administrador e 3 contas demo
Os usuários/senhas são: demo/guest, demo2/guest and demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup pt-br Isto irá criar 1 conta de administrador e 3 contas demo
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 highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup pt-br é altamente recomendável fazer uma cópia de segurança das tabelas do banco de dados caso o script danifique seus dados.
Estes scripts automáticos podem destruir seus dados facilmente +but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup pt-br é altamente recomendável fazer uma cópia de segurança das tabelas do banco de dados caso o script danifique seus dados.
Estes scripts automáticos podem destruir seus dados facilmente 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,
or the table definition was incorrect setup pt-br porque requer instalação das tabelas do banco de dados manualmente,
ou a definição da tabela está incorreta +because it requires manual table installation,
or the table definition was incorrect setup pt-br porque requer instalação das tabelas do banco de dados manualmente,
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.
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.
Em vez disso você deve %1 o arquivo. +cannot create the header.inc.php due to file permission restrictions.
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.
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
setup pt-br Idiomas instalados atualmente: %1
+currently installed languages: %1
setup pt-br Idiomas instalados atualmente: %1
database successfully converted from '%1' to '%2' setup pt-br Conversão bem sucedida do banco de dados de '%1' para '%2' -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup pt-br Nota ntp
se estiver usando a porta 13, por favor configure as regras de acesso do seu firewall corretamente antes de enviar essa página
(port 13 / servidor 129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup pt-br Nota ntp
se estiver usando a porta 13, por favor configure as regras de acesso do seu firewall corretamente antes de enviar essa página
(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
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.
examples: /tmp, c:\temp setup pt-br Digite o caminho completo para arquivos temporários.
Exemplos: /tmp, C:TEMP -enter the full path for temporary files.
examples: /tmp, c:temp setup pt-br Digite o caminho completo para arquivos temporários.
Ex.: /tmp, C:TEMP -enter the full path for users and group files.
examples: /files, e:\files setup pt-br Digite o caminho completo para arquivos de usuários e grupos.
Exemplos: /files, E:FILES -enter the full path for users and group files.
examples: /files, e:files setup pt-br Digite o caminho completo para arquivos de usuários e grupos.
Ex.: /files, E:FILES +enter some random text for app_session
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.
examples: /tmp, c:\temp setup pt-br Digite o caminho completo para arquivos temporários.
Exemplos: /tmp, C:TEMP +enter the full path for temporary files.
examples: /tmp, c:temp setup pt-br Digite o caminho completo para arquivos temporários.
Ex.: /tmp, C:TEMP +enter the full path for users and group files.
examples: /files, e:\files setup pt-br Digite o caminho completo para arquivos de usuários e grupos.
Exemplos: /files, E:FILES +enter the full path for users and group files.
examples: /files, e:files setup pt-br Digite o caminho completo para arquivos de usuários e grupos.
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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup pt-br Digite a URL do eGroupWare.
Ex.: http://www.dominio.com.br/egroupware   ou   /egroupware
Sem a barra final +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup pt-br Digite a URL do eGroupWare.
Ex.: http://www.dominio.com.br/egroupware   ou   /egroupware
Sem a barra final 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup pt-br Selecione um aplicativo, escolha a versão de destino e clique em Enviar para processar esta versão.
Se você não definir uma versão somente as tabelas base serão instaladas para o aplicativo.
Primeiro, esta operação irá remover todas as tabelas de Aplicativos! +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup pt-br Selecione um aplicativo, escolha a versão de destino e clique em Enviar para processar esta versão.
Se você não definir uma versão somente as tabelas base serão instaladas para o aplicativo.
Primeiro, esta operação irá remover todas as tabelas de Aplicativos! 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.
setup pt-br Ocorreu um problema durante a tentativa de conexão com o servidor LDAP
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup pt-br Ocorreu um problema durante a tentativa de conexão com o servidor LDAP
por favor verifique as configurações do servidor LDAP +there was a problem trying to connect to your ldap server.
setup pt-br Ocorreu um problema durante a tentativa de conexão com o servidor LDAP
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup pt-br Ocorreu um problema durante a tentativa de conexão com o servidor LDAP
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.
note: the default has been randomly generated. setup pt-br Isto deve ter aproximadamente 30 bytes.
Nota: o valor padrão foi aleatóriamente gerado -this stage is completed
setup pt-br Este passo está completo
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup pt-br Isto deve ter aproximadamente 30 bytes.
Nota: o valor padrão foi aleatóriamente gerado +this stage is completed
setup pt-br Este passo está completo
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
when admins login ? setup pt-br Deseja que o eGroupWare verifique se há uma nova versão disponível
quando administradores estejam acessando o sistema? +would you like egroupware to check for a new version
when admins login ? setup pt-br Deseja que o eGroupWare verifique se há uma nova versão disponível
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup pt-br Aparentemente você está usando uma versão pré-beta do eGroupWare.
Estas versões não são mais suportadas, e não há como usar o configurador para atualizá-las.
Você deve primeiro atualizar para a versão 0.9.10 (a última versão que suporta atualização de pré-betas)
e então atualizar a partir desta versão para a versão atual. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup pt-br Aparentemente você está rodando uma versão antiga do PHP
é altamente recomendável que você faça a atualização para uma versão mais nova
Versões antigas do PHP podem não rodar corretamente com o eGroupWare.

Por favor atualize para, no mínimo, a versão %1 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup pt-br Aparentemente você está usando uma versão pré-beta do eGroupWare.
Estas versões não são mais suportadas, e não há como usar o configurador para atualizá-las.
Você deve primeiro atualizar para a versão 0.9.10 (a última versão que suporta atualização de pré-betas)
e então atualizar a partir desta versão para a versão atual. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup pt-br Aparentemente você está rodando uma versão antiga do PHP
é altamente recomendável que você faça a atualização para uma versão mais nova
Versões antigas do PHP podem não rodar corretamente com o eGroupWare.

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.
setup pt-br Você está pronto para este passo, mas este estágio não está escrito ainda.
+you are ready for this stage, but this stage is not yet written.
setup pt-br Você está pronto para este passo, mas este estágio não está escrito ainda.
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
setup pt-br Não há nenhum idioma instalado. Por favor instale um agora
-you have not created your header.inc.php yet!
you can create it now. setup pt-br Você ainda não criou seu arquivo heades.inc.php!
Você pode criá-lo agora. +you do not have any languages installed. please install one now
setup pt-br Não há nenhum idioma instalado. Por favor instale um agora
+you have not created your header.inc.php yet!
you can create it now. setup pt-br Você ainda não criou seu arquivo heades.inc.php!
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.
warning!
make backups! setup pt-br Seu arquivo header.inc.php necessita de atualização
AVISO!
FAÇA CÓPIAS DE SEGURANÇA! +your header.inc.php needs upgrading.
warning!
make backups! setup pt-br Seu arquivo header.inc.php necessita de atualização
AVISO!
FAÇA CÓPIAS DE SEGURANÇA! 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. diff --git a/setup/lang/phpgw_pt.lang b/setup/lang/phpgw_pt.lang index c46839b636..d6a21d382f 100644 --- a/setup/lang/phpgw_pt.lang +++ b/setup/lang/phpgw_pt.lang @@ -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 highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup pt é altamente recomendável fazer um backup das tabelas do banco de dados caso o script danifique seus dados.
Estes scripts automáticos podem destruir seus dados facilmente +but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup pt é altamente recomendável fazer um backup das tabelas do banco de dados caso o script danifique seus dados.
Estes scripts automáticos podem destruir seus dados facilmente 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,
or the table definition was incorrect setup pt pois requer instalação das tabelas do banco de dados manualmente,
ou a definição da tabela está incorreta +because it requires manual table installation,
or the table definition was incorrect setup pt pois requer instalação das tabelas do banco de dados manualmente,
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 -
Import has been completed! Click here to return to setup
setup pt
A importação foi completada! Clique aqui para retornar para configuração
+
Import has been completed! Click here to return to setup
setup pt
A importação foi completada! Clique aqui para retornar para configuração
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
setup pt Idiomas instalados atualmente: %1
+currently installed languages: %1
setup pt Idiomas instalados atualmente: %1
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
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 (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.
Examples: /tmp, C:\TEMP setup pt Digite o caminho completo para arquivos temporários.
Exemplos: /tmp, C:TEMP -Enter the full path for users and group files.
Examples: /files, E:\FILES setup pt Digite o caminho completo para arquivos de usuários e grupos.
Exemplos: /files, E:FILES +Enter the full path for temporary files.
Examples: /tmp, C:\TEMP setup pt Digite o caminho completo para arquivos temporários.
Exemplos: /tmp, C:TEMP +Enter the full path for users and group files.
Examples: /files, E:\FILES setup pt Digite o caminho completo para arquivos de usuários e grupos.
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.
Example: http://www.domain.com/egroupware   or   /egroupware
No trailing slash setup pt Digite a URL do eGroupWare.
Exemplo: http://www.dominio.com.br/egroupware   ou   /egroupware
Sem a barra final +Enter the location of eGroupWare's URL.
Example: http://www.domain.com/egroupware   or   /egroupware
No trailing slash setup pt Digite a URL do eGroupWare.
Exemplo: http://www.dominio.com.br/egroupware   ou   /egroupware
Sem a barra final 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.
If you do not enter a version, only the baseline tables will be installed for the app.
THIS WILL DROP ALL OF THE APPS' TABLES FIRST! setup pt Selecione uma aplicação, escolha a versão de destino e clique em Enviar para processar esta versão.
Se você não definir uma versão somente as tabelas base serão instaladas para a aplicação.
Isto irá limpar todas aplicações da tabela primeiro! +Select an app, enter a target version, then submit to process to that version.
If you do not enter a version, only the baseline tables will be installed for the app.
THIS WILL DROP ALL OF THE APPS' TABLES FIRST! setup pt Selecione uma aplicação, escolha a versão de destino e clique em Enviar para processar esta versão.
Se você não definir uma versão somente as tabelas base serão instaladas para a aplicação.
Isto irá limpar todas aplicações da tabela primeiro! 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.
please check your LDAP server configuration setup pt Houve um problema ao tentar conectar com o servidor LDAP.
Verifique sua connfiguração +there was a problem tring to connect to your ldap server.
please check your LDAP server configuration setup pt Houve um problema ao tentar conectar com o servidor LDAP.
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
setup pt Este passo está completo
-this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!THIS WILL DELETE ALL EXISTING ACCOUNTS!!!
setup pt Isto irá criar 1 conta de administrador e 3 contas de usuários para demonstração
Os usuários/senhas são: demo/guest, demo2/guest and demo3/guest.
!!!Isto irá remover TODAS as contas e grupos existentes!!!
+this stage is completed
setup pt Este passo está completo
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!THIS WILL DELETE ALL EXISTING ACCOUNTS!!!
setup pt Isto irá criar 1 conta de administrador e 3 contas de usuários para demonstração
Os usuários/senhas são: demo/guest, demo2/guest and demo3/guest.
!!!Isto irá remover TODAS as contas e grupos existentes!!!
top setup pt topo -to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup pt para configurar 1 conta de administrador e 3 contas de demonstração.
Isto irá remover todas as contas existentes +to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup pt para configurar 1 conta de administrador e 3 contas de demonstração.
Isto irá remover todas as contas existentes 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
when admins login ? setup pt Deseja que o eGroupWare verifique se há nova versão
quando administradores estejam acessando o sistema ? +Would you like eGroupWare to check for a new version
when admins login ? setup pt Deseja que o eGroupWare verifique se há nova versão
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
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

Please upgrade to at least version 4.1.0 setup pt Está sendo usado uma versão antiga de PHP.
É recomendado que a versão seja atualizada.
Versões antigas do PHP podem não executar o eGroupWare corretamente.

Por favor atualize para versões acima de 4.1.0. -You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup pt Aparentemente você está usando uma versão pré-beta do eGroupWare.
Estas versões não são mais suportadas, e não há como usar a Configuração para atualizar.
Você deve primeiro atualizar para a versão 0.9.10 (a última versão que suporta atualização de pré-betas)
e então atualizar a partir desta versão para a versão atual. +you appear to be running an old version of PHP
It its recommend that you upgrade to a new version.
Older version of PHP might not run eGroupWare correctly, if at all.

Please upgrade to at least version 4.1.0 setup pt Está sendo usado uma versão antiga de PHP.
É recomendado que a versão seja atualizada.
Versões antigas do PHP podem não executar o eGroupWare corretamente.

Por favor atualize para versões acima de 4.1.0. +You appear to be running a pre-beta version of eGroupWare.
These versions are no longer supported, and there is no upgrade path for them in setup.
You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup pt Aparentemente você está usando uma versão pré-beta do eGroupWare.
Estas versões não são mais suportadas, e não há como usar a Configuração para atualizar.
Você deve primeiro atualizar para a versão 0.9.10 (a última versão que suporta atualização de pré-betas)
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.
setup pt Você está pronto para este passo, mas este estágio não está escrito ainda.
-you do not have any languages installed. please install one now
setup pt Não há nenhum idioma instalado. Por favor instale algum agora
+you are ready for this stage, but this stage is not yet written.
setup pt Você está pronto para este passo, mas este estágio não está escrito ainda.
+you do not have any languages installed. please install one now
setup pt Não há nenhum idioma instalado. Por favor instale algum agora
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 diff --git a/setup/lang/phpgw_ru.lang b/setup/lang/phpgw_ru.lang index fc78fdf054..f3d8973f8c 100644 --- a/setup/lang/phpgw_ru.lang +++ b/setup/lang/phpgw_ru.lang @@ -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 ÔÒÅÂÕÅÔ ÏÂÎÏ×ÌÅÎÉÑ. -your header.inc.php needs upgrading.
warning!
make backups! setup ru æÁÊÌ header.inc.php ÔÒÅÂÕÅÔ ÏÂÎÏ×ÌÅÎÉÑ.
÷îéíáîéå!
óäåìáêôå òåúåò÷îõà ëïðéà! +your header.inc.php needs upgrading.
warning!
make backups! setup ru æÁÊÌ header.inc.php ÔÒÅÂÕÅÔ ÏÂÎÏ×ÌÅÎÉÑ.
÷îéíáîéå!
óäåìáêôå òåúåò÷îõà ëïðéà! diff --git a/setup/lang/phpgw_sl.lang b/setup/lang/phpgw_sl.lang index 92eb9487b8..82389cc2cb 100644 --- a/setup/lang/phpgw_sl.lang +++ b/setup/lang/phpgw_sl.lang @@ -8,7 +8,7 @@ 13 (ntp) setup sl 13 (ntp) 80 (http) setup sl 80 (http) charset to use (use utf-8 if you plan to use languages with different charsets): setup sl uporaba nabora znakov(uporabite UTF-8, Äe naÄrtujete uporabo jezikov z neASCII kodnimi tabelami): -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup sl Kreiran bo en administratorski in trije demo raÄuni
Uporabniška imena in gesla bodo: demo/guest, demo2/guest in demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup sl Kreiran bo en administratorski in trije demo raÄuni
UporabniÅ¡ka imena in gesla bodo: demo/guest, demo2/guest in demo3/guest. accounts existing setup sl RaÄ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, zelo priporoÄamo izdelavo rezervne kopije vaÅ¡ih podatkov, Äe skripta le te poÅ¡koduje.
Samodejne skripte lahko zaradi nepredvidenih okoliÅ¡Äin uniÄijo vaÅ¡e podatke.
Preden nadaljujete, izdelajte rezervno kopijo podatkov! +backupwarn setup sl toda, zelo priporoÄamo izdelavo rezervne kopije vaÅ¡ih podatkov, Äe skripta le te poÅ¡koduje.
Samodejne skripte lahko zaradi nepredvidenih okoliÅ¡Äin uniÄijo vaÅ¡e podatke.
Preden nadaljujete, izdelajte rezervno kopijo podatkov! 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,
or the table definition was incorrect setup sl ker zahteva roÄno namestitev tabel,
ali pa so bile definicije tabel neveljavne +because it requires manual table installation,
or the table definition was incorrect setup sl ker zahteva roÄno namestitev tabel,
ali pa so bile definicije tabel neveljavne because it was manually disabled setup sl ker je bila roÄno onemogoÄena because of a failed upgrade or install setup sl zaradi neuspeÅ¡ne nadgradnje ali namestitve because of a failed upgrade, or the database is newer than the installed version of this app setup sl zaradi neuspeÅ¡ne nadgradnje, ali pa je podatkovna baza novejÅ¡a od nameÅ¡Äene razliÄice aplikacije because the enable flag for this app is set to 0, or is undefined setup sl ker je oznaÄba za vklop aplikacije nastavljena na 0, ali pa je nedefinirana bottom setup sl dno -but we highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup sl ampak moÄno priporoÄam izdelavo rezervne kopije vseh tabel v primeru, da skripta poÅ¡koduje podatke.
Samodejne skripte lahko celo uniÄijo podatke. +but we highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup sl ampak moÄno priporoÄam izdelavo rezervne kopije vseh tabel v primeru, da skripta poÅ¡koduje podatke.
Samodejne skripte lahko celo uniÄijo podatke. cancel setup sl Prekini -cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup sl Zaradi nastavitev pravic dostopa do datotek ne morem ustvariti datoteke header.inc.php.
Namesto tega jo lahko %1. +cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup sl Zaradi nastavitev pravic dostopa do datotek ne morem ustvariti datoteke header.inc.php.
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Äica -currently installed languages: %1
setup sl Trenutno nameÅ¡Äeni jeziki: %1
+currently installed languages: %1
setup sl Trenutno nameÅ¡Äeni jeziki: %1
database successfully converted from '%1' to '%2' setup sl Podatkovna baza je bila uspešno prevedena iz '%1' v '%2'. -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup sl Vrata za datum.
Če uporabljate vrata 13, prosim, da ustrezno prilagodite pravila požarnega zidu, preden potrdite podatke na tej strani.
(Vrata: 13 / Strežnik: 129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup sl Vrata za datum.
Če uporabljate vrata 13, prosim, da ustrezno prilagodite pravila požarnega zidu, preden potrdite podatke na tej strani.
(Vrata: 13 / Strežnik: 129.6.15.28) day setup sl dan -day of week
(0-6, 0=sunday) setup sl dan v tednu
(0-6, 0=nedelja) +day of week
(0-6, 0=sunday) setup sl dan v tednu
(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Äi LDAP razliÄico 3 enable mcrypt setup sl OmogoÄi mcrypt enter some random text for app session encryption setup sl Vnesite nekaj nakljuÄnega besedila za kriptiranje aplikacijskih sej -enter some random text for app_session
encryption (requires mcrypt) setup sl Vnesite nekaj nakljuÄnega besedila za
kriptiranje aplikacijskih sej (zahteva Mcrypt). -enter the full path for temporary files.
examples: /tmp, c:\temp setup sl Vnesite polno pot do zaÄasnih datotek.
Na primer: /tmp, c:\temp -enter the full path for users and group files.
examples: /files, e:\files setup sl Vnesite polno pot do uporabniških datotek.
Na primer: /files, c:\files -enter the full path to the backup directory.
if empty: files directory setup sl Vpišite pot do arhivske mape.
Če je prazno bo uporabljena splošna pot za datoteke +enter some random text for app_session
encryption (requires mcrypt) setup sl Vnesite nekaj nakljuÄnega besedila za
kriptiranje aplikacijskih sej (zahteva Mcrypt). +enter the full path for temporary files.
examples: /tmp, c:\temp setup sl Vnesite polno pot do zaÄasnih datotek.
Na primer: /tmp, c:\temp +enter the full path for users and group files.
examples: /files, e:\files setup sl Vnesite polno pot do uporabniških datotek.
Na primer: /files, c:\files +enter the full path to the backup directory.
if empty: files directory setup sl Vpišite pot do arhivske mape.
ÄŒe je prazno bo uporabljena sploÅ¡na pot za datoteke enter the hostname of the machine on which this server is running setup sl Vnesite ime strežnika, na katerem teÄe projekt -enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup sl Vnesite eGroupWareov URL na vaÅ¡em raÄunalniku.
Na primer: http://www.podjetje.si/egroupware   ali   /egroupware
Naslov naj bo brez zakljuÄne poÅ¡evnice +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup sl Vnesite eGroupWareov URL na vaÅ¡em raÄunalniku.
Na primer: http://www.podjetje.si/egroupware   ali   /egroupware
Naslov naj bo brez zakljuÄne poÅ¡evnice 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup sl OznaÄite aplikacijo, vnesite ciljno razliÄico, in poÅ¡ljite procesu to razliÄico.
ÄŒe ne boste vnesli razliÄice, se bodo za aplikacijo namestile le osnovne tabele.
POSTOPEK BO NAJPREJ IZBRISAL VSE TABELE APLIKACIJE! +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup sl OznaÄite aplikacijo, vnesite ciljno razliÄico, in poÅ¡ljite procesu to razliÄico.
ÄŒe ne boste vnesli razliÄice, se bodo za aplikacijo namestile le osnovne tabele.
POSTOPEK BO NAJPREJ IZBRISAL VSE TABELE APLIKACIJE! 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Å¡Äene. the tables setup sl tabele -there was a problem trying to connect to your ldap server.
setup sl Napaka pri povezovanju z LDAP strežnikom.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup sl Napaka pri povezovanju z LDAP strežnikom.
Prosim, preverite nastavitve LDAP strežnika. +there was a problem trying to connect to your ldap server.
setup sl Napaka pri povezovanju z LDAP strežnikom.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup sl Napaka pri povezovanju z LDAP strežnikom.
Prosim, preverite nastavitve LDAP strežnika. this has to be outside the webservers document-root!!! setup sl To mora biti izven strežnikovega spletnega podroÄja! this might take a while, please wait ... setup sl To lahko traja nekaj Äasa, prosim poÄakajte ... this program lets you backup your database, schedule a backup or restore it. setup sl Ta program vam omogoÄa arhiviranje vaÅ¡e podatkovne baze, upravljanje urnikov arhiviranja ali pa restavriranje arhiva. @@ -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Äune za uporabo v eGroupWare. -this should be around 30 bytes in length.
note: the default has been randomly generated. setup sl To naj bo dolgo približno 30 bajtov.
Privzeto besedilo je bilo nakljuÄno generirano. -this stage is completed
setup sl Korak je zakljuÄen.
-this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup sl Ukaz bo ustvaril en upravljalski račun in tri demo račune.
Uporabniška imena so demo/guest, demo2/guest in demo3/guest.
Pozor: ukaz bo izbrisal vse obstoječe račune!!!
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup sl To naj bo dolgo približno 30 bajtov.
Privzeto besedilo je bilo nakljuÄno generirano. +this stage is completed
setup sl Korak je zakljuÄen.
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup sl Ukaz bo ustvaril en upravljalski račun in tri demo račune.
Uporabniška imena so demo/guest, demo2/guest in demo3/guest.
Pozor: ukaz bo izbrisal vse obstoječe račune!!!
to a version it does not know about setup sl v razliÄico, ki je ne pozna to setup 1 admin account and 3 demo accounts. setup sl za kreiranj 1 upravljalskega in 3 demo raÄunov. -to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup sl za izdelavo enega upravljalskega in treh demo uporabniških računov.
To bo izbrisalo vse obstoječe račune. +to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup sl za izdelavo enega upravljalskega in treh demo uporabniških računov.
To bo izbrisalo vse obstoječe račune. 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
when admins login ? setup sl Ali želite, da eGroupWare preveri za novo razliÄico ob prijavi upravljalca? +would you like egroupware to check for a new version
when admins login ? setup sl Ali želite, da eGroupWare preveri za novo razliÄico ob prijavi upravljalca? would you like to show each application's upgrade status ? setup sl Ali želite pokazati stanje nadgradnje aplikacije? 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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup sl Videti je, da uporabljate pred-beta razliÄico egroupWare.
Te razliÄice niso veÄ podprte in nadgradnja z njih ni mogoÄa.
Prosimo, da najprej nadgradite na 0.9.10, (zadnja razliÄica, ki podpira pred-beta posodabljanje)
in potem nadgradite na posodobljeno razliÄico. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup sl Videti je, da uporabljate staro razliÄico PHP.
PriporoÄamo, da nadgradite na novo razliÄico.
StarejÅ¡e razliÄice morda ne bodo pravilno izvajale eGroupWare programov, Äe jih sploh bodo.

Prosim, nadgradite vsaj na PHP razliÄico %1. +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup sl Videti je, da uporabljate pred-beta razliÄico egroupWare.
Te razliÄice niso veÄ podprte in nadgradnja z njih ni mogoÄa.
Prosimo, da najprej nadgradite na 0.9.10, (zadnja razliÄica, ki podpira pred-beta posodabljanje)
in potem nadgradite na posodobljeno razliÄico. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup sl Videti je, da uporabljate staro razliÄico PHP.
PriporoÄamo, da nadgradite na novo razliÄico.
StarejÅ¡e razliÄice morda ne bodo pravilno izvajale eGroupWare programov, Äe jih sploh bodo.

Prosim, nadgradite vsaj na PHP razliÄico %1. you appear to be running version %1 of egroupware setup sl Videti je, da imate eGroupWare razliÄico %1. you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup sl Videti je, da uporabljate PHP, ki je starejÅ¡i od 4.1.0. eGroupWare potrebuje PHP razliÄico 4.1.0 ali novejÅ¡o. you appear to be using php3. disabling php4 sessions support setup sl Videti je, da uporabljate PHP3. OnemogoÄam podporo za PHP4 seje. @@ -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čeno podporo Postgres SQL podatkovnega strežnika. you appear to have postgresql support enabled setup sl Videti je, da imate omogoÄeno podporo za PostgreSQL podatkovni strežnik. you appear to have xml support enabled setup sl Videti je, da imate omogoÄeno podporo XML. -you are ready for this stage, but this stage is not yet written.
setup sl Pripravljeni ste za ta korak vendar Å¡e ni zapisan.
+you are ready for this stage, but this stage is not yet written.
setup sl Pripravljeni ste za ta korak vendar Å¡e ni zapisan.
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
setup sl Nimate nameÅ¡Äenih jezikov. Prosim, izberite enega sedaj.
-you have not created your header.inc.php yet!
you can create it now. setup sl Niste Å¡e ustvarili header.inc.php!
Lahko ga ustvarite sedaj. +you do not have any languages installed. please install one now
setup sl Nimate nameÅ¡Äenih jezikov. Prosim, izberite enega sedaj.
+you have not created your header.inc.php yet!
you can create it now. setup sl Niste Å¡e ustvarili header.inc.php!
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Ä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.
warning!
make backups! setup sl Vaša header.inc.php datoteka je potrebna posodobitve.
POZOR!
Naredite rezervno kopijo datoteke in vseh podatkov! +your header.inc.php needs upgrading.
warning!
make backups! setup sl Vaša header.inc.php datoteka je potrebna posodobitve.
POZOR!
Naredite rezervno kopijo datoteke in vseh podatkov! your php installation does not have appropriate gd support. you need gd library version 1.8 or newer to see gantt charts in projects. setup sl VaÅ¡a PHP namestitev nima GD (vsaj razliÄico 1.8) podpore, ki je potrebna za prikazovanje Gantovih preglednic v projektih. your tables are current setup sl VaÅ¡e tabele so najnovejÅ¡e your tables may be altered and you may lose data setup sl VaÅ¡e tabele se lahko spremenijo. Obstaja možnost, da pri tem izgubite podatke. diff --git a/setup/lang/phpgw_sv.lang b/setup/lang/phpgw_sv.lang index 5443d57a4d..f785cbd44b 100644 --- a/setup/lang/phpgw_sv.lang +++ b/setup/lang/phpgw_sv.lang @@ -7,7 +7,7 @@ 13 (ntp) setup sv 13 (ntp) 80 (http) setup sv 80 (http) charset to use (use utf-8 if you plan to use languages with different charsets): setup sv teckentabell som skall användas (använd utf-8 om du skall ha stöd för språk med olika teckentabeller) -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup sv Detta kommer att skapa ett (1) adminkonto och tre demokonton
Användarnamnen/lösenorden är demo/guest, demo2/guest samt demo3/guest. +this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup sv Detta kommer att skapa ett (1) adminkonto och tre demokonton
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,
or the table definition was incorrect setup sv eftersom den kräver manuell installation av tabeller,
eller att tabelldefinitionen var inkorrekt +because it requires manual table installation,
or the table definition was incorrect setup sv eftersom den kräver manuell installation av tabeller,
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 highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup sv Men vi rekommenderar starkt att du backar upp dina tabeller utifall att installationen skulle råka förstöra data.
Dessa automatiserade skript kan med lätthet förstöra data i dina tabeller! +but we highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup sv Men vi rekommenderar starkt att du backar upp dina tabeller utifall att installationen skulle råka förstöra data.
Dessa automatiserade skript kan med lätthet förstöra data i dina tabeller! cancel setup sv Avbryt -cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup sv Kan inte skapa header.inc.php-filen på grund av bristande behörighet.
Istället kan du %1 filen. +cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup sv Kan inte skapa header.inc.php-filen på grund av bristande behörighet.
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
setup sv Installerade språk: %1
+currently installed languages: %1
setup sv Installerade språk: %1
database successfully converted from '%1' to '%2' setup sv Databas konverterad från '%1' till '%2' -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup sv Datetime-port.
Om du använder port 13, sätt brandväggsreglerna korrekt innan du trycker på Klar
(Port: 13 / Host 129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup sv Datetime-port.
Om du använder port 13, sätt brandväggsreglerna korrekt innan du trycker på Klar
(Port: 13 / Host 129.6.15.28) day setup sv dag -day of week
(0-6, 0=sunday) setup sv veckodag
(0-6, 0=söndag) +day of week
(0-6, 0=sunday) setup sv veckodag
(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
encryption (requires mcrypt) setup sv Skriv in lite slumpmässig text för
kryptering av sessionsinformation (kräver MCrypt) -enter the full path for temporary files.
examples: /tmp, c:\temp setup sv Ange fullständig sökväg för temp-filer
T ex: /tmp, c:\temp -enter the full path for users and group files.
examples: /files, e:\files setup sv Ange fullständig sökväg för användar- och gruppfiler
T ex: /files, e:\files -enter the full path to the backup directory.
if empty: files directory setup sv Ange fullständig sökväg för backupkatalog
om tomt: samma som användarfiler +enter some random text for app_session
encryption (requires mcrypt) setup sv Skriv in lite slumpmässig text för
kryptering av sessionsinformation (kräver MCrypt) +enter the full path for temporary files.
examples: /tmp, c:\temp setup sv Ange fullständig sökväg för temp-filer
T ex: /tmp, c:\temp +enter the full path for users and group files.
examples: /files, e:\files setup sv Ange fullständig sökväg för användar- och gruppfiler
T ex: /files, e:\files +enter the full path to the backup directory.
if empty: files directory setup sv Ange fullständig sökväg för backupkatalog
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.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup sv Ange eGroupWare:s URL.
T ex: http://www.doman.com/egroupware eller /egroupware
Ingen avslutande slash +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup sv Ange eGroupWare:s URL.
T ex: http://www.doman.com/egroupware eller /egroupware
Ingen avslutande slash 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup sv Välj en applikation, ange målversion, tryck sedan verkställ för att processa den versionen
om du inte anger version kommer bara grudtabellerna att installeras för denna applikation
Detta kommer att ta bort applikationens alla tabeller först +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup sv Välj en applikation, ange målversion, tryck sedan verkställ för att processa den versionen
om du inte anger version kommer bara grudtabellerna att installeras för denna applikation
Detta kommer att ta bort applikationens alla tabeller först 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.
setup sv Det uppstod problem med att kontakta din LDAP-server.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup sv Det uppstod problem med att kontakta din LDAP-server.
kontrollera din LDAP serverkonfiguration +there was a problem trying to connect to your ldap server.
setup sv Det uppstod problem med att kontakta din LDAP-server.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup sv Det uppstod problem med att kontakta din LDAP-server.
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.
note: the default has been randomly generated. setup sv Detta bör vara ca 30 bytes i längd.
Not: Default är slumpmässigt genererat. -this stage is completed
setup sv Detta stadium klart +this should be around 30 bytes in length.
note: the default has been randomly generated. setup sv Detta bör vara ca 30 bytes i längd.
Not: Default är slumpmässigt genererat. +this stage is completed
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
when admins login ? setup sv Vill du att eGroupWare skall kontrollera om det finns nya versioner
när admin loggar in? +would you like egroupware to check for a new version
when admins login ? setup sv Vill du att eGroupWare skall kontrollera om det finns nya versioner
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup sv Du verkar köra en pre-beta version av eGroupWare.
Dessa versioner stöds inte längre och det finns ingen uppgraderingsväg via setup.
Du måste först uppgradera till 0.9.10(sista versionen som stödde detta)
och sedan uppgradera igen med denna version. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup sv Du verkar köra en äldre version av PHP.
Det är rekommenderat att du uppgraderar till en nyare version.
Äldre versioner av PHP kanske inte kör eGroupWare korrekt, om alls.

Du rekommenderas starkt att uppgradera till åtminstone version %1 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup sv Du verkar köra en pre-beta version av eGroupWare.
Dessa versioner stöds inte längre och det finns ingen uppgraderingsväg via setup.
Du måste först uppgradera till 0.9.10(sista versionen som stödde detta)
och sedan uppgradera igen med denna version. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup sv Du verkar köra en äldre version av PHP.
Det är rekommenderat att du uppgraderar till en nyare version.
Äldre versioner av PHP kanske inte kör eGroupWare korrekt, om alls.

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.
setup sv Du är redo för detta stadium, men detta stadium är inte skrivet ännu.
+you are ready for this stage, but this stage is not yet written.
setup sv Du är redo för detta stadium, men detta stadium är inte skrivet ännu.
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
setup sv Du har för närvarande inga språk installerade. Var vänlig installera ett nu
-you have not created your header.inc.php yet!
you can create it now. setup sv Du har inte skapat din header.php.inc ännu!
Du kan skapa den nu. +you do not have any languages installed. please install one now
setup sv Du har för närvarande inga språk installerade. Var vänlig installera ett nu
+you have not created your header.inc.php yet!
you can create it now. setup sv Du har inte skapat din header.php.inc ännu!
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.
warning!
make backups! setup sv Din header.inc.php behöver uppgraderas
VARNING!
TA BACKUP! +your header.inc.php needs upgrading.
warning!
make backups! setup sv Din header.inc.php behöver uppgraderas
VARNING!
TA BACKUP! 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!! diff --git a/setup/lang/phpgw_zh.lang b/setup/lang/phpgw_zh.lang index 174e8be368..4a2b0d32ce 100644 --- a/setup/lang/phpgw_zh.lang +++ b/setup/lang/phpgw_zh.lang @@ -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 highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup zh 但是我们 强烈建议您备份表格, 以防止脚本破åæ•°æ®ï¼Œ
这是有å¯èƒ½å‘ç”Ÿçš„ï¼ +but we highly recommend backing up your tables in case the script causes damage to your data.
These automated scripts can easily destroy your data. setup zh 但是我们 强烈建议您备份表格, 以防止脚本破åæ•°æ®ï¼Œ
这是有å¯èƒ½å‘ç”Ÿçš„ï¼ 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,
or the table definition was incorrect setup zh 因为它è¦æ±‚手动安装表格,
或者表格的定义错误 +because it requires manual table installation,
or the table definition was incorrect setup zh 因为它è¦æ±‚手动安装表格,
或者表格的定义错误 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.
instead you can %1 the file. setup zh æƒé™ä¸è¶³ï¼Œæ— æ³•åˆ›å»ºæ–‡ä»¶header.inc.php。
您å¯ä»¥å°è¯•%1该文件。 +cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup zh æƒé™ä¸è¶³ï¼Œæ— æ³•åˆ›å»ºæ–‡ä»¶header.inc.php。
您å¯ä»¥å°è¯•%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
setup zh 当å‰å·²å®‰è£…的语言:%1
+currently installed languages: %1
setup zh 当å‰å·²å®‰è£…的语言:%1
database successfully converted from '%1' to '%2' setup zh å·²æˆåŠŸå°†æ•°æ®åº“'%1'转æ¢ä¸º'%2' -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup zh 日期时间端å£ã€‚
如果使用13å·ç«¯å£,请在æ交之å‰è®¾ç½®æ­£ç¡®çš„防ç«å¢™è§„则.
(例如端å£å·13/主机129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup zh 日期时间端å£ã€‚
如果使用13å·ç«¯å£,请在æ交之å‰è®¾ç½®æ­£ç¡®çš„防ç«å¢™è§„则.
(例如端å£å·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
encryption (requires mcrypt) setup zh 用于加密应用程åºä¼šè¯çš„éšæœºå­—符串
(需安装MCRYPT) -enter the full path for temporary files.
examples: /tmp, c:\temp setup zh 存放临时文件目录的完整路径.
例如: /tmp, C:\TEMP -enter the full path for users and group files.
examples: /files, e:\files setup zh 存放用户和组文件的目录的完整路径.
例如: /files, E:\FILES +enter some random text for app_session
encryption (requires mcrypt) setup zh 用于加密应用程åºä¼šè¯çš„éšæœºå­—符串
(需安装MCRYPT) +enter the full path for temporary files.
examples: /tmp, c:\temp setup zh 存放临时文件目录的完整路径.
例如: /tmp, C:\TEMP +enter the full path for users and group files.
examples: /files, e:\files setup zh 存放用户和组文件的目录的完整路径.
例如: /files, E:\FILES enter the hostname of the machine on which this server is running setup zh è¿è¡Œè¯¥æœåŠ¡å™¨çš„机器主机å -enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup zh 输入eGroupWare的网å€.
例如: http://www.domain.com/egroupware   or   /egroupware
末尾ä¸åŠ ä¸Š"/" +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup zh 输入eGroupWare的网å€.
例如: http://www.domain.com/egroupware   or   /egroupware
末尾ä¸åŠ ä¸Š"/" 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup zh 选择一个应用程åº, 输入目标版本,然åŽæ交,以处ç†è¯¥ç‰ˆæœ¬.
如果您没有输入一个版本, åªä¸ºåº”用程åºå®‰è£…最基本的表格.
首先会移除所有应用程åºçš„表格! +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup zh 选择一个应用程åº, 输入目标版本,然åŽæ交,以处ç†è¯¥ç‰ˆæœ¬.
如果您没有输入一个版本, åªä¸ºåº”用程åºå®‰è£…最基本的表格.
首先会移除所有应用程åºçš„表格! 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.
setup zh 无法连接到您的 LDAP æœåŠ¡å™¨.
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup zh 无法连接到您的LDAPæœåŠ¡å™¨.
请检查您的LDAPæœåŠ¡å™¨çš„é…ç½® +there was a problem trying to connect to your ldap server.
setup zh 无法连接到您的 LDAP æœåŠ¡å™¨.
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup zh 无法连接到您的LDAPæœåŠ¡å™¨.
请检查您的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.
note: the default has been randomly generated. setup zh 长度应该在30字节左å³.
注æ„: 默认值已ç»éšæœºç”Ÿæˆ. -this stage is completed
setup zh 本阶段é…置已完æˆ
-this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup zh 这将创建一个管ç†å‘˜å¸æˆ·å’Œä¸‰ä¸ªæ¼”示å¸æˆ·
用户å/密ç æ˜¯: demo/guest, demo2/guest å’Œ demo3/guest.
!!!这将删除所有å¸æˆ·!!!
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup zh 长度应该在30字节左å³.
注æ„: 默认值已ç»éšæœºç”Ÿæˆ. +this stage is completed
setup zh 本阶段é…置已完æˆ
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup zh 这将创建一个管ç†å‘˜å¸æˆ·å’Œä¸‰ä¸ªæ¼”示å¸æˆ·
用户å/密ç æ˜¯: demo/guest, demo2/guest å’Œ demo3/guest.
!!!这将删除所有å¸æˆ·!!!
to a version it does not know about setup zh 未知版本 -to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup zh 安装一个管ç†å‘˜å¸æˆ·å’Œä¸‰ä¸ªæ¼”示å¸æˆ·.
该æ“作将删除所有现有å¸æˆ· +to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup zh 安装一个管ç†å‘˜å¸æˆ·å’Œä¸‰ä¸ªæ¼”示å¸æˆ·.
该æ“作将删除所有现有å¸æˆ· 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
when admins login ? setup zh 管ç†å‘˜ç™»é™†æ—¶ï¼Œæ˜¯å¦æ£€æŸ¥eGroupWare的更新版本? +would you like egroupware to check for a new version
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup zh 您目å‰è¿è¡Œçš„是测试版本的 eGroupWare。
ç›®å‰å·²ç»ä¸å†æ”¯æŒè¿™ä¸ªç‰ˆæœ¬ï¼Œå»ºè®®æ‚¨å…ˆå‡çº§åˆ° 0.9.10 版(最åŽä¸€ä¸ªæµ‹è¯•ç‰ˆï¼‰
å†å‡çº§åˆ°çŽ°åœ¨çš„版本. -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup zh 您目å‰è¿è¡Œçš„PHP版本太旧
建议您å‡çº§åˆ°è¾ƒæ–°ç‰ˆæœ¬.
因为è€ç‰ˆæœ¬çš„ PHP å¯èƒ½ä¼šé€ æˆ eGroupWare è¿è¡Œä¸æ­£å¸¸.

建议您å‡çº§åˆ°è‡³å°‘ %1 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup zh 您目å‰è¿è¡Œçš„是测试版本的 eGroupWare。
ç›®å‰å·²ç»ä¸å†æ”¯æŒè¿™ä¸ªç‰ˆæœ¬ï¼Œå»ºè®®æ‚¨å…ˆå‡çº§åˆ° 0.9.10 版(最åŽä¸€ä¸ªæµ‹è¯•ç‰ˆï¼‰
å†å‡çº§åˆ°çŽ°åœ¨çš„版本. +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup zh 您目å‰è¿è¡Œçš„PHP版本太旧
建议您å‡çº§åˆ°è¾ƒæ–°ç‰ˆæœ¬.
因为è€ç‰ˆæœ¬çš„ PHP å¯èƒ½ä¼šé€ æˆ eGroupWare è¿è¡Œä¸æ­£å¸¸.

建议您å‡çº§åˆ°è‡³å°‘ %1 you appear to be running version %1 of egroupware setup zh 您目å‰è¿è¡Œçš„eGroupWare版本为 %1 you appear to be using php earlier than 4.1.0. egroupware now requires 4.1.0 or later setup zh 您的 PHP 版本å·ä½ŽäºŽ 4.1.0 . eGroupWare è¦æ±‚4.1.0版或更高版本 you appear to be using 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.
setup zh 本阶段的é…置已ç»å®Œæˆï¼Œä½†å°šæœªä¿å­˜
+you are ready for this stage, but this stage is not yet written.
setup zh 本阶段的é…置已ç»å®Œæˆï¼Œä½†å°šæœªä¿å­˜
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
setup zh 您没有安装任何语言,请安装至少一ç§è¯­è¨€
-you have not created your header.inc.php yet!
you can create it now. setup zh 您尚未创建header.inc.php! 请立刻创建. +you do not have any languages installed. please install one now
setup zh 您没有安装任何语言,请安装至少一ç§è¯­è¨€
+you have not created your header.inc.php yet!
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.
warning!
make backups! setup zh 您的header.inc.php需è¦å‡çº§.
警告!
请åšå¤‡ä»½! +your header.inc.php needs upgrading.
warning!
make backups! setup zh 您的header.inc.php需è¦å‡çº§.
警告!
请åšå¤‡ä»½! 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 您的表格将被移除,数æ®ä¹Ÿä¼šå…¨éƒ¨ä¸¢å¤± diff --git a/setup/lang/phpgw_zt.lang b/setup/lang/phpgw_zt.lang index d911647410..af8345dd42 100644 --- a/setup/lang/phpgw_zt.lang +++ b/setup/lang/phpgw_zt.lang @@ -8,8 +8,8 @@ 13 (ntp) setup zt 13 (ntp) 80 (http) setup zt 80 (網站伺æœå™¨) charset to use (use utf-8 if you plan to use languages with different charsets): setup zt 使用的字元編碼 (如果您希望使用多國語言環境,請輸入 utf-8 ): -this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup zt 這會產生 1 個管ç†è€…å¸³è™Ÿä»¥åŠ 3 個測試帳號
測試帳號的密碼分別是: demo/guest, demo2/guest 與 demo3/guest。 -
import has been completed! click here to return to setup
setup zt
匯入完æˆï¼é»žé¸æ­¤è™•å›žåˆ°è¨­å®šç•«é¢ã€‚
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest. setup zt 這會產生 1 個管ç†è€…å¸³è™Ÿä»¥åŠ 3 個測試帳號
測試帳號的密碼分別是: demo/guest, demo2/guest 與 demo3/guest。 +
import has been completed! click here to return to setup
setup zt
匯入完æˆï¼é»žé¸æ­¤è™•å›žåˆ°è¨­å®šç•«é¢ã€‚
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,
or the table definition was incorrect setup zt 因為此應用程å¼å®ƒéœ€è¦æ‰‹å‹•å®‰è£è³‡æ–™è¡¨æˆ–是資料表的定義ä¸æ­£ç¢ºã€‚ +because it requires manual table installation,
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 highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup zt 但是我們強烈建議您備份您的資料表,以å…系統自動作業時æ傷到您的資料,
這個自動作業程å¼å¾ˆå®¹æ„造æˆè³‡æ–™çš„æ傷, +but we highly recommend backing up your tables in case the script causes damage to your data.
these automated scripts can easily destroy your data. setup zt 但是我們強烈建議您備份您的資料表,以å…系統自動作業時æ傷到您的資料,
這個自動作業程å¼å¾ˆå®¹æ„造æˆè³‡æ–™çš„æ傷, cancel setup zt å–消 -cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup zt 因為檔案權é™é™åˆ¶ï¼Œç³»çµ±ç„¡æ³•è‡ªå‹•å»ºç«‹æª”案header.inc.php
ä¸éŽæ‚¨å¯ä»¥%1這個檔案。 +cannot create the header.inc.php due to file permission restrictions.
instead you can %1 the file. setup zt 因為檔案權é™é™åˆ¶ï¼Œç³»çµ±ç„¡æ³•è‡ªå‹•å»ºç«‹æª”案header.inc.php
ä¸éŽæ‚¨å¯ä»¥%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
setup zt ç›®å‰å·²å®‰è£çš„語言:%1
+currently installed languages: %1
setup zt ç›®å‰å·²å®‰è£çš„語言:%1
database successfully converted from '%1' to '%2' setup zt 資料庫æˆåŠŸçš„從 '%1' 轉æ›æˆ '%2' -datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup zt 時間æœå‹™åŸ 
如果使用13埠,請在é€å‡ºä¹‹å‰ç¢ºèªæ‚¨å·²ç¶“設置好é©ç•¶çš„防ç«ç‰†è¦å‰‡ã€‚
(Port: 13 / Host: 129.6.15.28) +datetime port.
if using port 13, please set firewall rules appropriately before submitting this page.
(port: 13 / host: 129.6.15.28) setup zt 時間æœå‹™åŸ 
如果使用13埠,請在é€å‡ºä¹‹å‰ç¢ºèªæ‚¨å·²ç¶“設置好é©ç•¶çš„防ç«ç‰†è¦å‰‡ã€‚
(Port: 13 / Host: 129.6.15.28) day setup zt æ—¥ -day of week
(0-6, 0=sunday) setup zt 週日數
(0-6, 0=星期天) +day of week
(0-6, 0=sunday) setup zt 週日數
(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
encryption (requires mcrypt) setup zt 輸入用於連線加密的任æ„字串ï¹éœ€è¦å®‰è£ MCRYPT﹞
-enter the full path for temporary files.
examples: /tmp, c:\temp setup zt 輸入暫存檔案存放的完整路徑:
ï¹å¦‚:/tmpã€C:\TEMP﹞ -enter the full path for users and group files.
examples: /files, e:\files setup zt 輸入使用者或群組檔案存放的完整路徑:
ï¹å¦‚:/filesã€E:\FILES﹞ -enter the full path to the backup directory.
if empty: files directory setup zt 輸入備份檔案存放的完整路徑:
如果空白會使用存放一般檔案的資料夾 +enter some random text for app_session
encryption (requires mcrypt) setup zt 輸入用於連線加密的任æ„字串ï¹éœ€è¦å®‰è£ MCRYPT﹞
+enter the full path for temporary files.
examples: /tmp, c:\temp setup zt 輸入暫存檔案存放的完整路徑:
ï¹å¦‚:/tmpã€C:\TEMP﹞ +enter the full path for users and group files.
examples: /files, e:\files setup zt 輸入使用者或群組檔案存放的完整路徑:
ï¹å¦‚:/filesã€E:\FILES﹞ +enter the full path to the backup directory.
if empty: files directory setup zt 輸入備份檔案存放的完整路徑:
如果空白會使用存放一般檔案的資料夾 enter the hostname of the machine on which this server is running setup zt 輸入這個伺æœå™¨ä¸»æ©Ÿçš„主機å稱 -enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup zt 輸入 eGroupWare 的網é ä½å€ URL:
如:http://www.domain.com/egroupware  æˆ–  /egroupware
çµå°¾ç„¡æ–œç·š +enter the location of egroupware's url.
example: http://www.domain.com/egroupware   or   /egroupware
no trailing slash setup zt 輸入 eGroupWare 的網é ä½å€ URL:
如:http://www.domain.com/egroupware  æˆ–  /egroupware
çµå°¾ç„¡æ–œç·š 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 中建立資料庫的方法:
登入 MySQL 系統 -
[user@server user]# mysql -u root -p
建立空的資料庫並授權使用者使用 -
mysql> create database egroupware;
mysql> grant all on egroupware.* to egroupware@localhost identified by 'password'; +mysqlinstr setup zt 在 MySQL 中建立資料庫的方法:
登入 MySQL 系統 -
[user@server user]# mysql -u root -p
建立空的資料庫並授權使用者使用 -
mysql> create database egroupware;
mysql> grant all on egroupware.* to egroupware@localhost identified by 'password'; 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 中建立資料庫的方法:
起用 PostgreSQL 系統
[user@server user]# postmaster -i -D /home/[username]/[dataDir]
建立空的資料庫 -
[user@server user]# createdb egroupware +pgsqlinstr setup zt 在 PostgreSQL 中建立資料庫的方法:
起用 PostgreSQL 系統
[user@server user]# postmaster -i -D /home/[username]/[dataDir]
建立空的資料庫 -
[user@server user]# createdb egroupware 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.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup zt é¸æ“‡ä¸€å€‹æ‡‰ç”¨ç­’l設定應用程å¼åˆ°é€™å€‹ç‰ˆæœ¬ã€‚
若您沒有輸入版本編號,系統åªæœƒå®‰è£é€™å€‹æ‡‰ç”¨ç¨‹å¼çš„基本系統資料表。
這個動作將ä¸æœƒç§»é™¤ä»»ä½•æ‡‰ç”¨ç¨‹å¼çš„è³‡æ–™è¡¨ï¼ +select an app, enter a target version, then submit to process to that version.
if you do not enter a version, only the baseline tables will be installed for the app.
this will drop all of the apps' tables first! setup zt é¸æ“‡ä¸€å€‹æ‡‰ç”¨ç­’l設定應用程å¼åˆ°é€™å€‹ç‰ˆæœ¬ã€‚
若您沒有輸入版本編號,系統åªæœƒå®‰è£é€™å€‹æ‡‰ç”¨ç¨‹å¼çš„基本系統資料表。
這個動作將ä¸æœƒç§»é™¤ä»»ä½•æ‡‰ç”¨ç¨‹å¼çš„è³‡æ–™è¡¨ï¼ 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.
please check your ldap server configuration setup zt 無法正確連çµåˆ° LDAP 伺æœå™¨ä¸»æ©Ÿã€‚
請檢查 LDAP 伺æœå™¨ä¸»æ©Ÿçš„設定。 -there was a problem trying to connect to your ldap server.
setup zt 嘗試連接您的LDAP伺æœå™¨æ™‚發生錯誤。
-there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup zt 嘗試連接您的LDAP伺æœå™¨æ™‚發生錯誤。
請檢查您的設定 +there was a problem tring to connect to your ldap server.
please check your ldap server configuration setup zt 無法正確連çµåˆ° LDAP 伺æœå™¨ä¸»æ©Ÿã€‚
請檢查 LDAP 伺æœå™¨ä¸»æ©Ÿçš„設定。 +there was a problem trying to connect to your ldap server.
setup zt 嘗試連接您的LDAP伺æœå™¨æ™‚發生錯誤。
+there was a problem trying to connect to your ldap server.
please check your ldap server configuration setup zt 嘗試連接您的LDAP伺æœå™¨æ™‚發生錯誤。
請檢查您的設定 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.
note: the default has been randomly generated. setup zt 這個長度必須大約在30ä½å…ƒçµ„å·¦å³ã€‚
注æ„:é è¨­å€¼å·²ç¶“隨機產生了。 -this stage is completed
setup zt 這個步驟已經完æˆ
-this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup zt 這個動作將會建立一個管ç†è€…帳號åŠä¸‰å€‹ç¤ºç¯„帳號。
使用者代碼åŠå¯†ç¢¼åˆ†åˆ¥ç‚ºï¼šdemo/guestã€demo2/guest åŠ demo3/guest。
ï¼ï¼ï¼é€™å€‹å‹•ä½œå°‡æœƒç§»é™¤æ‰€æœ‰çš„帳號ï¼ï¼ï¼
+this should be around 30 bytes in length.
note: the default has been randomly generated. setup zt 這個長度必須大約在30ä½å…ƒçµ„å·¦å³ã€‚
注æ„:é è¨­å€¼å·²ç¶“隨機產生了。 +this stage is completed
setup zt 這個步驟已經完æˆ
+this will create 1 admin account and 3 demo accounts
the username/passwords are: demo/guest, demo2/guest and demo3/guest.
!!!this will delete all existing accounts!!!
setup zt 這個動作將會建立一個管ç†è€…帳號åŠä¸‰å€‹ç¤ºç¯„帳號。
使用者代碼åŠå¯†ç¢¼åˆ†åˆ¥ç‚ºï¼šdemo/guestã€demo2/guest åŠ demo3/guest。
ï¼ï¼ï¼é€™å€‹å‹•ä½œå°‡æœƒç§»é™¤æ‰€æœ‰çš„帳號ï¼ï¼ï¼
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.
this will delete all existing accounts setup zt 設定一個管ç†è€…帳號åŠä¸‰å€‹ç¤ºç¯„帳號。
這個動作將會移除所有的帳號 +to setup 1 admin account and 3 demo accounts.
this will delete all existing accounts setup zt 設定一個管ç†è€…帳號åŠä¸‰å€‹ç¤ºç¯„帳號。
這個動作將會移除所有的帳號 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
when admins login ? setup zt 您希望 eGroupWare 自動於管ç†è€…登入時檢查是å¦æœ‰æœ€æ–°ç‰ˆæœ¬ï¼Ÿ +would you like egroupware to check for a new version
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.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup zt 您目å‰å®‰è£çš„為測試版本的 eGroupWare。
ç›®å‰å·²ç¶“ä¸å†æ”¯æ´é€™å€‹ç‰ˆæœ¬ï¼Œå»ºè­°æ‚¨å…ˆå‡ç´šåˆ° 0.9.10 版ï¹æœ€å¾Œä¸€å€‹æ¸¬è©¦ç‰ˆæœ¬ï¹ž
å†å‡ç´šåˆ°ç¾åœ¨çš„版本。 -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup zt 您似乎正在執行較舊版本的PHP
建議您將它更新到較新的版本。
較舊的PHP版本也許無法正確執行eGroupWare。

請將版本至少更新到%1 -you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version 4.1.0 setup zt 您目å‰æ‰€ä½¿ç”¨çš„ PHP 版本太舊,
建議您å‡ç´šåˆ°è¼ƒæ–°çš„版本,
因為舊版本的 PHP å¯èƒ½æœƒé€ æˆ eGroupWare é‹ä½œä¸æ­£å¸¸ã€‚

建議您至少å‡ç´šåˆ° 4.1.0 版 +you appear to be running a pre-beta version of egroupware.
these versions are no longer supported, and there is no upgrade path for them in setup.
you may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades)
and then upgrade from there with the current version. setup zt 您目å‰å®‰è£çš„為測試版本的 eGroupWare。
ç›®å‰å·²ç¶“ä¸å†æ”¯æ´é€™å€‹ç‰ˆæœ¬ï¼Œå»ºè­°æ‚¨å…ˆå‡ç´šåˆ° 0.9.10 版ï¹æœ€å¾Œä¸€å€‹æ¸¬è©¦ç‰ˆæœ¬ï¹ž
å†å‡ç´šåˆ°ç¾åœ¨çš„版本。 +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version %1 setup zt 您似乎正在執行較舊版本的PHP
建議您將它更新到較新的版本。
較舊的PHP版本也許無法正確執行eGroupWare。

請將版本至少更新到%1 +you appear to be running an old version of php
it its recommend that you upgrade to a new version.
older version of php might not run egroupware correctly, if at all.

please upgrade to at least version 4.1.0 setup zt 您目å‰æ‰€ä½¿ç”¨çš„ PHP 版本太舊,
建議您å‡ç´šåˆ°è¼ƒæ–°çš„版本,
因為舊版本的 PHP å¯èƒ½æœƒé€ æˆ eGroupWare é‹ä½œä¸æ­£å¸¸ã€‚

建議您至少å‡ç´šåˆ° 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 您似乎在使用PHP3,PHP4 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.
setup zt 您已經準備好è¦ä½¿ç”¨é€™å€‹æ­¥é©Ÿï¼Œä½†é€™å€‹æ­¥é©Ÿå°šæœªé–‹ç™¼å®Œæˆã€‚
+you are ready for this stage, but this stage is not yet written.
setup zt 您已經準備好è¦ä½¿ç”¨é€™å€‹æ­¥é©Ÿï¼Œä½†é€™å€‹æ­¥é©Ÿå°šæœªé–‹ç™¼å®Œæˆã€‚
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
setup zt 您目å‰æ²’有安è£ä»»ä½•çš„語言,請安è£è‡³å°‘一種語言。
-you have not created your header.inc.php yet!
you can create it now. setup zt 您尚未建立您的header.inc.phpï¼
您å¯ä»¥ç¾åœ¨å»ºç«‹ã€‚ +you do not have any languages installed. please install one now
setup zt 您目å‰æ²’有安è£ä»»ä½•çš„語言,請安è£è‡³å°‘一種語言。
+you have not created your header.inc.php yet!
you can create it now. setup zt 您尚未建立您的header.inc.phpï¼
您å¯ä»¥ç¾åœ¨å»ºç«‹ã€‚ 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.
warning!
make backups! setup zt 您的header.inc.php需è¦æ›´æ–°ã€‚
警告ï¼
記得先åšå‚™ä»½ï¼ +your header.inc.php needs upgrading.
warning!
make backups! setup zt 您的header.inc.php需è¦æ›´æ–°ã€‚
警告ï¼
記得先åšå‚™ä»½ï¼ 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 您的資料表已經被更動éŽä¸¦æœ‰å¯èƒ½éºå¤±éƒ¨ä»½è³‡æ–™ diff --git a/setup/ldap.php b/setup/ldap.php index 7baeb5d003..5971f730c0 100644 --- a/setup/ldap.php +++ b/setup/ldap.php @@ -47,7 +47,7 @@ if ($GLOBALS['error']) { - //echo '
Error: '.$error.'
'; + //echo '
Error: '.$error.'
'; $GLOBALS['egw_setup']->html->show_alert_msg('Error',$GLOBALS['error']); } diff --git a/setup/ldapexport.php b/setup/ldapexport.php index cc7c9bb5e3..d4e1838598 100644 --- a/setup/ldapexport.php +++ b/setup/ldapexport.php @@ -154,9 +154,9 @@ } $id_exist = $groups->exists((int)$thisacctid); - echo '
accountid: ' . $thisacctid; - echo '
accountlid: ' . $thisacctlid; - echo '
exists: ' . $id_exist; + echo '
accountid: ' . $thisacctid; + echo '
accountlid: ' . $thisacctlid; + echo '
exists: ' . $id_exist; /* If not, create it now. */ if(!$id_exist) @@ -205,7 +205,7 @@ // If not, create it now. if(!$id_exist) { - echo '
Adding' . $thisacctid; + echo '
Adding' . $thisacctid; $thisaccount_info = array( 'account_type' => 'u', 'account_id' => $thisacctid, @@ -231,14 +231,14 @@ if($error) { - //echo '
Error: '.$error.'
'; + //echo '
Error: '.$error.'
'; $GLOBALS['egw_setup']->html->show_alert_msg('Error',$error); } if($setup_complete) { - echo '
'.lang('Export has been completed! You will need to set the user passwords manually.').'
'; - echo '
'.lang('Click here to return to setup.').'
'; + echo '
'.lang('Export has been completed! You will need to set the user passwords manually.').'
'; + echo '
'.lang('Click here to return to setup.').'
'; $GLOBALS['egw_setup']->html->show_footer(); exit; } diff --git a/setup/ldapimport.php b/setup/ldapimport.php index b003e40246..d06d02b551 100644 --- a/setup/ldapimport.php +++ b/setup/ldapimport.php @@ -152,12 +152,12 @@ { if(!count($admins)) { - $error = '
You must select at least 1 admin'; + $error = '
You must select at least 1 admin'; } if(!count($s_apps)) { - $error .= '
You must select at least 1 application'; + $error .= '
You must select at least 1 application'; } if(!$error) @@ -295,12 +295,12 @@ { continue; } - /* echo '
members: ' . $members; */ + /* echo '
members: ' . $members; */ $tmpid = 0; @reset($account_info); while(list($x,$y) = each($account_info)) { - /* echo '
checking: '.$y['account_lid']; */ + /* echo '
checking: '.$y['account_lid']; */ if($members == $y['account_lid']) { $tmpid = $acct->name2id($y['account_lid']); @@ -411,13 +411,13 @@ if($error) { - //echo '
Error: '.$error.'
'; + //echo '
Error: '.$error.'
'; $GLOBALS['egw_setup']->html->show_alert_msg('Error',$error); } if($setup_complete) { - echo '
'.lang('Import has been completed!').' '.lang('Click here to return to setup.').'
'; + echo '
'.lang('Import has been completed!').' '.lang('Click here to return to setup.').'
'; $GLOBALS['egw_setup']->html->show_footer(); exit; } @@ -467,7 +467,7 @@ } else { - $app_list .= ''; + $app_list .= ''; } } diff --git a/setup/ldapmodify.php b/setup/ldapmodify.php index 5e7427816d..0aa16f9fc2 100644 --- a/setup/ldapmodify.php +++ b/setup/ldapmodify.php @@ -139,7 +139,7 @@ $entry = array(); $thisacctid = $group_info[$groupid]['gidnumber'][0]; $thisacctlid = $group_info[$groupid]['cn'][0]; - /* echo "Updating GROUPID : ".$thisacctlid."
\n"; */ + /* echo "Updating GROUPID : ".$thisacctlid."
\n"; */ $thisfirstname = $group_info[$groupid]['cn'][0]; $thismembers = $group_info[$groupid]['memberuid']; $thisdn = $group_info[$groupid]['dn']; @@ -199,12 +199,12 @@ { continue; } - /* echo '
members: ' . $members; */ + /* echo '
members: ' . $members; */ $tmpid = 0; @reset($account_info); while(list($x,$y) = each($account_info)) { - /* echo '
checking: '.$y['account_lid']; */ + /* echo '
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."
\n"; */ + /* echo "Updating USERID : ".$thisacctlid."
\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 '
Error: '.$error.'
'; */ + /* echo '
Error: '.$error.'
'; */ $GLOBALS['egw_setup']->html->show_alert_msg('Error',$_GET['error']); } if($setup_complete) { - echo '
'.lang('Modifications have been completed!').' '.lang('Click here to return to setup.').'
'; + echo '
'.lang('Modifications have been completed!').' '.lang('Click here to return to setup.').'
'; $GLOBALS['egw_setup']->html->show_footer(); exit; } diff --git a/setup/manageheader.php b/setup/manageheader.php index 660855bc8e..a8327208af 100644 --- a/setup/manageheader.php +++ b/setup/manageheader.php @@ -101,29 +101,30 @@ $dom = get_var('setting_'.$variableName,Array('POST')); if(!$dom['config_pass'] && !$dom['config_password']) { - $errors .= '
' . lang("You didn't enter a config password for domain %1",$v); + $errors .= '
' . lang("You didn't enter a config password for domain %1",$v); } if(!$dom['config_user']) { - $errors .= '
' . lang("You didn't enter a config username for domain %1",$v); + $errors .= '
' . 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 .= '
' . lang("You didn't enter a header admin password"); + $errors .= '
' . lang("You didn't enter a header admin password"); } if(!$setting['HEADER_ADMIN_USER']) { - $errors .= '
' . lang("You didn't enter a header admin username"); + $errors .= '
' . lang("You didn't enter a header admin username"); } if($errors) { $GLOBALS['egw_setup']->html->show_header('Error',True); echo $errors; - echo '

'; + echo '

'; + $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!
You can create it now.'); + $GLOBALS['egw_info']['setup']['PageMSG'] = lang('You have not created your header.inc.php yet!
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.
WARNING!
MAKE BACKUPS!'); + $GLOBALS['egw_info']['setup']['PageMSG'] = lang('Your header.inc.php needs upgrading.
WARNING!
MAKE BACKUPS!'); $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 '
'; - echo '
' . lang('Save this text as contents of your header.inc.php') . '

'; + echo '
' . lang('Save this text as contents of your header.inc.php') . '

'; $newheader = $GLOBALS['egw_setup']->html->generate_header(); echo '
';
 			echo htmlentities($newheader);
-			echo '

'; + echo '
'; echo '
'; - echo '
' . lang('After retrieving the file, put it into place as the header.inc.php. Then, click "continue".') . '
'; - echo ''; - echo ''; + echo '
' . lang('After retrieving the file, put it into place as the header.inc.php. Then, click "continue".') . '
'; + echo ''; + echo ''; echo '
'; echo '
'; $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 '
'; - echo '
' . lang('Created header.inc.php!'); - echo ''; - echo ''; + echo '
' . lang('Created header.inc.php!'); + echo ''; + echo ''; echo '
'; - echo ''; + $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!') . '
' . "\n"; - echo lang('Please check read/write permissions on directories, or back up and use another option.') . '
'; - echo ''; + echo lang('Could not open header.inc.php for writing!') . '
' . "\n"; + echo lang('Please check read/write permissions on directories, or back up and use another option.') . '
'; + $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 .= '
Please Select your language '.lang_select(True,'en')."
\n"; + $setup_tpl->set_var('lang_select','
Please Select your language '.lang_select(True,'en')."
"); } - $detected .= '' . "\n"; - + $detected = ''; $detected .= ''; - $detected .= ''."\n".'

' . $GLOBALS['egw_info']['setup']['PageMSG'] . '
 

' . lang('Analysis') . '
'. "\n"; + $detected .= '
' . lang('Analysis') . '
'. "\n"; $supported_db = array(); if(check_load_extension('mysql') || function_exists('mysql_connect')) { - $detected .= lang('You appear to have MySQL support enabled') . '
' . "\n"; + $detected .= lang('You appear to have MySQL support enabled') . '
' . "\n"; $supported_db[] = 'mysql'; } else { - $detected .= lang('No MySQL support found. Disabling') . '
' . "\n"; + $detected .= lang('No MySQL support found. Disabling') . '
' . "\n"; } if(check_load_extension('pgsql') || function_exists('pg_connect')) { - $detected .= lang('You appear to have PostgreSQL support enabled') . '
' . "\n"; + $detected .= lang('You appear to have PostgreSQL support enabled') . '
' . "\n"; $supported_db[] = 'pgsql'; } else { - $detected .= lang('No PostgreSQL support found. Disabling') . '
' . "\n"; + $detected .= lang('No PostgreSQL support found. Disabling') . '
' . "\n"; } if(check_load_extension('mssql') || function_exists('mssql_connect')) { - $detected .= lang('You appear to have Microsoft SQL Server support enabled') . '
' . "\n"; + $detected .= lang('You appear to have Microsoft SQL Server support enabled') . '
' . "\n"; $supported_db[] = 'mssql'; } else { - $detected .= lang('No Microsoft SQL Server support found. Disabling') . '
' . "\n"; + $detected .= lang('No Microsoft SQL Server support found. Disabling') . '
' . "\n"; } if(check_load_extension('odbc')) { - $detected .= lang('You appear to have ODBC support enabled') . '
' . "\n"; + $detected .= lang('You appear to have ODBC support enabled') . '
' . "\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') . '
' . "\n"; + $detected .= lang('No ODBC support found. Disabling') . '
' . "\n"; } if(check_load_extension('oci8')) { - $detected .= lang('You appear to have Oracle V8 (OCI) support enabled') . '
' . "\n"; + $detected .= lang('You appear to have Oracle V8 (OCI) support enabled') . '
' . "\n"; $supported_db[] = 'oracle'; } else { - $detected .= lang('No Oracle-DB support found. Disabling') . '
' . "\n"; + $detected .= lang('No Oracle-DB support found. Disabling') . '
' . "\n"; } if(!count($supported_db)) { $detected .= '

' . lang('Did not find any valid DB support!') - . "
\n" + . "
\n" . lang('Try to configure your php to support one of the above mentioned DBMS, or install eGroupWare by hand.') - . '

'; + . '

'; echo $detected; + $GLOBALS['egw_setup']->html->show_footer(); exit; } @@ -339,13 +338,14 @@ { $detected .= '

' . lang('You appear to be using PHP earlier than 4.1.0. eGroupWare now requires 4.1.0 or later'). "\n" - . '

'; + . '

'; 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.') . '
' . "\n"; + $detected .= lang('You appear to have PHP4 session support. Enabling PHP4 sessions.') . '
' . "\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') . '
' . "\n"; + $detected .= lang('You appear to have XML support enabled') . '
' . "\n"; $xml_enabled = 'True'; } else { - $detected .= lang('No XML support found. Disabling') . '
' . "\n"; + $detected .= lang('No XML support found. Disabling') . '
' . "\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...') . '
' . "\n"; + $detected .= lang('Found existing configuration file. Loading settings from the file...') . '
' . "\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.') . '
' . "\n"; + $detected .= lang('You need to add some domains to your header.inc.php.') . '
' . "\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 .= '\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...") . '
' . "\n"; - $detected .= lang('Importing old settings into the new format....') . '
' . "\n"; + $detected .= lang("You're using an old header.inc.php version...") . '
' . "\n"; + $detected .= lang('Importing old settings into the new format....') . '
' . "\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 .= '\n"; } $setup_tpl->set_var('dbtype_options',$dbtype_options); @@ -485,7 +485,7 @@ } else { - $detected .= lang('Sample configuration not found. using built in defaults') . '
' . "\n"; + $detected .= lang('Sample configuration not found. using built in defaults') . '
' . "\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 .= '\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...') . '
' . "\n"; + $detected .= lang('Now guessing better values for defaults...') . '
' . "\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 .= "\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 .= '\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 .= '
' . lang('Warning!') . '
' + $errors .= '
' . lang('Warning!') . '
' . lang('The db_type in defaults (%1) is not supported on this server. using first supported type.',$GLOBALS['egw_info']['server']['db_type']) . '
'; */ @@ -625,16 +626,15 @@ if(is_writeable('../header.inc.php') || (!file_exists('../header.inc.php') && is_writeable('../'))) { - $errors .= '
 ' - . lang('or') . '  ' - . lang('or') . '  '.lang('the file').'.'; + $errors .= '
 ' + . lang('or') . '  ' + . lang('or') . '  '.lang('the file').'.'; } else { - $errors .= '
' - . lang('Cannot create the header.inc.php due to file permission restrictions.
Instead you can %1 the file.', - '' . lang('or') . ' ') - . ''; + $errors .= '
' + . lang('Cannot create the header.inc.php due to file permission restrictions.
Instead you can %1 the file.', + '' . lang('or') . ' '); } // 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 < 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.
Note: The default has been randomly generated.')); + $setup_tpl->set_var('lang_mcryptivdescr',lang('This should be around 30 bytes in length.
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')); diff --git a/setup/schematoy.php b/setup/schematoy.php index ca972e7350..a2ee81a1ab 100644 --- a/setup/schematoy.php +++ b/setup/schematoy.php @@ -137,13 +137,13 @@ while(list($table,$null) = @each($phpgw_baseline)) { $terror[$appname]['tables'][] = $table; - echo '
Adding app table: ' . $table; + echo '
Adding app table: ' . $table; } } if($version[$appname]) { - echo '
Processing ' . $terror[$appname]['name'] . ' to ' . $version[$appname]; + echo '
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 '
Baseline-only completed for ' . $terror[$appname]['name']; + echo '
Baseline-only completed for ' . $terror[$appname]['name']; } - echo '
' . $GLOBALS['setup_info'][$appname]['title'] . ' ' + echo '
' . $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 '
' . $terror[$appname]['title'] . ' ' . lang('registered') . '.'; + echo '
' . $terror[$appname]['title'] . ' ' . lang('registered') . '.'; } - echo '
' . lang('Go back') . ''; + echo '
' . lang('Go back') . ''; $GLOBALS['setup_tpl']->pparse('out','footer'); exit; } @@ -203,13 +203,13 @@ $GLOBALS['setup_tpl']->pparse('out','detail'); } - echo '
' . lang('Go back') . ''; + echo '
' . lang('Go back') . ''; $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.
If you do not enter a version, only the baseline tables will be installed for the app.
THIS WILL DROP ALL OF THE APPS' TABLES FIRST!")); + $GLOBALS['setup_tpl']->set_var('description',lang("Select an app, enter a target version, then submit to process to that version.
If you do not enter a version, only the baseline tables will be installed for the app.
THIS WILL DROP ALL OF THE APPS' TABLES FIRST!")); $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',''); + $GLOBALS['setup_tpl']->set_var('install',''); $status = lang('OK') . ' - ' . $value['status']; $GLOBALS['setup_tpl']->set_var('appinfo',$value['name'] . '-' . $status); diff --git a/setup/setup_demo.php b/setup/setup_demo.php index 360ad9d9eb..52b5170a4f 100644 --- a/setup/setup_demo.php +++ b/setup/setup_demo.php @@ -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('This will create 1 admin account and 3 demo accounts
The username/passwords are: demo/guest, demo2/guest and demo3/guest.')); + $setup_tpl->set_var('description',lang('This will create 1 admin account and 3 demo accounts
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')); diff --git a/setup/system_charset.php b/setup/system_charset.php index b8276c0e27..ef593e1e4c 100644 --- a/setup/system_charset.php +++ b/setup/system_charset.php @@ -95,7 +95,7 @@ } foreach($table_definitions as $table => $definition) { - if ($diagnostics) { echo "
start converting table '$table' ... "; } + if ($diagnostics) { echo "
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 "   $query
\n"; + if ($diagnostics > 1) echo "   $query
\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 "   $query

\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('
',$errors) : ' '); + $setup_tpl->set_var('error_msg',is_array($errors) ? implode('
',$errors) : ' '); $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',''.lang('Setting the system-charset to UTF-8 (unicode) allows the coexistens of data from languages of different charsets.').'
'. + $setup_tpl->set_var('lang_warning',''.lang('Setting the system-charset to UTF-8 (unicode) allows the coexistens of data from languages of different charsets.').'
'. 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',"$current_charset". - "\n"); + "\n"); } else { @@ -188,7 +188,7 @@ { $other_charset = 'utf-8'; } - $setup_tpl->set_var('new_charset',"$other_charset\n"); + $setup_tpl->set_var('new_charset',"$other_charset\n"); } else { diff --git a/setup/templates/default/applications.tpl b/setup/templates/default/applications.tpl index 8f5aeb596c..1e6511311f 100644 --- a/setup/templates/default/applications.tpl +++ b/setup/templates/default/applications.tpl @@ -1,5 +1,6 @@ - -
+

{description}
+
- @@ -48,21 +50,21 @@ function check_all(which) - + @@ -113,22 +115,22 @@ function check_all(which)
{appdata} {actions}
  - {install_all} + {install_all} - {upgrade_all} + {upgrade_all}   - {remove_all} + {remove_all}
{instalt}{instalt} {appinfo}  {apptitle}  {currentver} 
{debug} {lang_debug} - {install_all} + {install_all} - {upgrade_all} + {upgrade_all}   - {remove_all} + {remove_all}
- - + +
@@ -136,9 +138,7 @@ function check_all(which) - - -
+
diff --git a/setup/templates/default/applist.tpl b/setup/templates/default/applist.tpl index 562748fe87..d303d36674 100644 --- a/setup/templates/default/applist.tpl +++ b/setup/templates/default/applist.tpl @@ -1,5 +1,5 @@ -

{lang_applist}:


+

{lang_applist}:


@@ -9,7 +9,7 @@
Select an application/module, or click 'Show all' to convert all tables.
- + @@ -19,7 +19,7 @@ - + @@ -30,11 +30,11 @@
  Name
{appname}  {apptitle} 
+ - +
- - + {select_to_download_file}{select_to_download_file}
diff --git a/setup/templates/default/config.tpl b/setup/templates/default/config.tpl index 4db33b1ca5..7822c5b9e8 100644 --- a/setup/templates/default/config.tpl +++ b/setup/templates/default/config.tpl @@ -2,7 +2,7 @@ -
+ @@ -16,23 +16,23 @@ - - + + - - + + - - + + - - + + @@ -66,12 +66,12 @@ - + - + @@ -85,7 +85,7 @@ - + - + - + - + @@ -197,21 +197,21 @@ - + - + - + @@ -249,7 +249,7 @@ - + @@ -285,42 +285,42 @@ - + - + - + - + - + - + - + - + @@ -351,11 +351,11 @@ - + - + @@ -368,7 +368,7 @@ - + @@ -398,7 +398,7 @@
 {title}
{lang_Enter_the_full_path_for_temporary_files.
Examples:_/tmp,_C:\TEMP}:
{lang_Enter_the_full_path_for_temporary_files.
Examples:_/tmp,_C:\TEMP}:
{lang_Enter_the_full_path_for_users_and_group_files.
Examples:_/files,_E:\FILES}:
{lang_This_has_to_be_outside_the_webservers_document-root!!!}
{lang_or_http://webdav.domain.com_(WebDAV)}:
{lang_Enter_the_full_path_for_users_and_group_files.
Examples:_/files,_E:\FILES}:
{lang_This_has_to_be_outside_the_webservers_document-root!!!}
{lang_or_http://webdav.domain.com_(WebDAV)}:
{lang_Enter_the_full_path_to_the_backup_directory.
if_empty:_files_directory}/db_backup:
{lang_This_has_to_be_outside_the_webservers_document-root!!!}
{lang_Enter_the_full_path_to_the_backup_directory.
if_empty:_files_directory}/db_backup:
{lang_This_has_to_be_outside_the_webservers_document-root!!!}
{lang_Enter_the_location_of_eGroupWare's_URL.
Example:_http://www.domain.com/egroupware_ _or_ _/egroupware
No_trailing_slash}:
{lang_Enter_the_location_of_eGroupWare's_URL.
Example:_http://www.domain.com/egroupware_ _or_ _/egroupware
No_trailing_slash}:
{lang_Enter_the_hostname_of_the_machine_on_which_this_server_is_running}:
{lang_Enter_your_default_FTP_server}:
{lang_Enter_your_HTTP_proxy_server}:
{lang_Enter_your_HTTP_proxy_server_port}:
{lang_Enter_your_HTTP_proxy_server_username}:
{lang_Enter_your_HTTP_proxy_server_password}:
{lang_Allowed_migration_types_(comma-separated)}: - +
{lang_Minimum_account_id_(e.g._500_or_100,_etc.)}:
{lang_Maximum_account_id_(e.g._65535_or_1000000)}:
{lang_User_account_prefix}:
{lang_Add_auto-created_users_to_this_group_('Default'_will_be_attempted_if_this_is_empty.)}:
{lang_LDAP_Default_homedirectory_prefix_(e.g._/home_for_/home/username)}:
{lang_LDAP_Default_shell_(e.g._/bin/bash)}:
{lang_LDAP_host}:
{lang_LDAP_accounts_context}:
{lang_LDAP_search_filter_for_accounts,_default:_"(uid=%user)",_%domain=eGW-domain}:
{lang_LDAP_groups_context}:
{lang_LDAP_rootdn} {lang_(searching_accounts_and_changing_passwords)}:
{lang_LDAP_root_password}:
{lang_Host/IP_Domain_controler}:
{lang_Domain_name}:
{lang_Enter_some_random_text_for_app_session_encryption}:
{lang_Select_where_you_want_to_store/retrieve_filesystem_information}: -
+
({lang_file_type,_size,_version,_etc.})
@@ -412,7 +412,7 @@
{lang_Select_where_you_want_to_store/retrieve_file_contents}: -
+
({lang_Recommended:_Filesystem})
@@ -438,8 +438,8 @@
- - + +
diff --git a/setup/templates/default/config_post_script.tpl b/setup/templates/default/config_post_script.tpl index d373e490ef..f17525f474 100644 --- a/setup/templates/default/config_post_script.tpl +++ b/setup/templates/default/config_post_script.tpl @@ -11,8 +11,8 @@ - - + + diff --git a/setup/templates/default/config_pre_script.tpl b/setup/templates/default/config_pre_script.tpl index b47bdbc9f6..12346c2e59 100644 --- a/setup/templates/default/config_pre_script.tpl +++ b/setup/templates/default/config_pre_script.tpl @@ -1,5 +1,5 @@ - - + +
diff --git a/setup/templates/default/css/idots.css b/setup/templates/default/css/idots.css index 026d43c230..877d9d2f4f 100644 --- a/setup/templates/default/css/idots.css +++ b/setup/templates/default/css/idots.css @@ -1,9 +1,9 @@ -#setup_info { +.setup_info { color:#5F5F5F; } -#setup_error { +.setup_error { color:red; } -#setup_warning { +.setup_warning { color: #5F5F5F; } diff --git a/setup/templates/default/db_backup.tpl b/setup/templates/default/db_backup.tpl index 539ea77b9b..f2535d8ada 100644 --- a/setup/templates/default/db_backup.tpl +++ b/setup/templates/default/db_backup.tpl @@ -1,7 +1,7 @@

{error_msg}

- +
diff --git a/setup/templates/default/footer.tpl b/setup/templates/default/footer.tpl index cc7abe3842..1e5f773042 100644 --- a/setup/templates/default/footer.tpl +++ b/setup/templates/default/footer.tpl @@ -7,16 +7,16 @@ -

 eGroupWare {lang_version} {pgw_ver}
+

 eGroupWare {lang_version} {pgw_ver}
-

 

+ +{hidden_var1} +
@@ -15,36 +18,36 @@
{select_box_desc} - - {hidden_var1} - {select_box_langs} {meth_desc} -

- +

+  {blurb_dumpold} -
- +
+  {blurb_addonlynew} -
- +
+  {blurb_addmissing}
- {lang_debug} + {lang_debug}
- - + +
+ +
diff --git a/setup/templates/default/ldap.tpl b/setup/templates/default/ldap.tpl index c6edacf0fe..a2e86b9ba1 100644 --- a/setup/templates/default/ldap.tpl +++ b/setup/templates/default/ldap.tpl @@ -1,8 +1,8 @@ -
+ - + @@ -65,7 +65,7 @@ @@ -87,7 +87,7 @@ diff --git a/setup/templates/default/login_main.tpl b/setup/templates/default/login_main.tpl index 3d6f7ba0c0..6244b99bfc 100644 --- a/setup/templates/default/login_main.tpl +++ b/setup/templates/default/login_main.tpl @@ -4,7 +4,7 @@
 {description}
 
 {description}
 
 {select_apps} -
 {note} +
 {note}
- - + +
- +
{V_login_stage_header} - + @@ -18,16 +18,16 @@
  
 {lang_header_login}
- + - +
{lang_header_username}: {lang_select}
{lang_header_password}:
- - + +
diff --git a/setup/templates/default/login_stage_header.tpl b/setup/templates/default/login_stage_header.tpl index af6d07a124..25099b968d 100644 --- a/setup/templates/default/login_stage_header.tpl +++ b/setup/templates/default/login_stage_header.tpl @@ -22,7 +22,7 @@ {lang_config_username}: - + {lang_select} @@ -31,7 +31,7 @@ {lang_config_password}: - + @@ -42,7 +42,7 @@ {lang_config_username}: - + {lang_select} @@ -51,14 +51,15 @@ {lang_config_password}: - + + - + - - + + diff --git a/setup/templates/default/manageheader.tpl b/setup/templates/default/manageheader.tpl index b040500224..ee3fe2eee4 100644 --- a/setup/templates/default/manageheader.tpl +++ b/setup/templates/default/manageheader.tpl @@ -17,35 +17,37 @@ - + {lang_select} + {detected} -{detected} - - + + + + + + + + +
+
+
+ + + + - - - + - + - + - + - + - - - - + - + - {domains}{comment_l} - + {comment_r} -{formend} + +
{lang_settings}
{lang_serverroot} -
-
{lang_serverroot}
{lang_includeroot}
{lang_includeroot}
{lang_adminuser}
{lang_adminuser}
{lang_adminpass}
{lang_adminpass}
{lang_setup_acl}
{lang_setup_acl}
{lang_persist}
-
{lang_persist}
+ @@ -53,7 +55,7 @@
{lang_persistdescr}
{lang_sesstype}
+
{lang_sesstype}
@@ -61,7 +63,7 @@
{lang_sesstypedescr}
{lang_enablemcrypt}
+
{lang_enablemcrypt}
{lang_mcrypt_warning}
{lang_mcryptversion}
{lang_mcryptversion}
{lang_mcryptversiondescr}
{lang_mcryptiv}
{lang_mcryptiv}
{lang_mcryptivdescr}
{lang_domselect}
+
{lang_domselect}
{errors}
+
+
+
+ + - - - - + +
- -
{lang_finaldescr}
- - - - - - - +
+
{lang_finaldescr}
+ + + + + +
+ +
- - - {lang_domain}:    {lang_delete} + {lang_domain}: +    {lang_delete} - {lang_dbtype}
+ {lang_dbtype}
@@ -127,26 +140,25 @@ {lang_whichdb} - {lang_dbhost}
{lang_dbhostdescr} + {lang_dbhost}
{lang_dbhostdescr} - - {lang_dbport}
{lang_dbportdescr} + {lang_dbport}
{lang_dbportdescr} - {lang_dbname}
{lang_dbnamedescr} + {lang_dbname}
{lang_dbnamedescr} - {lang_dbuser}
{lang_dbuserdescr} + {lang_dbuser}
{lang_dbuserdescr} - {lang_dbpass}
{lang_dbpassdescr} + {lang_dbpass}
{lang_dbpassdescr} - {lang_configuser}
+ {lang_configuser}
- {lang_configpass}
+ {lang_configpass}
{lang_passforconfig} diff --git a/setup/templates/default/schema.tpl b/setup/templates/default/schema.tpl index 994efa9e30..3dd57b6240 100644 --- a/setup/templates/default/schema.tpl +++ b/setup/templates/default/schema.tpl @@ -1,5 +1,5 @@ -
+
@@ -10,7 +10,7 @@ - + @@ -25,7 +25,7 @@ - + @@ -72,8 +72,8 @@
{appdata}
{actions}
{instalt}{instalt} {appinfo}  {apptitle} 
- - + +
diff --git a/setup/templates/default/setup_db_blocks.tpl b/setup/templates/default/setup_db_blocks.tpl index 1bcf452a8d..28e8d30f9a 100644 --- a/setup/templates/default/setup_db_blocks.tpl +++ b/setup/templates/default/setup_db_blocks.tpl @@ -5,22 +5,22 @@ - {notcomplete} + {notcomplete} - {dbnotexist}
- {makesure}.
-
+ {dbnotexist}
+ {makesure}.
+
{instr}

- {createdb}
- DB root username:
- DB root password:
- - + {createdb}
+ DB root username:
+ DB root password:
+ + -


- +
+
@@ -29,14 +29,14 @@ - {notcomplete} + {notcomplete} {dbnotexist}

{makesure}. -

- -

+
+ +

@@ -47,7 +47,7 @@ - {notcomplete} + {notcomplete} {prebeta} @@ -60,19 +60,19 @@ - {Complete} + {Complete}
- + - {dbexists}
- - {lang_system_charset} {system_charset}
- {lang_debug}
- {coreapps} -
- {lang_restore}
+ {dbexists}
+ + {lang_system_charset} {system_charset}
+ {lang_debug}
+ {coreapps} +
+ {lang_restore}
{upload}
@@ -84,48 +84,48 @@ - not complete + not complete - {oldver}.
+ {oldver}.
{automatic} - {backupwarn}
-
- - - - {lang_backup}
- {lang_debug}
-
+ {backupwarn}
+ + + + + {lang_backup}
+ {lang_debug}
+
-
-
- - - -
({dropwarn}) +
+ + + + +
({dropwarn})
-
+
{dont_touch_my_data}.  {goto}: -
- - + + +
-
- - + + +
-
- - + + +
-
- - + + +
-
- - + + +
@@ -137,16 +137,16 @@ - {Complete} + {Complete}
- - - {dropwarn} + + + {dropwarn}
- +
@@ -157,7 +157,7 @@ - {notcomplete} + {notcomplete} @@ -193,8 +193,8 @@
-

- +
+
@@ -205,15 +205,15 @@ - completed + completed {tablescurrent} -
-
+ +
{insanity}: - -
({dropwarn}) + +
({dropwarn})
@@ -224,12 +224,12 @@ - not complete + not complete
- {dbnotexist}.
- + {dbnotexist}.
+
diff --git a/setup/templates/default/setup_demo.tpl b/setup/templates/default/setup_demo.tpl index 75985f772e..ad3c26c302 100644 --- a/setup/templates/default/setup_demo.tpl +++ b/setup/templates/default/setup_demo.tpl @@ -1,11 +1,12 @@ -
+ @@ -16,31 +17,31 @@
{description}

- {lang_deleteall} + {lang_deleteall} +

- + - + - + - + - + - + - - + +
{adminusername}
{adminfirstname}
{adminlastname}
{adminpassword}
{adminpassword2}
{create_demo_accounts}
diff --git a/setup/templates/default/setup_main.tpl b/setup/templates/default/setup_main.tpl index e9afc1829e..ddfac1b56f 100644 --- a/setup/templates/default/setup_main.tpl +++ b/setup/templates/default/setup_main.tpl @@ -14,7 +14,7 @@ - {config_status_alt} + {config_status_alt} {config_table_data} @@ -33,7 +33,7 @@ - {admin_status_alt} + {admin_status_alt} {admin_table_data} @@ -46,7 +46,7 @@ - {lang_status_alt} + {lang_status_alt} {lang_table_data} @@ -59,7 +59,7 @@ - {apps_status_alt} + {apps_status_alt} {apps_table_data} @@ -72,7 +72,7 @@ - {backup_status_alt} + {backup_status_alt} {backup_table_data} diff --git a/setup/templates/default/sqltoarray.tpl b/setup/templates/default/sqltoarray.tpl index b56ef3f75c..672d7f23f0 100644 --- a/setup/templates/default/sqltoarray.tpl +++ b/setup/templates/default/sqltoarray.tpl @@ -22,16 +22,16 @@ - + -   - - - - - - +   + + + + + +
diff --git a/setup/templates/default/system_charset.tpl b/setup/templates/default/system_charset.tpl index 5fed7c6176..a824910e2b 100644 --- a/setup/templates/default/system_charset.tpl +++ b/setup/templates/default/system_charset.tpl @@ -1,7 +1,7 @@

{error_msg}

-
+
@@ -36,8 +36,8 @@
-   - +   +