preparing to put setup3 code in here

This commit is contained in:
seek3r
2001-07-30 15:44:12 +00:00
parent d8ca88b77f
commit cd3f5a90dc
45 changed files with 0 additions and 18378 deletions

View File

@ -1,99 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
include("./inc/functions.inc.php");
include("../header.inc.php");
// Authorize the user to use setup app and load the database
// Does not return unless user is authorized
if (!$phpgw_setup->auth("Config")){
Header("Location: index.php");
exit;
}
$phpgw_setup->loaddb();
/* Guessing default paths. */
$current_config["files_dir"] = ereg_replace("/setup","/files",dirname($SCRIPT_FILENAME));
if (is_dir("/tmp")){
$current_config["temp_dir"] = "/tmp";
}else{
$current_config["temp_dir"] = "/path/to/temp/dir";
}
if ($submit) {
@$phpgw_setup->db->query("delete from phpgw_config");
// This is only temp.
$phpgw_setup->db->query("insert into phpgw_config (config_app,config_name, config_value) values ('phpgwapi','useframes','never')");
while ($newsetting = each($newsettings)) {
if ($newsetting[0] == "nntp_server") {
$phpgw_setup->db->query("select config_value FROM phpgw_config WHERE config_name='nntp_server'");
if ($phpgw_setup->db->num_rows()) {
$phpgw_setup->db->next_record();
if ($phpgw_setup->db->f("config_value") <> $newsetting[1]) {
$phpgw_setup->db->query("DELETE FROM newsgroups");
// $phpgw_setup->db->query("DELETE FROM users_newsgroups");
}
}
}
$phpgw_setup->db->query("insert into phpgw_config (config_app,config_name, config_value) values ('phpgwapi','" . addslashes($newsetting[0])
. "','" . addslashes($newsetting[1]) . "')");
}
if ($newsettings["auth_type"] == "ldap") {
Header('Location: '.$newsettings['webserver_url'].'/setup/ldap.php');
exit;
} else {
//echo "<center>Your config has been updated<br><a href='".$newsettings["webserver_url"]."/login.php'>Click here to login</a>";
Header('Location: '.$newsettings['webserver_url'].'/index.php');
exit;
}
}
if ($newsettings["auth_type"] != "ldap") {
$phpgw_setup->show_header("Configuration");
}
@$phpgw_setup->db->query("select * from phpgw_config");
while (@$phpgw_setup->db->next_record()) {
$current_config[$phpgw_setup->db->f("config_name")] = $phpgw_setup->db->f("config_value");
}
if ($current_config["files_dir"] == "/path/to/dir/phpgroupware/files") {
$current_config["files_dir"] = $phpgw_info["server"]["server_root"] . "/files";
}
if ($error == "badldapconnection") {
// Please check the number and dial again :)
echo "<br><center><b>Error:</b> There was a problem tring to connect to your LDAP server, please "
. "check your config.</center>";
}
?>
<form method="POST" action="config.php">
<table border="0" align="center">
<?php
$phpgw_setup->execute_script("config",array("phpgwapi","admin", "preferences","email"));
?>
<tr bgcolor="FFFFFF">
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="submit" value="Submit"></td>
</tr>
</table>
</form>
</body></html>

View File

@ -1,109 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
/* ######## Start security check ########## */
$d1 = strtolower(substr($phpgw_info['server']['api_inc'],0,3));
$d2 = strtolower(substr($phpgw_info['server']['server_root'],0,3));
$d3 = strtolower(substr($phpgw_info['server']['app_inc'],0,3));
if($d1 == 'htt' || $d1 == 'ftp' || $d2 == 'htt' || $d2 == 'ftp' || $d3 == 'htt' || $d3 == 'ftp') {
echo 'Failed attempt to break in via an old Security Hole!<br>';
exit;
} unset($d1);unset($d2);unset($d3);
/* ######## End security check ########## */
function CreateObject($classname, $constructor_param = "")
{
global $phpgw, $phpgw_info, $phpgw_domain;
$classpart = explode (".", $classname);
$appname = $classpart[0];
$classname = $classpart[1];
if (!$phpgw_info["flags"]["included_classes"][$classname]){
$phpgw_info["flags"]["included_classes"][$classname] = True;
include(PHPGW_INCLUDE_ROOT."/".$appname."/inc/class.".$classname.".inc.php");
}
if ($constructor_param == ""){
$obj = new $classname;
} else {
$obj = new $classname($constructor_param);
}
return $obj;
}
// This is needed is some parts of setup, until we include the API directly
function filesystem_separator()
{
if (PHP_OS == 'Windows' || PHP_OS == 'OS/2') {
return '\\';
} else {
return '/';
}
}
define('SEP',filesystem_separator());
function get_account_id($account_id = '',$default_id = '')
{
global $phpgw, $phpgw_info;
if (gettype($account_id) == 'integer')
{
return $account_id;
}
elseif ($account_id == '')
{
if ($default_id == '')
{
return $phpgw_info['user']['account_id'];
}
elseif (gettype($default_id) == 'string')
{
return $phpgw->accounts->name2id($default_id);
}
return intval($default_id);
}
elseif (gettype($account_id) == 'string')
{
if($phpgw->accounts->exists(intval($account_id)) == True)
{
return intval($account_id);
}
else
{
return $phpgw->accounts->name2id($account_id);
}
}
}
// Include to check user authorization against the
// password in ../header.inc.php to protect all of the setup
// pages from unauthorized use.
$phpgw_info['server']['app_images'] = 'templates/default/images';
if(file_exists('../header.inc.php'))
{
include('../header.inc.php');
}
else
{
$phpgw_info['server']['versions']['phpgwapi'] = 'Undetected';
}
include('./inc/phpgw_setup.inc.php');
include('./inc/phpgw_schema_proc.inc.php');
include('./inc/phpgw_schema_current.inc.php');
$phpgw_setup = new phpgw_setup;
/*$phpgw_setup12 = new phpgw_schema_proc('mysql');
$phpgw_setup13 = new phpgw_schema_proc('pgsql');
$phpgw_setup12->GenerateScripts($phpgw_tables,true);
$phpgw_setup13->GenerateScripts($phpgw_tables,true);*/
?>

View File

@ -1,270 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_baseline = array(
"config" => array(
"fd" => array(
"config_name" => array("type" => "varchar", "precision" => 25, "nullable" => false),
"config_value" => array("type" => "varchar", "precision" => 100)
),
"pk" => array(),
"fk" => array(),
"ix" => array(),
"uc" => array("config_name")
),
"applications" => array(
"fd" => array(
"app_name" => array("type" => "varchar", "precision" => 25, "nullable" => false),
"app_title" => array("type" => "varchar", "precision" => 50),
"app_enabled" => array("type" => "int", "precision" => 4),
"app_order" => array("type" => "int", "precision" => 4),
"app_tables" => array("type" => "varchar", "precision" => 255),
"app_version" => array("type" => "varchar", "precision" => 20, "nullable" => false, "default" => "0.0")
),
"pk" => array(),
"fk" => array(),
"ix" => array(),
"uc" => array("app_name")
),
"accounts" => array(
"fd" => array(
"account_id" => array("type" => "auto", "nullable" => false),
"account_lid" => array("type" => "varchar", "precision" => 25, "nullable" => false),
"account_pwd" => array("type" => "varchar", "precision" => 32, "nullable" => false),
"account_firstname" => array("type" => "varchar", "precision" => 50),
"account_lastname" => array("type" => "varchar", "precision" => 50),
"account_permissions" => array("type" => "text"),
"account_groups" => array("type" => "varchar", "precision" => 30),
"account_lastlogin" => array("type" => "int", "precision" => 4),
"account_lastloginfrom" => array("type" => "varchar", "precision" => 255),
"account_lastpwd_change" => array("type" => "int", "precision" => 4),
"account_status" => array("type" => "char", "precision" => 1, "nullable" => false, "default" => "A")
),
"pk" => array("account_id"),
"fk" => array(),
"ix" => array(),
"uc" => array("account_lid")
),
"groups" => array(
"fd" => array(
"group_id" => array("type" => "auto", "nullable" => false),
"group_name" => array("type" => "varchar", "precision" => 255),
"group_apps" => array("type" => "varchar", "precision" => 255)
),
"pk" => array("group_id"),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"preferences" => array(
"fd" => array(
"preference_owner" => array("type" => "varchar", "precision" => 20, "nullable" => false),
"preference_name" => array("type" => "varchar", "precision" => 50, "nullable" => false),
"preference_value" => array("type" => "varchar", "precision" => 50),
"preference_appname" => array("type" => "varchar", "precision" => 50)
),
"pk" => array("preference_owner", "preference_name"),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"sessions" => array(
"fd" => array(
"session_id" => array("type" => "varchar", "precision" => 255, "nullable" => false),
"session_lid" => array("type" => "varchar", "precision" => 20),
"session_pwd" => array("type" => "varchar", "precision" => 255),
"session_ip" => array("type" => "varchar", "precision" => 255),
"session_logintime" => array("type" => "varchar", "precision" => 4),
"session_dla" => array("type" => "varchar", "precision" => 4)
),
"pk" => array(),
"fk" => array(),
"ix" => array(),
"uc" => array("session_id")
),
"app_sessions" => array(
"fd" => array(
"sessionid" => array("type" => "varchar", "precision" => 255, "nullable" => false),
"loginid" => array("type" => "varchar", "precision" => 20),
"app" => array("type" => "varchar", "precision" => 20),
"content" => array("type" => "text")
),
"pk" => array(),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"access_log" => array(
"fd" => array(
"sessionid" => array("type" => "varchar", "precision" => 30),
"loginid" => array("type" => "varchar", "precision" => 30),
"ip" => array("type" => "varchar", "precision" => 30),
"li" => array("type" => "int", "precision" => 4),
"lo" => array("type" => "int", "precision" => 4)
),
"pk" => array(),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"profiles" => array(
"fd" => array(
"con" => array("type" => "auto", "nullable" => false),
"owner" => array("type" => "varchar", "precision" => 20),
"title" => array("type" => "varchar", "precision" => 255),
"phone_number" => array("type" => "varchar", "precision" => 255),
"comments" => array("type" => "text"),
"picture_format" => array("type" => "varchar", "precision" => 255),
"picture" => array("type" => "blob")
),
"pk" => array("con"),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"addressbook" => array(
"fd" => array(
"ab_id" => array("type" => "auto", "nullable" => false),
"ab_owner" => array("type" => "varchar", "precision" => 25),
"ab_access" => array("type" => "varchar", "precision" => 10),
"ab_firstname" => array("type" => "varchar", "precision" => 255),
"ab_lastname" => array("type" => "varchar", "precision" => 255),
"ab_email" => array("type" => "varchar", "precision" => 255),
"ab_hphone" => array("type" => "varchar", "precision" => 255),
"ab_wphone" => array("type" => "varchar", "precision" => 255),
"ab_fax" => array("type" => "varchar", "precision" => 255),
"ab_pager" => array("type" => "varchar", "precision" => 255),
"ab_mphone" => array("type" => "varchar", "precision" => 255),
"ab_ophone" => array("type" => "varchar", "precision" => 255),
"ab_street" => array("type" => "varchar", "precision" => 255),
"ab_city" => array("type" => "varchar", "precision" => 255),
"ab_state" => array("type" => "varchar", "precision" => 255),
"ab_zip" => array("type" => "varchar", "precision" => 255),
"ab_bday" => array("type" => "varchar", "precision" => 255),
"ab_notes" => array("type" => "text"),
"ab_company" => array("type" => "varchar", "precision" => 255),
),
"pk" => array("ab_id"),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"todo" => array(
"fd" => array(
"todo_id" => array("type" => "auto", "nullable" => false),
"todo_owner" => array("type" => "varchar", "precision" => 25),
"todo_access" => array("type" => "varchar", "precision" => 10),
"todo_des" => array("type" => "text"),
"todo_pri" => array("type" => "int", "precision" => 4),
"todo_status" => array("type" => "int", "precision" => 4),
"todo_datecreated" => array("type" => "int", "precision" => 4),
"todo_datedue" => array("type" => "int", "precision" => 4)
),
"pk" => array("todo_id"),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"webcal_entry" => array(
"fd" => array(
"cal_id" => array("type" => "auto", "nullable" => false),
"cal_group_id" => array("type" => "int", "precision" => 4),
"cal_create_by" => array("type" => "varchar", "precision" => 25, "nullable" => false),
"cal_date" => array("type" => "int", "precision" => 4, "nullable" => false, "default" => "0"),
"cal_time" => array("type" => "int", "precision" => 4),
"cal_mod_date" => array("type" => "int", "precision" => 4),
"cal_mod_time" => array("type" => "int", "precision" => 4),
"cal_duration" => array("type" => "int", "precision" => 4, "nullable" => false, "default" => "0"),
"cal_priority" => array("type" => "int", "precision" => 4, "default" => "2"),
"cal_type" => array("type" => "varchar", "precision" => 10),
"cal_access" => array("type" => "char", "precision" => 10),
"cal_name" => array("type" => "varchar", "precision" => 80, "nullable" => false),
"cal_description" => array("type" => "text"),
),
"pk" => array("cal_id"),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"webcal_entry_repeats" => array(
"fd" => array(
"cal_id" => array("type" => "int", "precision" => 4, "nullable" => false, "default" => "0"),
"cal_type" => array("type" => "varchar", "precision" => 20, "nullable" => false, "default" => "daily"),
"cal_end" => array("type" => "int", "precision" => 4),
"cal_frequency" => array("type" => "int", "precision" => 4, "default" => "1"),
"cal_days" => array("type" => "char", "precision" => 7)
),
"pk" => array(),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"webcal_entry_user" => array(
"fd" => array(
"cal_id" => array("type" => "int", "precision" => 4, "nullable" => false, "default" => "0"),
"cal_login" => array("type" => "varchar", "precision" => 25, "nullable" => false),
"cal_status" => array("type" => "char", "precision" => 1, "default" => "A")
),
"pk" => array("cal_id", "cal_login"),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"webcal_entry_groups" => array(
"fd" => array(
"cal_id" => array("type" => "int", "precision" => 4),
"groups" => array("type" => "varchar", "precision" => 255)
),
"pk" => array(),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"newsgroups" => array(
"fd" => array(
"con" => array("type" => "auto", "nullable" => false),
"name" => array("type" => "varchar", "precision" => 255, "nullable" => false),
"messagecount" => array("type" => "int", "precision" => 4, "nullable" => false),
"lastmessage" => array("type" => "int", "precision" => 4, "nullable" => false),
"active" => array("type" => "char", "precision" => 1, "nullable" => false, "default" => "N"),
"lastread" => array("type" => "int", "precision" => 4)
),
"pk" => array("con"),
"fk" => array(),
"ix" => array(),
"uc" => array("name")
),
"users_newsgroups" => array(
"fd" => array(
"owner" => array("type" => "int", "precision" => 4, "nullable" => false),
"newsgroup" => array("type" => "int", "precision" => 4, "nullable" => false)
),
"pk" => array(),
"fk" => array(),
"ix" => array(),
"uc" => array()
),
"lang" => array(
"fd" => array(
"message_id" => array("type" => "varchar", "precision" => 150, "nullable" => false, "default" => ""),
"app_name" => array("type" => "varchar", "precision" => 100, "nullable" => false, "default" => "common"),
"lang" => array("type" => "varchar", "precision" => 5, "nullable" => false, "default" => ""),
"content" => array("type" => "text")
),
"pk" => array("message_id", "app_name", "lang"),
"fk" => array(),
"ix" => array(),
"uc" => array()
)
);
?>

View File

@ -1,371 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_tables = array(
"config" => array(
"fd" => array(
"config_name" => array("type" => "varchar", "precision" => 255, "nullable" => false),
"config_value" => array("type" => "varchar", "precision" => 100)
),
"pk" => array(),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"applications" => array(
"fd" => array(
"app_name" => array("type" => "varchar", "precision" => 25, "nullable" => false),
"app_title" => array("type" => "varchar", "precision" => 50),
"app_enabled" => array("type" => "int", "precision" => 4),
"app_order" => array("type" => "int", "precision" => 4),
"app_tables" => array("type" => "varchar", "precision" => 255),
"app_version" => array("type" => "varchar", "precision" => 20, "nullable" => false, "default" => "0.0")
),
"pk" => array(),
"ix" => array(),
"fk" => array(),
"uc" => array("app_name")
),
"accounts" => array(
"fd" => array(
"account_id" => array("type" => "auto", "nullable" => false),
"account_lid" => array("type" => "varchar", "precision" => 25, "nullable" => false),
"account_pwd" => array("type" => "varchar", "precision" => 32, "nullable" => false),
"account_firstname" => array("type" => "varchar", "precision" => 50),
"account_lastname" => array("type" => "varchar", "precision" => 50),
"account_permissions" => array("type" => "text"),
"account_groups" => array("type" => "varchar", "precision" => 30),
"account_lastlogin" => array("type" => "int", "precision" => 4),
"account_lastloginfrom" => array("type" => "varchar", "precision" => 255),
"account_lastpwd_change" => array("type" => "int", "precision" => 4),
"account_status" => array("type" => "char", "precision" => 1, "nullable" => false, "default" => "A")
),
"pk" => array("account_id"),
"ix" => array(),
"fk" => array(),
"uc" => array("account_lid")
),
"groups" => array(
"fd" => array(
"group_id" => array("type" => "auto", "nullable" => false),
"group_name" => array("type" => "varchar", "precision" => 255),
"group_apps" => array("type" => "varchar", "precision" => 255)
),
"pk" => array("group_id"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"preferences" => array(
"fd" => array(
"preference_owner" => array("type" => "int", "precision" => 4, "nullable" => false),
"preference_value" => array("type" => "text")
),
"pk" => array(),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"phpgw_sessions" => array(
"fd" => array(
"session_id" => array("type" => "varchar", "precision" => 255, "nullable" => false),
"session_lid" => array("type" => "varchar", "precision" => 255),
"session_ip" => array("type" => "varchar", "precision" => 255),
"session_logintime" => array("type" => "int", "precision" => 4),
"session_dla" => array("type" => "int", "precision" => 4),
"session_info" => array("type" => "text")
),
"pk" => array(),
"ix" => array(),
"fk" => array(),
"uc" => array("session_id")
),
"phpgw_acl" => array(
"fd" => array(
"acl_appname" => array("type" => "varchar", "precision" => 50),
"acl_location" => array("type" => "varchar", "precision" => 255),
"acl_account" => array("type" => "int", "precision" => 4),
"acl_account_type" => array("type" => "char", "precision" => 1),
"acl_rights" => array("type" => "int", "precision" => 4)
),
"pk" => array(),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"phpgw_app_sessions" => array(
"fd" => array(
"sessionid" => array("type" => "varchar", "precision" => 255, "nullable" => false),
"loginid" => array("type" => "varchar", "precision" => 20),
"app" => array("type" => "varchar", "precision" => 20),
"content" => array("type" => "text")
),
"pk" => array(),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"phpgw_access_log" => array(
"fd" => array(
"sessionid" => array("type" => "varchar", "precision" => 255),
"loginid" => array("type" => "varchar", "precision" => 30),
"ip" => array("type" => "varchar", "precision" => 30),
"li" => array("type" => "int", "precision" => 4),
"lo" => array("type" => "varchar", "precision" => 255)
),
"pk" => array(),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"profiles" => array(
"fd" => array(
"con" => array("type" => "auto", "nullable" => false),
"owner" => array("type" => "varchar", "precision" => 20),
"title" => array("type" => "varchar", "precision" => 255),
"phone_number" => array("type" => "varchar", "precision" => 255),
"comments" => array("type" => "text"),
"picture_format" => array("type" => "varchar", "precision" => 255),
"picture" => array("type" => "blob")
),
"pk" => array("con"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"addressbook" => array(
"fd" => array(
"ab_id" => array("type" => "auto", "nullable" => false),
"ab_owner" => array("type" => "varchar", "precision" => 25),
"ab_access" => array("type" => "varchar", "precision" => 10),
"ab_firstname" => array("type" => "varchar", "precision" => 255),
"ab_lastname" => array("type" => "varchar", "precision" => 255),
"ab_email" => array("type" => "varchar", "precision" => 255),
"ab_hphone" => array("type" => "varchar", "precision" => 255),
"ab_wphone" => array("type" => "varchar", "precision" => 255),
"ab_fax" => array("type" => "varchar", "precision" => 255),
"ab_pager" => array("type" => "varchar", "precision" => 255),
"ab_mphone" => array("type" => "varchar", "precision" => 255),
"ab_ophone" => array("type" => "varchar", "precision" => 255),
"ab_street" => array("type" => "varchar", "precision" => 255),
"ab_city" => array("type" => "varchar", "precision" => 255),
"ab_state" => array("type" => "varchar", "precision" => 255),
"ab_zip" => array("type" => "varchar", "precision" => 255),
"ab_bday" => array("type" => "varchar", "precision" => 255),
"ab_notes" => array("type" => "text"),
"ab_company" => array("type" => "varchar", "precision" => 255),
"ab_company_id" => array("type" => "int", "precision" => 4),
"ab_title" => array("type" => "varchar", "precision" => 60),
"ab_address2" => array("type" => "varchar", "precision" => 60),
"ab_url" => array("type" => "varchar", "precision" => 255)
),
"pk" => array("ab_id"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"customers" => array(
"fd" => array(
"company_id" => array("type" => "auto", "nullable" => false),
"company_name" => array("type" => "varchar", "precision" => 255),
"website" => array("type" => "varchar", "precision" => 80),
"ftpsite" => array("type" => "varchar", "precision" => 80),
"industry_type" => array("type" => "varchar", "precision" => 50),
"status" => array("type" => "varchar", "precision" => 30),
"software" => array("type" => "varchar", "precision" => 40),
"lastjobnum" => array("type" => "int", "precision" => 4),
"lastjobfinished" => array("type" => "date"),
"busrelationship" => array("type" => "varchar", "precision" => 30),
"notes" => array("type" => "text")
),
"pk" => array("company_id"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"todo" => array(
"fd" => array(
"todo_id" => array("type" => "auto", "nullable" => false),
"todo_id_parent" => array("type" => "int", "precision" => 4, "nullable" => false, "default" => "0"),
"todo_owner" => array("type" => "varchar", "precision" => 25),
"todo_access" => array("type" => "varchar", "precision" => 10),
"todo_des" => array("type" => "text"),
"todo_pri" => array("type" => "int", "precision" => 4),
"todo_status" => array("type" => "int", "precision" => 4),
"todo_datecreated" => array("type" => "int", "precision" => 4),
"todo_startdate" => array("type" => "int", "precision" => 4),
"todo_enddate" => array("type" => "int", "precision" => 4)
),
"pk" => array("todo_id"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"calendar_entry" => array(
"fd" => array(
"cal_id" => array("type" => "auto", "nullable" => false),
"cal_owner" => array("type" => "int", "precision" => 4, "nullable" => false, "default" => "0"),
"cal_group" => array("type" => "varchar", "precision" => 255),
"cal_datetime" => array("type" => "int", "precision" => 4),
"cal_mdatetime" => array("type" => "int", "precision" => 4),
"cal_edatetime" => array("type" => "int", "precision" => 4),
"cal_priority" => array("type" => "int", "precision" => 4, "default" => "2", "nullable" => false),
"cal_type" => array("type" => "varchar", "precision" => 10),
"cal_access" => array("type" => "varchar", "precision" => 10),
"cal_name" => array("type" => "varchar", "precision" => 80, "nullable" => false),
"cal_description" => array("type" => "text")
),
"pk" => array("cal_id"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"calendar_entry_repeats" => array(
"fd" => array(
"cal_id" => array("type" => "int", "precision" => 4, "default" => "0", "nullable" => false),
"cal_type" => array("type" => "varchar", "precision" => 20, "default" => "daily", "nullable" => false),
"cal_use_end" => array("type" => "int", "precision" => 4, "default" => "0"),
"cal_frequency" => array("type" => "int", "precision" => 4, "default" => "1"),
"cal_days" => array("type" => "char", "precision" => 7)
),
"pk" => array(),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"calendar_entry_user" => array(
"fd" => array(
"cal_id" => array("type" => "int", "precision" => 4, "nullable" => false, "default" => "0"),
"cal_login" => array("type" => "int", "precision" => 4, "nullable" => false, "default" => "0"),
"cal_status" => array("type" => "char", "precision" => 1, "default" => "A")
),
"pk" => array("cal_id", "cal_login"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"newsgroups" => array(
"fd" => array(
"con" => array("type" => "auto", "nullable" => false),
"name" => array("type" => "varchar", "precision" => 255, "nullable" => false),
"messagecount" => array("type" => "int", "precision" => 4, "nullable" => false),
"lastmessage" => array("type" => "int", "precision" => 4, "nullable" => false),
"active" => array("type" => "char", "precision" => 1, "nullable" => false, "default" => "N"),
"lastread" => array("type" => "int", "precision" => 4)
),
"pk" => array("con"),
"ix" => array(),
"fk" => array(),
"uc" => array("name")
),
"news_msg" => array(
"fd" => array(
"con" => array("type" => "int", "precision" => 4, "nullable" => false),
"msg" => array("type" => "int", "precision" => 4, "nullable" => false),
"uid" => array("type" => "varchar", "precision" => 255, "default" => ""),
"udate" => array("type" => "int", "precision" => 4, "default" => "0"),
"path" => array("type" => "varchar", "precision" => 255, "default" => ""),
"fromadd" => array("type" => "varchar", "precision" => 255, "default" => ""),
"toadd" => array("type" => "varchar", "precision" => 255, "default" => ""),
"ccadd" => array("type" => "varchar", "precision" => 255, "default" => ""),
"bccadd" => array("type" => "varchar", "precision" => 255, "default" => ""),
"reply_to" => array("type" => "varchar", "precision" => 255, "default" => ""),
"sender" => array("type" => "varchar", "precision" => 255, "default" => ""),
"return_path" => array("type" => "varchar", "precision" => 255, "default" => ""),
"subject" => array("type" => "varchar", "precision" => 255, "default" => ""),
"message_id" => array("type" => "varchar", "precision" => 255, "default" => ""),
"reference" => array("type" => "varchar", "precision" => 255, "default" => ""),
"in_reply_to" => array("type" => "varchar", "precision" => 255, "default" => ""),
"follow_up_to" => array("type" => "varchar", "precision" => 255, "default" => ""),
"nntp_posting_host" => array("type" => "varchar", "precision" => 255, "default" => ""),
"nntp_posting_date" => array("type" => "varchar", "precision" => 255, "default" => ""),
"x_complaints_to" => array("type" => "varchar", "precision" => 255, "default" => ""),
"x_trace" => array("type" => "varchar", "precision" => 255, "default" => ""),
"x_abuse_info" => array("type" => "varchar", "precision" => 255, "default" => ""),
"x_mailer" => array("type" => "varchar", "precision" => 255, "default" => ""),
"organization" => array("type" => "varchar", "precision" => 255, "default" => ""),
"content_type" => array("type" => "varchar", "precision" => 255, "default" => ""),
"content_description" => array("type" => "varchar", "precision" => 255, "default" => ""),
"content_transfer_encoding" => array("type" => "varchar", "precision" => 255, "default" => ""),
"mime_version" => array("type" => "varchar", "precision" => 255, "default" => ""),
"msgsize" => array("type" => "int", "precision" => 4, "default" => "0"),
"msglines" => array("type" => "int", "precision" => 4, "default" => "0"),
"body" => array("type" => "text") // TODO: MySQL is longtext - any discrepancies?
),
"pk" => array("con", "msg"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"lang" => array(
"fd" => array(
"message_id" => array("type" => "varchar", "precision" => 150, "nullable" => false, "default" => ""),
"app_name" => array("type" => "varchar", "precision" => 100, "nullable" => false, "default" => "common"),
"lang" => array("type" => "varchar", "precision" => 5, "nullable" => false, "default" => ""),
"content" => array("type" => "text", "nullable" => false)
),
"pk" => array("message_id", "app_name", "lang"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"categories" => array(
"fd" => array(
"cat_id" => array("type" => "auto", "nullable" => false),
"account_id" => array("type" => "int", "precision" => 4, "nullable" => false, "default" => "0"),
"app_name" => array("type" => "varchar", "precision" => 25, "nullable" => false),
"cat_name" => array("type" => "varchar", "precision" => 150, "nullable" => false),
"cat_description" => array("type" => "text", "nullable" => false)
),
"pk" => array("cat_id"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"languages" => array(
"fd" => array(
"lang_id" => array("type" => "varchar", "precision" => 2, "nullable" => false),
"lang_name" => array("type" => "varchar", "precision" => 50, "nullable" => false),
"available" => array("type" => "char", "precision" => 3, "nullable" => false, "default" => "No")
),
"pk" => array("lang_id"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"notes" => array(
"fd" => array(
"note_id" => array("type" => "auto", "nullable" => false),
"note_owner" => array("type" => "int", "precision" => 4),
"note_date" => array("type" => "int", "precision" => 4),
"note_content" => array("type" => "text")
),
"pk" => array("note_id"),
"ix" => array(),
"fk" => array(),
"uc" => array()
),
"phpgw_hooks" => array(
"fd" => array(
"hook_id" => array("type" => "auto", "nullable" => false),
"hook_appname" => array("type" => "varchar", "precision" => 255),
"hook_location" => array("type" => "varchar", "precision" => 255),
"hook_filename" => array("type" => "varchar", "precision" => 255)
),
"pk" => array("hook_id"),
"ix" => array(),
"fk" => array(),
"uc" => array()
)
);
?>

View File

@ -1,348 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
class phpgw_schema_proc
{
var $m_oTranslator;
var $m_oDeltaProc;
var $m_odb;
var $m_aTables;
var $m_bDeltaOnly;
function phpgw_schema_proc($dbms)
{
include("./inc/phpgw_schema_proc_" . $dbms . ".inc.php");
eval("\$this->m_oTranslator = new phpgw_schema_proc_$dbms;");
include("./inc/phpgw_schema_proc_array.inc.php");
$this->m_oDeltaProc = new phpgw_schema_proc_array;
$this->m_aTables = array();
$this->m_bDeltaOnly = false; // Default to false here in case it's just a CreateTable script
}
function GenerateScripts($aTables, $bOutputHTML = false)
{
if (!is_array($aTables))
return false;
$this->m_aTables = $aTables;
reset($this->m_aTables);
$sAllTableSQL = "";
while (list($sTableName, $aTableDef) = each($this->m_aTables))
{
$sSequenceSQL = "";
if ($this->_GetTableSQL($sTableName, $aTableDef, $sTableSQL, $sSequenceSQL))
{
$sTableSQL = "CREATE TABLE $sTableName (\n$sTableSQL\n)"
. $this->m_oTranslator->m_sStatementTerminator;
if ($sSequenceSQL != "")
$sAllTableSQL .= $sSequenceSQL . "\n";
$sAllTableSQL .= $sTableSQL . "\n\n";
}
else
{
if ($bOutputHTML)
print("<br>Failed generating script for <b>$sTableName</b><br>");
return false;
}
}
if ($bOutputHTML)
print("<PRE>$sAllTableSQL</PRE><BR><BR>");
return true;
}
function ExecuteScripts($aTables, $bOutputHTML = false)
{
if (!is_array($aTables) || !IsSet($this->m_odb))
return false;
reset($aTables);
$this->m_aTables = $aTables;
while (list($sTableName, $aTableDef) = each($aTables))
{
if ($this->CreateTable($sTableName, $aTableDef))
{
if ($bOutputHTML)
echo "<br>Create Table <b>$sTableName</b>";
}
else
{
if ($bOutputHTML)
echo "<br>Create Table Failed For <b>$sTableName</b>";
return false;
}
}
return true;
}
function DropAllTables($aTables, $bOutputHTML = false)
{
if (!is_array($aTables) || !IsSet($this->m_odb))
return false;
$this->m_aTables = $aTables;
reset($this->m_aTables);
while (list($sTableName, $aTableDef) = each($this->m_aTables))
{
if ($this->DropTable($sTableName))
{
if ($bOutputHTML)
echo "<br>Drop Table <b>$sTableSQL</b>";
}
else
return false;
}
return true;
}
function DropTable($sTableName)
{
$retVal = $this->m_oDeltaProc->DropTable($this, $this->m_aTables, $sTableName);
if ($this->m_bDeltaOnly)
return $retVal;
return $retVal && $this->m_oTranslator->DropTable($this, $this->m_aTables, $sTableName);
}
function DropColumn($sTableName, $aTableDef, $sColumnName, $bCopyData = true)
{
$retVal = $this->m_oDeltaProc->DropColumn($this, $this->m_aTables, $sTableName, $aTableDef, $sColumnName, $bCopyData);
if ($this->m_bDeltaOnly)
return $retVal;
return $retVal && $this->m_oTranslator->DropColumn($this, $this->m_aTables, $sTableName, $aTableDef, $sColumnName, $bCopyData);
}
function RenameTable($sOldTableName, $sNewTableName)
{
$retVal = $this->m_oDeltaProc->RenameTable($this, $this->m_aTables, $sOldTableName, $sNewTableName);
if ($this->m_bDeltaOnly)
return $retVal;
return $retVal && $this->m_oTranslator->RenameTable($this, $this->m_aTables, $sOldTableName, $sNewTableName);
}
function RenameColumn($sTableName, $sOldColumnName, $sNewColumnName, $bCopyData = true)
{
$retVal = $this->m_oDeltaProc->RenameColumn($this, $this->m_aTables, $sTableName, $sOldColumnName, $sNewColumnName, $bCopyData);
if ($this->m_bDeltaOnly)
return $retVal;
return $retVal && $this->m_oTranslator->RenameColumn($this, $this->m_aTables, $sTableName, $sOldColumnName, $sNewColumnName, $bCopyData);
}
function AlterColumn($sTableName, $sColumnName, $aColumnDef, $bCopyData = true)
{
$retVal = $this->m_oDeltaProc->AlterColumn($this, $this->m_aTables, $sTableName, $sColumnName, $aColumnDef, $bCopyData);
if ($this->m_bDeltaOnly)
return $retVal;
return $retVal && $this->m_oTranslator->AlterColumn($this, $this->m_aTables, $sTableName, $sColumnName, $aColumnDef, $bCopyData);
}
function AddColumn($sTableName, $sColumnName, $aColumnDef)
{
$retVal = $this->m_oDeltaProc->AddColumn($this, $this->m_aTables, $sTableName, $sColumnName, $aColumnDef);
if ($this->m_bDeltaOnly)
return $retVal;
return $retVal && $this->m_oTranslator->AddColumn($this, $this->m_aTables, $sTableName, $sColumnName, $aColumnDef);
}
function CreateTable($sTableName, $aTableDef)
{
$retVal = $this->m_oDeltaProc->CreateTable($this, $this->m_aTables, $sTableName, $aTableDef);
if ($this->m_bDeltaOnly)
return $retVal;
return $retVal && $this->m_oTranslator->CreateTable($this, $this->m_aTables, $sTableName, $aTableDef);
}
function query($sQuery, $line = "", $file = "")
{
return $this->m_odb->query($sQuery, $line, $file);
}
function _GetTableSQL($sTableName, $aTableDef, &$sTableSQL, &$sSequenceSQL)
{
if (!is_array($aTableDef))
return false;
$sTableSQL = "";
reset($aTableDef["fd"]);
while (list($sFieldName, $aFieldAttr) = each($aTableDef["fd"]))
{
$sFieldSQL = "";
if ($this->_GetFieldSQL($aFieldAttr, $sFieldSQL))
{
if ($sTableSQL != "")
$sTableSQL .= ",\n";
$sTableSQL .= "$sFieldName $sFieldSQL";
if ($aFieldAttr["type"] == "auto")
{
$this->m_oTranslator->GetSequenceSQL($sTableName, $sFieldName, $sSequenceSQL);
if ($sSequenceSQL != "")
{
$sTableSQL .= sprintf(" DEFAULT nextval('%s_%s_seq')", $sTableName, $sFieldName);
}
}
}
else
{
echo "GetFieldSQL failed for $sFieldName";
return false;
}
}
$sUCSQL = "";
$sPKSQL = "";
if (count($aTableDef["pk"]) > 0)
{
if (!$this->_GetPK($aTableDef["pk"], $sPKSQL))
{
if ($bOutputHTML)
print("<br>Failed getting primary key<br>");
return false;
}
}
if (count($aTableDef["uc"]) > 0)
{
if (!$this->_GetUC($aTableDef["uc"], $sUCSQL))
{
if ($bOutputHTML)
print("<br>Failed getting unique constraint<br>");
return false;
}
}
if ($sPKSQL != "")
$sTableSQL .= ",\n" . $sPKSQL;
if ($sUCSQL != "")
$sTableSQL .= ",\n" . $sUCSQL;
return true;
}
// Get field DDL
function _GetFieldSQL($aField, &$sFieldSQL)
{
if (!is_array($aField))
return false;
$sType = "";
$iPrecision = 0;
$iScale = 0;
$sDefault = "";
$bNullable = true;
reset($aField);
while (list($sAttr, $vAttrVal) = each($aField))
{
switch ($sAttr)
{
case "type":
$sType = $vAttrVal;
break;
case "precision":
$iPrecision = (int)$vAttrVal;
break;
case "scale":
$iScale = (int)$vAttrVal;
break;
case "default":
$sDefault = $vAttrVal;
break;
case "nullable":
$bNullable = $vAttrVal;
break;
}
}
// Translate the type for the DBMS
if ($this->m_oTranslator->TranslateType($sType, $iPrecision, $iScale, $sFieldSQL))
{
if ($bNullable == false)
$sFieldSQL .= " NOT NULL";
if ($sDefault != "")
{
// Get default DDL - useful for differences in date defaults (eg, now() vs. getdate())
$sTranslatedDefault = $this->m_oTranslator->TranslateDefault($sDefault);
$sFieldSQL .= " DEFAULT '$sTranslatedDefault'";
}
return true;
}
print("<br>Failed to translate field: type[$sType] precision[$iPrecision] scale[$iScale]<br>");
return false;
}
function _GetPK($aFields, &$sPKSQL)
{
$sPKSQL = "";
if (count($aFields) < 1)
return true;
$sFields = "";
reset($aFields);
while (list($key, $sField) = each($aFields))
{
if ($sFields != "")
$sFields .= ",";
$sFields .= $sField;
}
$sPKSQL = $this->m_oTranslator->GetPKSQL($sFields);
return true;
}
function _GetUC($aFields, &$sUCSQL)
{
$sUCSQL = "";
if (count($aFields) < 1)
return true;
$sFields = "";
reset($aFields);
while (list($key, $sField) = each($aFields))
{
if ($sFields != "")
$sFields .= ",";
$sFields .= $sField;
}
$sUCSQL = $this->m_oTranslator->GetUCSQL($sFields);
return true;
}
}
?>

View File

@ -1,158 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
class phpgw_schema_proc_array
{
var $m_sStatementTerminator;
function phpgw_schema_proc_array()
{
$this->m_sStatementTerminator = ";";
}
// Return a type suitable for DDL abstracted array
function TranslateType($sType, $iPrecision = 0, $iScale = 0, &$sTranslated)
{
$sTranslated = $sType;
return (strlen($sTranslated) > 0);
}
function TranslateDefault($sDefault)
{
return $sDefault;
}
function GetPKSQL($sFields)
{
return "";
}
function GetUCSQL($sFields)
{
return "";
}
function _GetColumns($oProc, &$aTables, $sTableName, &$sColumns, $sDropColumn = "")
{
$sColumns = "";
while (list($sName, $aJunk) = each($aTables[$sTableName]["fd"]))
{
if ($sColumns != "")
$sColumns .= ",";
$sColumns .= $sName;
}
return true;
}
function DropTable($oProc, &$aTables, $sTableName)
{
if (IsSet($aTables[$sTableName]))
UnSet($aTables[$sTableName]);
return true;
}
function DropColumn($oProc, &$aTables, $sTableName, $aNewTableDef, $sColumnName, $bCopyData = true)
{
if (IsSet($aTables[$sTableName]))
{
if (IsSet($aTables[$sTableName]["fd"][$sColumnName]))
UnSet($aTables[$sTableName]["fd"][$sColumnName]);
}
return true;
}
function RenameTable($oProc, &$aTables, $sOldTableName, $sNewTableName)
{
$aNewTables = array();
while (list($sTableName, $aTableDef) = each($aTables))
{
if ($sTableName == $sOldTableName)
$aNewTables[$sNewTableName] = $aTableDef;
else
$aNewTables[$sTableName] = $aTableDef;
}
$aTables = $aNewTables;
return true;
}
function RenameColumn($oProc, &$aTables, $sTableName, $sOldColumnName, $sNewColumnName, $bCopyData = true)
{
if (IsSet($aTables[$sTableName]))
{
$aNewTableDef = array();
reset($aTables[$sTableName]["fd"]);
while (list($sColumnName, $aColumnDef) = each($aTables[$sTableName]["fd"]))
{
if ($sColumnName == $sOldColumnName)
$aNewTableDef[$sNewColumnName] = $aColumnDef;
else
$aNewTableDef[$sColumnName] = $aColumnDef;
}
$aTables[$sTableName]["fd"] = $aNewTableDef;
reset($aTables[$sTableName]["pk"]);
while (list($key, $sColumnName) = each($aTables[$sTableName]["pk"]))
{
if ($sColumnName == $sOldColumnName)
$aTables[$sTableName]["pk"][$key] = $sNewColumnName;
}
reset($aTables[$sTableName]["uc"]);
while (list($key, $sColumnName) = each($aTables[$sTableName]["uc"]))
{
if ($sColumnName == $sOldColumnName)
$aTables[$sTableName]["uc"][$key] = $sNewColumnName;
}
}
return true;
}
function AlterColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef, $bCopyData = true)
{
if (IsSet($aTables[$sTableName]))
{
if (IsSet($aTables[$sTableName]["fd"][$sColumnName]))
$aTables[$sTableName]["fd"][$sColumnName] = $aColumnDef;
}
return true;
}
function AddColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef)
{
if (IsSet($aTables[$sTableName]))
{
if (!IsSet($aTables[$sTableName]["fd"][$sColumnName]))
$aTables[$sTableName]["fd"][$sColumnName] = $aColumnDef;
}
return true;
}
function CreateTable($oProc, &$aTables, $sTableName, $aTableDef)
{
if (!IsSet($aTables[$sTableName]))
$aTables[$sTableName] = $aTableDef;
return true;
}
}
?>

View File

@ -1,181 +0,0 @@
<?php
class phpgw_schema_proc_mysql
{
var $m_sStatementTerminator;
function phpgw_schema_proc_mysql()
{
$this->m_sStatementTerminator = ";";
}
// Return a type suitable for DDL
function TranslateType($sType, $iPrecision = 0, $iScale = 0, &$sTranslated)
{
$sTranslated = "";
switch($sType)
{
case "auto":
$sTranslated = "int(11) auto_increment";
break;
case "blob":
$sTranslated = "blob";
break;
case "char":
if ($iPrecision > 0 && $iPrecision < 256)
$sTranslated = sprintf("char(%d)", $iPrecision);
if ($iPrecision > 255)
$sTranslated = "text";
break;
case "date":
$sTranslated = "date";
break;
case "decimal":
$sTranslated = sprintf("decimal(%d,%d)", $iPrecision, $iScale);
break;
case "float":
switch ($iPrecision)
{
case 4:
$sTranslated = "float";
break;
case 8:
$sTranslated = "double";
break;
}
break;
case "int":
switch ($iPrecision)
{
case 2:
$sTranslated = "smallint";
break;
case 4:
$sTranslated = "int";
break;
case 8:
$sTranslated = "bigint";
break;
}
break;
case "text":
$sTranslated = "text";
break;
case "timestamp":
$sTranslated = "datetime";
break;
case "varchar":
if ($iPrecision > 0 && $iPrecision < 256)
$sTranslated = sprintf("varchar(%d)", $iPrecision);
if ($iPrecision > 255)
$sTranslated = "text";
break;
}
return (strlen($sTranslated) > 0);
}
function TranslateDefault($sDefault)
{
switch ($sDefault)
{
case "current_date":
case "current_timestamp":
return "now";
}
return $sDefault;
}
function GetPKSQL($sFields)
{
return "PRIMARY KEY($sFields)";
}
function GetUCSQL($sFields)
{
return "UNIQUE($sFields)";
}
function _GetColumns($oProc, $sTableName, &$sColumns, $sDropColumn = "")
{
$sColumns = "";
$oProc->m_odb->query("describe $sTableName");
while ($oProc->m_odb->next_record())
{
if ($sColumns != "")
$sColumns .= ",";
$sColumns .= $oProc->m_odb->f(0);
}
return false;
}
function DropTable($oProc, &$aTables, $sTableName)
{
return !!($oProc->m_odb->query("DROP TABLE " . $sTableName));
}
function DropColumn($oProc, &$aTables, $sTableName, $aNewTableDef, $sColumnName, $bCopyData = true)
{
return !!($oProc->m_odb->query("ALTER TABLE $sTableName DROP COLUMN $sColumnName"));
}
function RenameTable($oProc, &$aTables, $sOldTableName, $sNewTableName)
{
return !!($oProc->m_odb->query("ALTER TABLE $sOldTableName RENAME TO $sNewTableName"));
}
function RenameColumn($oProc, &$aTables, $sTableName, $sOldColumnName, $sNewColumnName, $bCopyData = true)
{
// This really needs testing - it can affect primary keys, and other table-related objects
// like sequences and such
if ($oProc->_GetFieldSQL($aTables[$sTableName]["fd"][$sNewColumnName], $sNewColumnSQL))
return !!($oProc->m_odb->query("ALTER TABLE $sTableName CHANGE $sOldColumnName $sNewColumnName " . $sNewColumnSQL));
return false;
}
function AlterColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef, $bCopyData = true)
{
if ($oProc->_GetFieldSQL($aTables[$sTableName]["fd"][$sColumnName], $sNewColumnSQL))
return !!($oProc->m_odb->query("ALTER TABLE $sTableName MODIFY $sColumnName " . $sNewColumnSQL));
return false;
}
function AddColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef)
{
$oProc->_GetFieldSQL($aColumnDef, $sFieldSQL);
$query = "ALTER TABLE $sTableName ADD COLUMN $sColumnName $sFieldSQL";
return !!($oProc->m_odb->query($query));
}
function GetSequenceSQL($sTableName, $sFieldName, &$sSequenceSQL)
{
$sSequenceSQL = "";
return true;
}
function CreateTable($oProc, &$aTables, $sTableName, $aTableDef)
{
if ($oProc->_GetTableSQL($sTableName, $aTableDef, $sTableSQL, $sSequenceSQL))
{
// create sequence first since it will be needed for default
if ($sSequenceSQL != "")
$oProc->m_odb->query($sSequenceSQL);
$query = "CREATE TABLE $sTableName ($sTableSQL)";
return !!($oProc->m_odb->query($query));
}
return false;
}
}
?>

View File

@ -1,272 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
class phpgw_schema_proc_pgsql
{
var $m_sStatementTerminator;
function phpgw_schema_proc_pgsql()
{
$this->m_sStatementTerminator = ";";
}
// Return a type suitable for DDL
function TranslateType($sType, $iPrecision = 0, $iScale = 0, &$sTranslated)
{
switch($sType)
{
case "auto":
$sTranslated = "int4";
break;
case "blob":
$sTranslated = "text";
break;
case "char":
if ($iPrecision > 0 && $iPrecision < 256)
$sTranslated = sprintf("char(%d)", $iPrecision);
if ($iPrecision > 255)
$sTranslated = "text";
break;
case "date":
$sTranslated = "date";
break;
case "decimal":
$sTranslated = sprintf("decimal(%d,%d)", $iPrecision, $iScale);
break;
case "float":
if ($iPrecision == 4 || $iPrecision == 8)
$sTranslated = sprintf("float%d", $iPrecision);
break;
case "int":
if ($iPrecision == 2 || $iPrecision == 4 || $iPrecision == 8)
$sTranslated = sprintf("int%d", $iPrecision);
break;
case "text":
$sTranslated = "text";
break;
case "timestamp":
$sTranslated = "timestamp";
break;
case "varchar":
if ($iPrecision > 0 && $iPrecision < 256)
$sTranslated = sprintf("varchar(%d)", $iPrecision);
if ($iPrecision > 255)
$sTranslated = "text";
break;
}
return (strlen($sTranslated) > 0);
}
function TranslateDefault($sDefault)
{
switch ($sDefault)
{
case "current_date":
case "current_timestamp":
return "now";
}
return $sDefault;
}
function GetPKSQL($sFields)
{
return "PRIMARY KEY($sFields)";
}
function GetUCSQL($sFields)
{
return "UNIQUE($sFields)";
}
function _GetColumns($oProc, $sTableName, &$sColumns, $sDropColumn = '', $sAlteredColumn = '', $sAlteredColumnType = '')
{
$sColumns = '';
$query = "SELECT a.attname FROM pg_attribute a,pg_class b WHERE ";
$query .= "b.oid=a.attrelid AND a.attnum>0 and b.relname='$sTableName'";
if ($sDropColumn != "")
$query .= " AND a.attname != '$sDropColumn'";
$query .= " ORDER BY a.attnum";
$oProc->m_odb->query($query);
while ($oProc->m_odb->next_record())
{
if ($sColumns != "")
$sColumns .= ",";
$sFieldName = $oProc->m_odb->f(0);
$sColumns .= $sFieldName;
if ($sAlteredColumn == $sFieldName && $sAlteredColumnType != '')
$sColumns .= '::' . $sAlteredColumnType;
}
return false;
}
function _CopyAlteredTable($oProc, &$aTables, $sSource, $sDest)
{
$oDB = $oProc->m_odb;
$oProc->m_odb->query("select * from $sSource");
while ($oProc->m_odb->next_record())
{
$sSQL = "insert into $sDest (";
for ($i = 0; $i < count($aTables[$sDest]); $i++)
{
if ($i > 0)
$sSQL .= ',';
$sSQL .= $aTables[$sDest]['fd'][$i];
}
$sSQL .= ') values (';
for ($i = 0; $i < $oProc->m_odb->num_fields(); $i++)
{
if ($i > 0)
$sSQL .= ',';
if ($oProc->m_odb->f($i) != null)
{
switch ($aTables[$sDest]['fd'][$i])
{
case "blob":
case "char":
case "date":
case "text":
case "timestamp":
case "varchar":
$sSQL .= "'" . $oProc->m_odb->f($i) . "'";
break;
default:
$sSQL .= $oProc->m_odb->f($i);
}
}
else
$sSQL .= 'null';
}
$sSQL .= ')';
$oDB->query($sSQL);
}
return true;
}
function DropTable($oProc, &$aTables, $sTableName)
{
return !!($oProc->m_odb->query("DROP TABLE " . $sTableName));
}
function DropColumn($oProc, &$aTables, $sTableName, $aNewTableDef, $sColumnName, $bCopyData = true)
{
if ($bCopyData)
$oProc->m_odb->query("SELECT * INTO $sTableName" . "_tmp FROM $sTableName");
$this->DropTable($oProc, $aTables, $sTableName);
$oProc->_GetTableSQL($sTableName, $aNewTableDef, $sTableSQL);
$query = "CREATE TABLE $sTableName ($sTableSQL)";
if (!$bCopyData)
return !!($oProc->m_odb->query($query));
$oProc->m_odb->query($query);
$this->_GetColumns($oProc, $sTableName . "_tmp", $sColumns, $sColumnName);
$query = "INSERT INTO $sTableName SELECT $sColumns FROM $sTableName" . "_tmp";
$bRet = !!($oProc->m_odb->query($query));
return ($bRet && $this->DropTable($oProc, $aTables, $sTableName . "_tmp"));
}
function RenameTable($oProc, &$aTables, $sOldTableName, $sNewTableName)
{
return !!($oProc->m_odb->query("ALTER TABLE $sOldTableName RENAME TO $sNewTableName"));
}
function RenameColumn($oProc, &$aTables, $sTableName, $sOldColumnName, $sNewColumnName, $bCopyData = true)
{
// This really needs testing - it can affect primary keys, and other table-related objects
// like sequences and such
if ($bCopyData)
$oProc->m_odb->query("SELECT * INTO $sTableName" . "_tmp FROM $sTableName");
$this->DropTable($oProc, $aTables, $sTableName);
if (!$bCopyData)
return $this->CreateTable($oProc, $aTables, $sTableName, $oProc->m_aTables[$sTableName], false);
$this->CreateTable($oProc, $aTables, $sTableName, $aTables[$sTableName], false);
$this->_GetColumns($oProc, $sTableName . "_tmp", $sColumns);
$query = "INSERT INTO $sTableName SELECT $sColumns FROM $sTableName" . "_tmp";
$bRet = !!($oProc->m_odb->query($query));
return ($bRet && $this->DropTable($oProc, $aTables, $sTableName . "_tmp"));
}
function AlterColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef, $bCopyData = true)
{
if ($bCopyData)
$oProc->m_odb->query("SELECT * INTO $sTableName" . "_tmp FROM $sTableName");
$this->DropTable($oProc, $aTables, $sTableName);
if (!$bCopyData)
return $this->CreateTable($oProc, $aTables, $sTableName, $aTables[$sTableName], false);
$this->CreateTable($oProc, $aTables, $sTableName, $aTables[$sTableName], false);
$this->_GetColumns($oProc, $sTableName . "_tmp", $sColumns, '', $sColumnName, $aColumnDef['type'] == 'auto' ? 'int4' : $aColumnDef['type']);
// TODO: analyze the type of change and determine if this is used or _CopyAlteredTable
//$query = "INSERT INTO $sTableName SELECT $sColumns FROM $sTableName" . "_tmp";
//$bRet = !!($oProc->m_odb->query($query));
$bRet = $this->_CopyAlteredTable($oProc, $aTables, $sTableName . '_tmp', $sTableName);
return ($bRet && $this->DropTable($oProc, $aTables, $sTableName . "_tmp"));
}
function AddColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef)
{
$oProc->_GetFieldSQL($aColumnDef, $sFieldSQL);
$query = "ALTER TABLE $sTableName ADD COLUMN $sColumnName $sFieldSQL";
return !!($oProc->m_odb->query($query));
}
function GetSequenceSQL($sTableName, $sFieldName, &$sSequenceSQL)
{
$sSequenceSQL = sprintf("CREATE SEQUENCE %s_%s_seq", $sTableName, $sFieldName);
return true;
}
function CreateTable($oProc, $aTables, $sTableName, $aTableDef, $bCreateSequence = true)
{
if ($oProc->_GetTableSQL($sTableName, $aTableDef, $sTableSQL, $sSequenceSQL))
{
// create sequence first since it will be needed for default
if ($bCreateSequence && $sSequenceSQL != "")
$oProc->m_odb->query($sSequenceSQL);
$query = "CREATE TABLE $sTableName ($sTableSQL)";
return !!($oProc->m_odb->query($query));
}
return false;
}
}
?>

View File

@ -1,449 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
class phpgw_setup
{
var $db;
function show_header($title = "",$nologoutbutton = False, $logoutfrom = "config")
{
global $phpgw_info, $PHP_SELF;
echo "<html>\n<head>\n";
echo " <title>phpGroupWare Setup"; if ($title != ""){echo " - ".$title;}; echo "</title>\n";
echo " <style type=\"text/css\"><!-- .link { color: #FFFFFF; } --></style>\n";
echo "</head>\n";
echo "<BODY BGCOLOR=\"FFFFFF\" margintop=\"0\" marginleft=\"0\" marginright=\"0\" marginbottom=\"0\">";
echo "<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\"><tr>";
echo " <td align=\"left\" bgcolor=\"486591\">&nbsp;<font color=\"fefefe\">phpGroupWare version ".$phpgw_info["server"]["versions"]["phpgwapi"]." setup</font></td>";
echo " <td align=\"right\" bgcolor=\"486591\">";
if ($nologoutbutton) {
echo "&nbsp;</td>";
} else {
echo "<a href=\"".$PHP_SELF."?FormLogout=".$logoutfrom."\" class=\"link\">Logout</a>&nbsp;</td>";
}
echo "</tr></table>";
}
function login_form()
{
global $phpgw_info, $phpgw_domain, $PHP_SELF;
echo '<p><body bgcolor="#ffffff">'."\n";
echo '<table border="0" align="center">'."\n";
if ($phpgw_info['setup']['stage']['header'] == '10'){
echo ' <tr bgcolor="#486591">'."\n";
echo ' <td colspan="2"><font color="#fefefe">&nbsp;<b>Setup/Config Admin Login</b></font></td>'."\n";
echo ' </tr>'."\n";
echo ' <tr bgcolor="#e6e6e6"><td colspan="2"><font color="#ff0000">'.$phpgw_info['setup']['ConfigLoginMSG'].'</font></td></tr>'."\n";
echo ' <tr bgcolor="#e6e6e6">'."\n";
echo ' <td><form action="index.php" method="POST" name="config">'."\n";
if (count($phpgw_domain) > 1){
echo ' <table><tr><td>Domain: </td><td><input type="text" name="FormDomain" value=""></td></tr>'."\n";
echo ' <tr><td>Password: </td><td><input type="password" name="FormPW" value=""></td></tr></table>'."\n";
}else{
reset($phpgw_domain);
$default_domain = each($phpgw_domain);
echo ' <input type="password" name="FormPW" value="">'."\n";
echo ' <input type="hidden" name="FormDomain" value="'.$default_domain[0].'">'."\n";
}
echo ' <input type="submit" name="ConfigLogin" value="Login">'."\n";
echo ' </form></td>'."\n";
echo ' </tr>'."\n";
}
echo ' <tr bgcolor="#486591">'."\n";
echo ' <td colspan="2"><font color="#fefefe">&nbsp;<b>Header Admin Login</b></font></td>'."\n";
echo ' </tr>'."\n";
echo ' <tr bgcolor="#e6e6e6"><td colspan="2"><font color="#ff0000">'.$phpgw_info['setup']['HeaderLoginMSG'].'</font></td></tr>'."\n";
echo ' <tr bgcolor="#e6e6e6">'."\n";
echo ' <td><form action="manageheader.php" method="POST" name="admin">'."\n";
echo ' <input type="password" name="FormPW" value="">'."\n";
echo ' <input type="submit" name="HeaderLogin" value="Login">'."\n";
echo ' </form></td>'."\n";
echo ' </tr>'."\n";
echo '</table>'."\n";
echo '</body></html>'."\n";
}
function check_header()
{
global $phpgw_domain, $phpgw_info;
if(!file_exists("../header.inc.php")) {
$phpgw_info["setup"]["header_msg"] = "Stage One";
return "1";
}else{
if (!isset($phpgw_info["server"]["header_admin_password"])){
$phpgw_info["setup"]["header_msg"] = "Stage One (No header admin password set)";
return "2";
}elseif (!isset($phpgw_domain)) {
$phpgw_info["setup"]["header_msg"] = "Stage One (Upgrade your header.inc.php)";
return "3";
}elseif ($phpgw_info["server"]["versions"]["header"] != $phpgw_info["server"]["versions"]["current_header"]) {
$phpgw_info["setup"]["header_msg"] = "Stage One (Upgrade your header.inc.php)";
return "3";
}
}
/* header.inc.php part settled. Moving to authentication */
$phpgw_info["setup"]["header_msg"] = "Stage One (Completed)";
return "10";
}
function generate_header()
{
global $setting, $phpgw_setup, $phpgw_info, $header_template;
$header_template->set_file(array("header" => "header.inc.php.template"));
while(list($k,$v) = each($setting)) {
$header_template->set_var(strtoupper($k),$v);
}
return $header_template->parse("out","header");
}
function auth($auth_type = "Config")
{
global $phpgw_domain, $phpgw_info, $HTTP_POST_VARS, $FormLogout, $ConfigLogin, $HeaderLogin, $FormDomain, $FormPW, $ConfigDomain, $ConfigPW, $HeaderPW;
if (isset($FormLogout)) {
if ($FormLogout == "config"){
setcookie("ConfigPW"); // scrub the old one
setcookie("ConfigDomain"); // scrub the old one
$phpgw_info["setup"]["ConfigLoginMSG"] = "You have sucessfully logged out";
return False;
}elseif($FormLogout == "header"){
setcookie("HeaderPW"); // scrub the old one
$phpgw_info["setup"]["HeaderLoginMSG"] = "You have sucessfully logged out";
return False;
}
} elseif (isset($ConfigPW)) {
if ($ConfigPW != $phpgw_domain[$ConfigDomain]["config_passwd"] && $auth_type == "Config") {
setcookie("ConfigPW"); // scrub the old one
setcookie("ConfigDomain"); // scrub the old one
$phpgw_info["setup"]["ConfigLoginMSG"] = "Invalid session cookie (cookies must be enabled)";
return False;
}else{
return True;
}
} elseif (isset($FormPW)) {
if (isset($ConfigLogin)){
if ($FormPW == $phpgw_domain[$FormDomain]["config_passwd"] && $auth_type == "Config") {
setcookie("HeaderPW"); // scrub the old one
setcookie("ConfigPW",$FormPW);
setcookie("ConfigDomain",$FormDomain);
$ConfigDomain = $FormDomain;
return True;
}else{
$phpgw_info["setup"]["ConfigLoginMSG"] = "Invalid password";
return False;
}
}elseif (isset($HeaderLogin)){
if ($FormPW == $phpgw_info["server"]["header_admin_password"] && $auth_type == "Header") {
setcookie("HeaderPW",$FormPW);
return True;
}else{
$phpgw_info["setup"]["HeaderLoginMSG"] = "Invalid password";
return False;
}
}
} elseif (isset($HeaderPW)) {
if ($HeaderPW != $phpgw_info["server"]["header_admin_password"] && $auth_type == "Header") {
setcookie("HeaderPW"); // scrub the old one
$phpgw_info["setup"]["HeaderLoginMSG"] = "Invalid session cookie (cookies must be enabled)";
return False;
}else{
return True;
}
} else {
return False;
}
}
function loaddb()
{
global $phpgw_info, $phpgw_domain, $ConfigDomain;
/* Database setup */
if (!isset($phpgw_info["server"]["api_inc"])) {
$phpgw_info["server"]["api_inc"] = PHPGW_SERVER_ROOT . "/phpgwapi/inc";
}
include($phpgw_info["server"]["api_inc"] . "/class.db_".$phpgw_domain[$ConfigDomain]["db_type"].".inc.php");
$this->db = new db;
$this->db->Host = $phpgw_domain[$ConfigDomain]["db_host"];
$this->db->Type = $phpgw_domain[$ConfigDomain]["db_type"];
$this->db->Database = $phpgw_domain[$ConfigDomain]["db_name"];
$this->db->User = $phpgw_domain[$ConfigDomain]["db_user"];
$this->db->Password = $phpgw_domain[$ConfigDomain]["db_pass"];
// $phpgw_schema_proc = new phpgw_schema_proc($phpgw_domain[$ConfigDomain]["db_type"]);
}
// This is a php3/4 compliant in_array(), used only below in check_db() so far
function isinarray($needle,$haystack='')
{
if($haystack == '')
{
settype($haystack,'array');
$haystack = Array();
}
for($i=0;$i<count($haystack) && $haystack[$i] !=$needle;$i++);
return ($i!=count($haystack));
}
function check_db()
{
global $phpgw_info;
$this->db->Halt_On_Error = "no";
$tables = $this->db->table_names();
while(list($key,$val) = @each($tables))
{
$tname[] = $val['table_name'];
}
$newapps = $this->isinarray('phpgw_applications',$tname);
$oldapps = $this->isinarray('applications',$tname);
if ( ( is_array($tables) ) && ( count($tables) > 0 ) && ( $newapps || $oldapps ) ){
/* tables exist. checking for post beta version */
$this->db->query("select * from phpgw_applications");
while (@$this->db->next_record()) {
if ($this->db->f("app_name") == "admin"){$phpgw_info["setup"]["oldver"]["phpgwapi"] = $this->db->f("app_version");}
$phpgw_info["setup"]["oldver"][$this->db->f("app_name")] = $this->db->f("app_version");
$phpgw_info["setup"][$this->db->f("app_name")]["title"] = $this->db->f("app_title");
}
if (isset($phpgw_info["setup"]["oldver"]["phpgwapi"])){
if ($phpgw_info["setup"]["oldver"]["phpgwapi"] == $phpgw_info["server"]["versions"]["phpgwapi"]){
$phpgw_info["setup"]["header_msg"] = "Stage 1 (Tables Complete)";
return 10;
}else{
$phpgw_info["setup"]["header_msg"] = "Stage 1 (Tables need upgrading)";
return 4;
}
}else{
$this->db->query("select * from applications");
while (@$this->db->next_record()) {
if ($this->db->f("app_name") == "admin"){$phpgw_info["setup"]["oldver"]["phpgwapi"] = $this->db->f("app_version");}
$phpgw_info["setup"]["oldver"][$this->db->f("app_name")] = $this->db->f("app_version");
$phpgw_info["setup"][$this->db->f("app_name")]["title"] = $this->db->f("app_title");
}
if ($phpgw_info["setup"]["oldver"]["phpgwapi"] != $phpgw_info["server"]["versions"]["phpgwapi"]){
return 4;
} else {
$phpgw_info["setup"]["header_msg"] = "Stage 1 (Tables appear to be pre-beta)";
return 2;
}
}
}else{
/* no tables, so checking if we can create them */
/* I cannot get either to work properly
$isdb = $this->db->connect("kljkjh", "localhost", "phpgroupware", "phpgr0upwar3");
*/
$db_rights = $this->db->query("CREATE TABLE phpgw_testrights ( testfield varchar(5) NOT NULL )");
$this->db->query("DROP TABLE phpgw_testrights");
if (isset($db_rights)){
//if (isset($isdb)){
$phpgw_info["setup"]["header_msg"] = "Stage 1 (Create tables)";
return 3;
}else{
$phpgw_info["setup"]["header_msg"] = "Stage 1 (Create Database)";
return 1;
}
}
}
function check_config()
{
global $phpgw_info;
$this->db->Halt_On_Error = "no";
if ($phpgw_info["setup"]["stage"]["db"] != 10){return "";}
// Since 0.9.10pre6 config table is named as phpgw_config
$config_table="config";
$ver = explode(".",$phpgw_info["server"]["versions"]["phpgwapi"]);
if(ereg("([0-9]+)(pre)([0-9]+)",$ver[2],$regs))
if(($regs[1] == "10") && ($regs[3] >= "6"))
$config_table="phpgw_config";
@$this->db->query("select config_value from $config_table where config_name='freshinstall'");
$this->db->next_record();
$configed = $this->db->f("config_value");
if ($configed){
$phpgw_info["setup"]["header_msg"] = "Stage 2 (Needs Configuration)";
return 1;
}else{
$phpgw_info["setup"]["header_msg"] = "Stage 2 (Configuration OK)";
return 10;
}
}
function check_lang()
{
global $phpgw_info;
$this->db->Halt_On_Error = "no";
if ($phpgw_info["setup"]["stage"]["db"] != 10){return "";}
$this->db->query("select distinct lang from lang;");
if ($this->db->num_rows() == 0){
$phpgw_info["setup"]["header_msg"] = "Stage 3 (No languages installed)";
return 1;
}else{
while (@$this->db->next_record()) {
$phpgw_info["setup"]["installed_langs"][$this->db->f("lang")] = $this->db->f("lang");
}
reset ($phpgw_info["setup"]["installed_langs"]);
while (list ($key, $value) = each ($phpgw_info["setup"]["installed_langs"])) {
$sql = "select lang_name from languages where lang_id = '".$value."';";
$this->db->query($sql);
$this->db->next_record();
$phpgw_info["setup"]["installed_langs"][$value] = $this->db->f("lang_name");
}
$phpgw_info["setup"]["header_msg"] = "Stage 3 (Completed)";
return 10;
}
}
function get_template_list(){
global $phpgw_info;
$d = dir(PHPGW_SERVER_ROOT."/phpgwapi/templates");
//$list["user_choice"]["name"] = "user_choice";
//$list["user_choice"]["title"] = "Users Choice";
while($entry=$d->read()) {
if ($entry != "CVS" && $entry != "." && $entry != ".."){
$list[$entry]["name"] = $entry;
$f = PHPGW_SERVER_ROOT."/phpgwapi/templates/".$entry."/details.inc.php";
if (file_exists ($f)){
include($f);
$list[$entry]["title"] = "Use ".$phpgw_info["template"][$entry]["title"]."interface";
}else{
$list[$entry]["title"] = $entry;
}
}
}
$d->close();
reset ($list);
return $list;
}
function list_themes()
{
$dh = opendir(PHPGW_SERVER_ROOT . '/phpgwapi/themes');
while ($file = readdir($dh))
{
if (eregi("\.theme$", $file))
{
$list[] = substr($file,0,strpos($file,'.'));
}
}
//$dh->close();
reset ($list);
return $list;
}
function app_setups($appname = ""){
global $phpgw_info;
$d = dir(PHPGW_SERVER_ROOT);
while($entry=$d->read()) {
if (is_dir (PHPGW_SERVER_ROOT."/".$entry."/setup")){
echo $entry."<br>\n";
}
}
$d->close();
}
function app_status($appname = ""){
global $phpgw_info;
$this->get_versions();
reset ($phpgw_info['server']['versions']);
$this->db->query("select * from phpgw_applications");
while ($this->db->next_record()){
$phpgw_info['server']['current_versions'][$this->db->f('app_name')] = $this->db->f('app_version');
}
while (list($key, $value) = each ($phpgw_info['server']['versions'])){
if ($key != 'header' && $key != 'current_header' && $key != '' && $key != 'mcrypt'){
if (!isset($phpgw_info['server']['current_versions'][$key])){
$phpgw_info['server']['current_versions'][$key] = 'new';
$phpgw_info['setup'][$key]['status'] = 'new';
}elseif ($value != $phpgw_info['server']['current_versions'][$key]){
$phpgw_info['setup'][$key]['status'] = 'upgrade';
}else{
$phpgw_info['setup'][$key]['status'] = 'current';
}
echo 'phpgw_info[setup][$key][status]: '.$phpgw_info['setup'][$key]['status'].'<br>';
}
}
}
function execute_script($script, $order = ""){
global $phpgw_info, $phpgw_domain, $current_config, $newsetting, $phpgw_setup, $SERVER_NAME;
if ($order != "" && gettype($order) != "array"){ $order = array($order); }
if ($order == ""){$order = array();}
/* First include the ordered setup script file */
reset ($order);
while (list (, $appname) = each ($order)){
$f = PHPGW_SERVER_ROOT."/".$appname."/setup/".$script.".inc.php";
if (file_exists($f)) {include($f);}
$completed_scripts[$appname] = True;
}
/* Then add the rest */
$d = dir(PHPGW_SERVER_ROOT);
while ($entry=$d->read()){
if ($entry != "" && $completed_scripts[$entry] != True){
$f = PHPGW_SERVER_ROOT."/".$entry."/setup/".$script.".inc.php";
if (file_exists($f)) {include($f);}
}
}
}
function get_versions(){
global $phpgw_info, $phpgw_domain, $current_config, $newsetting, $phpgw_setup, $SERVER_NAME;
$d = dir(PHPGW_SERVER_ROOT);
while($entry=$d->read()) {
$f = PHPGW_SERVER_ROOT."/".$entry."/version.inc.php";
if (file_exists ($f)){include($f); }
}
$d->close();
}
function update_app_version($appname, $tableschanged = True){
global $phpgw_info;
if ($tableschanged == True){$phpgw_info["setup"]["tableschanged"] = True;}
$this->db->query("update phpgw_applications set app_version='".$phpgw_info["setup"]["currentver"]["phpgwapi"]."' where app_name='".$appname."'");
}
function manage_tables($appname=""){
global $phpgw_domain, $phpgw_info;
if ($phpgw_info["setup"]["currentver"]["phpgwapi"] == "drop"){
$this->execute_script("droptables");
}
if ($phpgw_info["setup"]["currentver"]["phpgwapi"] == "new") {
$this->execute_script("newtables");
$this->execute_script("common_default_records");
$this->execute_script("lang");
}
if ($phpgw_info["setup"]["currentver"]["phpgwapi"] == "oldversion") {
$phpgw_info["setup"]["currentver"]["phpgwapi"] = $phpgw_info["setup"]["oldver"]["phpgwapi"];
$this->execute_script("upgradetables");
}
/* Not yet implemented
if (!$phpgw_info["setup"]["tableschanged"] == True){
echo " <tr bgcolor=\"e6e6e6\">\n";
echo " <td>No table changes were needed. The script only updated your version setting.</td>\n";
echo " </tr>\n";
}
*/
}
}
?>

View File

@ -1,346 +0,0 @@
<?php
/*
* Session Management for PHP3
*
* (C) Copyright 1999-2000 NetUSE GmbH
* Kristian Koehntopp
*
* $Id$
*
*/
class Template {
var $classname = "Template";
/* if set, echo assignments */
var $debug = false;
/* $file[handle] = "filename"; */
var $file = array();
/* relative filenames are relative to this pathname */
var $root = "";
/* $varkeys[key] = "key"; $varvals[key] = "value"; */
var $varkeys = array();
var $varvals = array();
/* "remove" => remove undefined variables
* "comment" => replace undefined variables with comments
* "keep" => keep undefined variables
*/
var $unknowns = "remove";
/* "yes" => halt, "report" => report error, continue, "no" => ignore error quietly */
var $halt_on_error = "yes";
/* last error message is retained here */
var $last_error = "";
/***************************************************************************/
/* public: Constructor.
* root: template directory.
* unknowns: how to handle unknown variables.
*/
function Template($root = ".", $unknowns = "remove") {
$this->set_root($root);
$this->set_unknowns($unknowns);
}
/* public: setroot(pathname $root)
* root: new template directory.
*/
function set_root($root) {
if (!is_dir($root)) {
$this->halt("set_root: $root is not a directory.");
return false;
}
$this->root = $root;
return true;
}
/* public: set_unknowns(enum $unknowns)
* unknowns: "remove", "comment", "keep"
*
*/
function set_unknowns($unknowns = "keep") {
$this->unknowns = $unknowns;
}
/* public: set_file(array $filelist)
* filelist: array of handle, filename pairs.
*
* public: set_file(string $handle, string $filename)
* handle: handle for a filename,
* filename: name of template file
*/
function set_file($handle, $filename = "") {
if (!is_array($handle)) {
if ($filename == "") {
$this->halt("set_file: For handle $handle filename is empty.");
return false;
}
$this->file[$handle] = $this->filename($filename);
} else {
reset($handle);
while(list($h, $f) = each($handle)) {
$this->file[$h] = $this->filename($f);
}
}
}
/* public: set_block(string $parent, string $handle, string $name = "")
* extract the template $handle from $parent,
* place variable {$name} instead.
*/
function set_block($parent, $handle, $name = "") {
if (!$this->loadfile($parent)) {
$this->halt("subst: unable to load $parent.");
return false;
}
if ($name == "")
$name = $handle;
$str = $this->get_var($parent);
$reg = "/<!--\s+BEGIN $handle\s+-->(.*)\n\s*<!--\s+END $handle\s+-->/sm";
preg_match_all($reg, $str, $m);
$str = preg_replace($reg, "{" . "$name}", $str);
$this->set_var($handle, $m[1][0]);
$this->set_var($parent, $str);
}
/* public: set_var(array $values)
* values: array of variable name, value pairs.
*
* public: set_var(string $varname, string $value)
* varname: name of a variable that is to be defined
* value: value of that variable
*/
function set_var($varname, $value = "") {
if (!is_array($varname)) {
if (!empty($varname))
if ($this->debug) print "scalar: set *$varname* to *$value*<br>\n";
$this->varkeys[$varname] = "/".$this->varname($varname)."/";
$this->varvals[$varname] = $value;
} else {
reset($varname);
while(list($k, $v) = each($varname)) {
if (!empty($k))
if ($this->debug) print "array: set *$k* to *$v*<br>\n";
$this->varkeys[$k] = "/".$this->varname($k)."/";
$this->varvals[$k] = $v;
}
}
}
/* public: subst(string $handle)
* handle: handle of template where variables are to be substituted.
*/
function subst($handle) {
if (!$this->loadfile($handle)) {
$this->halt("subst: unable to load $handle.");
return false;
}
$str = $this->get_var($handle);
$str = @preg_replace($this->varkeys, $this->varvals, $str);
return $str;
}
/* public: psubst(string $handle)
* handle: handle of template where variables are to be substituted.
*/
function psubst($handle) {
print $this->subst($handle);
return false;
}
/* public: parse(string $target, string $handle, boolean append)
* public: parse(string $target, array $handle, boolean append)
* target: handle of variable to generate
* handle: handle of template to substitute
* append: append to target handle
*/
function parse($target, $handle, $append = false) {
if (!is_array($handle)) {
$str = $this->subst($handle);
if ($append) {
$this->set_var($target, $this->get_var($target) . $str);
} else {
$this->set_var($target, $str);
}
} else {
reset($handle);
while(list($i, $h) = each($handle)) {
$str = $this->subst($h);
$this->set_var($target, $str);
}
}
return $str;
}
function pparse($target, $handle, $append = false) {
print $this->parse($target, $handle, $append);
return false;
}
/* public: get_vars()
*/
function get_vars() {
reset($this->varkeys);
while(list($k, $v) = each($this->varkeys)) {
$result[$k] = $this->varvals[$k];
}
return $result;
}
/* public: get_var(string varname)
* varname: name of variable.
*
* public: get_var(array varname)
* varname: array of variable names
*/
function get_var($varname) {
if (!is_array($varname)) {
return $this->varvals[$varname];
} else {
reset($varname);
while(list($k, $v) = each($varname)) {
$result[$k] = $this->varvals[$k];
}
return $result;
}
}
/* public: get_undefined($handle)
* handle: handle of a template.
*/
function get_undefined($handle) {
if (!$this->loadfile($handle)) {
$this->halt("get_undefined: unable to load $handle.");
return false;
}
preg_match_all("/\{([^}]+)\}/", $this->get_var($handle), $m);
$m = $m[1];
if (!is_array($m))
return false;
reset($m);
while(list($k, $v) = each($m)) {
if (!isset($this->varkeys[$v]))
$result[$v] = $v;
}
if (count($result))
return $result;
else
return false;
}
/* public: finish(string $str)
* str: string to finish.
*/
function finish($str) {
switch ($this->unknowns) {
case "keep":
break;
case "remove":
$str = preg_replace('/{[^ \t\r\n}]+}/', "", $str);
break;
case "comment":
$str = preg_replace('/{([^ \t\r\n}]+)}/', "<!-- Template $handle: Variable \\1 undefined -->", $str);
break;
}
return $str;
}
/* public: p(string $varname)
* varname: name of variable to print.
*/
function p($varname) {
print $this->finish($this->get_var($varname));
}
function get($varname) {
return $this->finish($this->get_var($varname));
}
/***************************************************************************/
/* private: filename($filename)
* filename: name to be completed.
*/
function filename($filename) {
if (substr($filename, 0, 1) != "/") {
$filename = $this->root."/".$filename;
}
if (!file_exists($filename))
$this->halt("filename: file $filename does not exist.");
return $filename;
}
/* private: varname($varname)
* varname: name of a replacement variable to be protected.
*/
function varname($varname) {
return preg_quote("{".$varname."}");
}
/* private: loadfile(string $handle)
* handle: load file defined by handle, if it is not loaded yet.
*/
function loadfile($handle) {
if (isset($this->varkeys[$handle]) and !empty($this->varvals[$handle]))
return true;
if (!isset($this->file[$handle])) {
$this->halt("loadfile: $handle is not a valid handle.");
return false;
}
$filename = $this->file[$handle];
$str = implode("", @file($filename));
if (empty($str)) {
$this->halt("loadfile: While loading $handle, $filename does not exist or is empty.");
return false;
}
$this->set_var($handle, $str);
return true;
}
/***************************************************************************/
/* public: halt(string $msg)
* msg: error message to show.
*/
function halt($msg) {
$this->last_error = $msg;
if ($this->halt_on_error != "no")
$this->haltmsg($msg);
if ($this->halt_on_error == "yes")
die("<b>Halted.</b>");
return false;
}
/* public, override: haltmsg($msg)
* msg: error message to show.
*/
function haltmsg($msg) {
printf("<b>Template Error:</b> %s<br>\n", $msg);
}
}

View File

@ -1,235 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
// Idea: This is so I don't forget. When they are preforming a new install, after config,
// forward them right to index.php. Create a session for them and have a nice little intro
// page explaining what to do from there (ie, create there own account)
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
include("./inc/functions.inc.php");
/* Check header and authentication */
$phpgw_info["setup"]["stage"]["header"] = $phpgw_setup->check_header();
if ($phpgw_info["setup"]["stage"]["header"] != "10"){
Header("Location: manageheader.php");
exit;
}elseif (!$phpgw_setup->auth("Config")){
$phpgw_setup->show_header("Please login",True);
$phpgw_setup->login_form();
exit;
}
/* Database actions */
$phpgw_setup->loaddb();
$phpgw_info["setup"]["stage"]["db"] = $phpgw_setup->check_db();
switch($action){
case "Delete all my tables and data":
$subtitle = "Deleting Tables";
$submsg = "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.";
$subaction = "deleted";
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "drop";
$phpgw_info["setup"]["stage"]["db"] = 5;
break;
case "Upgrade":
$subtitle = "Upgrading Tables";
$submsg = "At your request, this script is going to attempt to upgrade your old tables to the new format.";
$subaction = "upgraded";
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "oldversion";
$phpgw_info["setup"]["stage"]["db"] = 5;
break;
case "Create":
$subtitle = "Creating Tables";
$submsg = "At your request, this script is going to attempt to the tables for you.";
$subaction = "created";
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "new";
$phpgw_info["setup"]["stage"]["db"] = 5;
break;
}
/* Display code */
$phpgw_setup->show_header($phpgw_info["setup"]["header_msg"]);
if (phpversion() < "3.0.16") {
echo "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 phpGroupWare correctly, if at all."
. "Please upgrade to at least version 3.0.16.";
exit;
}
//$phpgw_setup->app_status();
$phpgw_info["server"]["app_images"] = "templates/default/images";
echo "<table border=\"1\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\">";
echo ' <tr><td align="left" bgcolor="486591"><font color="fefefe">Step 1 - database management</td><td align="right" bgcolor="486591">&nbsp;</td></tr>';
switch($phpgw_info["setup"]["stage"]["db"]){
case 1:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td><form action="index.php" method=post>Your database does not exist.<br> <input type=submit value="Create one now"></form></td></tr>';
case 2:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>';
echo '
You appear to be running a pre-beta version of phpGroupWare<br>
We are providing an automated upgrade system, but we highly recommend backing up your tables incase the script causes damage to your data.<br>
These automated scripts can easily destroy your data. Please backup before going any further!<br>
<form method="post" action="index.php">
Select your old version:
<select name="oldversion">
<option value="7122000">7122000</option>
<option value="8032000">8032000</option>
<option value="8072000">8072000</option>
<option value="8212000">8212000</option>
<option value="9052000">9052000</option>
<option value="9072000">9072000</option>
<option value="9262000">9262000</option>
<option value="0_9_1">0.9.1</option>
<option value="0_9_2">0.9.2</option>
</select>
<input type="submit" name="action" value="Upgrade">
<input type="submit" name="action" value="Delete all my tables and data">
</form>
';
echo '</td></tr>';
break;
case 3:
/* commented out because I cannot accuratly figure out if the DB exists */
//echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td><form action="index.php" method=post>Your database exist, would you like to create your tables now?<br> <input type=submit value="Create tables"></form></td></tr>';
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>Make sure that your database is created and the account permissions are set.<br>';
switch ($phpgw_domain[$ConfigDomain]["db_type"]){
case "mysql":
echo "
<br>Instructions for creating the database in MySQL:<br>
Login to mysql -<br>
<i>[user@server user]# mysql -u root -p</i><br>
Create the empty database and grant user permissions -<br>
<i>mysql> create database ".$phpgw_domain[$ConfigDomain]["db_name"]." ;</i><br>
<i>mysql> grant all on ".$phpgw_domain[$ConfigDomain]["db_name"].".* to phpgroupware@localhost identified by 'password';</i><br>
";
break;
case "pgsql":
echo "
<br>Instructions for creating the database in PostgreSQL:<br>
Start the postmaster<br>
<i>[user@server user]# postmaster -i -D /home/[username]/[dataDir]</i><br>
Create the empty database -<br>
<i>[user@server user]# createdb ".$phpgw_domain[$ConfigDomain]["db_name"]."</i><br>
";
break;
}
echo '<form action="index.php" method=post>';
echo "<input type=\"hidden\" name=\"oldversion\" value=\"new\">\n";
echo 'Once the database is setup correctly <br><input type=submit name="action" value="Create"> the tables</form></td></tr>';
break;
case 4:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>';
echo "You appear to be running version ".$phpgw_info["setup"]["oldver"]["phpgwapi"]." of phpGroupWare.<br>\n";
echo "We will automaticly update your tables/records to ".$phpgw_info["server"]["versions"]["phpgwapi"].", but we highly recommend backing up your tables in case the script causes damage to your data.\n";
echo "These automated scripts can easily destroy your data. Please backup before going any further!\n";
echo "<form method=\"POST\" action=\"index.php\">\n";
echo "<input type=\"hidden\" name=\"oldversion\" value=\"".$phpgw_info["setup"]["oldver"]["phpgwapi"]."\">\n";
echo "<input type=\"hidden\" name=\"useglobalconfigsettings\">\n";
echo "<input type=\"submit\" name=\"action\" value=\"Upgrade\">\n";
echo "<input type=\"submit\" name=\"action\" value=\"Delete all my tables and data\">\n";
echo "</form>\n";
echo "<form method=\"POST\" action=\"config.php\">\n";
echo "<input type=\"submit\" name=\"action\" value=\"Dont touch my data\">\n";
echo "</form>\n";
echo '</td></tr>';
break;
case 5:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>';
echo "<table width=\"100%\">\n";
echo " <tr bgcolor=\"486591\"><td><font color=\"fefefe\">&nbsp;<b>$subtitle</b></font></td></tr>\n";
echo " <tr bgcolor=\"e6e6e6\"><td>$submsg</td></tr>\n";
echo " <tr bgcolor=\"486591\"><td><font color=\"fefefe\">&nbsp;<b>Table Change Messages</b></font></td></tr>\n";
$phpgw_setup->db->Halt_On_Error = "report";
include ("./sql/common_main.inc.php");
$phpgw_setup->db->Halt_On_Error = "no";
echo " <tr bgcolor=\"486591\"><td><font color=\"fefefe\">&nbsp;<b>Status</b></font></td></tr>\n";
echo " <tr bgcolor=\"e6e6e6\"><td>If you did not recieve any errors, your tables have been $subaction.<br></tr>\n";
echo "</table>\n";
echo "<form method=\"POST\" action=\"index.php\">\n";
echo "<br><input type=\"submit\" value=\"Re-Check My Installation\">\n";
echo '</form>';
echo '</td></tr>';
break;
case 10:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/completed.gif" alt="X" border="0"></td><td>Your tables are current.';
echo "<form method=\"POST\" action=\"index.php\">\n";
echo "<input type=\"hidden\" name=\"oldversion\" value=\"new\">\n";
echo "<br>Insanity: <input type=\"submit\" name=\"action\" value=\"Delete all my tables and data\">\n";
echo '</form>';
echo '</td></tr>';
break;
default:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td><form action="index.php" method=post>Your database does not exist.<br> <input type=submit value="Create one now"></form></td></tr>';
break;
}
echo ' <tr><td align="left" bgcolor="486591"><font color="fefefe">Step 2 - Configuration</td><td align="right" bgcolor="486591">&nbsp;</td></tr>';
$phpgw_info["setup"]["stage"]["config"] = $phpgw_setup->check_config();
switch($phpgw_info["setup"]["stage"]["config"]){
case 1:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>Please configure phpGroupWare for your environment.';
echo "<form method=\"POST\" action=\"config.php\"><input type=\"submit\" value=\"Configure Now\"></form>";
echo '</td></tr>';
break;
case 10:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/completed.gif" alt="X" border="0"></td><td>Configuration completed.';
echo "<form method=\"POST\" action=\"config.php\"><input type=\"submit\" value=\"Edit Current Configuration\"></form>";
echo '<br><a href="setup_demo.php">Click Here</a> to setup 1 admin account and 3 demo accounts. <br><b>This will delete all existing accounts</b>';
echo '</td></tr>';
break;
default:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>Not ready for this stage yet.</td></tr>';
break;
}
echo ' <tr><td align="left" bgcolor="486591"><font color="fefefe">Step 3 - language management</td><td align="right" bgcolor="486591">&nbsp;</td></tr>';
$phpgw_info["setup"]["stage"]["lang"] = $phpgw_setup->check_lang();
switch($phpgw_info["setup"]["stage"]["lang"]){
case 1:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>You do not have any languages installed. Please install one now<br>';
echo "<form method=\"POST\" action=\"lang.php\"><input type=\"submit\" value=\"Install Language\"></form></td></tr>";
break;
case 10:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/completed.gif" alt="O" border="0"></td><td>This stage is completed<br>';
echo "Currently installed languages: ";
reset ($phpgw_info["setup"]["installed_langs"]);
while (list ($key, $value) = each ($phpgw_info["setup"]["installed_langs"])) {
if (!$notfirst){ echo $value; }else{ echo ", ".$value; }
$notfirst = True;
}
echo "<br>";
echo "<form method=\"POST\" action=\"lang.php\"><input type=\"submit\" value=\"Manage Languages\"></form></td></tr>";
break;
default:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>Not ready for this stage yet.</td></tr>';
break;
}
/* I will probably not need this section at all
echo ' <tr><td align="left" bgcolor="486591"><font color="fefefe">Step 4 - Add-on Application Installation</td><td align="right" bgcolor="486591">&nbsp;</td></tr>';
switch($phpgw_info["setup"]["stage"]["apps"]){
case 1:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>You are ready for this stage, but this stage is not yet written.<br></td></tr>';
break;
case 10:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/completed.gif" alt="O" border="0"></td><td>This stage is completed<br></td></tr>';
break;
default:
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>Not ready for this stage yet.</td></tr>';
break;
}
*/
echo '</table>';
echo "</body></html>";
?>

View File

@ -1,128 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
if (! $included) {
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
include("./inc/functions.inc.php");
include("../header.inc.php");
// Authorize the user to use setup app and load the database
// Does not return unless user is authorized
if (!$phpgw_setup->auth("Config")){
Header("Location: index.php");
exit;
}
$phpgw_setup->loaddb();
include(PHPGW_API_INC."/class.common.inc.php");
$common = new common;
// this is not used
//$sep = $common->filesystem_separator();
} else {
$newinstall = True;
$lang_selected["en"] = "en";
$submit = True;
}
if ($submit) {
if (count($lang_selected)) {
if ($upgrademethod == "dumpold") {
$phpgw_setup->db->query("delete from lang");
//echo "<br>Test: dumpold";
}
while (list($null,$lang) = each($lang_selected)) {
$addlang = False;
if ($upgrademethod == "addonlynew") {
//echo "<br>Test: addonlynew - select count(*) from lang where lang='$lang'";
$phpgw_setup->db->query("select count(*) from lang where lang='$lang'");
$phpgw_setup->db->next_record();
if ($phpgw_setup->db->f(0) == 0) {
//echo "<br>Test: addonlynew - True";
$addlang = True;
}
}
if (($addlang && $upgrademethod == "addonlynew") || ($upgrademethod != "addonlynew")) {
//echo '<br>Test: loop above file()';
$raw_file = file(PHPGW_SERVER_ROOT . "/setup/phpgw_" . strtolower($lang) . ".lang");
while (list($null,$line) = each($raw_file)) {
$addit = False;
list($message_id,$app_name,$phpgw_setup->db_lang,$content) = explode("\t",$line);
$message_id = addslashes(chop($message_id));
$app_name = addslashes(chop($app_name));
$phpgw_setup->db_lang = addslashes(chop($phpgw_setup->db_lang));
$content = addslashes(chop($content));
if ($upgrademethod == "addmissing") {
//echo "<br>Test: addmissing";
$phpgw_setup->db->query("select count(*) from lang where message_id='$message_id' and lang='$phpgw_setup->db_lang'");
$phpgw_setup->db->next_record();
if ($phpgw_setup->db->f(0) == 0) {
//echo "<br>Test: addmissing - True - Total: " . $phpgw_setup->db->f(0);
$addit = True;
}
}
if ($addit || ($upgrademethod == "dumpold" || $newinstall || $upgrademethod == "addonlynew")) {
//echo "<br>adding - insert into lang values ('$message_id','$app_name','$phpgw_setup->db_lang','$content')";
$phpgw_setup->db->query("insert into lang values ('$message_id','$app_name','$phpgw_setup->db_lang','$content')");
}
}
}
}
}
if (! $included) {
Header("Location: index.php");
exit;
}
} else {
if (! $included) {
$phpgw_setup->show_header();
?>
<p><table border="0" align="center" width="<?php echo ($newinstall?"60%":"80%"); ?>">
<tr bgcolor="486591">
<td colspan="<?php echo ($newinstall?"1":"2"); ?>">&nbsp;<font color="fefefe">Multi-Language support setup</font></td>
</tr>
<tr bgcolor="e6e6e6">
<td colspan="<?php echo ($newinstall?"1":"2"); ?>">This program will help you upgrade or install different languages for phpGroupWare</td>
</tr>
<tr bgcolor="e6e6e6">
<td<?php echo ($newinstall?' align="center"':""); ?>>Select which languages you would like to use.
<form action="lang.php">
<?php echo ($newinstall?'<input type="hidden" name="newinstall" value="True">':""); ?>
<select name="lang_selected[]" multiple size="10">
<?php
$phpgw_setup->db->query("select lang_id,lang_name from languages where available='Yes'");
while ($phpgw_setup->db->next_record()) {
echo '<option value="' . $phpgw_setup->db->f("lang_id") . '">' . $phpgw_setup->db->f("lang_name") . '</option>';
}
?>
</select>
</td>
<?php
if (! $newinstall) {
echo '<td valign="top">Select which method of upgrade you would like to do'
. '<br><br><input type="radio" name="upgrademethod" value="addonlynew" checked>&nbsp;Only add languages that are not in the database already.'
. '<br><input type="radio" name="upgrademethod" value="addmissing">&nbsp;Only add new phrases'
. '<br><input type="radio" name="upgrademethod" value="dumpold">&nbsp;Delete all old languages and install new ones'
. '</td>';
}
?>
</tr>
</table>
<?php
echo '<center><input type="submit" name="submit" value="Install"> <input type="submit" name="submit" value="Cancel"></center>';
}
}

View File

@ -1,305 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_info["flags"] = array(
'noheader' => True,
'nonavbar' => True,
'currentapp' => 'home',
'noapi' => True
);
include('../header.inc.php');
include('./inc/functions.inc.php');
// Authorize the user to use setup app and load the database
if (!$phpgw_setup->auth('Config')){
Header('Location: index.php');
exit;
}
// Does not return unless user is authorized
class phpgw {
var $common;
var $accounts;
var $applications;
var $db;
}
$phpgw = new phpgw;
$phpgw->common = CreateObject('phpgwapi.common');
$common = $phpgw->common;
$phpgw_setup->loaddb();
$phpgw->db = $phpgw_setup->db;
$phpgw_info['server']['auth_type'] = 'ldap';
$phpgw->accounts = CreateObject('phpgwapi.accounts');
$acct = $phpgw->accounts;
$phpgw->applications = CreateObject('phpgwapi.applications');
$applications = $phpgw->applications;
$phpgw_setup->db->query("select config_name,config_value from phpgw_config where config_name like 'ldap%'",__LINE__,__FILE__);
while ($phpgw_setup->db->next_record()) {
$config[$phpgw_setup->db->f('config_name')] = $phpgw_setup->db->f('config_value');
}
$phpgw_info['server']['ldap_host'] = $config['ldap_host'];
$phpgw_info['server']['ldap_context'] = $config['ldap_context'];
$phpgw_info['server']['ldap_root_dn'] = $config['ldap_root_dn'];
$phpgw_info['server']['ldap_root_pw'] = $config['ldap_root_pw'];
// First, see if we can connect to the LDAP server, if not send `em back to config.php with an
// error message.
// connect to ldap server
if (! $ldap = $common->ldapConnect()) {
$noldapconnection = True;
}
if ($noldapconnection) {
Header('Location: config.php?error=badldapconnection');
exit;
}
$sr = ldap_search($ldap,$config['ldap_context'],'(|(uid=*))',array('sn','givenname','uid','uidnumber','gidnumber'));
$info = ldap_get_entries($ldap, $sr);
for ($i=0; $i<$info['count']; $i++) {
if (! $phpgw_info['server']['global_denied_users'][$info[$i]['uid'][0]]) {
$account_info[$i]['account_id'] = $info[$i]['uidnumber'][0];
$account_info[$i]['account_lid'] = $info[$i]['uid'][0];
$account_info[$i]['account_firstname'] = $info[$i]['givenname'][0];
$account_info[$i]['account_lastname'] = $info[$i]['sn'][0];
$account_info[$i]['gidnumber'] = $info[$i]['gidnumber'][0];
}
}
$phpgw_setup->db->query("select app_name,app_title from phpgw_applications where app_enabled != '0' and "
. "app_name != 'administration'",__LINE__,__FILE__);
while ($phpgw_setup->db->next_record()) {
$apps[$phpgw_setup->db->f('app_name')] = $phpgw_setup->db->f('app_title');
}
if ($submit) {
if (! count($admins)) {
$error = '<br>You must select at least 1 admin';
}
if (! count($s_apps)) {
$error .= '<br>You must select at least 1 application';
}
if (! $error) {
// Create the 'Default' group
mt_srand((double)microtime()*1000000);
$defaultgroupid = mt_rand (100, 65535);
$acct = CreateObject('phpgwapi.accounts',$defaultgroupid);
$acct->db = $phpgw_setup->db;
// Check if the group account is already there.
// If so, set our group_id to that account's id for use below.
$acct_exist = $acct->name2id('Default');
if ($acct_exist)
{
$defaultgroupid = $acct_exist;
}
$id_exist = $acct->exists(intval($defaultgroupid));
// if not, create it, using our original groupid.
$thisgroup_info = array(
'account_type' => 'g',
'account_id' => $defaultgroupid,
'account_lid' => 'Default',
'account_passwd' => $passwd,
'account_firstname' => 'Default',
'account_lastname' => 'Group',
'account_status' => 'A',
'account_expires' => -1
);
if(!$id_exist)
{
$acct->create($thisgroup_info);
}
else
{
// Delete first, so ldap does not return an error, then recreate
$acct->delete($defaultgroupid);
$acct->create($thisgroup_info);
}
$acl = CreateObject('phpgwapi.acl',$defaultgroupid);
$acl->db = $phpgw_setup->db;
$acl->read_repository();
while ($app = each($s_apps))
{
$acl->delete($app[1],'run',1);
$acl->add($app[1],'run',1);
}
$acl->save_repository();
while (list($nul,$account) = each($account_info))
{
$id_exist = 0;
$thisacctid = $account['account_id'];
$thisacctlid = $account['account_lid'];
// Do some checks before we try to import the data.
if (!empty($thisacctid) && !empty($thisacctlid))
{
$accounts = CreateObject('phpgwapi.accounts',intval($thisacctid));
$accounts->db = $phpgw_setup->db;
// Check if the account is already there.
// If so, we won't try to create it again.
$acct_exist = $acct->name2id($thisacctlid); // name2id checks only SQL
if ($acct_exist) // this gives the SQL account_id a preference over LDAP uidnummber
{ // this could be fatal if one already has an user with account_lid == uid
// $thisacctid = $acct_exist; // and uses the LDAP uidnumber for an unix account
if ($acct_exist != $thisacctid)
{
echo "<p>WARNING: user '$thisacctlid'=$thisacctid already exist in SQL under the account_id=$acct_exist</p>";
}
}
$id_exist = $accounts->exists(intval($thisacctid));
// If the account does not exist in _both_ (== returnvalue < 3) create it
if($id_exist < 3)
{
$thisaccount_info = array(
'account_type' => 'u',
'account_id' => $thisacctid,
'account_lid' => $thisacctlid,
'account_passwd' => 'x',
'account_firstname' => $account['account_firstname'],
'account_lastname' => $account['account_lastname'],
'account_status' => 'A',
'account_expires' => -1
);
$accounts->create($thisaccount_info);
}
// Insert default acls for this user.
// Since the group has app rights, we don't need to give users
// these rights. Instead, we make the user a member of the Default group
// below.
$acl = CreateObject('phpgwapi.acl',intval($thisacctid));
$acl->db = $phpgw_setup->db;
$acl->read_repository();
// Only give them admin if we asked for them to have it.
// This is typically an exception to apps for run rights
// as a group member.
for ($a=0;$a<count($admins);$a++)
{
if ($admins[$a] == $thisacctid)
{
$acl->delete('admin','run',1);
$acl->add('admin','run',1);
}
}
// Check if user has a group assigned in LDAP and this group exists (in SQL)
// --> make him member of this group instead of the 'Default' group
if (($gid = $account['gidnumber']) && ($gname = $acct->id2name($gid)))
{
// echo "<p>putting '$thisacctlid' in Group gid=$gid</p>\n";
$acl->delete('phpgw_group',$gid,1);
$acl->add('phpgw_group',$gid,1);
} else
// Now make them a member of the 'Default' group.
// But, only if the current user is not the group itself.
if ($defaultgroupid != $thisacctid)
{
$acl->delete('phpgw_group',$defaultgroupid,1);
$acl->add('phpgw_group',$defaultgroupid,1);
}
// Now add the acl to let them change their password
$acl->delete('preferences','changepassword',$thisacctid,1);
$acl->add('preferences','changepassword',$thisacctid,1);
// Save these new acls.
$acl->save_repository();
}
$setup_complete = True;
}
}
}
// Add a check to see if there are no users in LDAP, if not create a default user.
$phpgw_setup->show_header();
if ($error) {
echo '<br><center><b>Error:</b> '.$error.'</center>';
}
if ($setup_complete) {
$phpgw_setup->db->query("select config_value from phpgw_config where config_name='webserver_url'",__LINE__,__FILE__);
$phpgw_setup->db->next_record();
echo '<br><center>Setup has been completed! Click <a href="' . $phpgw_setup->db->f("config_value")
. '/login.php">here</a> to login</center>';
exit;
}
?>
<form action="ldap.php" method="POST">
<table border="0" align="center" width="70%">
<tr bgcolor="486591">
<td colspan="2">&nbsp;<font color="fefefe">LDAP import users</font></td>
</tr>
<tr bgcolor="e6e6e6">
<td colspan="2">&nbsp;This section will help you import users from your LDAP tree into phpGroupWare's account tables.<br>&nbsp;</td>
</tr>
<tr bgcolor="e6e6e6">
<td align="left" valign="top">
&nbsp;Select which user(s) will have the admin privileges
</td>
<td align="center">
<select name="admins[]" multiple size="5">
<?php
while ($account = each($account_info)) {
echo '<option value="' . $account[1]['account_id'] . '">'
. $common->display_fullname($account[1]['account_lid'],$account[1]['account_firstname'],$account[1]['account_lastname'])
. '</option>';
echo "\n";
}
?>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td align="left" valign="top">
&nbsp;Select the default applications your users will have access to.
<br>&nbsp;Note: You will be able to customize this later.
</td>
<td>
<select name="s_apps[]" multiple size="5">
<?php
while ($app = each($apps)) {
echo '<option value="' . $app[0] . '" selected>' . $app[1] . '</option>';
echo "\n";
}
?>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td colspan="2" align="center">
<input type="submit" name="submit" value="import">
</td>
</tr>
</table>
</form>

View File

@ -1,396 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_info["flags"] = array(
'noheader' => True,
'nonavbar' => True,
'currentapp' => 'home',
'noapi' => True
);
include('../header.inc.php');
include('./inc/functions.inc.php');
// Authorize the user to use setup app and load the database
if (!$phpgw_setup->auth('Config'))
{
Header('Location: index.php');
exit;
}
// Does not return unless user is authorized
class phpgw
{
var $common;
var $accounts;
var $applications;
var $db;
}
$phpgw = new phpgw;
$phpgw->common = CreateObject('phpgwapi.common');
$common = $phpgw->common;
$phpgw_setup->loaddb();
$phpgw->db = $phpgw_setup->db;
$phpgw_info['server']['auth_type'] = 'ldap';
$phpgw->accounts = CreateObject('phpgwapi.accounts');
$acct = $phpgw->accounts;
$phpgw->applications = CreateObject('phpgwapi.applications');
$applications = $phpgw->applications;
$phpgw_setup->db->query("select config_name,config_value from phpgw_config where config_name like 'ldap%'",__LINE__,__FILE__);
while ($phpgw_setup->db->next_record())
{
$config[$phpgw_setup->db->f('config_name')] = $phpgw_setup->db->f('config_value');
}
$phpgw_info['server']['ldap_host'] = $config['ldap_host'];
$phpgw_info['server']['ldap_context'] = $config['ldap_context'];
$phpgw_info['server']['ldap_group_context'] = $config['ldap_group_context'];
$phpgw_info['server']['ldap_root_dn'] = $config['ldap_root_dn'];
$phpgw_info['server']['ldap_root_pw'] = $config['ldap_root_pw'];
// First, see if we can connect to the LDAP server, if not send `em back to config.php with an
// error message.
// connect to ldap server
if (! $ldap = $common->ldapConnect())
{
$noldapconnection = True;
}
if ($noldapconnection)
{
Header('Location: config.php?error=badldapconnection');
exit;
}
$sr = ldap_search($ldap,$config['ldap_context'],'(|(uid=*))',array('sn','givenname','uid','uidnumber'));
$info = ldap_get_entries($ldap, $sr);
for ($i=0; $i<$info['count']; $i++)
{
if (! $phpgw_info['server']['global_denied_users'][$info[$i]['uid'][0]])
{
$account_info[$i]['account_id'] = $info[$i]['uidnumber'][0];
$account_info[$i]['account_lid'] = $info[$i]['uid'][0];
$account_info[$i]['account_firstname'] = $info[$i]['givenname'][0];
$account_info[$i]['account_lastname'] = $info[$i]['sn'][0];
}
}
if ($phpgw_info['server']['ldap_group_context'])
{
$srg = ldap_search($ldap,$config['ldap_group_context'],'(|(cn=*))',array('gidnumber','cn','memberuid'));
$info = ldap_get_entries($ldap, $srg);
for ($i=0; $i<$info['count']; $i++)
{
if (! $phpgw_info['server']['global_excluded_groups'][$info[$i]['cn'][0]] &&
! $account_info[$i][$info[$i]['cn'][0]])
{
$group_info[$i]['account_id'] = $info[$i]['gidnumber'][0];
$group_info[$i]['account_lid'] = $info[$i]['cn'][0];
$group_info[$i]['members'] = $info[$i]['memberuid'];
$group_info[$i]['account_firstname'] = $info[$i]['cn'][0];
$group_info[$i]['account_lastname'] = '';
}
}
}
$phpgw_setup->db->query("select app_name,app_title from phpgw_applications where app_enabled != '0' and "
. "app_name != 'administration'",__LINE__,__FILE__);
while ($phpgw_setup->db->next_record()) {
$apps[$phpgw_setup->db->f('app_name')] = $phpgw_setup->db->f('app_title');
}
if ($submit) {
if (!count($admins)) {
$error = '<br>You must select at least 1 admin';
}
if (!count($s_apps)) {
$error .= '<br>You must select at least 1 application';
}
if (!$error) {
if ($ldapgroups)
{
$groupimport = True;
while ($group = each($group_info))
{
$id_exist = 0;
$thisacctid = $group[1]['account_id'];
$thisacctlid = $group[1]['account_lid'];
$thisfirstname = $group[1]['account_firstname'];
$thislastname = $group[1]['account_lastname'];
$thismembers = $group_info[$i]['members'];
// Do some checks before we try to import the data.
if (!empty($thisacctid) && !empty($thisacctlid))
{
$groups = CreateObject('phpgwapi.accounts',intval($thisacctid));
$groups->db = $phpgw_setup->db;
// Check if the account is already there.
// If so, we won't try to create it again.
$acct_exist = $acct->name2id($thisacctlid);
if ($acct_exist)
{
$thisacctid = $acct_exist;
}
$id_exist = $accounts->exists(intval($thisacctid));
// If not, create it now.
if(!$id_exist)
{
$accounts->create('g', $thisacctlid, 'x',$thisfirstname, $thislastname,'',$thisacctid);
}
// Now make them a member of this group in phpgw.
while (list($members) = each($thismembers))
{
// Insert acls for this group based on memberuid field.
// Since the group has app rights, we don't need to give users
// these rights. Instead, we maintain group membership here.
$acl = CreateObject('phpgwapi.acl',intval($members));
$acl->db = $phpgw_setup->db;
$acl->read_repository();
$acl->delete('phpgw_group',$thisacctid,1);
$acl->add('phpgw_group',$thisacctid,1);
// Now add the acl to let them change their password
$acl->delete('preferences','changepassword',$thisacctid,1);
$acl->add('preferences','changepassword',$thisacctid,1);
$acl->save_repository();
}
}
}
$setup_complete = True;
}
else
{
// Create the 'Default' group
mt_srand((double)microtime()*1000000);
$defaultgroupid = mt_rand (100, 65535);
$acct = CreateObject('phpgwapi.accounts',$defaultgroupid);
$acct->db = $phpgw_setup->db;
// Check if the group account is already there.
// If so, set our group_id to that account's id for use below.
$acct_exist = $acct->name2id('Default');
if ($acct_exist) {
$defaultgroupid = $acct_exist;
}
$id_exist = $acct->exists(intval($defaultgroupid));
// if not, create it, using our original groupid.
if(!$id_exist) {
$acct->create('g','Default',$passwd,'Default','Group','A',$defaultgroupid);
} else {
// Delete first, so ldap does not return an error, then recreate
$acct->delete($defaultgroupid);
$acct->create('g','Default',$passwd,'Default','Group','A',$defaultgroupid);
}
$acl = CreateObject('phpgwapi.acl',$defaultgroupid);
$acl->db = $phpgw_setup->db;
$acl->read_repository();
while ($app = each($s_apps)) {
$acl->delete($app[1],'run',1);
$acl->add($app[1],'run',1);
}
$acl->save_repository();
} //end default group creation
while ($account = each($account_info))
{
$id_exist = 0;
$thisacctid = $account[1]['account_id'];
$thisacctlid = $account[1]['account_lid'];
$thisfirstname = $account[1]['account_firstname'];
$thislastname = $account[1]['account_lastname'];
// Do some checks before we try to import the data.
if (!empty($thisacctid) && !empty($thisacctlid))
{
$accounts = CreateObject('phpgwapi.accounts',intval($thisacctid));
$accounts->db = $phpgw_setup->db;
// Check if the account is already there.
// If so, we won't try to create it again.
$acct_exist = $acct->name2id($thisacctlid);
if ($acct_exist)
{
$thisacctid = $acct_exist;
}
$id_exist = $accounts->exists(intval($thisacctid));
// If not, create it now.
if(!$id_exist)
{
$accounts->create('u', $thisacctlid, 'x',$thisfirstname, $thislastname,'A',$thisacctid);
}
// Insert default acls for this user.
// Since the group has app rights, we don't need to give users
// these rights. Instead, we make the user a member of the Default group
// below.
$acl = CreateObject('phpgwapi.acl',intval($thisacctid));
$acl->db = $phpgw_setup->db;
$acl->read_repository();
// Only give them admin if we asked for them to have it.
// This is typically an exception to apps for run rights
// as a group member.
for ($a=0;$a<count($admins);$a++)
{
if ($admins[$a] == $thisacctid)
{
$acl->delete('admin','run',1);
$acl->add('admin','run',1);
}
}
// Now make them a member of the 'Default' group.
// But, only if the current user is not the group itself.
if ($defaultgroupid != $thisacctid)
{
$acl->delete('phpgw_group',$defaultgroupid,1);
$acl->add('phpgw_group',$defaultgroupid,1);
}
// Save these new acls.
$acl->save_repository();
}
$setup_complete = True;
}
}
}
// Add a check to see if there are no users in LDAP, if not create a default user.
$phpgw_setup->show_header();
if ($error) {
echo '<br><center><b>Error:</b> '.$error.'</center>';
}
if ($setup_complete) {
$phpgw_setup->db->query("select config_value from phpgw_config where config_name='webserver_url'",__LINE__,__FILE__);
$phpgw_setup->db->next_record();
echo '<br><center>Setup has been completed! Click <a href="' . $phpgw_setup->db->f("config_value")
. '/login.php">here</a> to login</center>';
exit;
}
?>
<form action="ldap.php" method="POST">
<table border="0" align="center" width="70%">
<tr bgcolor="486591">
<td colspan="2">&nbsp;<font color="fefefe">LDAP import users</font></td>
</tr>
<tr bgcolor="e6e6e6">
<td colspan="2">&nbsp;This section will help you import users and groups from your LDAP tree into phpGroupWare's account tables.<br>&nbsp;</td>
</tr>
<tr bgcolor="e6e6e6">
<td align="left" valign="top">
&nbsp;Select which user(s) will be imported
</td>
<td align="center">
<select name="users[]" multiple size="5">
<?php
while ($account = each($account_info))
{
echo '<option value="' . $account[1]['account_id'] . '">'
. $common->display_fullname($account[1]['account_lid'],$account[1]['account_firstname'],$account[1]['account_lastname'])
. '</option>';
echo "\n";
}
?>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td align="left" valign="top">
&nbsp;Select which user(s) will have admin privileges
</td>
<td align="center">
<select name="admins[]" multiple size="5">
<?php
@reset($account_info);
while ($account = each($account_info))
{
echo '<option value="' . $account[1]['account_id'] . '">'
. $common->display_fullname($account[1]['account_lid'],$account[1]['account_firstname'],$account[1]['account_lastname'])
. '</option>';
echo "\n";
}
?>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td align="left" valign="top">
&nbsp;Select which group(s) will be imported (group membership will be maintained)
</td>
<td align="center">
<select name="ldapgroups[]" multiple size="5">
<?php
while ($group = each($group_info))
{
echo '<option value="' . $account[1]['account_id'] . '">'
. $group[1]['account_lid']
. '</option>';
echo "\n";
}
?>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td align="left" valign="top">
&nbsp;Select the default applications your users will have access to.
<br>&nbsp;Note: You will be able to customize this later.
</td>
<td>
<select name="s_apps[]" multiple size="5">
<?php
while ($app = each($apps))
{
if ($app[0] != 'admin')
{
echo '<option value="' . $app[0] . '" selected>' . $app[1] . '</option>';
}
else
{
echo '<option value="' . $app[0] . '">' . $app[1] . '</option>';
}
echo "\n";
}
?>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td colspan="2" align="center">
<input type="submit" name="submit" value="import">
</td>
</tr>
</table>
</form>

View File

@ -1,306 +0,0 @@
<?php
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
include("./inc/functions.inc.php");
include('../phpgwapi/setup/setup.inc.php');
$phpgw_info["server"]["versions"]["phpgwapi"] = $setup_info['phpgwapi']['version'];
$phpgw_info['server']['versions']['current_header'] = $setup_info['phpgwapi']['versions']['current_header'];
unset($setup_info);
function check_form_values()
{
global $setting, $phpgw_setup;
if (! $setting['config_pass'])
{
$errors .= "<br>You didn't enter a config password";
}
if (! $setting['HEADER_ADMIN_PASSWORD'])
{
$errors .= "<br>You didn't enter a header admin password";
}
if ($errors)
{
$phpgw_setup->show_header("Error",True);
echo $errors;
exit;
}
}
/* authentication phase */
$phpgw_info["setup"]["stage"]["header"] = $phpgw_setup->check_header();
switch($phpgw_info["setup"]["stage"]["header"]){
case "1":
$phpgw_info["setup"]["HeaderFormMSG"] = "Create your header.inc.php";
$phpgw_info["setup"]["PageMSG"] = "You have not created your header.inc.php yet!<br> You can create it now.";
break;
case "2":
$phpgw_info["setup"]["HeaderFormMSG"] = "Your header admin password is NOT set. Please set it now!";
$phpgw_info["setup"]["PageMSG"] = "Your header admin password is NOT set. Please set it now!";
break;
case "3":
$phpgw_info["setup"]["HeaderFormMSG"] = "Your header.inc.php needs upgrading.";
$phpgw_info["setup"]["PageMSG"] = "Your header.inc.php needs upgrading.<br><blink><font color=CC0000><b>WARNING!</b></font></blink><br>If you are using virtual domain support, this will <b>NOT</b> copy those domains over. You will need to do this manually, <b>MAKE BACKUPS!</b>";
$phpgw_info["setup"]["HeaderLoginMSG"] = "Your header.inc.php needs upgrading.";
if (!$phpgw_setup->auth("Header")){
$phpgw_setup->show_header("Please login",True);
$phpgw_setup->login_form();
exit;
}
break;
case "10":
if (!$phpgw_setup->auth("Header")){
$phpgw_setup->show_header("Please login",True);
$phpgw_setup->login_form();
exit;
}
$phpgw_info["setup"]["HeaderFormMSG"] = "Edit your header.inc.php";
$phpgw_info["setup"]["PageMSG"] = "Edit your existing header.inc.php";
break;
}
switch($action){
case "download":
check_form_values();
include("./inc/phpgw_template.inc.php");
$header_template = new Template("../");
header("Content-disposition: attachment; filename=\"header.inc.php\"");
header("Content-type: application/octet-stream");
header("Pragma: no-cache");
header("Expires: 0");
$newheader = $phpgw_setup->generate_header();
echo $newheader;
break;
case "view":
check_form_values();
include("./inc/phpgw_template.inc.php");
$header_template = new Template("../");
$phpgw_setup->show_header("Generated header.inc.php", False, "header");
echo "<br>Save this text as contents of your header.inc.php<br><hr>";
$newheader = $phpgw_setup->generate_header();
echo "<pre>";
echo htmlentities($newheader);
echo "</pre><hr>";
echo "<form action=\"index.php\" method=post>";
echo "<br> After retrieving the file put it into place as the header.inc.php, then click continue.<br>";
echo "<input type=hidden name=\"FormLogout\" value=\"header\">";
echo "<input type=submit name=\"junk\" value=\"continue\">";
echo "</form>";
echo "</body></html>";
break;
case "write config":
check_form_values();
include("./inc/phpgw_template.inc.php");
$header_template = new Template("../");
if(is_writeable ("../header.inc.php")|| (!file_exists ("../header.inc.php") && is_writeable ("../"))){
$newheader = $phpgw_setup->generate_header();
$fsetup = fopen("../header.inc.php","w");
fwrite($fsetup,$newheader);
fclose($fsetup);
$phpgw_setup->show_header("Saved header.inc.php", False, "header");
echo "<form action=\"index.php\" method=post>";
echo "<br>Created header.inc.php! ";
echo "<input type=hidden name=\"FormLogout\" value=\"header\">";
echo "<input type=submit name=\"junk\" value=\"continue\">";
echo "</form>";
echo "</body></html>";
break;
}else{
$phpgw_setup->show_header("Error generating header.inc.php", False, "header");
echo "Could not open header.inc.php for writing!<br>\n";
echo "Please check read/write permissions on directories or back up and use another option.<br>";
echo "</td></tr></table></body></html>";
}
break;
default:
$phpgw_setup->show_header($phpgw_info["setup"]["HeaderFormMSG"], False, "header");
echo $phpgw_info["setup"]["PageMSG"];
/*
echo '<table border="0" width="100%" cellspacing="0" cellpadding="2">';
echo ' <tr><td align="center" WIDTH="20%" bgcolor="486591" colspan=2><font color="fefefe">Analysis</td></tr>';
echo '</table>';
*/
echo '<table border="0" width="100%" cellspacing="0" cellpadding="2">';
echo '<tr bgcolor="486591"><td align="center" colspan=2><font color="fefefe"> Analysis </font></td></tr><tr><td colspan=2>';
// Hardly try to find what DB-support is compiled in
// this dont work with PHP 3.0.10 and lower !
$supported_db = array();
if (extension_loaded("mysql") || function_exists("mysql_connect")) {
echo "You appear to have MySQL support enabled<br>\n";
$supported_db[] = "mysql";
} else {
echo "No MySQL support found. Disabling<br>\n";
}
if (extension_loaded("pgsql") || function_exists("pg_connect")) {
echo "You appear to have Postgres-DB support enabled<br>\n";
$supported_db[] = "pgsql";
} else {
echo "No Postgres-DB support found. Disabling<br>\n";
}
if (extension_loaded("oci8")) {
echo "You appear to have Oracle V8 (OCI) support enabled<br>\n";
$supported_db[] = "oracle";
} else {
if(extension_loaded("oracle")) {
echo "You appear to have Oracle support enabled<br>\n";
$supported_db[] = "oracle";
} else {
echo "No Oracle-DB support found. Disabling<br>\n";
}
}
if(!count($supported_db)) {
echo "<b><p align=center><font size=+2 color=red>did not found any valid DB support !<br>try to configure your php to support one of the above mentioned dbs or install phpgroupware by hand </font></p></b><td></tr></table></body></html>";
exit;
}
$no_guess = false;
if(file_exists("../header.inc.php") && is_file("../header.inc.php")) {
echo "Found existing configuration file. Loading settings from the file...<br>\n";
$phpgw_info["flags"]["noapi"] = True;
include("../header.inc.php");
$no_guess = true;
/* This code makes sure the newer multi-domain supporting header.inc.php is being used */
if (!isset($phpgw_domain)) {
echo "Your using an old configuration file format...<br>\n";
echo "Importing old settings into the new format....<br>\n";
}else{
if ($phpgw_info["server"]["header_version"] != $phpgw_info["server"]["current_header_version"]) {
echo "Your using an old header.inc.php version...<br>\n";
echo "Importing old settings into the new format....<br>\n";
}
reset($phpgw_domain);
$default_domain = each($phpgw_domain);
$phpgw_info["server"]["default_domain"] = $default_domain[0];
unset ($default_domain); // we kill this for security reasons
$phpgw_info["server"]["db_host"] = $phpgw_domain[$phpgw_info["server"]["default_domain"]]["db_host"];
$phpgw_info["server"]["db_name"] = $phpgw_domain[$phpgw_info["server"]["default_domain"]]["db_name"];
$phpgw_info["server"]["db_user"] = $phpgw_domain[$phpgw_info["server"]["default_domain"]]["db_user"];
$phpgw_info["server"]["db_pass"] = $phpgw_domain[$phpgw_info["server"]["default_domain"]]["db_pass"];
$phpgw_info["server"]["db_type"] = $phpgw_domain[$phpgw_info["server"]["default_domain"]]["db_type"];
$phpgw_info["server"]["config_passwd"] = $phpgw_domain[$phpgw_info["server"]["default_domain"]]["config_passwd"];
}
if (defined("PHPGW_SERVER_ROOT")) {
$phpgw_info["server"]["server_root"] = PHPGW_SERVER_ROOT;
$phpgw_info["server"]["include_root"] = PHPGW_INCLUDE_ROOT;
}elseif (!isset($phpgw_info["server"]["include_root"]) && $phpgw_info["server"]["header_version"] <= 1.6) {
$phpgw_info["server"]["include_root"] = $phpgw_info["server"]["server_root"];
}elseif (!isset($phpgw_info["server"]["header_version"]) && $phpgw_info["server"]["header_version"] <= 1.6) {
$phpgw_info["server"]["include_root"] = $phpgw_info["server"]["server_root"];
}
} else {
echo "sample configuration not found. using built in defaults<br>\n";
$phpgw_info["server"]["server_root"] = "/path/to/phpgroupware";
$phpgw_info["server"]["include_root"] = "/path/to/phpgroupware";
/* This is the basic include needed on each page for phpGroupWare application compliance */
$phpgw_info["flags"]["htmlcompliant"] = True;
/* These are the settings for the database system */
$phpgw_info["server"]["db_host"] = "localhost";
$phpgw_info["server"]["db_name"] = "phpgroupware";
$phpgw_info["server"]["db_user"] = "phpgroupware";
$phpgw_info["server"]["db_pass"] = "your_password";
$phpgw_info["server"]["db_type"] = "mysql"; //mysql, pgsql (for postgresql), or oracle
/* These are a few of the advanced settings */
$phpgw_info["server"]["config_passwd"] = "changeme";
$phpgw_info["server"]["mcrypt_enabled"] = False;
$phpgw_info["server"]["mcrypt_version"] = "2.6.3";
srand((double)microtime()*1000000);
$random_char = array("0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f",
"g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v",
"w","x","y","z","A","B","C","D","E","F","G","H","I","J","K","L",
"M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z");
for ($i=0; $i<30; $i++) {
$phpgw_info["server"]["mcrypt_iv"] .= $random_char[rand(1,count($random_char))];
}
}
// now guessing better settings then the default ones
if(!$no_guess) {
echo "Now guessing better values for defaults <br>\n";
$this_dir = dirname($SCRIPT_FILENAME);
$updir = ereg_replace("/setup","",$this_dir);
$phpgw_info["server"]["server_root"] = $updir;
$phpgw_info["server"]["include_root"] = $updir;
}
?>
</td></tr>
<tr bgcolor=486591><th colspan=2><font color="fefefe">Settings</font></th></tr>
<form action="<?php echo $PHP_SELF ?>" method=post>
<input type=hidden name="setting[write_config]" value=true>
<tr><td colspan=2><b>Server Root</b><br><input type=text name="setting[server_root]" size=80 value="<?php echo $phpgw_info["server"]["server_root"] ?>"></td></tr>
<tr><td colspan=2><b>Include Root (this should be the same as Server Root unless you know what you are doing)</b><br><input type=text name="setting[include_root]" size=80 value="<?php echo $phpgw_info["server"]["include_root"] ?>"></td></tr>
<tr><td colspan=2><b>Admin password to header manager </b><br><input type=text name="setting[HEADER_ADMIN_PASSWORD]" size=80 value="<?php echo $phpgw_info["server"]["header_admin_password"] ?>"></td></tr>
<br><br>
<tr><td><b>DB Host</b><br><input type=text name="setting[db_host]" value="<?php echo $phpgw_info["server"]["db_host"] ?>"></td><td>Hostname/IP of Databaseserver</td></tr>
<tr><td><b>DB Name</b><br><input type=text name="setting[db_name]" value="<?php echo $phpgw_info["server"]["db_name"] ?>"></td><td>Name of Database</td></tr>
<tr><td><b>DB User</b><br><input type=text name="setting[db_user]" value="<?php echo $phpgw_info["server"]["db_user"] ?>"></td><td>Name of DB User as phpgroupware has to connect as</td></tr>
<tr><td><b>DB Password</b><br><input type=text name="setting[db_pass]" value="<?php echo $phpgw_info["server"]["db_pass"] ?>"></td><td>Password of DB User</td></tr>
<tr><td><b>DB Type</b><br><select name="setting[db_type]">
<?php
$selected = "";
$found_dbtype = false;
while(list($k,$v) = each($supported_db)) {
if($v == $phpgw_info["server"]["db_type"]) {
$selected = " selected ";
$found_dbtype = true;
} else {
$selected = "";
}
print "<option $selected value=\"$v\">$v\n";
}
?>
</select>
</td><td>What Database do you want to use with PHPGroupWare?
<tr><td><b>Configuration Password</b><br><input type=text name="setting[config_pass]" value="<?php echo $phpgw_info["server"]["config_passwd"] ?>"></td><td>Password needed for configuration</td></tr>
<tr><td colspan=2><b>Enable MCrypt</b><br>
<select name="setting[enable_mcrypt]">
<?php if($phpgw_info["server"]["mcrypt_enabled"] == True) { ?>
<option value=True selected>True
<option value=False>False
<?php } else { ?>
<option value=True>True
<option value=False selected>False
<?php } ?>
</select>
</td></tr>
<tr><td><b>MCrypt version</b><br><input type=text name="setting[mcrypt_version]" value="<?php echo $phpgw_info["server"]["versions"]["mcrypt"] ?>"></td><td>Set this to "old" for versions < 2.4, otherwise the exact mcrypt version you use</td></tr>
<tr><td><b>MCrypt initilazation vector</b><br><input type=text name="setting[mcrypt_iv]" value="<?php echo $phpgw_info["server"]["mcrypt_iv"] ?>" size="30"></td><td>It should be around 30 bytes in length.<br>Note: The default has been randomly generated.</td></tr>
<tr><td><b>Domain select box on login</b><br>
<select name="setting[domain_selectbox]">
<option value="True"<?php echo ($phpgw_info["server"]["domain_selectbox"]?" selected":""); ?>>True</option>
<option value="False"<?php echo (! $phpgw_info["server"]["domain_selectbox"]?" selected":""); ?>>False</option>
</select></td><td></td>
</tr>
</table>
<?php
if(!$found_dbtype) {
echo "<br><font color=red>Warning!<br>The db_type in defaults (".$phpgw_info["server"]["db_type"].") is not supported on this server. using first supported type.</font>";
}
echo "<br>";
if(is_writeable ("../header.inc.php")|| (!file_exists ("../header.inc.php") && is_writeable ("../"))){
echo '<input type=submit name="action" value="write config">';
echo ' or <input type=submit name="action" value="download"> or <input type=submit name="action" value="view"> the file.</form>';
}else{
echo 'Cannot create the header.inc.php due to file permission restrictions.<br> Instead you can ';
echo '<input type=submit name="action" value="download">or <input type=submit name="action" value="view"> the file.</form>';
}
echo '<form action="index.php" method=post>';
echo '<br> After retrieving the file put it into place as the header.inc.php, then click continue.<br>';
echo '<input type=hidden name="FormLogout" value="header">';
// echo '<input type=hidden name="FormLogout" value="config">';
// echo '<input type=hidden name="ConfigLogin" value="Login">';
// echo '<input type=hidden name="FormPW" value="'.$phpgw_domain[$phpgw_info["server"]["default_domain"]]["config_passwd"].'">';
// echo '<input type=hidden name="FormDomain" value="'.$phpgw_info["server"]["default_domain"].'">';
echo '<input type=submit name="junk" value="continue">';
echo "</form>";
echo "</body>";
echo "</html>";
break; // ending the switch default
}
?>

View File

@ -1,310 +0,0 @@
common br
(for weekly) calendar br (por semana)
* make sure that you remove users from this group before you delete it. admin br * tenha certeza de apagar os usuarios deste grupo antes de voce apaga-lo.
1 match found calendar br Encontrada 1 ocorrencia
:
$s = common br >phpGroupWare</a>/traduzido por chgp
access common br Accesso
access type common br Tipo de acesso
access type todo br Tipo de accesso
account active admin br Conta Inativa
account has been created common br Conta foi criada
account has been deleted common br Conta foi apagada
account has been updated common br Conta foi atualizada
active admin br Ativo
add common br Adicionar
address book addressbook br Contatos
address book common br Contatos
addressbook common br Rubrica
admin common br Administrador
administration common br Administracao
all records and account information will be lost! admin br Todos registros e informacoes de contas serao perdidas!
anonymous user admin br Usuario Anonimo
april common br Abril
are you sure you want to delete this account ? admin br Tem certeza que deseja apagar esta conta ?
are you sure you want to delete this group ? admin br Voce tem certeza que deseja apagar este grupo ?
are you sure you want to delete this news site ? admin br Tem certeza que deseja apagar este site news ?
are you sure you want to kill this session ? admin br Voce tem certeza que deseja matar esta secao ?
are you sure\nyou want to\ndelete this entry ? calendar br Tem certeza\nque quer apagar\nesta entrada ?
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar br Tem certeza\nvoce quer\napagar esta entrada ?\n\nIsto apagara a entrada\npara todos usuarios.
august common br Agosto
author nntp br Author
available groups nntp br Available Groups
bad login or password login br login ou senha incorreta
base url admin br URL de base
birthday addressbook br Aniversario
book marks common br book marks
brief description calendar br Curta Descricao
calendar common br Calendario
calendar - add calendar br Calendario - Adicionar
calendar - edit calendar br Calendario - Editar
cancel common br Cancelar
change common br Mudar
change your password preferences br Mude sua senha
change your settings preferences br mude suas preferencias
charset common br iso-8859-1
chat common br Chat
city addressbook br Cidade
clear common br Cancelar
clear form common br Limpar Formulario
clear form todo br Limpar Formulario
clipboard_contents filemanager br Conteudo do clipboard
completed todo br completo
copy common br Copiar
copy_as filemanager br Copie como
create common br Criar
create group admin br Criar Grupo
created by common br Criado por
created by todo br Creado por
current users common br Usuarios ativos
current_file filemanager br Arquivo em uso
daily calendar br Diaria
date nntp br Date
date common br Data
date due todo br Data due
date format preferences br Formato data
days repeated calendar br Dias Repetidos
december common br Dezembro
delete common br Cancelar
description calendar br Descricao
disabled admin br Desabilitato
display admin br Visualiza
done common br Pronto
download filemanager br Baixar
duration calendar br Duracao
e-mail addressbook br E-Mail
e-mail common br E-Mail
edit common br Modificar
email common br E-Mail
email signature preferences br Assinatura do email
enter your new password preferences br Entre uma nova senha
entry has been deleted sucessfully common br Entrada apagada com sucesso
entry updated sucessfully common br Entrada modificada com sucesso
error common br Erro
err_saving_file filemanager br Erro durante a gravacao do arquivo
exit common br Saida
fax addressbook br Fax
february common br Fevereiro
file manager common br Gerenciador de arquivos
files filemanager br Arquivo
file_upload filemanager br Enviar arquivo
filter common br Filtro
first name addressbook br Primeiro Nome
first name common br Nome
first page common br primeira pagina
frequency calendar br Frequencia
fri calendar br Sex
friday common br Sexta
ftp common br FTP
full description calendar br Descricao Completa
generate printer-friendly version calendar br Gera versoes imprimiveis?!?
global public common br Publico Global
go! calendar br Vai!
group access common br Acesso Grupo
group has been added common br Grupo Adicionado
group has been deleted common br Grupo cancelado
group has been updated common br Grupo atualizado
group name admin br Nome do Grupo
group public common br Grupo Publico
groups common br Grupos
groupsfile_perm_error filemanager br Para corrigir este erro voce deve configurar corretamente as permissoes neste diretorio e o grupo.<BR> Nos sistemas *ix digite: chmod 770
group_files filemanager br Arquivo do grupo
headline sites admin br Headlines
headlines common br headlines
help common br Ajuda
high common br Alta
home common br Pagina Inicial
home phone addressbook br Fone Residencial
idle admin br inativo
ip admin br IP
it has been more then x days since you changed your password common br Ja passaram-se mais de %1 dias desde que vc mudou sua senha
january common br Janeiro
july common br Julho
june common br Junho
kill admin br Matar
language preferences br Lingua
last name addressbook br Ultimo Nome
last name common br Ultimo nome
last page common br ultima pagina
last time read admin br Ultima Leitura
last updated todo br Ultima Modificao
last x logins admin br Ultimo %1 login
list of current users admin br Lista de usuarios correntes
listings displayed admin br listagens mostradas
login login br Login
login common br Login
login time admin br Hora do Login
loginid admin br Identificativo Login
logout common br Logout
low common br Baixa
manager admin br Gerente
march common br Marco
max matchs per page preferences br Numero maximo de resultados por pagina
may common br Maio
medium common br Media
message x nntp br Message %1
minutes calendar br minutos
minutes between reloads admin br Minutos entre reloads
mobile addressbook br Celular
mon calendar br Seg
monday common br Segunda
monitor nntp br Monitor
month calendar br Mes
monthly (by date) calendar br mensal (pela data)
monthly (by day) calendar br mensal (por dia)
name common br Nome
new entry calendar br Nova Entrada
new entry added sucessfully common br Entrada adicionada corretamente
new group name admin br Novo nome do Grupo
new password [ leave blank for no change ] admin br Nova Senha [ Deixe em branco para nao alterar ]
news file admin br Arquivo de news
news headlines common br titulos novos
news reader common br Leitor de News
news type admin br Tipo de news
newsgroups nntp br Newsgroups
new_file filemanager br Novo Arquivo
next nntp br Next
next page common br proxima pagina
no common br Nao
no matches found. calendar br Nenhuma ocorrencia encontrada.
none common br Nenhuma
normal common br Normal
note: this feature does *not* change your email password. this will need to be done manually. preferences br Nota: Esta funcao *nao* muda sua senha de email. voce devera fazer isto manualmente.
notes addressbook br Notas
november common br Novembro
no_file_name filemanager br Nenhum nome foi especificado
october common br Outubro
ok common br OK
only yours common br so as suas
other number addressbook br Outro Numero
pager addressbook br Pager
participants calendar br Participante
password login br Password
password common br Senha
password has been updated common br Senha foi alterada
percent of users that logged out admin br Percentual de usuarios que terminaram a secao corretamente
please, select a new theme preferences br por favor, selecione um tema
preferences common br Preferencas
previous page common br pagina anterior
printer friendly calendar br imprimivel
priority common br Prioridade
private common br Privado
private_files filemanager br Arquivo Privado
re-enter password admin br Re-digite sua senha
re-enter your password preferences br Re-digite sua senha
rename common br Renomiar
rename_to filemanager br Renomear para
repeat day calendar br Repeticao Diaria
repeat end date calendar br Data final da repeticao
repeat type calendar br Tipo de repeticao
repetition calendar br Repeticao
sat calendar br Sab
saturday common br Sabado
save common br Salvar
search common br Procura
search results calendar br Resultados da pesquisa
select different theme preferences br Selecione um tema diferente
select headline news sites preferences br Selecione os sites de noticias
september common br Setembro
session has been killed common br Sessao foi morta
show all common br mostra tudo
show all groups nntp br Show All Groups
show birthday reminders on main screen preferences br Mostra Aniversariantes na primeira tela
show current users on navigation bar preferences br Mostra usuarios ativos na barra de navegacao
show groups containing nntp br Show Groups Containing
show high priority events on main screen preferences br Mostra eventos de alta prioridade na primeira tela
show new messages on main screen preferences br Mostra novas mensagens na tela principal
show text on navigation icons preferences br Mostra texto na barra de navegacao
showing x common br Visualizando %1
showing x - x of x common br Visualizando %1 - %2 de %3
site admin br Site
sorry, there was a problem proccesing your request. common br Desculpe, ocorreu um problema processando sua requisicao.
sorry, your login has expired login br Desculpe, sua conta expiorou
specify_file_name filemanager br Devera especificar um nome para cada arquivo a ser criado
state addressbook br Estado
status todo br Estado
street addressbook br Rua
subject nntp br Subject
submit common br Inserir
sun calendar br Dom
sunday common br Domingo
that loginid has already been taken admin br Este nome ja esta em uso
that site has already been entered admin br Este site ja foi cadastrado
the following conflicts with the suggested time:<ul>x</ul> calendar br os seguintes conflitos com o horario sugerido:<ul>%1</ul>
the login and password can not be the same admin br O login nao pode ser o mesmo da senha
the two passwords are not the same preferences br As duas senhas nao sao a mesma
the two passwords are not the same admin br As duas senhas nao sao a mesma
this month calendar br Este mes
this server is located in the x timezone preferences br Este servidor esta localizado no fuso horario %1
this week calendar br Esta Semana
threads nntp br Threads
thu calendar br Qui
thursday common br Quinta
time common br Hora
time format preferences br Formato horario
time zone offset preferences br Diferenca de fuso horario
today calendar br Hoje
today is x's birthday! common br Hoje e' aniversario de %1!
todo todo br a fazer
todo list common br Agenda
todo list todo br Agenda
todo list - add todo br Agenda - adicionar
todo list - edit todo br Agenda - editar
tomorrow is x's birthday. common br Amanha e' aniversario de %1.
total common br Total
total records admin br Total de registros
trouble ticket system common br Sistema de gestao de tickets
tue calendar br Ter
tuesday common br Terca
update nntp br Update
updated common br Atualizado
upload filemanager br Enviar
urgency todo br Urgencia
use cookies login br usa i cookie
use end date calendar br Usar data final
user accounts admin br Contas de Usuarios
user groups admin br Grupos de Usuarios
username login br Nome Utente
usersfile_perm_error filemanager br Para corrigir este erro voce deve configurar corretamente as perimissoes nos diretoriosi.<BR> Nos sistemas *ix digite: chmod 770
view common br Visualizar
view access log admin br Visualiza Log de acesso
view sessions admin br Visualiza Sessao
view this entry calendar br Visualiza esta entrada
wed calendar br Qua
wednesday common br Quarta
week calendar br Semana
weekday starts on preferences br A Semana comeca em
weekly calendar br semanal
which groups common br Qual grupo
which groups todo br Quais Grupos
work day ends on preferences br A jornada de trabalho termina em
work day starts on preferences br A jornada de trabalho comeca em
work phone addressbook br Fone Comercial
x matches found calendar br %1 ocorrencias encontradas
year calendar br Ano
yearly calendar br Anual
yes common br Sim
you have 1 high priority event on your calendar today. common br Voce tem 1 evento com alta prioridade no seu calendario hoje.
you have 1 new message! common br Voce tem 1 nova mensagem!
you have been successfully logged out login br Voce foi desconectado com sucesso
you have entered an invailed date todo br Voce digitou uma data invalida
you have not entered a\nbrief description calendar br Voce nao digitou uma \nBreve Descricao
you have not entered a\nvalid time of day. calendar br Voce nao digitou \num horario valido.
you have x high priority events on your calendar today. common br Voce tem %1 eventos com alta prioridade no seu calendario hoje.
you have x new messages! common br Voce tem %1 novas mensagens!
you must enter a base url admin br Insira a URL base
you must enter a display admin br Voce deve digitar o display
you must enter a news url admin br Voce deve digitar uma URL de news
you must enter a password preferences br Voce deve digitar uma senha
you must enter a password admin br Voce deve digitar uma senha
you must enter one or more search keywords calendar br voce deve digitar uma ou mais palavras chave
you must enter the number of listings display admin br Digite o numero de listagens exibidas
you must enter the number of minutes between reload admin br Entre com o numero de minutos entre os reloads
you must select a file type admin br Voce deve selecionar um tipo de arquivo
your current theme is: x preferences br Seu tema corrente e':
your message as been sent common br Sua mensagem foi enviada
your search returned 1 match common br sua pesquisa retornou 1 correspondecia
your search returned x matchs common br Sua pesquisa retornou %1 correspondencias
your settings have been updated common br suas preferencias foram atualizadas
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar br Horiario Sugerido: <B> %1 - %2 </B> esta em conflito com as seguintes entradas no calendario:
zip code addressbook br CEP

View File

@ -1,342 +0,0 @@
(for weekly) calendar cs (pro t<>denn<6E>)
1 match found calendar cs Nalezen 1 z<>znam
access common cs P<><50>stup
access type common cs Druh p<><70>stupu
access type todo cs Druh p<><70>stupu
account active admin cs Aktivn<76> <20><>et
account has been created common cs U<>ivatelsk<73> <20><>et byl vytvo<76>en
account has been deleted common cs U<>ivatelsk<73> <20><>et byl smaz<61>n
account has been updated common cs U<>ivatelsk<73> <20><>et byl zm<7A>n<EFBFBD>n
active admin cs Aktivn<76>
add common cs P<>idat
address book addressbook cs Adres<65><73>
address book common cs Telefonn<6E> seznam
addressbook common cs Telefonn<6E> seznam
admin common cs Administr<74>tor
administration common cs Spr<70>va
all records and account information will be lost! admin cs V<>echny z<>znamy a informace o <20><>tu budou ztraceny!
anonymous user admin cs Anonymn<6D> u<>ivatel
april common cs Duben
are you sure you want to delete this account ? admin cs Jste si jist, <20>e chcte vymazat tento <20><>et ?
are you sure you want to delete this entry todo cs Opravdu chcete vymazat tento z<>znam?
are you sure you want to delete this entry ? common cs Jste si jist, <20>e chcete vymazat tento z<>znam?
are you sure you want to delete this group ? admin cs Jste si jist, <20>e chcete vymazat tuto skupinu ?
are you sure you want to delete this news site ? admin cs Jste si jist, <20>e chcete vymazat tuto s<><73> novinek (news site) ?
are you sure you want to kill this session ? admin cs Jste si jist, <20>e chcete zru<72>it tuto relaci ?
are you sure\nyou want to\ndelete this entry ? calendar cs Jste si jist,\n<>e chcete\nvymazat tento z<>znam ?
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar cs Ur<55>it<69>\nchcete\ndsmazat tento z<>znam ?\n\nBude vymaz<61>n\npro v<>echny u<>ivatele.
august common cs Srpen
author nntp cs Autor
available groups nntp cs Dostupn<70> skupiny
bad login or password login cs <09>patn<74> jm<6A>no nebo heslo
base url admin cs Z<>kladn<64> adresa URL
birthday addressbook cs Narozeniny
book marks common cs Z<>lo<6C>ky
bookmarks common cs Pozn<7A>mky
brief description calendar cs Kr<4B>tk<74> popis
calendar common cs Kalend<6E><64>
calendar - add calendar cs Kalend<6E><64> - P<>idej
calendar - edit calendar cs Kalend<6E><64> - Uprav
cancel common cs Storno
cancel filemanager cs Storno
change common cs Zm<5A>nit
change your password preferences cs Zm<5A>nit va<76>e heslo
change your profile preferences cs Zm<5A>nit profil
change your settings preferences cs Zm<5A>nit nastaven<65>
charset common cs iso-8859-2
chat common cs Chat
city addressbook cs M<>sto
clear common cs Smazat
clear form common cs Vy<56>istit formul<75><6C>
clear form todo cs Vyma<6D> formul<75><6C>
clipboard_contents filemanager cs Obsah vyrovn<76>vac<61> schr<68>nky (clipboard)
company name addressbook cs Firma
completed todo cs dokon<6F>eno
copy common cs Kop<6F>rovat
copy filemanager cs Kop<6F>rovat
copy_as filemanager cs Kop<6F>ruj jako
create common cs Vytvo<76>it
create filemanager cs Vytvo<76>it
create group admin cs Vytvo<76>it skupinu
created by common cs Vytvo<76>il
created by todo cs Zadal
current users common cs Sou<6F>asn<73> u<>ivatel<65>
current_file filemanager cs Sou<6F>asn<73> soubor
daily calendar cs Denn<6E>
date common cs Datum
date nntp cs Datum
date due todo cs Po<50>adovan<61> datum spln<6C>n<EFBFBD>
date format preferences cs Form<72>t datumu
days repeated calendar cs dn<64> se opakuje
december common cs Prosinec
default application preferences cs Implicitn<74> aplikace
default sorting order preferences cs Implicitn<74> t<><74>d<EFBFBD>n<EFBFBD>
delete common cs Vymazat
delete filemanager cs Smazat
description calendar cs Popis
disabled admin cs Zak<61>zan<61>
display admin cs Zobraz
done common cs Hotovo
download filemanager cs Download (nahr<68>n<EFBFBD> na klienta)
do_delete filemanager cs Smazat
duration calendar cs Trv<72>n<EFBFBD>
e-mail addressbook cs E-Mail
e-mail common cs E-Mail
edit common cs Upravit
edit filemanager cs Upravit
email common cs E-Mail
email signature preferences cs E-Mail Podpis
enter your new password preferences cs Vlo<6C>te va<76>e heslo
entry has been deleted sucessfully common cs Z<>znam <20>sp<73><70>n<EFBFBD> vymaz<61>n
entry updated sucessfully common cs Z<>znam <20>sp<73><70>n<EFBFBD> upraven
error common cs Chyba
error creating x x directory common cs Chyba p<>i vytv<74><76>en<65> $m1$m2 adres<65><73>e
error deleting x x directory common cs Chyba p<>i maz<61>n<EFBFBD> $m1$m2 adres<65><73>e
error renaming x x directory common cs Chyba p<>i p<>ejmenov<6F>n<EFBFBD> $m1$m2 adres<65><73>e
err_saving_file filemanager cs Chyba p<>i z<>pisu souboru na disk
exit common cs Ukon<6F>it
exit filemanager cs Ukon<6F>it
f calendar cs P<>
fax addressbook cs Fax
february common cs <09>nor
file manager common cs Spr<70>vce soubor<6F>
files filemanager cs Soubory
file_upload filemanager cs Nahr<68>n<EFBFBD> souboru
filter common cs Filtr
first name addressbook cs Jm<4A>no
first name common cs Jm<4A>no
first page common cs prvn<76> str<74>nka
frequency calendar cs Frekvence opakov<6F>n<EFBFBD>
fri calendar cs P<>
friday common cs P<>tek
ftp common cs FTP
full description calendar cs Celkov<6F> popis
generate printer-friendly version calendar cs Generuj verzi pro tisk
global public common cs Ve<56>ejn<6A> pro v<>echny
go! calendar cs Jdi!
group access common cs Skupinov<6F> p<><70>stup
group has been added common cs Skupina byla p<>id<69>na
group has been deleted common cs Skupina byla smaz<61>na
group has been updated common cs Skupina byla upravena
group name admin cs Jm<4A>no skupiny
group public common cs Ve<56>ejn<6A> pro skupiny
groups common cs Skupiny
groupsfile_perm_error filemanager cs K oprav<61> t<>to chyby pot<6F>ebujete spr<70>vn<76> nastavit p<><70>stupov<6F> pr<70>va do adres<65><73>e files/users.<BR> Na *NIXov<6F>ch syst<73>mech pros<6F>m napi<70>te: chmod 770
group_files filemanager cs skupinov<6F> soubory
headline sites admin cs S<>t<EFBFBD> s nov<6F>mi <20>l<EFBFBD>nky
headlines common cs Zpr<70>vy
help common cs N<>pov<6F>da
high common cs Vysok<6F>
home common cs Dom<6F>
home phone addressbook cs Telefon - dom<6F>
human resources common cs Lidsk<73> zdroje
idle admin cs <09>ekaj<61>c<EFBFBD>
inventory common cs Inventory
ip admin cs IP - adresa
it has been more then x days since you changed your password common cs Va<56>e heslo bylo zm<7A>n<EFBFBD>no p<>ed v<>ce ne<6E> $m1 dny
january common cs Leden
july common cs <09>ervenec
june common cs <09>erven
kill admin cs Zru<72>it
language preferences cs Jazyk
last name addressbook cs P<><50>jmen<65>
last name common cs P<><50>jmen<65>
last page common cs posldn<64> str<74>nka
last time read admin cs Posledn<64> p<>e<EFBFBD>teno
last updated todo cs Naposledy upraveno
last x logins admin cs Posledn<64>ch %1 p<>ihl<68><6C>en<65>
list of current users admin cs Seznam sou<6F>asn<73>ch u<>ivatel<65>
listings displayed admin cs Zobrazen<65> seznamy
login common cs P<>ihl<68><6C>en<65>
login time admin cs <09>as p<>ihl<68><6C>en<65>
loginid admin cs U<>ivatelsk<73> jm<6A>no
logout common cs Odhl<68><6C>en<65>
low common cs N<>zk<7A>
m calendar cs P
manager admin cs Spr<70>vce
march common cs B<>ezen
max matchs per page preferences cs Po<50>et z<>znam<61> na str<74>nku
may common cs Kv<4B>ten
medium common cs St<53>edn<64>
message x nntp cs Zpr<70>va %1
minutes calendar cs Minut
minutes between reloads admin cs Minut mezi opkakov<6F>n<EFBFBD>m na<6E>ten<65>
mobile addressbook cs Mobil
mon calendar cs Po
monday common cs Pond<6E>l<EFBFBD>
monitor nntp cs Sledov<6F>n<EFBFBD>
monitor newsgroups preferences cs Sleduj Newsgroups
month calendar cs M<>s<EFBFBD>c
monthly (by date) calendar cs M<>s<EFBFBD><73>n<EFBFBD> (podle data)
monthly (by day) calendar cs M<>s<EFBFBD><73>n<EFBFBD> (podle dne)
name common cs Jm<4A>no
network news admin cs S<><53>ov<6F> novinky
new entry calendar cs Nov<6F> z<>znam
new entry added sucessfully common cs Nov<6F> z<>znam <20>sp<73><70>n<EFBFBD> p<>id<69>n
new group name admin cs Nov<6F> jm<6A>no skupiny
new password [ leave blank for no change ] admin cs Nov<6F> heslo [ Pokud je nechcete m<>nit, ponechte pr<70>zdn<64> ]
news file admin cs Soubor zpr<70>v (news)
news headlines common cs News - titulky
news reader common cs News - <20>ten<65>
news type admin cs Druh zpr<70>v
newsgroups nntp cs Newsgroups
next nntp cs Dal<61><6C>
next page common cs dal<61><6C> str<74>nka
nntp common cs NNTP
no common cs Ne
no matches found. calendar cs <09><>dn<64> z<>znam nenalezen.
none common cs <09><>dn<64>
normal common cs Norm<72>ln<6C>
note: this feature does *not* change your email password. this will need to be done manually. preferences cs Pozn<7A>mka: T<>mto *nezm<7A>n<EFBFBD>te* va<76>e heslo pro E-mail. To je t<>eba ud<75>lat ru<72>n<EFBFBD>
notes addressbook cs Pozn<7A>mky
november common cs Listopad
no_file_name filemanager cs Nebylo ur<75>eno jm<6A>no souboru
october common cs <09><>jen
ok common cs OK
on *nix systems please type: x common cs Na *NIX syst<73>mech pros<6F>m napi<70>te: %1
only yours common cs jenom va<76>e
other number addressbook cs Telefon - ostatn<74>
pager addressbook cs Pager
participants calendar cs Spoluzodpov<6F>dn<64>
password login cs Heslo
password common cs Heslo
password has been updated common cs Heslo bylo zm<7A>n<EFBFBD>no
percent of users that logged out admin cs Procento u<>ivatel<65>, kte<74><65> se odhl<68>sili
permissions admin cs Povolen<65>
permissions to the files/users directory common cs pr<70>va k adres<65><73>i pro soubory / u<>ivatele
please x by hand common cs Pros<6F>m %1 ru<72>n<EFBFBD>
please, select a new theme preferences cs Pros<6F>m vyberte nov<6F> barevn<76> t<>ma
powered by phpgroupware version x common cs Aplikace <a href=http://www.phpgroupware.org>phpGroupWare</a> verze $m1
preferences common cs Nastaven<65>
previous page common cs P<>edchoz<6F> str<74>nka
printer friendly calendar cs Pro tisk
priority common cs Priorita
private common cs Soukrom<6F>
private_files filemanager cs Soukrom<6F> soubory
re-enter password admin cs Opakuj heslo
re-enter your password preferences cs Opakujte va<76>e heslo
rename common cs P<>ejmenovat
rename filemanager cs P<>ejmenovat
rename_to filemanager cs P<>ejmenuj na
repeat day calendar cs Den pro opakov<6F>n<EFBFBD>
repeat end date calendar cs Datum konce opakov<6F>n<EFBFBD>
repeat type calendar cs Druh opakov<6F>n<EFBFBD>
repetition calendar cs Opakov<6F>n<EFBFBD>
sa calendar cs So
sat calendar cs So
saturday common cs Sobota
save common cs Ulo<6C>it
save filemanager cs Ulo<6C>it
search common cs Hledat
search results calendar cs V<>sledky hled<65>n<EFBFBD>
select different theme preferences cs Zm<5A>nit barevn<76> t<>ma
select headline news sites preferences cs Vyberte s<>t<EFBFBD> pro titulky
select users for inclusion admin cs Vyberte u<>ivatele, kte<74><65> budou p<>id<69>ni
september common cs Z<><5A><EFBFBD>
session has been killed common cs Relace byla zru<72>ena
show all common cs Uk<55>zat v<>e
show all groups nntp cs Uka<6B> v<>echny skupiny
show birthday reminders on main screen preferences cs Uk<55>zat p<>ipomenut<75> narozenin na hlavn<76> obrazovce
show current users on navigation bar preferences cs Uk<55>zat po<70>et sou<6F>asn<73>ch u<>ivatel<65> na naviga<67>n<EFBFBD>m <20><>dku
show groups containing nntp cs Uka<6B> skupiny obsahuj<75>c<EFBFBD>
show high priority events on main screen preferences cs Uk<55>zat ud<75>losti s vysokou prioritou na hlavn<76> obrazovce
show new messages on main screen preferences cs Uk<55>zat nov<6F> zpr<70>vy na hlavn<76> obrazovce
show text on navigation icons preferences cs Uk<55>zat text na naviga<67>n<EFBFBD>ch ikon<6F>ch
showing x common cs zobrazeno $m1
showing x - x of x common cs zobrazeno %1 - %2 z %3
site admin cs S<><53>
sorry, the follow users are still a member of the group x admin cs Je mi l<>to, tito u<>ivatel<65> jsou st<73>le <20>leny skupiny $m1
sorry, there was a problem processing your request. common cs Promi<6D>te, nastala chyba p<>i zpracov<6F>n<EFBFBD> va<76>eho po<70>adavku.
sorry, your login has expired login cs Promi<6D>te, platnost va<76>eho p<>ihl<68><6C>en<65> ji<6A> vypr<70>ela
specify_file_name filemanager cs Mus<75>te pojmenovat soubor, kter<65> chcete vytvo<76>it
state addressbook cs St<53>t
status todo cs Stav
street addressbook cs Ulice
subject nntp cs P<>edm<64>t
submit common cs Potvrdit
sun calendar cs Ne
sunday common cs Ned<65>la
that loginid has already been taken admin cs Toto u<>ivatelsk<73> jm<6A>no ji<6A> bylo pou<6F>ito
that site has already been entered admin cs Tato s<><73> ji<6A> byla zad<61>na
the following conflicts with the suggested time:<ul>x</ul> calendar cs N<>sleduj<75> kolize se zadan<61>m <20>asem:<ul>$m1</ul>
the login and password can not be the same admin cs Heslo a u<>ivatelsk<73> jm<6A>no nem<65><6D>e b<>t stejn<6A>
the two passwords are not the same admin cs Zadan<61> hesla nejsou stejn<6A>
the two passwords are not the same preferences cs Hesla nejsou shodn<64>
they must be removed before you can continue admin cs Mus<75> b<>t odebr<62>ni ne<6E> budete moci pokra<72>ovat
this month calendar cs Tento m<>s<EFBFBD>c
this server is located in the x timezone preferences cs Tento server je v %1 <20>asov<6F> z<>n<EFBFBD>
this week calendar cs Tento t<>den
threads nntp cs Vl<56>kna
thu calendar cs <09>t
thursday common cs <09>tvrtek
time common cs <09>as
time format preferences cs Form<72>t <20>asu
time zone offset preferences cs <09>asov<6F> z<>na (rozd<7A>l)
to correct this error for the future you will need to properly set the common cs $c = "Aby se chyba neobjevovala v budoucnosti mus<75>te pr<70>vn<76> nastavit"
today calendar cs Dnes
today is x's birthday! common cs Dnes m<> narozeniny %1!
todo todo cs <09>koly
todo list common cs <09>koly
todo list todo cs <09>koly
todo list - add todo cs <09>koly - p<>idej
todo list - edit todo cs <09>koly - uprav
tomorrow is x's birthday. common cs Z<>tra m<> narozeniny %1.
total common cs Celkem
total records admin cs Celkem z<>znam<61>
trouble ticket system common cs Sledov<6F>n<EFBFBD> probl<62>m<EFBFBD>
tue calendar cs <09>t
tuesday common cs <09>ter<65>
update nntp cs Obnovit
updated common cs Upraven
upload filemanager cs Upload (ullo<6C>en<65> na server)
urgency todo cs Nal<61>havost
use cookies login cs pou<6F><75>vat su<73>enky (cookies)
use end date calendar cs Datum konce pou<6F>it<69>
user accounts admin cs U<>ivatelsk<73> <20><>ty
user groups admin cs U<>ivatelsk<73> skupiny
username login cs U<>ivatelsk<73> jm<6A>no
users common cs u<>ivatel<65>
usersfile_perm_error filemanager cs To correct this error you will need to properly set the permissions to the files/users directory.<BR> On *nix systems please type: chmod 770
view common cs Prohl<68>dnout
view access log admin cs Uka<6B> z<>znam p<><70>stup<75>
view sessions admin cs Uka<6B> relace
view this entry calendar cs Uka<6B> tento z<>znam
w calendar cs S
wed calendar cs St
wednesday common cs St<53>eda
week calendar cs T<>den
weekday starts on preferences cs T<>den za<7A><61>n<EFBFBD> v
weekly calendar cs T<>dn<64>
which groups common cs kter<65> skupiny
which groups todo cs Kter<65> skupiny
work day ends on preferences cs Pracovn<76> dny kon<6F><6E> v
work day starts on preferences cs Pracovn<76> dny za<7A><61>naj<61> v
work phone addressbook cs Telefon - pr<70>ce
x matches found calendar cs $m1 z<>znam<61> nalezeno
year calendar cs Rok
yearly calendar cs Ro<52>n<EFBFBD>
yes common cs Ano
you have 1 high priority event on your calendar today. common cs M<>te dnes 1 ud<75>lost s vysokou prioritou.
you have 1 new message! common cs M<>te 1 novou zpr<70>vu!
you have been successfully logged out login cs Va<56>e odhl<68><6C>en<65> porb<72>hlo <20>sp<73><70>n<EFBFBD>
you have entered an invailed date todo cs vlo<6C>ili jste nespr<70>vn<76> datum
you have not entered a\nbrief description calendar cs Nebyl zad<61>n \nkr<6B>tk<74> popis
you have not entered a\nvalid time of day. calendar cs Nebyl zad<61>n \nplatn<74> <20>as.
you have x high priority events on your calendar today. common cs M<>te dnes $m1 ud<75>lost<73> s vysokou priritou.
you have x new messages! common cs M<>te $m1 nov<6F>ch zpr<70>v!
you must enter a base url admin cs Mus<75>te zadat z<>kladn<64> URL adresu
you must enter a display admin cs Mus<75>te zadat obrazovku
you must enter a news url admin cs Mus<75>te zadat URL adresu news
you must enter a password admin cs Mus<75>te zadat heslo
you must enter a password preferences cs Mus<75>te vlo<6C>it heslo
you must enter one or more search keywords calendar cs Mus<75>te zadat aspo<70> jedno kl<6B><6C>ov<6F> slovo
you must enter the number of listings display admin cs Mus<75>te zadat po<70>et zobrazen<65>ch z<>znam<61>
you must enter the number of minutes between reload admin cs Mus<75>te zadat po<70>et minut mezi opakov<6F>n<EFBFBD>m na<6E>ten<65>
you must select a file type admin cs Mus<75>te vybrat druh souboru
your current theme is: x preferences cs Va<56>e barevn<76> t<>ma je: <b>%1</b>
your message has been sent common cs Va<56>e zpr<70>va byla odesl<73>na
your search returned 1 match common cs byl nalezen 1 z<>znam
your search returned x matchs common cs bylo nalezeno %1 z<>znam<61>
your settings have been updated common cs Va<56>e nastaven<65> bylo upraveno
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar cs V<><56> navrhovan<61> <20>as <B> %1 - %2 </B> se p<>ekr<6B>v<EFBFBD> s n<>sleduj<75>c<EFBFBD>mi z<>znamy v kalend<6E><64>i:
zip code addressbook cs PS<50>

View File

@ -1,680 +0,0 @@
(for weekly) calendar da (for ugentlig)
1 match found calendar da 1 resultat er fundet
1 message has been deleted email da 1 besked er slettet
a calendar da a
access common da Adgang
access type common da Adgangstype
access type todo da Adgangstype
Account projects da Konto
account active admin da Kontoen aktiv
account has been created common da Konto er oprettet
account has been deleted common da Konto er slettet
account has been updated common da Konto er opdateret
account preferences common da Konto preferencer
active admin da aktiv
Active projects da Aktiv
Activities list projects da Aktivitets liste
Activity projects da Aktivitet
Activity ID projects da Aktivitets ID
actor mediadb da Akt<6B>r
add common da Tilf<6C>j
add a single phrase transy da Tilf<6C>j en enkelt s<>tning
Add Activity projects da Tilf<6C>j aktivitet
Add hours projects da Tilf<6C>j timer
add new account admin da Tilf<6C>j ny konto
add new application admin da Tilf<6C>j ny applikation
add new phrase transy da Tilf<6C>j ny s<>tning
add new ticket tts da Tilf<6C>j ny billet
Add project projects da Tilf<6C>j projekt
Add project hours projects da Tilf<6C>j projekt timer
add ticket tts da Tilf<6C>j billet
add to addressbook email da F<>j til adressebog
additional notes tts da Yderligere noter
address book common da Adressebog
address book addressbook da Adressebog
Address book projects da Adressebog
address book - view addressbook da Adressebog - kig
addressbook common da Adressebog
addressbook preferences common da Adressebog preferencer
addsub todo da Tilf<6C>j under
admin common da Admin
Admin projects da Admin
administration common da Administration
all transy da Alle
all mediadb da Alle
All delivery notes projects da Alle leverings noter
All deliverys projects da Alle leveringer
All done hours projects da Alle brugte timer
All invoices projects da Alle fakturaer
All open hours projects da Alle <20>bne timer
all records and account information will be lost! admin da Alle records og brugerinformationer vil blive tabt!
anonymous user admin da Annonym bruger
any transy da Alle
application transy da Applikation
application name admin da Applikations navn
application title admin da Applikations titel
applications admin da Applikationer
april common da April
Archiv projects da Arkiv
archives mediadb da Arkiver
are you sure you want to delete this account ? admin da Vil Du virkelig slette denne bruger?
are you sure you want to delete this application ? admin da Vil Du virkelig slette denne applikation?
are you sure you want to delete this entry todo da vil Du virkelig slette dette felt
Are you sure you want to delete this entry projects da Vil Du virkelig slette dette felt
are you sure you want to delete this entry ? common da Vil Du virkelig slette dette felt?
are you sure you want to delete this group ? admin da Vil Du virkelig slette denne gruppe?
are you sure you want to delete this news site ? admin da Vil Du virkelig slette denne nyhedsside?
are you sure you want to kill this session ? admin da Vil Du virkelig slette denne session?
are you sure\nyou want to\ndelete this entry ? calendar da Vil Du virkelig\n slette dette\nfelt
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar da Vil Du virkelig\n slette dette\nfelt ?\n\nDette vil slette\nfeltet for alle brugere.
artist mediadb da Kunstner
assign to tts da Anvis til
assigned from tts da Anvist fra
assigned to tts da Anvist til
august common da August
author nntp da Forfatter
author mediadb da Forfatter
avail mediadb da Tilg<6C>ngelig
available groups nntp da Tilg<6C>ngelige grupper
bad login or password login da Forkert brugernavn eller password
base url admin da Base-url
Bill per workunit projects da Tarif pr arbejdsenhed
Billable activities projects da Fakturerbare aktiviteter
Billed projects da Fakturerede projekter
Billed only projects da Kun faktureret
birthday addressbook da F<>dselsdag
book marks common da Bogm<67>rke
Bookable activities projects da Noterbare aktiviteter
bookmarks common da Bogm<67>rke
books mediadb da B<>ger
borrowed mediadb da L<>nt
borrower mediadb da L<>ner
brief description calendar da Kort beskrivelse
Budget projects da Budget
Calculate projects da Beregn
calendar common da Kalender
calendar - add calendar da Kalender - tilf<6C>j
calendar - edit calendar da Kalender - redig<69>r
calendar preferences common da Kalender preferencer
cancel common da Annull<6C>r
cancel filemanager da Annull<6C>r
cc email da CC
center weather da Centrum
change common da <09>ndre
change your password preferences da Skift Dit password
change your profile preferences da Redig<69>r Din profil
change your settings preferences da Redig<69>r Dine indstillinger
charset common da ISO-8859-1
chat common da Chat
city addressbook da By
city weather da By
clear common da Slet
clear form common da Slet formular
clear form todo da Slet formular
clear form tts da Slet formular
clipboard_contents filemanager da Indhold af udklipsholder
close tts da Luk
close date tts da Luk dato
closed tts da Lukket
comment mediadb da Bem<65>rkning
comments common da Bem<65>rkninger
Company projects da Firma
company name addressbook da Firma navn
completed todo da udf<64>rt
compose email da Skriv ny e-mail
Coordinator projects da Koordinator
copy common da Kopi<70>r
copy filemanager da Kopi<70>r
Copy template projects da Kopi<70>r skabelon
copy_as filemanager da Kopi<70>r som
country weather da Land
create common da Opret
create filemanager da Opret
Create delivery projects da Opret leverance
create group admin da Opret gruppe
Create invoice projects da Opret faktura
create lang.sql file transy da Lav en lang.sql fil
create new language set transy da Opret et nyt sprog s<>t
created by common da Lavet af
created by todo da Lavet af
current users common da Nuv<75>rende antal brugere
current_file filemanager da Nuv<75>rende fil
Customer projects da Kunde
daily calendar da Daglig
date common da Dato
date email da Dato
date nntp da Dato
Date projects da Dato
date due todo da Forfalden dato
Date due projects da Forfalden dato
date format preferences da Dato format
date hired common da Dato hyret
date opened tts da Dato <20>bnet
days datedue todo da Dage til forfalden
days repeated calendar da Gentagne dage
december common da December
default application preferences da Standard applikation
default sorting order email da Standard sorteringsr<73>kkef<65>lge
delete common da Slet
delete email da Slet
delete filemanager da Slet
Delete hours projects da Slet timer
Delivery projects da Levering
Delivery date projects da Leveringsdato
Delivery ID projects da Leveringsnummer
Delivery list projects da Leveringsliste
Delivery note projects da Leveringsnota
deny mediadb da Afvis
description calendar da Beskrivelse
Description projects da Beskrivelse
detail tts da Detalje
details tts da Detaljer
developer mediadb da Udvikler
disabled admin da Inaktiveret
display admin da Visning
display missing phrases in lang set transy da Vis manglende s<>tninger i sprog s<>t
do_delete filemanager da Slet nu
done common da Udf<64>rt
Done projects da Udf<64>rt
download filemanager da Download
due date mediadb da Forfalden dato
duration calendar da Varighed
e-mail common da E-mail
e-mail addressbook da E-mail
e-mail preferences common da E-mail preferencer
edit common da Redig<69>r
edit filemanager da Redig<69>r
Edit projects da Redig<69>r
Edit Activity projects da Redig<69>r aktivitet
edit application admin da Redig<69>r applikation
edit group admin da Redig<69>r gruppe
Edit hours projects da Rediger timer
Edit project projects da Redig<69>r projekt
Edit project hours projects da Redig<69>r projekt timer
email email da E-mail
email common da E-mail
email account name email da E-mail brugernavn
email address email da E-mail adresse
email password email da E-mail password
email signature email da E-mail underskrift
Employee projects da Medarbejder
enabled admin da Aktiveret
enabled weather da Aktiveret
enabled - hidden from navbar admin da Aktiveret - skjult fra navigationsbj<62>lken
End date projects da Slut dato
enter your new password preferences da Skriv Dit nye password
Entry date projects da Emne dato
entry has been deleted sucessfully common da Emnet er succesrigt slettet
entry updated sucessfully common da Emnet er succesrigt opdateret
err_saving_file filemanager da Fejl ved skrivning af fil
error common da Fejl
error creating x x directory common da Fejl ved oprettelse af %1%2mappe
error deleting x x directory common da Fejl ved sletning af %1%2mappe
error renaming x x directory common da Fejl ved omd<6D>bning af %1%2mappe
exit common da Afslut
exit filemanager da Afslut
fax addressbook da Fax
february common da Februar
file manager common da Filh<6C>ndtering
file_upload filemanager da Send fil
files email da Filer
files filemanager da Filer
filter common da Filter
first name common da Fornavn
first name addressbook da Fornavn
first page common da F<>rste side
Firstname projects da Fornavn
folder email da Mappe
forecast weather da Vejrudsigyt
forecasts weather da Vejrudsigter
forum common da Forum
forward email da Videresend e-mail
fr calendar da Fr
free/busy calendar da Fri/optaget
frequency calendar da Frekvens
fri calendar da Fre
friday common da Fredag
from email da Fra
ftp common da FTP
full description calendar da Fuld beskrivelse
fzone weather da FZone
games mediadb da Spil
generate new lang.sql file transy da Lav en ny lang.sql fil
generate printer-friendly version calendar da Lav en printer venlig version
genre mediadb da Genre
global weather da Global
global public common da Global adgang
go! calendar da Udf<64>r!
group tts da Gruppe
group access common da Gruppeadgang
group has been added common da Gruppe er tilf<6C>jet
group has been deleted common da Gruppe er slettet
group has been updated common da Gruppe er opdateret
group name admin da Gruppenavn
group public common da Adgang til gruppe
group_files filemanager da Gruppefiler
groups common da Grupper
groupsfile_perm_error filemanager da For at rette denne fejl m<> Du ops<70>tte rettighederne til fil/gruppe mapperne.<br>P<> *nix systemer taster Du: chmod 770
headline sites admin da Overskrift sites
headlines common da Overskrifter
help common da Hj<48>lp
high common da H<>j
home common da Hjem
home phone addressbook da Hjemme telefon
honor mediadb da Tilkende
Hours projects da Timer
human resources common da Personel
i participate calendar da Jeg deltager
id mediadb da ID
id weather da ID
idle admin da Inaktiv
if applicable email da Hvis passende
ignore conflict calendar da Ignor<6F>r konflikt
image email da Billede
imap server type email da IMAP server type
imdb mediadb da IMDB
import lang set transy da Indl<64>s sprogs<67>t
in progress tts da Under udf<64>rsel
installed applications admin da Installerede applikationer
inventory common da Lager
Invoice projects da Faktura
Invoice date projects da Faktura dato
Invoice ID projects da Faktura nummer
Invoice list projects da Faktura oversigt
ip admin da IP
it has been more then x days since you changed your password common da Det er mere end %1 dage siden Du sidst <20>ndrede Dit password
january common da Januar
july common da Juli
june common da Juni
kill admin da Fjern
language preferences da Sprog
last name common da Efternavn
last name addressbook da Efternavn
last page common da Sidste side
last time read admin da Sidst l<>st
last updated todo da Sidst opdateret
last x logins admin da Sidste %1 log ind
Lastname projects da Efternavn
line 2 addressbook da Linie 2
links weather da Links
list mediadb da Liste
List hours projects da Timeoversigt
list of current users admin da Liste over nuv<75>rende brugere
List project hours projects da Projekt time oversigt
listings displayed admin da Viste lister
loaned mediadb da Udl<64>nt
location common da Lokation
login common da Tilmeld
login login da Tilmeld
login time admin da Log ind tid
loginid admin da Login ID
logout common da Log ud
low common da Lav
mail server email da Post server
mail server type email da Post server type
mainscreen_message mainscreen da Forside
manager admin da Manager
march common da Marts
max matchs per page preferences da Maksimale antal resultater pr. side
may common da Maj
media mediadb da Medie
media database mediadb da Medie kartotek
medium common da Medium
message email da Besked
message transy da Besked
message x nntp da Besked %1
messages email da Beskeder
metar weather da Metar
minutes calendar da Minutter
minutes between reloads admin da Minutter mellem opdateringer
Minutes per workunit projects da Minutter per arbejdsenhed
mo calendar da Ma
mobile addressbook da Mobil
mobile common da Mobil
mon calendar da Man
monday common da Mandag
monitor email da Monitor
monitor nntp da Monitor
monitor newsgroups preferences da Monitor nye grupper
month calendar da M<>ned
monthly (by date) calendar da M<>nedlig (pr. dato)
monthly (by day) calendar da M<>nedlig (pr. dag)
move selected messages into email da Flyt valgte beskeder ind i
movies mediadb da Film
music mediadb da Musik
n mediadb da N
name common da Navn
Netto projects da Netto
network news admin da Netv<74>rk nyheder
new mediadb da Ny
new entry calendar da Nyt punkt
new entry added sucessfully common da Nyt punkt succesrigt tilf<6C>jet
new group name admin da Nyt gruppe navn
new message email da Ny besked
new password [ leave blank for no change ] admin da Nyt password [efterlad tom for ikke at <20>ndre]
new phrase has been added common da Ny s<>tning er tilf<6C>jet
new phrase has been added transy da Ny s<>tning er tilf<6C>jet
New project projects da Nyt projekt
new ticket tts da Ny billet
new_file filemanager da Ny fil
news file admin da Nyheds fil
news headlines common da Nyheds overskrifter
news reader common da Nyheds l<>ser
news type admin da Nyheds type
newsgroups nntp da Nyhedsgruppe
next email da N<>ste
next nntp da N<>ste
next page common da N<>ste side
nntp common da NNTP
no common da Nej
no filemanager da Nej
No customer selected projects da Ingen kunde er valgt
no matches found. calendar da Ingen resultater fundet
no subject email da Intet emne
no subject tts da Intet emne
no tickets found tts da Ingen billetter fundet
no_file_name filemanager da Intet filnavn er angivet
non-standard email da Ikke-standard
Nonactive projects da Inaktiv
none common da Ingen
normal common da Normal
not applicable weather da Ikke passende
note: this feature does *not* change your email password. this will need to be done manually. preferences da Bem<65>rk: Denne feature vil *ikke* <20>ndre Dit e-mail password. Dette skal g<>res manuelt.
notes addressbook da Noter
november common da November
Number projects da Nummer
observations weather da Observationer
october common da Oktober
ok common da OK
ok tts da OK
on *nix systems please type: x common da P<> *nix systemer skriver Du: %1
only yours common da Kun Din
Open projects da <09>ben
open date tts da Dato <20>ben
opened by tts da <09>bnet af
original transy da Original
other number addressbook da Andet nummer
others mediadb da Andre
Overall projects da Total
own mediadb da Egen
owner mediadb da Ejer
pager addressbook da Pager
pager common da Pager
participants calendar da Deltagere
password common da Password
password login da Password
password has been updated common da Password er opdateret
pend mediadb da Afvent
percent of users that logged out admin da Procent af brugere som er logget ud
permissions admin da Rettigheder
permissions this group has admin da Denne gruppes rettigheder
permissions to the files/users directory common da Rettigheder for fil/bruger mappen
phrase in english transy da S<>tning p<> engelsk
phrase in new language transy da S<>tning i det nye sprog
phone common da Telefon
phpgroupware login login da phpGroupWare log ind
please select a message first email da V<>lg venligst en s<>tning f<>rst
Please select currency,tax and your address in preferences! projects da V<>lg valuta, skat og Din adresse i preferencerne
Please select your address in preferences! projects da V<>lg Din adresse i preferencerne
please x by hand common da Udf<64>r venligst %1 manuelt
please, select a new theme preferences da V<>lg et nyt emne
Position projects da Position
powered by phpgroupware version x common da Denne site k<>rer p<> <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
powered by phpgroupware version x all da Denne site k<>rer p<> <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
preferences common da Preferencer
previous email da Forrige
previous page common da Forrige side
print common da Udskriv
Print delivery projects da Udskrifts levering
Print invoice projects da Udskriv faktura
printer friendly calendar da Udskriftsvenlig
prio tts da Prio
priority common da Prioritet
priority tts da Prioritet
private common da Privat
private_files filemanager da Personlige filer
Project projects da Projekt
Project billing projects da Projekt fakturering
Project delivery projects da Projekt levering
project description todo da Projekt beskrivelse
Project hours projects da Projekt timer
Project ID projects da Projekt ID
Project list projects da Projekt liste
Project name projects da Projekt navn
Project preferences projects da Projekt preferencer
Project preferences preferences da Projekt preferencer
Project statistic projects da Projekt statistik
Project statistics projects da Projekt statistikker
Projects common da Projekter
Projects admin da Projekter
Projects projects da Projekter
rated mediadb da Vurderet
re-edit event calendar da Redig<69>r igen
re-enter password admin da Indtast password igen
re-enter your password preferences da Indtast Dit password igen
recent weather da Nylig
record access addressbook da Posterings adgang
record owner addressbook da Posterings ejer
region weather da Region
regions weather da Regioner
Remark projects da Bem<65>rkning
Remark required projects da Bem<65>rkning er kr<6B>vet
remove all users from this group admin da Fjern alle brugere fra denne gruppe
rename common da Omd<6D>b
rename filemanager da Omd<6D>b
rename_to filemanager da Omd<6D>b til
reopen tts da <09>ben igen
repeat day calendar da Gentag dag
repeat end date calendar da Gentagelse slut dato
repeat type calendar da Gentagelsestype
repetition calendar da Gentagelse
reply email da Svar
reply all email da Svar alle
requests mediadb da Foresp<73>rgsel
Return to projects projects da Tilbage til projekter
sa calendar da L<>
sat calendar da L<>r
saturday common da L<>rdag
save common da Gem
save filemanager da Gem
scoring mediadb da Score
search common da S<>g
Search projects da S<>g
search results calendar da S<>geresultater
section email da Sektion
Select projects da V<>lg
select application transy da V<>lg applikation
Select customer projects da V<>lg kunde
select different theme preferences da V<>lg et andet tema
select headline news sites preferences da V<>lg nyheds overskrifter
select language to generate for transy da V<>lg sprog at generere overs<72>ttelse for
select permissions this group will have admin da V<>lg de rettigheder, denne gruppe f<>r
Select tax for work hours projects da V<>lg afgift for arbejdstimer
select users for inclusion admin da V<>lg brugere som tilf<6C>jes
select which application for this phrase transy da V<>lg applikation for denne s<>tning
select which language for this phrase transy da V<>lg sprog for denne s<>tning
Select your address projects da V<>lg Din adresse
send email da Send
send deleted messages to the trash email da L<>g slettede beskeder i skraldespanden
september common da September
session has been killed common da Sessionen er afsluttet
show all common da Vis alt
show all groups nntp da Vis alle grupper
show birthday reminders on main screen addressbook da P<>mind om f<>dselsdage p<> forsiden
show current users on navigation bar preferences da Vis nuv<75>rende brugere p<> navigationsbj<62>lken
show groups containing nntp da Vis grupper med
show high priority events on main screen calendar da Vis begivenheder med h<>j prioritet p<> forsiden
show new messages on main screen email da Vis nye beskeder p<> forsiden
show text on navigation icons preferences da Vis tekst p<> navigationsbj<62>lkens ikoner
showing x common da Viser: %1
showing x - x of x common da Viser: %1 - %2 ud af %3
site admin da Site
size email da St<53>rrelse
sorry, that group name has already been taking. admin da Dette gruppenavn bliver desv<73>rre allerede brugt.
sorry, the follow users are still a member of the group x admin da Kan ikke, f<>lgende brugere er stadig medlemmer af gruppe %1
sorry, there was a problem processing your request. common da Desv<73>rre opstod der et problem med at behandle Dit <20>nske.
sorry, your login has expired login da Desv<73>rre, Din session er udl<64>bet
source language transy da Fra sprog
specify_file_name filemanager da Du m<> angive et navn for den fil Du vil oprette
Start date projects da Start dato
state addressbook da Land
state weather da Provins
station weather da Station
stations weather da Stationer
Statistic projects da Statistik
stats mediadb da Statistikker
status todo da Status
status admin da Status
status mediadb da Status
Status projects da Status
status common da Status
status/date closed tts da Status/Dato lukket
street addressbook da Vejnavn
su calendar da S<>
subject email da Emne
subject nntp da Emne
subject tts da Emne
submit common da Send
Submit projects da Send
submit changes admin da Post<73>r <20>ndringer
Sum projects da Sum
sun calendar da S<>n
sunday common da S<>ndag
switch current folder to email da G<> til mappe
tables weather da Tabeller
target language transy da Destinations sprog
tax projects da Moms
Template projects da Skabelon
th calendar da To
that loginid has already been taken admin da Dette log ind ID er allerede brugt
that site has already been entered admin da Den site er allerede valgt
the following conflicts with the suggested time:<ul>x</ul> calendar da Det f<>lgende er i konflikt med den <20>nskede tid:<ul>%1</ul>
the login and password can not be the same admin da Log ind navn og password m<> ikke v<>re ens
the two passwords are not the same admin da De to passwords stemmer ikke overens
the two passwords are not the same preferences da De to passwords stemmer ikke overens
There are no entries projects da Der er ingen poster
they must be removed before you can continue admin da De skal fjernes f<>r Du kan forts<74>tte
this folder is empty email da Denne mappe er tom
this month calendar da Denne m<>ned
this server is located in the x timezone preferences da Denne server er placeret i tidszone %1
this week calendar da Denne uge
threads nntp da Diskussioner
thu calendar da Tor
thursday common da Torsdag
ticket tts da Melding
Ticket assigned to x tts da Melding tilegnet til %1
time common da Tid
Time projects da Tid
time format preferences da Tidsformat
time tracking common da Tidsregistrering
time zone offset preferences da Tidszone forskel
title admin da Titel
title addressbook da Titel
title mediadb da Titel
Title projects da Titel
to email da Til
to correct this error for the future you will need to properly set the common da For at rette denne fejl for fremtiden skal Du korrekt ops<70>tte
today calendar da I dag
today is x's birthday! common da I dag er det %1's f<>dselsdag!
todo todo da At g<>re
todo list common da At-g<>re liste
todo list todo da At-g<>re liste
todo list - add todo da At-g<>re liste - tilf<6C>j
todo list - edit todo da At-g<>re liste - redig<69>r
tomorrow is x's birthday. common da I morgen er det %1's f<>dselsdag.
total common da Total
total records admin da Antal posteringer
translation transy da Overs<72>ttelse
translation management common da H<>ndtering af overs<72>ttelser
trouble ticket system common da Problem registrerings system
trouble ticket system tts da Problem registrerings system
tu calendar da Ti
tue calendar da Tir
tuesday common da Tirsdag
undisclosed recipients email da Ubekendte modtagere
undisclosed sender email da Ubekendt afsender
update nntp da Opdat<61>r
Update projects da Opdat<61>r
update tts da Opdat<61>r
Update project projects da Opdat<61>r projekt
updated common da Opdat<61>ret
upload filemanager da Send
urgency todo da Prioritet
url addressbook da URL
use cookies login da Brug cookies
use custom settings email da Anvend personlige indstillinger
use end date calendar da Brug slutdato
user accounts admin da Bruger konti
user groups admin da Brugergrupper
user profiles admin da Bruger profiler
User statistic projects da Bruger statistik
User statistics projects da Bruger statistikker
username login da Brugernavn
Username projects da Brugernavn
users common da Brugere
usersfile_perm_error filemanager da For at rette denne fejl skal adgangsindstillingerne for fil/bruger mapperne s<>ttes korrekt.<BR>P<> *nix systemer taster Du: chmod 770
vacation hours per year common da Antal ferie timer om <20>ret
vacation hours used common da Anvendte ferie timer
view common da Se
view access log admin da Se adgangs log
view all tickets tts da Se alle meldinger
view job detail tts da Se opgave detaljer
view only open tickets tts da Se alle <20>benst<73>ende meldinger
view sessions admin da Se sessioner
view this entry calendar da Se denne aftale
view/edit/delete all phrases transy da Se/rediger/slet alle s<>tninger
we calendar da On
weather weather da Vejr
wed calendar da Ons
wednesday common da Onsdag
week calendar da Uge
weekday starts on calendar da Ugedage starter med
weekly calendar da Ugentlig kalender
which groups common da Hvilke grupper
which groups todo da Hvilke grupper
withdraw mediadb da Tr<54>k tilbage
work day ends on calendar da Arbejdsdage slutter om
work day starts on calendar da Arbejdsdage begynder om
work phone addressbook da Arbejds telefon
Workunit projects da Arbejdsenhed
Workunits projects da Arbejdsenheder
x matches found calendar da %1 resultater fundet
x messages have been deleted email da %1 beskeder er slettet
y mediadb da J
year calendar da <09>r
year mediadb da <09>r
yearly calendar da <09>rlig
yes common da Ja
yes filemanager da Ja
you are required to change your password during your first login common da Du skal <20>ndre Dit password ved Din f<>rste log ind
you have 1 high priority event on your calendar today. common da Du har 1 begivenhed af h<>j prioritet p<> Din kalender i dag.
you have 1 new message! common da Du har 1 ny besked!
you have been successfully logged out login da Du er nu succesrigt logget ud
you have entered an invailed date todo da Du har angivet en ugyldig dato
you have not entered a\nbrief description calendar da Du har ikke skrevet\nen kort beskrivelse
you have not entered a\nvalid time of day. calendar da Du har ikke skrevet\n et gyldigt klokkesl<73>t
You have selected an invalid activity projects da Du har valgt en ugyldig aktivitet
You have selected an invalid date projects da Du har valgt en ugyldig dato
You have to enter a remark projects da Du skal skrive en bem<65>rkning
you have x high priority events on your calendar today. common da Du har %1 begivenheder af h<>j prioritet p<> Din kalender i dag.
you have x new messages! common da Du har %1 nye beskeder!
you must add at least 1 permission to this account admin da Du skal angive mindst 1 rettighed til denne bruger
you must enter a base url admin da Du skal angive en basis-url
you must enter a display admin da Du skal angive en visning
you must enter a news url admin da Du skal angive en nyheds-url
you must enter a password admin da Du skal angive et password
you must enter a password preferences da Du skal angive et password
you must enter an application name and title. admin da Du skal angive en applikations navn og titel
you must enter one or more search keywords calendar da Du skal indtaste et eller flere s<>geord
you must enter the number of listings display admin da Du m<> angive antallet af linier der skal vises
you must enter the number of minutes between reload admin da Du m<> angive antallet af minutter mellem opdateringer
you must select a file type admin da Du skal v<>lge en filtype
your current theme is: x preferences da Det nuv<75>rende tema er
your message has been sent common da Din besked er afsendt
your search returned 1 match common da S<>gningen leverede 1 resultat
your search returned x matchs common da S<>gningen leverede %1 resultater
your session could not be verified. login da Din session kunne ikke verificeres
your settings have been updated common da Dine indstillinger er opdateret
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar da Den foresl<73>ede tid (<b>%1 - %2</b>) er i konflikt med f<>lgende kalender punkter:
zip code addressbook da Postnummer
zone weather da Zone

View File

@ -1,775 +0,0 @@
(for weekly) calendar de (f<>r w<>chentlich)
1 match found calendar de 1 Treffer gefunden
1 message has been deleted email de 1 Nachricht wurde gel<65>scht
access common de Zugriff
access not permitted common de Zugriff verweigert
access type common de Zugriffstyp
account projects de Konto
account active admin de Konto aktiv
account has been created common de Konto wurde erstellt
account has been deleted common de Konto wurde gel<65>scht
account has been updated common de Konto wurde aktualisiert
account permissions admin de Zugriffsrechte
account preferences common de Einstellungen der Benutzerkonten
acl common de ACL
action admin de Aktion
active common de Aktiv
activities list projects de Liste der Aktivit<69>ten
activity projects de Aktivit<69>t
activity id projects de Aktivit<69>ts-ID
add common de Hinzuf<75>gen
add a note for notes de Notiz hinzuf<75>gen f<>r
add a single phrase transy de Einzelne Phrase hinzuf<75>gen
add activity projects de Aktivit<69>t hinzuf<75>gen
add new account admin de Neues Konto hinzuf<75>gen
add new application admin de Neue Anwendung hinzuf<75>gen
add new phrase transy de Neue <20>bersetzung hinzuf<75>gen
add new ticket tts de Neues Ticket hinzuf<75>gen
add note notes de Notiz hinzuf<75>gen
add project projects de Projekt hinzuf<75>gen
add sub todo de Teilprojekt hinzuf<75>gen
add ticket tts de Ticket hinzuf<75>gen
add to addressbook email de Zum Addressbuch hinzuf<75>gen
additional notes tts de Zus<75>tzliche Anmerkungen
address book common de Adressbuch
address book - view addressbook de Adressbuch - Anzeigen
address line 2 addressbook de Adre<72>zeile 2
address line 3 addressbook de Adre<72>zeile 3
address type addressbook de Adre<72>typ
addressbook common de Adressbuch
addressbook preferences common de Adressbuch Einstellungen
addsub todo de AddSub
addvcard addressbook de VCard hinzuf<75>gen
admin common de Admin
administration common de Administration
after message body squirrelmail de Nach dem Nachrichtentext
all common de alle
all delivery notes projects de Alle Liefernotizen
all invoiced projects de Alle Rechnungen
all records and account information will be lost! admin de Alle Datens<6E>tze und Kontoinformationen sind dann verloren!
allow anonymous access to this app admin de Anonymen Zugriff auf diese Anwendung zulassen
anonymous user admin de Anonymer Benutzer
any transy de alle
application transy de Anwendung
application name admin de Name der Anwendung
application title admin de Titel der Anwendung
applications admin de Anwendungen
april common de April
archive projects de Archiv
are you sure you want to delete this account ? admin de Sind Sie sicher, da<64> Sie dieses Konto l<>schen wollen ?
are you sure you want to delete this application ? admin de Sind Sie sicher, da<64> Sie diese Anwendung l<>schen wollen ?
are you sure you want to delete this entry todo de Sind Sie sicher, da<64> Sie diesen Eintrag l<>schen wollen?
are you sure you want to delete this entry ? common de Sind Sie sicher, da<64> Sie diesen Eintrag l<>schen wollen?
are you sure you want to delete this group ? admin de Sind Sie sicher, da<64> Sie diese Gruppe l<>schen wollen ?
are you sure you want to delete this project ? projects de Soll dieses Projekt wirklich gel<65>scht werden?
are you sure you want to delete this news site ? admin de Sind Sie sicher, diese News Site l<>schen zu wollen ?
are you sure you want to delete this note ? notes de Sind Sie sicher, da<64> Sie diese Notiz l<>schen wollen ?
are you sure you want to kill this session ? admin de Sind Sie sicher, da<64> Sie diese Session killen wollen ?
are you sure\nyou want to\ndelete this entry ? calendar de Sind Sie sicher,\nda<64> Sie diesen\nEintrag l<>schen wollen ?
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar de sind Sie sicher,\nda<64> Sie diesen\nEintrag l<>schen wollen ?\n\nDieser Eintrag wird damit\nf<6E>r alle Benutzer gel<65>scht.
arial notes de Arial
as a subfolder of squirrelmail de als Unterordner von
assign to tts de zuweisen an
assigned from tts de Zugewiesen von
assigned to tts de Zugewiesen an
august common de August
author nntp de Autor
auto generate activity id ? projects de Aktivit<69>ts-ID automatisch generieren?
auto generate delivery id ? projects de Lieferungs-ID automatisch generieren?
auto generate invoice id ? projects de Rechnungs-ID automatisch generieren?
autosave default category addressbook de Standard-Kategorie automatisch speichern
available groups nntp de verf<72>gbare Gruppen
bad login or password login de Bad login or password
base url admin de Basis URL
bbs phone addressbook de BBS
before headers squirrelmail de Vor den Kopfzeilen
between headers and message bodysquirrelmail de Zwischen Kopfzeilen und Nachrichtentext
bill per workunit projects de Betrag pro Arbeitseinheit
billable activities projects de Zu berechnende Aktivit<69>ten
billed only projects de Nur berechnete
billing projects de Rechnungen
birthday addressbook de Geburtstag
book marks common de Bookmarks
bookable activities projects de Buchbare Aktivit<69>ten
bookmark categorys preferences de Lesezeichen Kategorien
bookmark sub-categorys preferences de Lesezeichen Sub-Kategorien
bookmark preferences preferences de Lesezeichen Einstellungen
bookmarks common de Lesezeichen
brief description calendar de Kurzbeschreibung
budget projects de Budget
business addressbook de Gesch<63>ftlich
business city addressbook de gesch<63>ftl. Stadt
business country addressbook de gesch<63>ftl. Staat
business email addressbook de gesch<63>ftl. EMail
business email type addressbook de Typ der gesch<63>ftl. EMail
business fax addressbook de Fax gesch<63>ftl.
business phone addressbook de Tel. gesch<63>ftl.
business state addressbook de gesch<63>ftl. Land
business street addressbook de gesch<63>ftl. Stra<72>e
business zip code addressbook de gesch<63>ftl. PLZ
calculate projects de Berechnen
calendar common de Kalender
calendar - add calendar de Kalendereintrag hinzuf<75>gen
calendar - edit calendar de Kalendereintrag bearbeiten
calendar preferences common de Kalender Einstellungen
call for phonelog de Anruf f<>r
call from phonelog de Anruf von
cancel common de Abbruch
cancel filemanager de Abbrechen
cannot display the requested article from the requested newsgroup nntp de Der gew<65>nschte Artikel kann leider nicht angezeigt werden
car phone addressbook de Autotelefon
category common de Kategorie
categories common de Kategorien
categories for common de Kategorien f<>r
cc email de Kopie
cell phone addressbook de Mobilfunk
change common de <09>ndern
change main screen message admin de Nachricht der Startseite <20>ndern
change your password preferences de Passwort <20>ndern
change your profile preferences de Profil <20>ndern
change your settings preferences de Einstellungen <20>ndern
charset common de iso-8859-1
chat common de Chat
choose a font notes de Schrift ausw<73>hlen
choose the font size notes de Schriftgr<67><72>e ausw<73>hlen
city addressbook de Stadt
clear common de Zur<75>cksetzen
clear form common de Eingaben l<>schen
clipboard_contents filemanager de Clipboard Inhalt
close tts de Schlie<69>en
close date tts de Geschlossen am
color common de Farbe
company common de Firma
company name addressbook de Firma
completed todo de fertig
compose email de Verfassen
contact common de Kontakt
coordinator projects de Koordinator
copy common de Kopieren
copy_as filemanager de Kopieren nach
country addressbook de Land
courier new notes de Courier New
create common de Erstellen
create delivery projects de Lieferung erstellen
create folder squirrelmail de Ordner erstellen
create group admin de Erstelle Gruppe
create invoice projects de Rechnung erstellen
create lang.sql file transy de Erstelle lang.sql Datei (Export)
create new language set transy de Neues Sprachset anlegen
created by common de Erstellt von
currency common de W<>hrung
current users common de Derzeit angemeldete Benutzer
current_file filemanager de Aktuelle Datei
custom fields addressbook de Benutzerdefinierte Felder
customer projects de Kunde
daily calendar de T<>glich
daily matrix view calendar de Matrix-Ansicht des Tages
dark blue common de Dunkelblau
dark cyan common de Dunkelt<6C>rkis
dark gray common de Dunkelgrau
dark green common de Dunkelgr<67>n
dark magenta common de Dunkelrot
dark yellow common de Dunkelgelb
light blue common de Hellblau
light cyan common de Hellt<6C>rkis
light green common de Hellgr<67>n
light magenta common de Hellrot
light yellow common de Hellgelb
date common de Datum
date called phonelog de Datum des Anrufs
date due common de f<>llig am
date format preferences de Datumsformat
date opened tts de Angelegt am
days datedue todo de Tage bis zur F<>lligkeit
days repeated calendar de wiederholte Tage
december common de Dezember
default application preferences de Standard-Anwendung
default calendar filter calendar de Standard-Filter des Kalenders
default calendar view calendar de Standard-Ansicht des Kalenders
default category addressbook de Standard-Kategorie
default sorting order common de Standard-Sortierung
delete common de L<>schen
delete folder squirrelmail de Ordner l<>schen
deliveries projects de Lieferungen
delivery projects de Lieferung
delivery date projects de Lieferdatum
delivery has been created ! projects de Lieferung wurde erstellt!
delivery id projects de Lieferungs-ID
delivery list projects de Lieferliste
delivery note projects de Anmerkungen zur Lieferung
delivery notes projects de Anmerkungen zur Lieferung
department addressbook de Abteilung
description common de Beschreibung
detail tts de Detail
details tts de Details
disabled admin de Deaktiviert
display admin de Bezeichnung
display interval in day view calendar de Anzeigeintervall in der Tagesansicht
display mini calendars when printing calendar de Mini-Kalender in der Druckansicht anzeigen
display missing phrases in lang set transy de Im Sprachset fehlende Phrasen anzeigen
display preferences common de Einstellungen der Anzeige
display note for notes de Display note for
display status of events calendar de Ereignisstatus anzeigen
do_delete filemanager de L<>sche
domestic addressbook de Wohnung
don't use trash squirrelmail de Keinen Papierkorb benutzen
don't use sent squirrelmail de Keinen Ordner f<>r gesendete Objekte
done common de Fertig
down common de runter
download filemanager de Download
duration calendar de Dauer
e-mail common de E-Mail
e-mail preferences common de E-Mail Einstellungen
edit common de Editieren
edit application admin de Anwendung editieren
edit custom fields preferences de Benutzerdefinierte Felder editieren
edit group admin de Gruppe editieren
edit hours projects de Stunden bearbeiten
edit note for notes de Notiz bearbeiten f<>r
edit user account admin de Benutzerkonto editieren
email common de E-Mail
email account name email de Name des E-Mail Kontos
email address email de E-Mail Adresse
email password email de E-Mail Passwort
edit categories common de Kategorien editieren
edit project administrator list projects de Liste der Projektadministratoren editieren
email signature common de E-Mail Signatur
email type common de E-Mail Typ
employee projects de Angestellter
enabled admin de Verf<72>gbar
enabled - hidden from navbar admin de Verf<72>gbar, aber nicht in der Navigationsleiste
end date common de Enddatum
end date/time calendar de Enddatum/-zeit
end time common de Endzeit
enter your new password preferences de Neues Passwort eingeben
entry has been deleted sucessfully common de Eintrag erfolgreich gel<65>scht
entry updated sucessfully common de Eintrag erfolgreich aktualisiert
err_saving_file filemanager de Fehler beim Schreiben der Datei
error common de Fehler
error creating x x directory common de Fehler beim Erstellen des Verzeichnisses %1%2
error deleting x x directory common de Fehler beim L<>schen des Verzeichnisses %1%2
error renaming x x directory common de Fehler beim Umbennenen des Verzeichnisses %1%2
exit filemanager de Exit
export contacts addressbook de Kontakte exportieren
extra addressbook de Extra
fax addressbook de Fax
february common de Februar
fields addressbook de Felder
fields to show in address list addressbook de Felder, die in der Adressliste angezeigt werden sollen
file manager common de Filemanager
file_upload filemanager de Datei Upload
files common de Dateien
filter common de Filter
first name common de Vorname
firstname common de Vorname
first page common de erste Seite
flags squirelmail de Flags
folder email de Ordner
folders squirrelmail de Ordner
folder preferences common de Einstellungen der Ordner
forum common de Forum
forward email de Weiterleiten
fr calendar de Fr
free/busy calendar de frei/belegt
frequency calendar de H<>ufigkeit
fri calendar de Fr
friday common de Freitag
from Common de Von
ftp common de FTP
full description calendar de vollst<73>ndige Beschreibung
full name addressbook de vollst<73>ndiger Name
generate new lang.sql file transy de Erzeuge neue lang.sql Datei
generate printer-friendly version calendar de Drucker-freundliche Version erzeugen
generate project id ? projects de Projekt ID generieren?
georgia notes de Georgia
global common de Globale
global categories common de Globale Kategorien
global public common de Global Public
global public and group public common de <09>ffentliche und Gruppen
global public only common de nur <20>ffentliche
go! calendar de Go!
grab new news sites common de Neue Sites f<>r Schlagzeilen suchen
grant access common de Berechtigungen
group common de Gruppe
group access common de Gruppenzugriff
group has been added common de Gruppe hinzugef<65>gt
group has been deleted common de Gruppe gel<65>scht
group has been updated common de Gruppe aktualisiert
group name admin de Gruppenname
group public common de Group Public
group public only common de nur Gruppen
group_files filemanager de Gruppen Dateien
groups common de Gruppen
groupsfile_perm_error filemanager de Um diesen Fehler zu beheben, m<>ssen die korrekten Zugriffsrechte f<>r die Verzeichnisse files/groups erstellt werden.<BR> Auf *nix Systemen dient dazu folgender Befehl: chmod 770
headline preferences common de Schlagzeilen Einstellungen
headline site management admin de Schlagzeilen Management
headline sites admin de Sites f<>r Schlagzeilen
headlines common de Schlagzeilen
help common de Hilfe
helvetica notes de Helvetica
hide php information admin de PHP Informationen ausblenden
high common de Hoch
home common de Home
home city addressbook de Stadt (priv)
home country addressbook de Staat (priv)
home email addressbook de private EMail
home email type addressbook de Typ der privaten EMail
home phone addressbook de Tel privat
home state addressbook de Land (priv)
home street addressbook de Stra<72>e (priv)
home zip code addressbook de PLZ (priv)
human resources common de Personenverzeichnis
hours projects de Stunden
i participate calendar de Ich nehme teil
icons and text preferences de Icons und Text
icons only preferences de nur Icons
identifying name squirrelmail de Bezeichnung der Hervorhebung
idle admin de idle
if applicable email de falls zutreffend
ignore conflict calendar de Konflikt ignorieren
image email de Grafik
imap server type email de Typ des IMAP Servers
import contacts addressbook de Kontakte importieren
import file addressbook de Datei importieren
import from outlook addressbook de Aus Outlook importieren
import lang set transy de Sprachset importieren
in progress tts de in Bearbeitung
index_what_is squirrelmail en Die Reihenfolge der Indizes legt fest, in welcher Reihenfolge die Spalten des Nachrichten-Indexes angeordnet werden. Es k<>nnen Spalten verschoben, hinzugef<65>gt und entfernt werden, um die Anordnung an den pers<72>nlichen Geschmack anzupassen.
index order common de Reihenfolge der Indizes
installed applications admin de Installierte Anwendungen
interface/template selection preferences de Auswahl der Benutzeroberfl<66>che
international addressbook de international
intl common de International
inventory common de Inventar
invoice projects de Rechnung
invoice date projects de Rechnungsdatum
invoice id projects de Rechnungs-ID
invoice list projects de Liste der Rechnungen
invoices projects de Rechnungen
ip admin de IP
isdn phone addressbook de ISDN Tel.
it has been more then x days since you changed your password common de Sie haben Ihr Passwort seit mehr als %1 Tagen nicht ge<67>ndert
january common de Januar
job projects de Aufgabe
job date projects de Datum
job description projects de Beschreibung
job has been added ! projects de Aufgabe wurde hinzugef<65>gt.
job has been updated ! projects de Aufgabe wurde aktualisiert.
job list projects de Aufgabenliste
jobs projects de Aufgaben
july common de Juli
june common de Juni
kill admin de Kill
label addressbook de Adre<72>etikett
language common de Sprache
large notes de Gro<72>
last login admin de Letzter Login
last login from admin de Letzer Login von
last name common de Name
lastname common de Name
last page common de letzte Seite
last time read admin de Zuletzt gelesen
last updated todo de Zuletzt ge<67>ndert
last x logins admin de Letze %1 Logins
light gray common de Hellgrau
line 2 addressbook de Zeile 2
list of current users admin de Liste der gegenw<6E>rtigen Benutzer
listings displayed admin de Zeilen maximal
location of buttons when composing squirrelmail de Position der Buttons w<>hrend des Editierens
login common de Login
login screen admin de Login Seite
login time admin de Login Zeit
loginid admin de LoginID
logout common de Logout
low common de Niedrig
mail folder(uw-maildir) email de Mail Ordner (UW-Mailverzeichnis)
mail server email de Mail Server
mail server type email de Typ des Mailservers
main screen common de Startseite
main screen message admin de Nachricht der Startseite
manage folders preferences de Ordner bearbeiten
manager admin de Manager
manual common de Handbuch
march common de M<>rz
match squirrelmail de <20>bereinstimmung
max matchs per page preferences de Maximale Treffer pro Seite
may common de Mai
medium common de Mittel
medium gray common de Grau
message common de Nachricht
message highlighting common de Nachrichten Hervorheben
message phone addressbook de Anrufbeantworter
message x nntp de Nachricht %1
messages email de Nachrichten
middle name addressbook de Zweiter Vorname
minutes calendar de Minuten
minutes between reloads admin de Minuten zwischen Reloads
minutes per workunit projects de Minuten pro Arbeitseinheit
mo calendar de Mo
mobile addressbook de Mobil
mobile phone common de Tel Funk
modem phone addressbook de Modem
mon calendar de Mo
monday common de Montag
monitor nntp de <09>berwachen
monitor newsgroups preferences de Newsgroups <20>berwachen
month calendar de Monat
monthly calendar de Monatlich
monthly (by date) calendar de Monatlich (nach Datum)
monthly (by day) calendar de Monatlich (nach Wochentag)
move selected messages into email de Verschiebe ausgew<65>hlte Nachrichten in
name common de Name
net projects de Netto
network news admin de Network News
never admin de Nie
new common de Neu
new entry calendar de Neuer Eintrag
new entry added sucessfully common de Neuer Eintrag erfolgreich hinzugef<65>gt
new group name admin de Neuer Gruppenname
new message email de Neue Nachricht
new password [ leave blank for no change ] admin de Neues Passwort [ Feld leerlassen, wenn das Passwort nicht ge<67>ndert werden soll ]
new phrase has been added transy de Neue <20>bersetzung wurde hinzugef<65>gt
new ticket tts de Neues Ticket
new_file filemanager de Neue Datei
news file admin de News File
news headlines common de News headlines
news reader common de News Reader
news type admin de Nachrichtentyp
newsgroups common de Newsgroups
next nntp de N<>chste
next page common de n<>chste Seite
nntp common de NNTP
no common de Nein
no highlighting is defined common de keine Hervorhebungen definiert
no matches found. calendar de Keine Treffer gefunden.
no matchs found common de Keine Treffer gefunden.
no subject common de Kein Betreff
no tickets found tts de Keine Tickets gefunden
no_file_name filemanager de Es wurde kein Dateiname angegeben
non-standard email de nicht Standard
nonactive projects de Inaktiv
none common de Keiner
normal common de Normal
note: this feature does *not* change your email password. this will need to be done manually. preferences de Hinweis: Diese Funktion <20>ndert *nicht* Ihr Passwort auf dem E-Mail server. Dies m<>ssen sie separat tun.
notes addressbook de Notizen
notes common de Notizbuch
notes categories preferences de Kategorien editieren
notes list notes de Notizliste
notes preferences common de Notizbuch Einstellungen
november common de November
october common de Oktober
ok common de OK
on *nix systems please type: x common de Auf *nix Systemen bitte eingeben: %1
only yours common de nur eigene
open projects de Offen
open date tts de Angelegt am
opened by tts de Angelegt von
or: days from startdate: todo de alternativ: Tage ab Startdatum
or: select for today: todo de alternativ: heute
original common de Original
other: squirrelmail de Andere
other addressbook de Andere
other number addressbook de andere Nr.
other phone common de Tel sonst.
overall projects de Insgesamt
owner common de Besitzer
pager addressbook de Pager
parcel addressbook de Lieferadresse
parent projekt: todo de Gesamtprojekt
participants calendar de Teilnehmer
password common de Passwort
password has been updated common de Passwort wurde aktualisiert
per workunit projects de pro Arbeitseinheit
percent of users that logged out admin de Prozent der User, die sich korrekt abgemeldet haben
permissions admin de Zugriffsrechte
permissions this group has admin de Zugriffsrechte f<>r diese Gruppe
permissions to the files/users directory common de Zugriffsrechte f<>r die Dateien/Benutzer-Verzeichnisse
personal addressbook de Pers<72>nlich
personal information squirrelmail de Pers<72>nliche Angaben
personalized notes for notes de Pers<72>nliche Notizen f<>r
phone numbers addressbook de Telefonnummern
php information admin de PHP Informationen
phpgroupware login login de phpGroupWare Login
phrase in english transy de Phrase in English
phrase in new language transy de Phrase in der neuen Sprache
please choose activityies for that project first ! projects de Bitte zuerst Aktivit<69>ten f<>r dieses Projekt ausw<73>hlen!
please select a message first email de Bitte zuerst eine Nachricht w<>hlen
please select your address in preferences ! projects de Bitte geben Sie Ihre Adresse in den Einstellungen (Preferences) ein!
please select your currency in preferences! projects de Bitte die W<>hrung in den Einstellungen (Preferences) anpassen!
please set your preferences for this app common de Bitte editieren Sie Ihre Einstellungen f<>r diese Applikation!
please x by hand common de Bitte manuell %1
please, select a new theme preferences de Bitte ein neues Schema w<>hlen
position projects de Position
postal addressbook de Postanschrift
powered by phpgroupware version x common de Powered by <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
pref addressbook de pref
preferences common de Einstellungen
prefix addressbook de Prefix
previous email de Vorige
previous page common de vorige Seite
print common de Drucken
print delivery projects de Lieferung drucken
print invoice projects de Rechnung drucken
printer friendly calendar de Drucker-freundlich
prio tts de Prio
priority common de Priorit<69>t
private common de Privat
private and global public common de private und <20>ffentliche
private and group public common de private und Gruppen
private only common de nur private
private_files filemanager de private Dateien
project projects de Projekt
project access preferences de Berechtigungen f<>r Projekt Zugriffe
project administration common de Projektadministration
project categories preferences de Projekt Kategorien
project description todo de Beschreibung
project id projects de Projekt ID
project list projects de Projektliste
project preferences common de Projekt Einstellungen
project statistic projects de Projekt-Statistik
project statistics projects de Projekt-Statistiken
project x x has been added ! projects de Projekt %1 (%2) wurde hinzugef<65>gt!
project x x has been updated ! projects de Projekt %1 (%2) wurde aktualisiert.
projects common de Projekte
projects archive projects de Projektarchiv
projects list projects de Projektliste
projects preferences common de Projekt Einstellungen
public common de <09>ffentlich
public key addressbook de <09>ffentlicher Schl<68>ssel
re-edit event calendar de Event erneut bearbeiten
re-enter password admin de Passwort wiederholen
re-enter your password preferences de Neues Passwort wiederholen
read common de Lesen
record access addressbook de Zugriffsrechte
record owner addressbook de Datensatz Eigent<6E>mer
remark projects de Anmerkung
remark required projects de Anmerkung erforderlich
remove common de entfernen
remove all users from this group admin de Entferne alle Benutzer aus dieser Gruppe
rename common de Umbenennen
rename_to filemanager de Umbenennen in
rename a folder squirrelmail Ordner umbenennen
repeat day calendar de Wiederholungstag
repeat end date calendar de Enddatum
repeat type calendar de Wiederholungstyp
repeating event information calendar de Informationen zu sich wiederholenden Ereignissen
repetition calendar de Repetition
reply email de Antworten
reply all email de Allen antworten
return to options page squirrelmail de Zur<75>ck zur Optionsseite
sa calendar de Sa
sat calendar de Sa
saturday common de Samstag
save common de Speichern
search common de Suchen
search results calendar de Suchergebnisse
section admin de Abschnitt
section email de Sektion
select projects de Ausw<73>hlen
select application transy de Anwendung ausw<73>hlen
select category common de Kategorie ausw<73>hlen
select country for including holidays calendar de Land f<>r Feiertagsanzeige ausw<73>hlen
select different theme preferences de anderes Schema w<>hlen
select groups projects de Gruppen ausw<73>hlen
select headline news sites common de News-Sites f<>r Schlagzeilen ausw<73>hlen
select headlines to display preferences de Anzuzeigende Schlagzeilen ausw<73>hlen
select language to generate for transy de Sprache ausw<73>hlen
select layout preferences de Layout w<>hlen
select per button ! projects de Auswahl per Button!
select permissions this group will have admin de W<>hlen Sie die Zugriffsrechte f<>r diese Gruppe.
select project projects de Projekt ausw<73>hlen
select tax for work hours projects de Steuersatz f<>r Arbeitszeit ausw<73>hlen
select users for inclusion admin de Benutzer f<>r diese Gruppe ausw<73>hlen
select users projects de Benutzer ausw<73>hlen
select which application for this phrase transy de W<>hlen sie die Applikation f<>r diese Phrase
select which language for this phrase transy de W<>hlen sie die Sprache f<>r diese Phrase
select which location this app should appear on the navbar, lowest (left) to highest (right) admin de An welcher Position soll die Anwendung in der Navigationsleiste erscheinen, von ganz unten (links) bis ganz oben (rechts)
select your address projects de W<>hlen sie Ihre Adresse
send email de Senden
send deleted messages to the trash email de gel<65>schte Nachrichten in die M<>lltonne bef<65>rdern
send updates via email common de Updates via EMail senden
send/receive updates via email calendar de Aktualisierungen per EMail versenden/empfangen
september common de September
session has been killed common de Session wurde gel<65>scht
short description projects de Kurzbeschreibung
show all common de alle anzeigen
show all groups nntp de alle Gruppen anzeigen
show birthday reminders on main screen addressbook de Geburtstags-Mahner auf der Startseite anzeigen
show current users on navigation bar preferences de Anzahl gegenw<6E>rtiger Benutzer in der Navigationsleiste anzeigen
show day view on main screen calendar de Tages<65>bersicht auf der Startseite anzeigen
show groups containing nntp de Zeige Gruppen folgenden Inhalts
show high priority events on main screen preferences de Ereignisse mit hoher Priorit<69>t auf der Startseite anzeigen
show navigation bar as preferences de Anzeige der Navigationsleiste
show new messages on main screen common de Neue Nachrichten auf der Startseite anzeigen
show text on navigation icons preferences de Text zu Icons in der Navigationsleiste anzeigen
showing x common de %1 Eintr<74>ge
showing x - x of x common de %1 Eintr<74>ge - %2 von %3
site admin de Site
size common de Gr<47><72>e
size of editor window squirrelmail de Gr<47><72>e des Editorfensters
small notes de Klein
sorry, that group name has already been taking. admin de Dieser Gruppenname ist bereits vergeben.
sorry, the follow users are still a member of the group x admin de Sorry, die folgenden Benutzer sind noch Mitglied der Gruppe %1
sorry, there was a problem processing your request. common de Sorry, es gab ein Problem bei der Bearbeitung Ihrer Anfrage.
sorry, your login has expired login de Sorry - Login abgelaufen
source language transy de Quellsprache
specify_file_name filemanager de Es mu<6D> ein Name f<>r die zu erstellende Datei angegeben werden
squirrelmail common de Squirrelmail
start date common de Startdatum
start date/time calendar de Startdatum/-zeit
start time common de Startzeit
state addressbook de Land
statistic projects de Statistik
statistics projects de Statistiken
status common de Status
street addressbook de Stra<72>e
su calendar de So
sub todo de Teilprojekt
subject common de Betreff
submit common de Absenden
submit changes admin de <09>nderungen Speichern
subproject description todo de Beschreibung des Teilprojekts
subscribe squirrelmail de Abonnieren
suffix addressbook de Zusatz
sum projects de Summe
sum workunits projects de Summe der Arbeitseinheiten
sun calendar de So
sunday common de Sonntag
switch current folder to email de Wechseln zum Ordner
tahoma notes de Tahoma
target language transy de Zielsprache
text only preferences de nur Text
th calendar de Do
that loginid has already been taken admin de Diese LoginID ist bereits vergeben
that phrase already exists common de Diese Phrase existiert bereits
that site has already been entered admin de Diese Site wurde bereits eingegeben
the following conflicts with the suggested time:<ul>x</ul> calendar de Im gew<65>hlten Zeitraum gibt es einen Konflikt:<ul>%1</ul>
the login and password can not be the same admin de Login und Passwort d<>rfen nicht identisch sein
the two passwords are not the same common de Die Eingaben stimmen nicht <20>berein
theme (colors/fonts) selection preferences de Auswahl des Themas (Farben/Schriften)
there was an error trying to connect to your mail server.<br>please, check your username and password, or contact your admin. email de Die Verbindung zum Mailserver ist leider fehlgeschlagen.<br>Bitte pr<70>fen sie Ihren Usernamen und Ihr Passwort, oder setzen Sie sich mit Ihrem Administrator in Verbindung.
they must be removed before you can continue admin de Sie m<>ssen zuvor aus dieser entfernt werden
this folder is empty email de Dieser Ordner ist leer
this month calendar de Dieser Monat
this person's first name was not in the address book. addressbook de Der Vorname dieser Person ist nicht im Adressbuch.
this server is located in the x timezone preferences de Der Server befindet sich in der Zeitzone %1
this week calendar de Diese Woche
threads nntp de Threads
thu calendar de Do
thursday common de Donnerstag
ticket tts de Ticket
tickets open x tts de offene tickets: %1
tickets total x tts de Tickets insgesamt: %1
time common de Zeit
time created notes de wann erstellt
time format preferences de Zeitformat
time zone common de Zeitzone
time zone offset common de Zeitzonen Differenz
times new roman notes de Times New Roman
title common de Titel
to email de An
to correct this error for the future you will need to properly set the common de Um diesen Fehler f<>r die Zukunft zu beheben, korrigieren Sie die Einstellungen
today calendar de Heute
today is x's birthday! common de Heute ist der Geburtstag von %1!
todo common de Aufgabenliste
todo preferences common Einstellungen der Aufgabenliste
todo categories preferences de Kategorien editieren
todo list common de Aufgabenliste
todo list - add todo de Aufgabenliste - hinzuf<75>gen
todo list - add sub-project todo de ToDo-List: Teilprojekt hinzuf<75>gen
todo list - edit todo de Aufgabenliste - editieren
tomorrow is x's birthday. common de Morgen ist der Geburtstag von %1.
total common de Total
total records admin de Anzahl Datens<6E>tze insgesamt
translation transy de <09>bersetzung
translation management common de Translation Management
trouble ticket system common de Trouble Ticket System
tu calendar de Di
tue calendar de Di
tuesday common de Dienstag
undisclosed recipients email de Verborgene Empf<70>nger
undisclosed sender email de Verborgener Absender
unsubscribe squirrelmail de abbestellen
up common de hoch
update common de Aktualisieren
updated common de Updated
upload filemanager de Upload
urgency todo de Dringlichkeit
url common de URL
use cookies login de Cookies benutzen
use custom settings email de Benutzerdefinierte Einstellungen verwenden
use end date calendar de Enddatum benutzen
user common de Benutzer
user accounts admin de Benutzerkonten
user groups admin de Benutzergruppen
user statistic projects de Benutzer-Statistik
user statistics projects de Benutzer-Statistiken
username common de Benutzername
username / group projects de Benutzername / Gruppe
users common de Benutzer
vcard addressbook de VCard
vcard common de Visitenkarte
vcards require a first name entry. addressbook de VCards ben<65>tigen einen Vornamen.
verdana notes de Verdana
very large notes de Sehr Gro<72>
very small notes de Sehr Klein
video phone addressbook de Bildtelefon
view common de Anzeigen
view access log admin de Access Log anzeigen
view all tickets tts de Alle Tickets anzeigen
view job detail tts de Detailansicht
view matrix of actual month todo de Matrix des aktuellen Monats anzeigen
view only open tickets tts de Nur offene Tickets anzeigen
view sessions admin de Sitzungen anzeigen
view this entry calendar de Diesen Eintrag anzeigen
view/edit/delete all phrases transy de Alle Phrasen anzeigen/editieren/l<>schen
voice phone addressbook de Telefon
we calendar de Mi
wed calendar de Mi
wednesday common de Mittwoch
week calendar de Woche
weekday starts on common de Arbeitswoche beginnt am
weekly calendar de W<>chentlich
when creating new events default set to private calendar de Beim Erstellen neuer Eintr<74>ge "privat" als Default annehmen
which groups common de Welche Gruppen
white common de Wei<65>
work date projects de Arbeitstag
work day ends on common de Arbeitstag endet um
work day starts on common de Arbeitstag beginnt um
work phone addressbook de Tel dienstl.
work time projects de Arbeitszeit
workunits projects de Arbeitseinheiten
wrap incoming text at squirrelmail de Zeilenumbruch bei eingehenden Nachrichten in Spalte
x matches found calendar de %1 Treffer gefunden
x messages have been deleted email de %1 Nachrichten wurden gel<65>scht
year calendar de Jahr
yearly calendar de J<>hrlich
yes common de ja
you are required to change your password during your first login common de Das Passwort mu<6D> beim ersten Login ge<67>ndert werden!
you have 1 high priority event on your calendar today. common de Sie haben heute einen Eintrag mit hoher Priorit<69>t auf Ihrer Liste!
you have 1 new message! common de Sie haben eine neue Nachricht!
you have been successfully logged out login de Abmeldung erfolgreich
you have entered an invailed date todo de Das angegebene Datum ist ung<6E>ltig
you have messages! common de Sie haben Nachrichten!
you have no new messages common de Keine neuen Nachrichten
you have not entered a\nbrief description calendar de Sie haben keine a\nKurzbeschreibung eingegeben
you have not entered a\nvalid time of day calendar de Sie haben keine a\ng<6E>ltige Tageszeit eingegeben.
you have x high priority events on your calendar today. common de Sie haben heute %1 Eintr<74>ge mit hoher Priorit<69>t auf Ihrer Liste!
you have x new messages! common de Sie haben %1 neue Nachrichten!
you must add at least 1 permission to this account admin de Sie m<>ssen diesem Konto mindestens eine Berechtigung zuteilen
you must enter a base url admin de Sie m<>ssen eine Basis URL angeben
you must enter a display admin de Sie m<>ssen einen Namen f<>r die Site eingeben
you must enter a news url admin de Sie m<>ssen eine News URL angeben
you must enter a password preferences de Sie m<>ssen ein Passwort angeben
you must enter an application name and title. admin de Sie m<>ssen der Anwendung einen Namen und einen Titel geben.
you must enter one or more search keywords calendar de Sie m<>ssen einen oder mehrere Suchbegriffe angeben
you must enter the number of listings display admin de Sie m<>ssen die Anzahl der anzuzeigenden Zeilen angeben
you must enter the number of minutes between reload admin de Sie m<>ssen eine Anzahl von Minuten zwischen Reloads angeben
you must select a file type admin de Sie m<>ssen einen Filetyp ausw<73>hlen
your message has been sent common de Ihre Nachricht wurde versandt
your search returned 1 match common de Ihre Suche ergab einen Treffer
your search returned x matchs common de Ihre Suche ergab %1 Treffer
your session could not be verified. login de Ihre Sitzung konnte nicht verifiziert werden.
your settings have been updated common de Ihre Einstellungen wurden aktualisiert
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar de Der von Ihnen gew<65>hlte Zeitraum <B> %1 - %2 </B> f<>hrt zu Konflikten mit folgenden bereits existierenden Kalendereintr<74>gen:
zip code addressbook de PLZ

View File

@ -1,719 +0,0 @@
1 match found calendar en 1 match found
1 message has been deleted email en 1 message has been deleted
a calendar en a
accept calendar en Accept
accepted calendar en Accepted
access common en Access
access not permitted common en Access not permitted
access type common en Access type
account active admin en Account active
account has been created common en Account has been created
account has been deleted common en Account has been deleted
account has been updated common en Account has been updated
account permissions admin en Account permissions
account preferences common en Account Preferences
acl common en ACL
action admin en Action
active common en Active
add a note for notes en Add a note for
add a note for x notes en Add a note for %1
add a single phrase transy en Add a single phrase
add bookkeeping en Add
add category common en Add Category
add common en Add
add_expense bookkeeping en Add expense
add global category admin en Add global category
add_income bookkeeping en Add income
add new account admin en Add new account
add new application admin en Add new application
add new phrase transy en Add new phrase
add new ticket tts en Add new ticket
add note notes en Add note
add x category for common en Add %1 category for
address book common en Address Book
addressbook common en Addressbook
addressbook preferences common en Addressbook preferences
address book - view addressbook en Address book - view
address line 2 addressbook en Address Line 2
address line 3 addressbook en Address Line 3
address type addressbook en Address Type
addsub todo en AddSub
add sub todo en Add sub
add ticket tts en Add ticket
add to addressbook email en Add to addressbook
addvcard common en Add VCard
admin bookkeeping en Admin
admin common en Admin
administration common en Administration
all common en All
all day calendar en All Day
allow anonymous access to this app admin en Allow anonymous access to this app
all records and account information will be lost! admin en All records and account information will be lost!
amount bookkeeping en Amount
anonymous user admin en Anonymous user
any transy en Any
application name admin en Application name
applications admin en Applications
application title admin en Application title
application transy en Application
april common en April
are you sure\nyou want to\ndelete this entry ? calendar en Are you sure\nyou want to\ndelete this entry ?
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar en Are you sure\nyou want to\ndelete this entry ?\n\nThis will delete\nthis entry for all users.
are you sure you want to delete this account ? admin en Are you sure you want to delete this account ?
are you sure you want to delete this application ? admin en Are you sure you want to delete this application ?
are you sure you want to delete this entry ? common en Are you sure you want to delete this entry ?
are you sure you want to delete this entry todo en Are you sure you want to delete this entry?
are you sure you want to delete this group ? admin en Are you sure you want to delete this group ?
are you sure you want to delete this holiday ? calendar en Are you sure you want to delete this holiday ?
are you sure you want to delete this news site ? admin en Are you sure you want to delete this news site ?
are you sure you want to delete this note ? notes en Are you sure you want to delete this note ?
are you sure you want to kill this session ? admin en Are you sure you want to kill this session ?
arial notes en Arial
assign to tts en Assign to
august common en August
author nntp en Author
autosave default category common en Autosave Default Category
available groups nntp en Available Groups
bad login or password login en Bad login or password
base url admin en Base URL
bbs phone addressbook en BBS Phone
birthday addressbook en Birthday
bookkeeping admins common en Bookkeeping admins
bookkeeping common en Bookkeeping
book marks common en Book marks
bookmarks common en Bookmarks
brief description calendar en Brief Description
business city common en Business City
business common en Business
business address type addressbook en Business Address Type
business country common en Business Country
business email common en Business EMail
business email type common en Business EMail Type
business fax common en Business Fax
business phone common en Business Phone
business state common en Business State
business street common en Business Street
business zip code common en Business Postal Code
calendar - add calendar en Calendar - Add
calendar common en calendar
calendar - edit calendar en Calendar - Edit
calendar preferences common en Calendar preferences
cancel common en Cancel
cannot display the requested article from the requested newsgroup nntp en Cannot display the requested article from the requested newsgroup
car phone addressbook en Car Phone
categories common en Categories
categories for common en categories for
category common en Category
category description admin en Category description
category name admin en Category name
category x has been added ! common en Category %1 has been added !
category x has been updated ! common en Category %1 has been updated !
cc email en CC
cell phone addressbook en cell phone
center weather en Center
change common en Change
change main screen message admin en Change main screen message
change your password preferences en Change your Password
change your profile preferences en Change your profile
change your settings preferences en Change your Settings
charset common en iso-8859-1
chat common en Chat
choose a font notes en Choose a font
choose a category common en Choose a category
choose the category common en Choose the category
choose the font size notes en Choose the font size
city addressbook en City
city admin en City
city weather en City
clear common en Clear
clear form common en Clear Form
clipboard_contents filemanager en Clipboard Contents
common transy en Common
company common en Company
company name addressbook en Company Name
completed todo en completed
compose email en Compose
contact common en Contact
copy_as filemanager en Copy as
copy common en Copy
country addressbook en Country
country weather en Country
courier new notes en Courier New
create common en Create
created by common en Created By
create group admin en Create Group
create lang.sql file transy en Create lang.sql file
create new language set transy en Create new language set
currency common en Currency
current_file filemanager en Current File
current users common en Current users
custom common en Custom
custom email settings email en custom email settings
custom fields addressbook en Custom Fields
daily calendar en Daily
daily matrix view calendar en Daily Matrix View
date bookkeeping en Date
date common en Date
date due common en Date Due
date format preferences en Date format
days datedue todo en days datedue
days repeated calendar en days repeated
december common en December
default application preferences en Default application
default calendar filter calendar en Default calendar filter
default calendar view calendar en Default calendar view
default sorting order email en Default sorting order
delete bookkeeping en Delete
delete common en Delete
department addressbook en Department
description common en Description
detail tts en Detail
disabled admin en Disabled
display admin en Display
display mini calendars when printing calendar en Display mini calendars when printing
display missing phrases in lang set transy en Display missing phrases in lang set
display note for notes en Display note for
display status of events calendar en Display Status of Events
do_delete filemanager en Delete
do_delete x filemanager en Delete %1
domestic common en Domestic
done common en Done
download filemanager en Download
duration calendar en Duration
edit application admin en Edit application
edit bookkeeping en Edit
edit common en Edit
edit category common en Edit Category
edit categories common en Edit Categories
edit custom fields preferences en edit custom fields
edit_expense bookkeeping en Edit expense
edit group admin en Edit Group
edit_income bookkeeping en Edit income
edit note for notes en Edit note for
edit user account admin en Edit user account
edit x category for common en Edit %1 category for
email account name email en Email Account Name
email address email en E-Mail address
e-mail common en E-Mail
email common en E-Mail
email password email en E-Mail password
e-mail preferences common en E-Mail preferences
email signature email en E-Mail signature
email type common en E-Mail Type
enabled admin en Enabled
enabled - hidden from navbar admin en Enabled - Hidden from navbar
enabled weather en Enabled
end date/time calendar en End Date/Time
end date common en End Date
end time common en end time
ends calendar en ends
enter your new password preferences en Enter your new password
entries bookkeeping en Entries
entry has been deleted sucessfully common en Entry has been deleted sucessfully
entry updated sucessfully common en Entry updated sucessfully
error common en Error
error creating x x directory common en Error creating %1%2 directory
error deleting x x directory common en Error deleting %1%2 directory
error renaming x x directory common en Error renaming %1%2 directory
err_saving_file filemanager en Error saving file to disk
exit common en Exit
extra common en Extra
expense bookkeeping en Expense
expenses bookkeeping en Expenses
export contacts addressbook en Export Contacts
failed to find your station weather en Failed to find your station
fax addressbook en Fax
february common en February
fields common en Fields
fields to show in address list addressbook en Fields to show in address list
file manager common en File manager
files common en Files
file_upload filemanager en File Upload
filter common en Filter
firstname bookkeeping en Firstname
first name common en First name
first page common en first page
folder email en Folder
forecast admin en Forecast
forecasts weather en Forecasts
forecast weather en Forecast
forecast zone admin en Forecast Zone
forum common en Forum
forward email en Forward
(for weekly) calendar en (for Weekly)
fr calendar en F
free/busy calendar en Free/Busy
frequency calendar en Frequency
fri calendar en Fri
friday common en Friday
from common en From
ftp common en FTP
full description calendar en Full Description
full name addressbook en Full Name
fzone admin en FZone
fzone weather en FZone
generate new lang.sql file transy en Generate new lang.sql file
generate printer-friendly version calendar en Generate printer-friendly version
geo addressbook en GEO
georgia notes en Georgia
global categories admin en Global Categories
global common en Global
global public and group public calendar en Global Public and group public
global public common en Global Public
global public only calendar en Global Public Only
global weather en Global
go! calendar en Go!
grant addressbook access common en Grant Addressbook Access
grant calendar access common en Grant Calendar Access
grant todo access common en Grant Todo Access
group access common en Group Access
group common en Group
group_files filemanager en group files
group has been added common en Group has been added
group has been deleted common en Group has been deleted
group has been updated common en Group has been updated
group name admin en Group Name
group public common en Group Public
group public only calendar en Group Public Only
groups common en Groups
groupsfile_perm_error filemanager en To correct this error you will need to properly set the permissions to the files/groups directory.<BR> On *nix systems please type: chmod 770
headline preferences common en Headline preferences
headlines common en Headlines
headline sites admin en Headline Sites
help common en Help
helvetica notes en Helvetica
hide php information admin en hide php information
high common en High
home city addressbook en Home City
home common en Home
home address type addressbook en Home Address Type
home country addressbook en Home Country
home directory admin en Home directory
home email addressbook en Home EMail
home email type addressbook en Home EMail Type
home phone addressbook en Home Phone
home state addressbook en Home State
home street addressbook en Home Street
home zip code addressbook en Home ZIP Code
human resources common en Human Resources
icons and text preferences en Icons and text
icons only preferences en icons only
id admin en ID
idle admin en idle
id weather en ID
if applicable email en If Applicable
ignore conflict calendar en Ignore Conflict
image email en Image
imap server type email en IMAP Server Type
import contacts addressbook en Import Contacts
import file addressbook en Import File
import from outlook addressbook en Import from Outlook
import lang set transy en Import lang set
income bookkeeping en Income
index_what_is squirrelmail en The index order is the order that the columns are arranged in the message index. You can add, remove, and move columns around to customize them to fit your needs.
installed applications admin en Installed applications
interface/template selection preferences en Interface/Template Selection
international common en International
inventory common en Inventory
ip admin en IP
i participate calendar en I Participate
isdn phone addressbook en ISDN Phone
it has been more then x days since you changed your password common en It has been more then %1 days since you changed your password
it is recommended that you run setup to upgrade your tables to the current version common en It is recommended that you run setup to upgrade your tables to the current version
january common en January
july common en July
june common en June
kill admin en Kill
label addressbook en Label
language preferences en Language
large notes en Large
last login admin en last login
last login from admin en last login from
lastname bookkeeping en Lastname
last name common en Last name
last page common en last page
last time read admin en Last Time Read
last updated todo en Last Updated
last x logins admin en Last %1 logins
line 2 addressbook en Line 2
links weather en Links
listings displayed admin en Listings Displayed
list of current users admin en list of current users
logging bookkeeping en Logging
login common en Login
loginid admin en LoginID
loginid bookkeeping en LoginID
login screen admin en Login screen
login shell admin en Login shell
login time admin en Login Time
logout common en Logout
low common en Low
mail folder(uw-maildir) email en Mail Folder(uw-maildir)
mail server email en Mail Server
mail server type email en Mail Server type
main screen common en Main screen
main screen message admin en Main screen message
manager admin en Manager
manual common en Manual
march common en March
max matchs per page preferences en Max matches per page
may common en May
medium common en Medium
message common en Message
message phone addressbook en Message Phone
messages email en Messages
message x nntp en Message %1
metar admin en Metar
metar weather en Metar
middle name addressbook en Middle Name
minutes between reloads admin en Minutes between Reloads
minutes calendar en minutes
mobile addressbook en Mobile
mobile phone common en Mobile phone
mo calendar en M
modem phone common en Modem Phone
mon calendar en Mon
monday common en Monday
monitor common en Monitor
monitor newsgroups preferences en Monitor Newsgroups
month calendar en Month
monthly (by date) calendar en Monthly (by date)
monthly (by day) calendar en Monthly (by day)
monthly calendar en Monthly
move selected messages into email en Move Selected Messages into
name common en Name
network news admin en Network News
new entry added sucessfully common en New entry added sucessfully
new entry calendar en New Entry
new_file filemanager en New File
new group name admin en New group name
new message email en New message
new password [ leave blank for no change ] admin en New password [ Leave blank for no change ]
new phrase has been added transy en New phrase has been added
news file admin en News File
newsgroups common en Newsgroups
news headlines common en News headlines
news reader common en News Reader
news type admin en News Type
new ticket tts en New Ticket
next common en Next
next page common en next page
nntp common en NNTP
no common en No
<b>No conversion type &lt;none&gt; could be located.</b> Please choose a conversion type from the list addressbook en <b>No conversion type &lt;none&gt; could be located.</b> Please choose a conversion type from the list
no_file_name filemanager en No filename was specified
no matches found. calendar en No matches found.
no matchs found admin en No matchs found
no repsonse calendar en No Response
none common en None
non-standard email en Non-Standard
normal common en Normal
no subject common en No Subject
no response calendar en No Response
not applicable weather en Not Applicable
note has been added for x ! notes en Note has been added for %1 !
notes common en Notes
notes categories common en Notes categories
notes list notes en Notes list
notes preferences common en Notes preferences
note: this feature does *not* change your email password. this will need to be done manually. preferences en Note: This feature does *not* change your email password. This will need to be done manually.
no tickets found tts en No tickets found.
november common en November
observations weather en Observations
october common en October
ok common en OK
only yours common en only yours
on *nix systems please type: x common en On *nix systems please type: %1
or: days from startdate: todo en or: days from startdate:
original transy en Original
or: select for today: todo en or: select for today:
other common en Other
other number addressbook en Other Number
other phone common en Other phone
owner common en Owner
pager addressbook en Pager
parcel addressbook en Parcel
parent category common en Parent Category
parent project todo en Parent Project
participant calendar en Participant
participants calendar en Participants
participates calendar en Participates
password common en Password
password has been updated common en Password has been updated
percent of users that logged out admin en Percent of users that logged out
permissions admin en Permissions
permissions this group has admin en Permissions this group has
permissions to the files/users directory common en permissions to the files/users directory
personal common en Personal
personalized notes for notes en Personalized notes for
phone numbers addressbook en Phone Numbers
phpgroupware login login en phpGroupWare login
php information admin en PHP Information
phrase in english transy en Phrase in English
phrase in new language transy en Phrase in new language
please enter a name for that category ! admin en Please enter a name for that category !
please select a message first email en Please select a message first
please, select a new theme preferences en Please, select a new theme
please set your preferences for this app common en Please set your preferences for this application
please x by hand common en Please %1 by hand
postal addressbook en Postal
powered by phpgroupware version x common en Powered by <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
pref common en pref
prefer common en Prefer
preferences common en Preferences
prefix addressbook en Prefix
previous email en Previous
previous page common en Previous page
print common en Print
printer friendly calendar en Printer Friendly
priority common en Priority
private and global public calendar en Private and Global Public
private and group public calendar en Private and Group Public
private common en Private
private_files filemanager en Private files
private only calendar en Private Only
proceed bookkeeping en Proceed.
project description todo en Project Description
public common en public
public key addressbook en Public Key
read common en Read
recent weather en Recent
record access addressbook en Record Access
record owner addressbook en Record owner
re-edit event calendar en Re-Edit Event
re-enter password admin en Re-enter password
re-enter your password preferences en Re-Enter your password
refresh calendar en Refresh
region admin en Region
regions admin en Regions
regions weather en Regions
region weather en Region
reject calendar en Reject
rejected calendar en Rejected
remove all users from this group admin en Remove all users from this group
rename common en Rename
rename_to filemanager en Rename to
repeat day calendar en Repeat day
repeat end date calendar en Repeat End date
repeating event information calendar en Repeating Event Information
repeat type calendar en Repeat type
repetition calendar en Repetition
reply all email en Reply All
reply email en Reply
replyto email en ReplyTo
reports bookkeeping en Reports
sa calendar en Sa
sat calendar en Sat
saturday common en Saturday
save common en Save
scheduling conflict calendar en Scheduling Conflict
search common en Search
search results calendar en Search Results
section email en Section
select application transy en Select application
select category common en Select Category
select different theme preferences en Select different Theme
select headline news sites common en Select Headline News sites
select language to generate for transy en Select language to generate for
select parent category common en Select parent category
select permissions this group will have admin en Select permissions this group will have
select users for inclusion admin en Select users for inclusion
select which application for this phrase transy en select which application for this phrase
select which language for this phrase transy en select which language for this phrase
select which location this app should appear on the navbar, lowest (left) to highest (right) admin en Select which location this app should appear on the navbar, lowest (left) to highest (right)
send deleted messages to the trash email en Send deleted messages to the trash
send email en Send
send updates via email common en Send updates via EMail
send/Receive updates via email calendar en Send/Receive updates via EMail
september common en September
session has been killed common en Session has been killed
show all common en show all
show all groups nntp en Show All Groups
show birthday reminders on main screen addressbook en Show birthday reminders on main screen
show current users on navigation bar preferences en Show current users on navigation bar
show day view on main screen calendar en Show day view on main screen
show groups containing nntp en Show Groups Containing
show high priority events on main screen calendar en Show high priority events on main screen
showing x common en showing %1
showing # x of x weather en showing # %1 of %2
showing x - x of x common en showing %1 - %2 of %3
show navigation bar as preferences en Show navigation bar as
show new messages on main screen email en Show new messages on main screen
show sender's email address with name email en Show sender's email address with name
show text on navigation icons preferences en Show text on navigation icons
site admin en Site
size common en Size
small notes en Small
sorry, that group name has already been taking. admin en Sorry, that group name has already been taking.
sorry, the follow users are still a member of the group x admin en Sorry, the follow users are still a member of the group %1
sorry, the owner has just deleted this event calendar en Sorry, the owner has just deleted this event
sorry, there was a problem processing your request. common en Sorry, there was a problem processing your request.
sorry, your login has expired login en Sorry, your login has expired
source language transy en Source Language
specify_file_name filemanager en You must specify a name for the file you wish to create
start date/time calendar en Start Date/Time
start date common en Start Date
start time common en Start Time
state addressbook en State
state weather en State
station admin en Station
stations admin en Stations
stations weather en Stations
station weather en Station
statistics bookkeeping en Statistics
status common en Status
street addressbook en Street
subject common en Subject
submit changes admin en Submit Changes
submit common en Submit
subproject description todo en Sub-project description
sub todo en sub
su calendar en Su
successfully imported x records into your addressbook. addressbook en Successfully imported %1 records into your addressbook.
suffix addressbook en Suffix
sun calendar en Sun
sunday common en Sunday
switch current folder to email en Switch Current Folder To
switch to bookkeeping en Switch to
table admin en Table
tables weather en Tables
target language transy en Target Language
tentative calendar en Tentative
text only preferences en Text only
that category name has been used already ! admin en That category name has been used already !
that loginid has already been taken admin en That loginid has already been taken
that phrase already exists common en That phrase already exists
that site has already been entered admin en That site has already been entered
th calendar en T
the following conflicts with the suggested time:<ul>x</ul> calendar en The following conflicts with the suggested time:<ul>%1</ul>
the login and password can not be the same admin en The login and password can not be the same
there was an error trying to connect to your mail server.<br>please, check your username and password, or contact your admin. email en There was an error trying to connect to your mail server.<br>Please, check your username and password, or contact your admin.
there was an error trying to connect to your news server.<br>please contact your admin to check the news servername, username or password. calendar en There was an error trying to connect to your news server.<br>Please contact your admin to check the news servername, username or password.
the two passwords are not the same common en The two passwords are not the same
theme (colors/fonts) selection preferences en Theme (colors/fonts) Selection
they must be removed before you can continue admin en They must be removed before you can continue
this folder is empty email en This folder is empty
this month calendar en This month
this person's first name was not in the address book. addressbook en This person's first name was not in the address book.
this server is located in the x timezone preferences en This server is located in the %1 timezone
this week calendar en This week
this year calendar en This year
threads nntp en Threads
thu calendar en Thu
thursday common en Thursday
tickets open x tts en Tickets open %1
tickets total x tts en Tickets total %1
time common en Time
time created notes en Time created
time format preferences en Time format
times new roman notes en Times New Roman
time zone common en Timezone
time zone offset common en Time zone offset
title common en Title
to correct this error for the future you will need to properly set the common en To correct this error for the future you will need to properly set the
today calendar en Today
today is x's birthday! common en Today is %1's birthday!
todo categories common en Todo categories
todo list - add sub-project todo en Todo list - add sub-project
todo list - add todo en Todo list - add
todo list common en Todo List
todo list - edit todo en Todo list - edit
todo preferences common en Todo preferences
todo common en Todo
to email en To
tomorrow is x's birthday. common en Tomorrow is %1's birthday.
total common en Total
total records admin en Total records
translation management common en Translation Management
translation transy en Translation
trouble ticket system common en Trouble Ticket System
tu calendar en T
tue calendar en Tue
tuesday common en Tuesday
undisclosed recipients email en Undisclosed Recipients
undisclosed sender email en Undisclosed Sender
updated common en Updated
update nntp en Update
upload filemanager en Upload
urgency todo en Urgency
url addressbook en URL
use cookies login en use cookies
use custom settings email en Use custom settings
use end date calendar en Use End date
user accounts admin en User accounts
user groups admin en User groups
username login en Username
user common en User
users common en users
usersfile_perm_error filemanager en To correct this error you will need to properly set the permissions to the files/users directory.<BR> On *nix systems please type: chmod 707
vcard common en VCard
vcards require a first name entry. addressbook en VCards require a first name entry.
verdana notes en Verdana
very large notes en Very Large
very small notes en Very Small
video phone addressbook en Video Phone
view access log admin en View Access Log
view all tickets tts en View all tickets
view bookkeeping en View
view common en View
view/edit/delete all phrases transy en View/edit/delete all phrases
view_expense bookkeeping en View expense
view_income bookkeeping en View income
view matrix of actual month todo en View Matrix of actual Month
view only open tickets tts en View only open tickets
view sessions admin en View sessions
view this entry calendar en View this entry
voice phone addressbook en Voice Phone
weather center admin en Weather Center
weather center preferences en Weather Center
weather preferences en Weather
weather weather en Weather
we calendar en W
wed calendar en Wed
wednesday common en Wednesday
week calendar en Week
weekday starts on calendar en Weekday starts on
weekly calendar en Weekly
when creating new events default set to private calendar en When creating new events default set to private
which groups common en Which groups
work day ends on calendar en Work day ends on
work day starts on calendar en Work day starts on
work phone addressbook en Work Phone
x matches found calendar en %1 matches found
x messages have been deleted email en %1 messages have been deleted
year calendar en Year
yearly calendar en Yearly
yes common en Yes
you are required to change your password during your first login common en You are required to change your password during your first login
you are running a newer version of phpGroupWare than your database is setup for common en You are running a newer version of phpGroupWare than your database is setup for
you have 1 high priority event on your calendar today. common en You have 1 high priority event on your calendar today.
you have 1 new message! common en You have 1 new message!
you have been successfully logged out login en You have been successfully logged out
you have entered an invailed date todo en you have entered an invailed date
you have messages! common en You have messages!
you have no new messages common en You have no new messages
you have not entered a valid date calendar en You have not entered a valid date
you have not entered a title calendar en You have not entered a title
you have not entered a valid time of day calendar en You have not entered a valid time of day
you have x high priority events on your calendar today. common en You have %1 high priority events on your calendar today.
you have x new messages! common en You have %1 new messages!
you must add at least 1 permission or group to this account admin en You must add at least 1 permission or group to this account
you must enter a base url admin en You must enter a base url
you must enter a display admin en You must enter a display
you must enter an application name and title. admin en You must enter an application name and title.
you must enter a news url admin en You must enter a news url
you must enter a password common en You must enter a password
you must enter one or more search keywords calendar en You must enter one or more search keywords
you must enter the number of listings display admin en You must enter the number of listings display
you must enter the number of minutes between reload admin en You must enter the number of minutes between reload
you must select a file type admin en You must select a file type
your current theme is: x preferences en </b>
your message has been sent common en Your message has been sent
your search returned 1 match common en your search returned 1 match
your search returned x matchs common en your search returned %1 matches
your session could not be verified. login en Your session could not be verified.
your settings have been updated common en Your settings have been Updated
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar en Your suggested time of <B> %1 - %2 </B> conflicts with the following existing calendar entries:
zip code addressbook en ZIP Code
zone admin en Zone
zone weather en Zone

View File

@ -1,470 +0,0 @@
(for weekly) calendar es (por semanal)
1 match found calendar es 1 coincidencia encontrada
1 message has been deleted email es 1 mensaje fue borrado
a calendar es a
access common es Acceso
access type common es Tipo Acceso
access type todo es Tipo de Acceso
account active admin es Cuenta activa
account has been created common es Cuenta creada
account has been deleted common es Cuenta borrada
account has been updated common es Cuenta actualizada
account preferences common es Preferencias de la Cuenta
active admin es Activo
add common es Agregar
add a single phrase transy es Agregar una sola frase
add new account admin es Agregar una nueva cuenta
add new application admin es Agregar nueva aplicaci<63>n
add new phrase transy es Agregar nueva frase
add to addressbook email es Agregar a la libreta de direcciones
address book common es Libreta de Direcciones
address book addressbook es Libreta de direcciones
address book - view addressbook es Libreta de direcciones - ver
addressbook common es Libreta de direcciones
addressbook preferences common es Preferencias - Libreta de direcciones
addsub todo es Agregar Sub
admin common es Admin
administration common es Administraci<63>n
all transy es Todo
all records and account information will be lost! admin es Se perderan todos los registros e informacion de cuentas!
anonymous user admin es Usuario anonimo
any transy es Cualquiera
application transy es Aplicaci<63>n
application name admin es Nombre de la aplicaci<63>n
application title admin es Titulo de la aplicaci<63>n
applications admin es Aplicaciones
april common es Abril
are you sure you want to delete this account ? admin es Esta seguro de querer borrar esta cuenta ?
are you sure you want to delete this application ? admin es Seguro de querer borrar esta aplicaci<63>n ?
are you sure you want to delete this entry todo es Esta seguro de querer borrar esta entrada?
are you sure you want to delete this entry ? common es Seguro de querer borrar esta entrada ?
are you sure you want to delete this group ? admin es Esta seguro de querer borrar este grupo ?
are you sure you want to delete this news site ? admin es Esta seguro de querer borrar este sitio de noticias ?
are you sure you want to kill this session ? admin es Esta seguro de querer matar esta sesion ?
are you sure\nyou want to\ndelete this entry ? calendar es Esta seguro\nde querer\nborrar esta entrada ?
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar es Esta seguro\nde querer\nborrar esta entrarda ?\n\nEsto borrara\nla entrada para todos los usuarios.
august common es Agosto
author nntp es Autor
available groups nntp es Grupos disponibles
bad login or password login es Usuario y/o contrase<73>a incorrecta.
base url admin es URL Base
birthday addressbook es Cumplea<65>os
book marks common es Book marks
bookmarks common es Bookmarks
brief description calendar es Descripci<63>n breve
calendar common es Calendario
calendar - add calendar es Calendario - Agregar
calendar - edit calendar es Calendario - Editar
calendar preferences common es Preferencias - Calendario
cancel common es Cancelar
cancel filemanager es Cancelar
cc email es CC
change common es Cambiar
change your password preferences es Cambie su contrase<73>a
change your profile preferences es Cambiar su perfil
change your settings preferences es Cambie sus Seteos
charset common es iso-8859-1
chat common es Chat
city addressbook es Ciudad
clear common es Clear
clear form common es Limpiar Formulario
clear form todo es Limpiar formulario
clipboard_contents filemanager es Contenido del Portapapeles
company name addressbook es Compania
completed todo es completada
compose email es Componer
copy common es Copiar
copy filemanager es Copiar
copy_as filemanager es Copiar como
create common es Crear
create filemanager es Crear
create group admin es Crear Grupo
create lang.sql file transy es Crear archivo lang.sql
create new language set transy es Crear nuevo set de lenguaje
created by common es Creado por
created by todo es Creado por
current users common es Usuarios conectados
current_file filemanager es Archivo Actual
daily calendar es Diario
date common es Fecha
date email es Fecha
date nntp es Fecha
date due todo es Fecha pautada
date format preferences es Formato fecha
days datedue todo es days Fecha pautada
days repeated calendar es d<>as repetidos
december common es Diciembre
default application preferences es Aplicaci<63>n por defecto
default sorting order preferences es Orden por defecto
delete common es Borrar
delete email es Borrar
delete filemanager es Borrar
description calendar es Descripci<63>n
disabled admin es Deshabilitado
display admin es Mostrar
display missing phrases in lang set transy es Mostrar frases perdidas es el set de lenguaje
done common es Hecho
download filemanager es Bajar
do_delete filemanager es Borrar
duration calendar es Duraci<63>n
e-mail common es E-Mail
e-mail addressbook es E-Mail
e-mail preferences common es Preferencias - E-Mail
edit common es Editar
edit filemanager es Editar
edit application admin es Editar aplicati<74>n
edit group admin es Editar Grupo
email email es E-Mail
email common es E-Mail
email account name email es Nombre de cuenta de Email
email address email es Direcci<63>n de Email
email password email es Contrase<73>a de Email
email signature preferences es Firma de E-Mail
enabled admin es Habilitado
enabled - hidden from navbar admin es Habilitado - Esconder es la Barra
enter your new password preferences es Entre su nueva contrase<73>a
entry has been deleted sucessfully common es Entrada borrada exitosamente
entry updated sucessfully common es Entrada actualizada exitosamente
error common es Error
error creating x x directory common es Error al crear %1%2directory
error deleting x x directory common es Error al borrar %1%2directory
error renaming x x directory common es Error al renombrar %1%2directory
err_saving_file filemanager es Error al guardar el archivo al disco
exit common es Salir
exit filemanager es Salir
fax addressbook es Fax
february common es Febrero
file manager common es Manejador de archivos
files email es Archivos
files filemanager es Archivos
file_upload filemanager es Subir Archivo
filter common es Filtro
first name common es Nombre
first name addressbook es Nombre
first page common es primer pagina
folder email es Carpeta
forum common es Forum
forward email es Reenviar
fr calendar es V
frequency calendar es Frequencia
fri calendar es Vie
friday common es Viernes
from email es De
ftp common es FTP
full description calendar es Descripci<63>n completa
generate new lang.sql file transy es Generar nuevo archivo lang.sql
generate printer-friendly version calendar es Generar versi<73>n para impresion
global public common es Global Publico
go! calendar es Ir!
group access common es Grupo Acceso
group has been added common es Grupo agregado
group has been deleted common es Grupo borrado
group has been updated common es Grupo actualizado
group name admin es Nombre Grupo
group public common es Grupo Publico
groups common es Grupos
groupsfile_perm_error filemanager es Para corregir este error necesitara setear apropiadamente los permisos del usuario/directorio.<BR> es sistemas unix use: chmod 770
group_files filemanager es grupo de archivos
headline sites admin es Sitios encabezados de noticias
headlines common es Encabezados
help common es Ayuda
high common es Alta
home common es Principal
home phone addressbook es Tel.Particular
human resources common es Recursos Humanos
idle admin es idle
if applicable email es Si es aplicable
ignore conflict calendar es Ignorar Conflicto
image email es Imagen
imap server type email es Tipo de servidor IMAP
import lang set transy es Importar set de lenguaje
installed applications admin es Aplicaciones Instaladas
inventory common es Inventario
ip admin es IP
it has been more then x days since you changed your password common es Han pasado mas de %1 dias desde que ud. cambio su contrase<73>a
january common es Enero
july common es Julio
june common es Junio
kill admin es Matar
language preferences es Lenguaje
last name common es Apellido
last name addressbook es Apellido
last page common es ultima pagina
last time read admin es Ultima lectura
last updated todo es Ultima Actualizaci<63>n
last x logins admin es Ultimos %1 logins
line 2 addressbook es Linea 2
list of current users admin es Lista de usuarios presentes
listings displayed admin es Listings Mostrados
login common es Login
login login es Login
login time admin es Hora de LogOn
loginid admin es LoginID
logout common es Logout
low common es Baja
mail server email es Servidor de Mail
mail server type email es Tipo de servidor de Mail
manager admin es Manager
march common es Marzo
max matchs per page preferences es Maximo de coincidencias por pagina
may common es Mayo
medium common es Media
message email es Mensaje
message transy es Mensaje
message x nntp es Mensaje %1
messages email es Mensajes
minutes calendar es minutos
minutes between reloads admin es Minutos entre recargas
mo calendar es L
mobile addressbook es Tel.Celular
mon calendar es Lun
monday common es Lunes
monitor email es Monitor
monitor nntp es Monitor
monitor newsgroups preferences es Monitor Grupos de Noticias
month calendar es Mes
monthly (by date) calendar es Mensual (por fecha)
monthly (by day) calendar es Mensual (por d<>a)
move selected messages into email es Mover los mensajes seleccionados a
name common es Nombre
network news admin es Red de noticias
new entry calendar es Nueva Entrada
new entry added sucessfully common es Nueva entrada agregada exitosamente
new group name admin es Nuevo nombre de grupo
new message email es Nuevo mensaje
new password [ leave blank for no change ] admin es Nueva contrase<73>a [ Deje es blanco para NO cambiar ]
new phrase has been added common es Nueva frase agregada
new phrase has been added transy es Nueva frase agregada
news file admin es Archivo Noticias
news headlines common es Encabezados de Noticias
news reader common es Lector de Noticias
news type admin es Tipo de Noticias
newsgroups nntp es Grupos de noticias
new_file filemanager es Nuevo Archivo
next email es Proximo
next nntp es Proximo
next page common es proxima pagina
nntp common es NNTP
no common es No
no filemanager es No
no matches found. calendar es No se encontraron coincidencias.
no subject email es Sin Asunto
non-standard email es No-Estandar
none common es Ninguno
normal common es Normal
note: this feature does *not* change your email password. this will need to be done manually. preferences es Nota: Esta opcion no cambia la contrase<73>a de su email. Esto deber<65> ser hecho manualmente.
notes addressbook es Notas
november common es Noviembre
no_file_name filemanager es No se especific<69> un nombre de archivo
october common es Octubre
ok common es OK
on *nix systems please type: x common es es sistemas *nix por favor escriba: %1
only yours common es solamente los suyos
original transy es Original
other number addressbook es Otro Numero
pager addressbook es Pager
participants calendar es Participantes
password common es Contrase<73>a
password login es Contrase<73>a
password has been updated common es Contrase<73>a actualizada
percent of users that logged out admin es Porcentaje de usuarios que se desloguearon
permissions admin es Permisos
permissions this group has admin es Permisos que tiene este grupo
permissions to the files/users directory common es permisos a los archivos/directorios de usuario
phrase in english transy es Frase es Ingles
phrase in new language transy es Frase es el nuevo lenguaje
phpgroupware login login es phpGroupWare login
please select a message first email es Por favor seleccione un mensaje primero
please x by hand common es Por favor %1 manualmente
"please, select a new theme" preferences es "Por favor, seleccione un nuevo tema"
powered by phpgroupware version x common es Potenciado por <a href=http://www.phpgroupware.org>phpGroupWare</a> versi<73>n %1
preferences common es Preferencias
previous email es Previo
previous page common es pagina previa
print common es Imprimir
printer friendly calendar es Versi<73>n impresi<73>n
priority common es Prioridad
private common es Privado
private_files filemanager es Archivos privados
project description todo es Descripci<63>n del proyecto
re-edit event calendar es Re-Editar Evento
re-enter password admin es Re-Ingresar contrase<73>a
re-enter your password preferences es Re-Ingrese su contrase<73>a
record access addressbook es Acceso al registro
record owner addressbook es Due<75>o del registro
remove all users from this group admin es Borrar todos los usuarios de este grupo
rename common es Renombrar
rename filemanager es Renombrar
rename_to filemanager es Renombar a
repeat day calendar es Repetir d<>a
repeat end date calendar es Repetir fecha final
repeat type calendar es Tipo repetici<63>n
repetition calendar es Repetici<63>n
reply email es Responder
reply all email es Responder a Todos
sa calendar es Sa
sat calendar es Sab
saturday common es Sabado
save common es Salvar
save filemanager es Grabar
search common es Buscar
search results calendar es Resultados de la busqueda
section email es Secci<63>n
select application transy es Seleccione aplicaci<63>n
select different theme preferences es Seleccione un tema diferente
select headline news sites preferences es Seleccione sites de Encabezados de Noticias
select language to generate for transy es Seleccionar lenguaje para el cual generar
select permissions this group will have admin es Selecciones los permisos que tendra este grupo
select users for inclusion admin es Seleccionar usuarios para incluci<63>n
select which application for this phrase transy es seleccione que aplicaci<63>n para esta frase
select which language for this phrase transy es seleccione que lenguaje para esta frase
send email es Enviar
send deleted messages to the trash email es Enviar mensaje borrados a el Trash
september common es Setiembre
session has been killed common es Sesion terminada
show all common es mostrar todos
show all groups nntp es Mostrar todos los grupos
show birthday reminders on main screen preferences es Mostrar recordatorios de cumplea<65>os es pantalla principal
show current users on navigation bar preferences es Mostrar usuarios conectados es la barra de navegaci<63>n
show groups containing nntp es Mostrar grupos conteniendo
show high priority events on main screen preferences es Mostar eventos de alta prioridad es pantalla principal
show new messages on main screen preferences es Mostar nuevos mensajes es pantalla principal
show text on navigation icons preferences es Mostrar descripci<63>n sobre los iconos
showing x common es Mostrando %1
showing x - x of x common es showing %1 - %2 of %3
site admin es Sitios
size email es Tama<6D>o
"sorry, that group name has already been taking." admin es Este nombre de grupo ya esta siendo utilizado.
"sorry, the follow users are still a member of the group x" admin es Los siguientes usuarios aun son miembros del grupo %1
"sorry, there was a problem proccesing your request." common es Hubo un problema al procesar su pedido.
"sorry, your login has expired" login es Su login a caducado.
source language transy es Lenguaje Origen
specify_file_name filemanager es Debe especificar un nombre para el archivo que desea crear
state addressbook es Estado
status todo es Estatus
status admin es Estatus
street addressbook es Calle
su calendar es Do
subject email es Asunto
subject nntp es Asunto
submit common es Enviar
submit changes admin es Enviar Cambios
sun calendar es Dom
sunday common es Domingo
switch current folder to email es Cambiar la presente carpeta a
target language transy es Lenguaje Destino
th calendar es J
that loginid has already been taken admin es Ese login ID ya esta siendo utilizado
that site has already been entered admin es Este sitio ya fue entrado
the following conflicts with the suggested time:<ul>x</ul> calendar es Los siguientes conflictos con las horas sugeridas:<ul>%1</ul>
the login and password can not be the same admin es El login y la contrase<73>a NO pueden ser iguales
the two passwords are not the same admin es Las dos contrase<73>as no son iguales
the two passwords are not the same preferences es Las dos contrase<73>as son distintas
they must be removed before you can continue admin es Estos deben ser removidos para poder continuar
this folder is empty email es Esta carpeta esta vacia
this month calendar es Este mes
this server is located in the x timezone preferences es Este servidor se encuentra es la zona horaria
this week calendar es Esta semana
threads nntp es Threads
thu calendar es Jue
thursday common es Jueves
time common es Hora
time format preferences es Formato hora
time zone offset preferences es Zona horaria
title admin es Titulo
title addressbook es Titulo
to email es Para
to correct this error for the future you will need to properly set the common es Para corregir este error para el futuro necesitara setear apropiadamente el
today calendar es Hoy
today is x's birthday! common es Hoy es el cumplea<65>os de %1!
todo todo es Tareas
todo list common es Lista de Tareas
todo list todo es Lista de tareas
todo list - add todo es Lista de tareas - agregar
todo list - edit todo es Lista de tareas - editar
tomorrow is x's birthday. common es Ma<4D>ana es el cumplea<65>os de %1.
total common es Total
total records admin es Total de registros
translation transy es Traducci<63>n
translation management common es Manejador de Traducci<63>n
trouble ticket system common es Sistema de Ticket de problemas
tu calendar es M
tue calendar es Mar
tuesday common es Martes
undisclosed recipients email es Destinatarios Ocultos
undisclosed sender email es Remitente Oculto
update nntp es Actualizar
updated common es Actualizado
upload filemanager es Subir
urgency todo es Urgencia
url addressbook es URL
use cookies login es utilizar cookies
use custom settings email es Usar seteos personalizados
use end date calendar es Usar fecha final
user accounts admin es Cuentas de usuario
user groups admin es Grupos de usuarios
username login es Usuario
users common es usuarios
usersfile_perm_error filemanager es Para corregir este error necesitara setear apropiadamente los permisos del usuario/directorio.<BR> es sistemas unix use: chmod 770
view common es Ver
view access log admin es Ver log de acceso
view sessions admin es Ver sesiones
view this entry calendar es Ver esta entrada
view/edit/delete all phrases transy es Ver/editar/borrar todas las frases
we calendar es Mi
wed calendar es Mie
wednesday common es Miercoles
week calendar es Semana
weekday starts on preferences es La semana comienza el
weekly calendar es Semanal
which groups common es Que groupos
which groups todo es Que groupos
work day ends on preferences es Final d<>a laboral
work day starts on preferences es Comienzo d<>a laboral
work phone addressbook es Tel.Trabajo
x matches found calendar es %1 coincidencias encontradas
x messages have been deleted email es %1 mensajes han sido borrados
year calendar es A<>o
yearly calendar es Anual
yes common es Si
yes filemanager es Si
you are required to change your password during your first login common es Se requiere que cambie la contrase<73>a durante su primer login.
you have 1 high priority event on your calendar today. common es Ud. tiene 1 evento de alta prioridad es su calendario para hoy.
you have 1 new message! common es Ud. tiene 1 nuevo mensaje!
you have been successfully logged out login es Ud. se ha deslogueado exitosamente.
you have entered an invailed date todo es ha entrado una fecha no valida
you have not entered a\nbrief description calendar es Ud. no ha ingresado una\nBrief descripci<63>n
you have not entered a\nvalid time of day. calendar es Ud. no ha ingresado una\nvalid hora valida.
you have x high priority events on your calendar today. common es Ud. tiene %1 eventos de alta prioridad es su calendario para hoy.
you have x new messages! common es Ud. tiene %1 nuevos mensajes!
you must add at least 1 permission to this account admin es Debe agregar por lo menos 1 permiso para esta cuenta.
you must enter a base url admin es Debe entrar una direcci<63>n url base
you must enter a display admin es Debe entrar un display
you must enter a news url admin es Debe entrar una direcci<63>n url de noticias
you must enter a password admin es Debe entrar una contrase<73>a
you must enter a password preferences es Debe entrar una contrase<73>a
you must enter an application name and title. admin es Debe entrar un nombre y titulo para la aplicaci<63>n.
you must enter one or more search keywords calendar es Ud. debe entrar una o mas claves de busqueda
you must enter the number of listings display admin es Debe entrar el numero de elementos listados a mostrar
you must enter the number of minutes between reload admin es Debe entrar el numero de minutos entre recargas
you must select a file type admin es Debe seleccionar un tipo de archivo
your current theme is: x preferences es Su actual tema es:
your message as been sent common es Su mensaje fue enviado
your search returned 1 match common es su busqueda retorno 1 coincidencia
your search returned x matchs common es su busqueda retorno %1 coincidencias
your session could not be verified. login es Su sesi<73>n no pudo ser verificada.
your settings have been updated common es Sus paramatros han sido actualizados
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar es Sus horas sugeridas de <B> %1 - %2 </B> estan es conflicto con las siguientes entradas es el calendario:
zip code addressbook es Codigo Postal
change main screen message admin es Cambiar mensaje de la pantalla principal
edit headline sites admin es Editar los sitios de encabezados
edit headlines shown by default admin es Editar los encabezados mostrados por defecto
notes admin es Notas
weather admin es Tiempo Metereol<6F>gico
manual admin es Manual
company addressbook es Compa<70>ia
newsgroups preferences es Grupos de noticias
notes preferences es Notas
notes preferences preferences es Preferencias de las notas
select headlines to display preferences es Seleccione los encabezados a mostrar
weather center preferences es Centro metereol<6F>gico

View File

@ -1,717 +0,0 @@
1 match found calendar fr 1 correspondance trouv<75>e
1 message has been deleted email fr 1 message a <20>t<EFBFBD> effac<61>
a calendar fr un
accept calendar fr Accepte
accepted calendar fr Accept<70>
access common fr Acc<63>s
access not permitted common fr Acc<63>s non autoris<69>
access type common fr Type d'acc<63>s
account active admin fr Compte actif
account has been created common fr Le compte a <20>t<EFBFBD> cr<63><72>
account has been deleted common fr Le compte a <20>t<EFBFBD> effac<61>
account has been updated common fr Le compte a <20>t<EFBFBD> mis <20> jour
account permissions admin fr Permissions du compte
account preferences common fr Pr<50>f<EFBFBD>rences du compte
acl common fr ACL
action admin fr Action
active common fr Actif
add a note for notes fr Ajouter une note pour
add a note for x notes fr Ajouter une note pour %1
add a single phrase transy fr Ajouter une seule phrase
add bookkeeping fr Ajouter
add category common fr Ajouter une cat<61>gorie
add common fr Ajouter
add_expense bookkeeping fr Ajouter une d<>pense
add global category admin fr Ajouter une cat<61>gorie globale
add_income bookkeeping fr Ajouter une recette
add new account admin fr Ajouter un nouveau compte
add new application admin fr Ajouter une nouvelle application
add new phrase transy fr Ajouter une nouvelle phrase
add new ticket tts fr Ajouter un nouveau ticket
add note notes fr Ajouter une nouvelle note
add x category for common fr Ajouter %1 cat<61>gorie pour
address book common fr Carnet d'adresses
addressbook common fr Carnet d'adresses
addressbook preferences common fr Pr<50>f<EFBFBD>rences du carnet d'adresses
address book - view addressbook fr Carnet d'adresses - Voir
address line 2 addressbook fr Adresse ligne 2
address line 3 addressbook fr Adresse ligne 3
address type addressbook fr Type d'adresse
addsub todo fr Ajouter sous
add sub todo fr Ajouter sous
add ticket tts fr Ajouter un ticket
add to addressbook email fr Ajouter au carnet d'adresses
addvcard common fr Ajouter une VCard
admin bookkeeping fr Admin
admin common fr Admin
administration common fr Administration
all common fr Tout
all day calendar fr Journ<72>e enti<74>re
allow anonymous access to this app admin fr Autoriser l'acc<63>s anonyme <20> cette application
all records and account information will be lost! admin fr Tous les enregistrements et informations du compte seront perdus!
amount bookkeeping fr Montant
anonymous user admin fr Utilisateur anonyme
any transy fr N'importe quel
application name admin fr Nom d'application
applications admin fr Applications
application title admin fr Titre d'application
application transy fr Application
april common fr Avril
are you sure\nyou want to\ndelete this entry ? calendar fr Etes-vous s<>r\nde vouloir\neffacer cette entr<74>e ?
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar fr Etes-vous s<>r\nde vouloir\neffacer cette entr<74>e ?\n\nCeci va effacer\ncette entr<74>e pour tous les utilisateurs.
are you sure you want to delete this account ? admin fr Etes-vous s<>r de vouloir effacer ce compte ?
are you sure you want to delete this application ? admin fr Etes-vous s<>r de vouloir effacer cette application ?
are you sure you want to delete this entry ? common fr Etes-vous s<>r de vouloir effacer cette entr<74>e ?
are you sure you want to delete this entry todo fr Etes-vous s<>r de vouloir effacer cette entr<74>e ?
are you sure you want to delete this group ? admin fr Etes-vous s<>r de vouloir effacer ce groupe ?
are you sure you want to delete this holiday ? calendar fr Etes-vous s<>r de vouloir effacer ces vacances ?
are you sure you want to delete this news site ? admin fr Etes-vous s<>r de vouloir effacer ce site de news ?
are you sure you want to delete this note ? notes fr Etes-vous s<>r de vouloir effacer cette note ?
are you sure you want to kill this session ? admin fr Etes-vous s<>r de vouloir tuer cette session ?
arial notes fr Arial
assign to tts fr Assigner <20>
august common fr Ao<41>t
author nntp fr Auteur
autosave default category common fr Cat<61>gorie par d<>faut d'auto-sauvegarde
available groups nntp fr Groupes disponibles
bad login or password login fr Mauvais login ou mot de passe
base url admin fr URL de Base
bbs phone addressbook fr T<>l<EFBFBD>phone BBS
birthday addressbook fr Anniversaire
bookkeeping admins common fr Admins de la comptabilit<69>
bookkeeping common fr Comptabilit<69>
book marks common fr Marqueurs
bookmarks common fr Marqueurs
brief description calendar fr Br<42>ve description
business city common fr Ville travail
business common fr Travail
business address type addressbook fr Type d'adresse travail
business country common fr Pays travail
business email common fr EMail travail
business email type common fr Type d'EMail travail
business fax common fr Fax travail
business phone common fr T<>l<EFBFBD>phone travail
business state common fr R<>gion travail
business street common fr Rue travail
business zip code common fr Code postal travail
calendar - add calendar fr Calendrier - Ajouter
calendar common fr calendrier
calendar - edit calendar fr Calendrier - Editer
calendar preferences common fr Pr<50>f<EFBFBD>rences calendrier
cancel common fr Annuler
cannot display the requested article from the requested newsgroup nntp fr Ne peut afficher l'article demand<6E> du newsgroup demand<6E>
car phone addressbook fr T<>l<EFBFBD>phone voiture
categories common fr Cat<61>gories
categories for common fr Cat<61>gories pour
category common fr Cat<61>gorie
category description admin fr Description Cat<61>gorie
category name admin fr Nom Cat<61>gorie
category x has been added ! common fr Cat<61>gorie %1 a <20>t<EFBFBD> ajout<75>e !
category x has been updated ! common fr Cat<61>gorie %1 a <20>t<EFBFBD> mise <20> jour !
cc email fr CC
cell phone addressbook fr T<>l<EFBFBD>phone portable
center weather fr Centrer
change common fr Changer
change main screen message admin fr Changer le message de l'<27>cran principal
change your password preferences fr Changer votre mot de passe
change your profile preferences fr Changer votre profil
change your settings preferences fr Changer vos r<>glages
charset common fr iso-8859-1
chat common fr Chat
choose a font notes fr Choisissez une fonte
choose a category common fr Choisissez une cat<61>gorie
choose the category common fr Choisissez la cat<61>gorie
choose the font size notes fr Choisissez la taille de la fonte
city addressbook fr Ville
city admin fr Ville
city weather fr Ville
clear common fr Vider
clear form common fr Vider l'<27>cran
clipboard_contents filemanager fr Contenu du presse-papiers
common transy fr Commun
company common fr Soci<63>t<EFBFBD>
company name addressbook fr Nom de la soci<63>t<EFBFBD>
completed todo fr Complet<65>
compose email fr Composer
contact common fr Contact
copy_as filemanager fr Copier comme
copy common fr Copier
country addressbook fr Pays
country weather fr Temps dans le pays
courier new notes fr Courier New
create common fr Cr<43>er
created by common fr Cr<43>e par
create group admin fr Cr<43>er groupe
create lang.sql file transy fr Cr<43>er le fichier lang.sql
create new language set transy fr Cr<43>er le jeu de langage
currency common fr Devise
current_file filemanager fr Fichier actuel
current users common fr Utilisateurs actuels
custom common fr Personnalis<69>
custom email settings email fr R<>glages d'EMail personnalis<69>s
custom fields addressbook fr Champs personnalis<69>s
daily calendar fr Journalier
daily matrix view calendar fr Vue journali<6C>re de la matrice
date bookkeeping fr Date
date common fr Date
date due common fr Date voulue
date format preferences fr Format de la date
days datedue todo fr Jours de la date voulue
days repeated calendar fr Jours r<>p<EFBFBD>t<EFBFBD>s
december common fr Decembre
default application preferences fr Application par d<>faut
default calendar filter calendar fr Filtre de calendrier par d<>faut
default calendar view calendar fr Vue du calendrier par d<>faut
default sorting order email fr Ordre d'affichage par d<>faut
delete bookkeeping fr Effacer
delete common fr Effacer
department addressbook fr D<>partement
description common fr Description
detail tts fr D<>tail
disabled admin fr D<>sactiv<69>
display admin fr Afficher
display mini calendars when printing calendar fr Afficher mini calendriers <20> l'impression
display missing phrases in lang set transy fr Afficher les phrases qui manquent dans le jeu de langage
display note for notes fr Afficher la note pour
display status of events calendar fr Afficher le statut des <20>v<EFBFBD>nements
do_delete filemanager fr Effacer
do_delete x filemanager fr Effacer %1
domestic common fr Domestique
done common fr Fait
download filemanager fr Download
duration calendar fr Dur<75>e
edit application admin fr Editer l'application
edit bookkeeping fr Editer
edit common fr Editer
edit category common fr Editer la cat<61>gorie
edit categories common fr Editer les cat<61>gories
edit custom fields preferences fr Editer les champs personnalis<69>s
edit_expense bookkeeping fr Editer la d<>pense
edit group admin fr Editer le groupe
edit_income bookkeeping fr Editer la recette
edit note for notes fr Editer la note pour
edit user account admin fr Editer le compte de l'utilisateur
edit x category for common fr Editer %1 cat<61>gorie pour
email account name email fr Nom de compte EMail
email address email fr Adresse EMail
e-mail common fr EMail
email common fr EMail
email password email fr Mot de passe EMail
e-mail preferences common fr Pr<50>f<EFBFBD>rences EMail
email signature email fr Signature EMail
email type common fr Type d'EMail
enabled admin fr Activ<69>
enabled - hidden from navbar admin fr Activ<69> - Cach<63> de la barre de navigation
enabled weather fr Activ<69>
end date/time calendar fr Date/Heure de fin
end date common fr Date de fin
end time common fr Heure de fin
ends calendar fr Finit
enter your new password preferences fr Entrez votre nouveau mot de passe
entries bookkeeping fr Entr<74>es
entry has been deleted sucessfully common fr L'entr<74>e a <20>t<EFBFBD> supprim<69>e avec succ<63>s
entry updated sucessfully common fr L'entr<74>e a <20>t<EFBFBD> mise <20> jour avec succ<63>s
error common fr Erreur
error creating x x directory common fr Erreur lors de la cr<63>ation du r<>pertoire %1%2
error deleting x x directory common fr Erreur lors de l'effacement du r<>pertoire %1%2
error renaming x x directory common fr Erreur lors du renommage du r<>pertoire %1%2
err_saving_file filemanager fr Erreur lors de la sauvegarde du fichier sur le disque
exit common fr Sortie
extra common fr Extra
expense bookkeeping fr D<>pense
expenses bookkeeping fr D<>penses
export contacts addressbook fr Exporter les contacts
failed to find your station weather fr Echec lors de la recherche de votre station
fax addressbook fr Fax
february common fr F<>vrier
fields common fr Champs
fields to show in address list addressbook fr Champs <20> montrer dans la liste des adresses
file manager common fr Gestionnaire de fichiers
files common fr Fichiers
file_upload filemanager fr Upload de fichier
filter common fr Filtre
firstname bookkeeping fr Pr<50>nom
first name common fr Pr<50>nom
first page common fr Premi<6D>re page
folder email fr Dossier
forecast admin fr Pr<50>vision
forecasts weather fr Pr<50>visions
forecast weather fr Pr<50>vision
forecast zone admin fr Zone de pr<70>vision
forum common fr Forum
forward email fr Transf<73>rer
(for weekly) calendar fr (Pour hebdomadaire)
fr calendar fr F
free/busy calendar fr Libre/occup<75>
frequency calendar fr Fr<46>quence
fri calendar fr Ven
friday common fr Vendredi
from email fr De
ftp common fr FTP
full description calendar fr Description compl<70>te
full name addressbook fr Nom complet
fzone admin fr FZone
fzone weather fr FZone
generate new lang.sql file transy fr G<>n<EFBFBD>rer un nouveau fichier lang.sql
generate printer-friendly version calendar fr G<>n<EFBFBD>rer une version imprimable
geo addressbook fr GEO
georgia notes fr G<>orgie
global categories admin fr Cat<61>gories globales
global common fr Global
global public and group public calendar fr Public global et groupe public
global public common fr Public global
global public only calendar fr Public global seulement
global weather fr Global
go! calendar fr Go!
grant addressbook access common fr Autoriser l'acc<63>s au carnet d'adresses
grant calendar access common fr Autoriser l'acc<63>s au calendrier
grant todo access common fr Autoriser l'acc<63>s aux t<>ches
group access common fr Acc<63>s de groupe
group common fr Groupe
group_files filemanager fr Fichiers de groupe
group has been added common fr Le groupe a <20>t<EFBFBD> ajout<75>
group has been deleted common fr Le groupe a <20>t<EFBFBD> effac<61>
group has been updated common fr Le groupe a <20>t<EFBFBD> mis <20> jour
group name admin fr Nom du groupe
group public common fr Groupe public
group public only calendar fr Groupe public seulement
groups common fr Groupes
groupsfile_perm_error filemanager fr Pour corriger cette erreur vous devez mettre les bonnes permissions aux fichiers/r<>pertoires.<BR> Sur les syst<73>mes *nix taper: chmod 770
headline preferences common fr Pr<50>f<EFBFBD>rences des infos
headlines common fr Infos
headline sites admin fr Sites d'infos
help common fr Aide
helvetica notes fr Helvetica
hide php information admin fr Cacher les informations sur PHP
high common fr Haut
home city addressbook fr Ville maison
home common fr Maison
home address type addressbook fr Type d'adresse maison
home country addressbook fr Pays maison
home directory admin fr R<>pertoire maison
home email addressbook fr EMail maison
home email type addressbook fr Type d'EMail maison
home phone addressbook fr T<>l<EFBFBD>phone maison
home state addressbook fr R<>gion maison
home street addressbook fr Rue maison
home zip code addressbook fr Code postal maison
human resources common fr Ressources humaines
icons and text preferences fr Icones et texte
icons only preferences fr Icones seulement
id admin fr ID
idle admin fr Disponible
id weather fr ID
if applicable email fr Si applicable
ignore conflict calendar fr Ignorer le conflit
image email fr Image
imap server type email fr Type de serveur IMAP
import contacts addressbook fr Importer les contacts
import file addressbook fr Importer le fichier
import from outlook addressbook fr Importer depuis Outlook
import lang set transy fr Importer le jeu de langage
income bookkeeping fr Revenu
installed applications admin fr Applications install<6C>es
interface/template selection preferences fr Selection de l'interface/template
international common fr International
inventory common fr Inventaire
ip admin fr IP
i participate calendar fr Je participe
isdn phone addressbook fr T<>l<EFBFBD>phone RNIS
it has been more then x days since you changed your password common fr Cela fait plus de %1 jours que vous avez chang<6E> de mot de passe
january common fr Janvier
july common fr Juillet
june common fr Juin
kill admin fr Tuer
label addressbook fr Label
language preferences fr Langue
large notes fr Large
last login admin fr Derni<6E>re connection
last login from admin fr Derni<6E>re connection depuis
lastname bookkeeping fr Nom de famille
last name common fr Nom de famille
last page common fr Derni<6E>re page
last time read admin fr Derni<6E>re lecture
last updated todo fr Derni<6E>re mise <20> jour
last x logins admin fr Derni<6E>res %1 connections
line 2 addressbook fr Ligne 2
links weather fr Liens
listings displayed admin fr Listings affich<63>s
list of current users admin fr Liste d'utilisateurs actuels
logging bookkeeping fr Connecte
login common fr Login
loginid admin fr LoginID
loginid bookkeeping fr LoginID
login screen admin fr Ecran de login
login shell admin fr Shell de login
login time admin fr Heure de login
logout common fr Logout
low common fr Bas
mail folder(uw-maildir) email fr R<>pertoire de mail (uw-maildir)
mail server email fr Serveur de mail
mail server type email fr Type de serveur de mail
main screen common fr Ecran principal
main screen message admin fr Message de l'<27>cran principal
manager admin fr Gestionnaire
manual common fr Manuel
march common fr Mars
max matchs per page preferences fr Occurences max par page
may common fr Mai
medium common fr Moyen
message common fr Message
message phone addressbook fr T<>l<EFBFBD>phone de message
messages email fr Messages
message x nntp fr Message %1
metar admin fr Metar
metar weather fr Metar
middle name addressbook fr Deuxi<78>me pr<70>nom
minutes between reloads admin fr Minutes entre les rechargements
minutes calendar fr minutes
mobile addressbook fr Portable
mobile phone common fr Num<75>ro de portable
mo calendar fr M
modem phone common fr Num<75>ro de modem
mon calendar fr Lun
monday common fr Lundi
monitor common fr Moniteur
monitor newsgroups preferences fr Moniteur des Newsgroups
month calendar fr Mois
monthly (by date) calendar fr Mensuel (par date)
monthly (by day) calendar fr Mensuel (par jour)
monthly calendar fr Mensuel
move selected messages into email fr D<>placer les messages choisis dans
name common fr Nom
network news admin fr Infos r<>seau
new entry added sucessfully common fr Nouvelle entr<74>e ajout<75>e avec succ<63>s
new entry calendar fr Nouvelle entr<74>e
new_file filemanager fr Nouveau fichier
new group name admin fr Nouveau nom de groupe
new message email fr Nouveau message
new password [ leave blank for no change ] admin fr Nouveau mot de passe [ Laisser vide pour ne pas le changer ]
new phrase has been added transy fr La nouvelle phrase a <20>t<EFBFBD> ajout<75>e
news file admin fr Fichier de News
newsgroups common fr Newsgroups
news headlines common fr Titres de News
news reader common fr Lecteur de News
news type admin fr Type de News
new ticket tts fr Nouveau ticket
next common fr Suivant
next page common fr Page suivante
nntp common fr NNTP
no common fr Non
<b>No conversion type &lt;none&gt; could be located.</b> Please choose a conversion type from the list addressbook fr <b>Aucun type de conversion &lt;none&gt; n'a pu <20>tre trouv<75>.</b> S'il vous pla<6C>t choisissez un type de conversion depuis la liste
no_file_name filemanager fr Aucun fichier n'a <20>t<EFBFBD> sp<73>cifi<66>
no matches found. calendar fr Aucune occurence trouv<75>e.
no matchs found admin fr Aucune occurence trouv<75>e
no repsonse calendar fr Pas de r<>ponse
none common fr Aucun
non-standard email fr Non-Standard
normal common fr Normal
no subject common fr Pas de sujet
no response calendar fr Pas de r<>ponse
not applicable weather fr Pas applicable
note has been added for x ! notes fr La note a <20>t<EFBFBD> ajout<75>e pour %1 !
note has been updated for x ! notes fr La note a <20>t<EFBFBD> mise <20> jour pour %1 !
notes common fr Notes
notes categories common fr Cat<61>gories de notes
notes list notes fr Liste de notes
notes preferences common fr Pr<50>f<EFBFBD>rences de notes
note: this feature does *not* change your email password. this will need to be done manually. preferences fr Note: Cette fonctionnalit<69> ne change *pas* votre mot de passe d'EMail. Ceci devra <20>tre fait manuellement.
no tickets found tts fr Aucun ticket trouv<75>.
november common fr Novembre
observations weather fr Observations
october common fr Octobre
ok common fr OK
only yours common fr Seulement les v<>tres
on *nix systems please type: x common fr Sur les syst<73>mes *nix veuillez taper: %1
or: days from startdate: todo fr ou: jours depuis la date de d<>part:
original transy fr Original
or: select for today: todo fr ou: selectionner pour aujourd'hui:
other common fr Autre
other number addressbook fr Autre nombre
other phone common fr Autre t<>l<EFBFBD>phone
owner common fr Propri<72>taire
pager addressbook fr Pager
parcel addressbook fr Paquet
parent category common fr Cat<61>gorie parente
parent project todo fr Projet parent
participant calendar fr Participant
participants calendar fr Participants
participates calendar fr Participe
password common fr Mot de passe
password has been updated common fr Le mot de passe a <20>t<EFBFBD> mis <20> jour
percent of users that logged out admin fr Pourcentage d'utilisateurs qui se sont d<>connect<63>s
permissions admin fr Permissions
permissions this group has admin fr Permissions accord<72>es <20> ce groupe
permissions to the files/users directory common fr Permissions sur le r<>pertoire des fichiers/utilisateurs
personal common fr Personnel
personalized notes for notes fr Notes personnalis<69>es pour
phone numbers addressbook fr Num<75>ros de t<>l<EFBFBD>phone
phpgroupware login login fr phpGroupWare login
php information admin fr Informations PHP
phrase in english transy fr Phrase en Anglais
phrase in new language transy fr Phrase dans la nouvelle langue
please enter a name for that category ! admin fr Entrez un nom pour cette cat<61>gorie, s'il vous pla<6C>t !
please select a message first email fr S<>lectionez d'abord un message, s'il vous pla<6C>t
please, select a new theme preferences fr S<>lectionnez un nouveau th<74>me, s'il vous pla<6C>t
please set your preferences for this app common fr R<>glez vos pr<70>f<EFBFBD>rences pour cette application, s'il vous pla<6C>t
please x by hand common fr %1 <20> la main, s'il vous pla<6C>t
postal addressbook fr Postal
powered by phpgroupware version x common fr Fonctionnant avec <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
pref common fr pref
prefer common fr Pr<50>f<EFBFBD>re
preferences common fr Pr<50>f<EFBFBD>rences
prefix addressbook fr Pr<50>fixe
previous email fr Pr<50>c<EFBFBD>dent
previous page common fr Page pr<70>c<EFBFBD>dente
print common fr Imprimer
printer friendly calendar fr Imprimable
priority common fr Priorit<69>
private and global public calendar fr Public priv<69> et global
private and group public calendar fr Public priv<69> et groupe
private common fr Priv<69>
private_files filemanager fr Fichiers priv<69>s
private only calendar fr Priv<69> seulement
proceed bookkeeping fr Continuer
project description todo fr Description du projet
public common fr public
public key addressbook fr Cl<43> publique
read common fr Lire
recent weather fr R<>cent
record access addressbook fr Enregistrer l'acc<63>s
record owner addressbook fr Enregistrer le propri<72>taire
re-edit event calendar fr R<><52>diter l'<27>v<EFBFBD>nement
re-enter password admin fr Rentrez le mot de passe
re-enter your password preferences fr Rentrez votre mot de passe
refresh calendar fr Rafra<72>chir
region admin fr R<>gion
regions admin fr R<>gions
regions weather fr R<>gions
region weather fr R<>gion
reject calendar fr Rejette
rejected calendar fr Rejet<65>
remove all users from this group admin fr Enlever tous les utilisateurs de ce groupe
rename common fr Renommer
rename_to filemanager fr Renommer en
repeat day calendar fr Jour de r<>p<EFBFBD>tition
repeat end date calendar fr Date de fin de r<>p<EFBFBD>tition
repeating event information calendar fr Informations d'<27>v<EFBFBD>nement r<>p<EFBFBD>titif
repeat type calendar fr Type de r<>p<EFBFBD>tition
repetition calendar fr R<>p<EFBFBD>tition
reply all email fr R<>pondre <20> tous
reply email fr R<>pondre
replyto email fr R<>pondre <20>
reports bookkeeping fr Rapports
sa calendar fr Sa
sat calendar fr Sam
saturday common fr Samedi
save common fr Sauvegarder
scheduling conflict calendar fr Conflit de planification
search common fr Chercher
search results calendar fr R<>sultats de recherche
section email fr Section
select application transy fr Choisissez l'application
select category common fr Choisissez la cat<61>gorie
select different theme preferences fr Choisissez un th<74>me diff<66>rent
select headline news sites common fr Choisissez les sites d'infos
select language to generate for transy fr Choisissez la langue <20> g<>n<EFBFBD>rer
select parent category common fr Choisissez la cat<61>gorie parente
select permissions this group will have admin fr Choisissez les permissions que ce groupe va avoir
select users for inclusion admin fr Choisissez les utilisateurs <20> inclure
select which application for this phrase transy fr Choisissez quelle application pour cette phrase
select which language for this phrase transy fr Choisissez quel langue pour cette phrase
select which location this app should appear on the navbar, lowest (left) to highest (right) admin fr Choisissez <20> quel endroit cette application devrait appara<72>tre dans la navbar, du plus bas (gauche) au plus haut (droite)
send deleted messages to the trash email fr Envoyer les messages effac<61>s dans la corbeille
send email fr Envoyer
send updates via email common fr Envoyer les mises <20> jour par EMail
send/Receive updates via email calendar fr Envoyer/recevoir les mises <20> jour par EMail
september common fr Septembre
session has been killed common fr La session a <20>t<EFBFBD> tu<74>e
show all common fr Montrer tout
show all groups nntp fr Montrer tous les groupes
show birthday reminders on main screen addressbook fr Montrer les rappels d'anniversaires sur la page principale
show current users on navigation bar preferences fr Montrer les utilisateurs actuels sur la barre de navigation
show day view on main screen calendar fr Montrer la vue du jour sur la page principale
show groups containing nntp fr Montrer les groupes contenant
show high priority events on main screen calendar fr Montrer les <20>v<EFBFBD>nements prioritaires sur la page principale
showing x common fr Montre %1
showing # x of x weather fr Montre # %1 sur %2
showing x - x of x common fr Montre %1 - %2 sur %3
show navigation bar as preferences fr Montrer la barre de navigation comme
show new messages on main screen email fr Montrer les nouveaux messages sur la page principale
show sender's email address with name email fr Montrer l'adresse EMail de l'envoyeur avec le nom
show text on navigation icons preferences fr Montrer le texte sur les ic<69>nes de navigation
site admin fr Site
size email fr Taille
small notes fr Petit
sorry, that group name has already been taking. admin fr D<>sol<6F>, ce nom de groupe a d<>j<EFBFBD> <20>t<EFBFBD> pris.
sorry, the follow users are still a member of the group x admin fr D<>sol<6F>, les utilisateurs suivants sont encore membres du groupe %1
sorry, the owner has just deleted this event calendar fr D<>sol<6F>, le propri<72>taire vient juste d'effacer cet <20>v<EFBFBD>nement
sorry, there was a problem processing your request. common fr D<>sol<6F>, il y a eu un probl<62>me d'ex<65>cution de votre requ<71>te.
sorry, your login has expired login fr D<>sol<6F>, votre login a expir<69>
source language transy fr Langue source
specify_file_name filemanager fr Vous devez sp<73>cifier un nom pour le fichier que vous voulez cr<63>er
start date/time calendar fr Date/heure de d<>but
start date common fr Date de d<>but
start time common fr Heure de d<>but
state addressbook fr R<>gion
state weather fr R<>gion
Station admin fr Station
stations admin fr Stations
stations weather fr Stations
station weather fr Station
statistics bookkeeping fr Statistiques
status common fr Etat
street addressbook fr Rue
subject common fr Sujet
submit changes admin fr Soumettre les changements
submit common fr Soumettre
subproject description todo fr Description du sous-projet
sub todo fr sous
su calendar fr So
successfully imported x records into your addressbook. addressbook fr Import<72> avec succ<63>s %1 enregistrements dans votre carnet d'adresses.
suffix addressbook fr Suffixe
sun calendar fr Dim
sunday common fr Dimanche
switch current folder to email fr Changer de dossier courant vers
switch to bookkeeping fr Changer vers
table admin fr Table
tables weather fr Tables
target language transy fr Langue cible
tentative calendar fr Tentative
text only preferences fr Texte seulement
that category name has been used already ! admin fr Ce nom de cat<61>gorie a d<>j<EFBFBD> <20>t<EFBFBD> utilis<69> !
that loginid has already been taken admin fr Ce loginID a d<>j<EFBFBD> <20>t<EFBFBD> utilis<69>
that phrase already exists common fr Cette phrase existe d<>j<EFBFBD>
that site has already been entered admin fr Ce site a d<>j<EFBFBD> <20>t<EFBFBD> entr<74>
th calendar fr T
the following conflicts with the suggested time:<ul>x</ul> calendar fr L'<27>l<EFBFBD>ment suivant entre en conflit avec l'heure sugg<67>r<EFBFBD>e:<ul>%1</ul>
the login and password can not be the same admin fr Le login et le mot de passe ne peuvent <20>tre identiques
there was an error trying to connect to your mail server.<br>please, check your username and password, or contact your admin. email fr Il y a eu une erreur en essayant de se connecter <20> votre serveur de mail.<br>S'il vous pla<6C>t, v<>rifiez votre nom et mot de passe, ou contactez votre administrateur.
there was an error trying to connect to your news server.<br>please contact your admin to check the news servername, username or password. calendar fr Il y a eu une erreur en essayant de se connecter <20> votre serveur de News.<br>S'il vous pla<6C>t, contactez votre administrateur pour v<>rifier le nom du serveur de News, votre nom ou mot de passe.
the two passwords are not the same common fr Les deux mots de passe ne sont pas les m<>mes
theme (colors/fonts) selection preferences fr S<>lection du th<74>me (couleurs/fontes)
they must be removed before you can continue admin fr Ils doivent <20>tre enlev<65>s avant que vous puissiez continuer
this folder is empty email fr Ce dossier est vide
this month calendar fr Ce mois
this person's first name was not in the address book. addressbook fr Le pr<70>nom de cette personne n'<27>tait pas dans le carnet d'adresses
this server is located in the x timezone preferences fr Ce serveur est situ<74> dans la timezone %1
this week calendar fr Cette semaine
this year calendar fr Cette ann<6E>e
threads nntp fr Threads
thu calendar fr Jeu
thursday common fr Jeudi
tickets open x tts fr Tickets ouverts %1
tickets total x tts fr Tickets totaux %1
time common fr Heure
time created notes fr Heure cr<63><72>
time format preferences fr Format d'heure
times new roman notes fr Times New Roman
time zone common fr Timezone
time zone offset common fr Offset de Time zone
title common fr Titre
to correct this error for the future you will need to properly set the common fr Pour corriger cette erreur pour le futur vous allez devoir r<>gler correctement le
today calendar fr Aujourd'hui
today is x's birthday! common fr Aujourd'hui c'est l'anniversaire de %1 !
todo categories common fr Cat<61>gories A faire
todo list - add sub-project todo fr Liste A faire - ajouter un sous-projet
todo list - add todo fr Liste A faire - ajouter
todo list common fr Liste A faire
todo list - edit todo fr Liste A faire - <20>diter
todo preferences common fr Pr<50>f<EFBFBD>rences A faire
todo common fr A faire
to email fr A
tomorrow is x's birthday. common fr Demain c'est l'anniversaire de %1.
total common fr Total
total records admin fr Nombre total d'enregistrements
translation management common fr Gestion de la traduction
translation transy fr Traduction
trouble ticket system common fr Syst<73>me d'incidents
tu calendar fr M
tue calendar fr Mar
tuesday common fr Mardi
undisclosed recipients email fr Destinataires cach<63>s
undisclosed sender email fr Envoyeur cach<63>
updated common fr Mis <20> jour
update nntp fr Mise <20> jour
upload filemanager fr Upload
urgency todo fr Urgence
url addressbook fr URL
use cookies login fr Utiliser les cookies
use custom settings email fr Utiliser les r<>glages personnalis<69>s
use end date calendar fr Utiliser la date de fin
user accounts admin fr Comptes utilisateurs
user groups admin fr Groupes d'utilisateurs
username login fr Nom d'utilisateur
user common fr Utilisateur
users common fr Utilisateurs
usersfile_perm_error filemanager fr Pour corriger cette erreur vous allez devoir mettre les bonnes permissions sur le r<>pertoire des fichiers/utilisateurs.<BR> Sur les syst<73>mes *nix veuillez taper: chmod 707
vcard common fr VCard
vcards require a first name entry. addressbook fr Les VCards n<>cessitent une entr<74>e Pr<50>nom.
verdana notes fr Verdana
very large notes fr Tr<54>s grand
very small notes fr Tr<54>s petit
video phone addressbook fr T<>l<EFBFBD>phone Vid<69>o
view access log admin fr Voir les logs d'acc<63>s
view all tickets tts fr Voir tous les tickets
view bookkeeping fr Voir
view common fr Voir
view/edit/delete all phrases transy fr Voir/<2F>diter/effacer toutes les phrases
view_expense bookkeeping fr Voir la d<>pense
view_income bookkeeping fr Voir la recette
view matrix of actual month todo fr Voir la matrice du mois actuel
view only open tickets tts fr Voir seulement les tickets ouverts
view sessions admin fr Voir les sessions
view this entry calendar fr Voir cette entr<74>e
voice phone addressbook fr T<>l<EFBFBD>phone vocal
weather center admin fr Centre m<>t<EFBFBD>orologique
weather center preferences fr Centre m<>t<EFBFBD>orologique
weather preferences fr M<>t<EFBFBD>o
weather weather fr M<>t<EFBFBD>o
we calendar fr M
wed calendar fr Mer
wednesday common fr Mercredi
week calendar fr Semaine
weekday starts on calendar fr La semaine d<>marre le
weekly calendar fr Hebdomadaire
when creating new events default set to private calendar fr A la cr<63>ation de nouveaux <20>v<EFBFBD>nements mettre par d<>faut en priv<69>
which groups common fr Quels groupes
work day ends on calendar fr Jour de travail finit le
work day starts on calendar fr Jour de travail d<>marre le
work phone addressbook fr T<>l<EFBFBD>phone travail
x matches found calendar fr %1 occurences trouv<75>es
x messages have been deleted email fr %1 messages ont <20>t<EFBFBD> effac<61>s
year calendar fr Ann<6E>e
yearly calendar fr Annuel
yes common fr Oui
you are required to change your password during your first login common fr Vous devez changer votre mot de passe <20> la premi<6D>re connection
you have 1 high priority event on your calendar today. common fr Vous avez 1 <20>v<EFBFBD>nement de haute priorit<69> sur votre calendrier aujourd'hui.
you have 1 new message! common fr Vous avez 1 nouveau message!
you have been successfully logged out login fr Vous avez <20>t<EFBFBD> d<>connect<63> avec succ<63>s
you have entered an invailed date todo fr Vous avez entr<74> une date incorrecte
you have messages! common fr Vous avez des messages!
you have no new messages common fr Vous n'avez pas de nouveaux messages
you have not entered a valid date calendar fr Vous n'avez pas entr<74> une date correcte
you have not entered a title calendar fr Vous n'avez pas entr<74> de titre
you have not entered a valid time of day calendar fr Vous n'avez pas entr<74> une heure de la journ<72>e correcte
you have x high priority events on your calendar today. common fr Vous avez %1 <20>v<EFBFBD>nements de haute priorit<69> sur votre calendrier aujourd'hui.
you have x new messages! common fr Vous avez %1 nouveaux messages!
you must add at least 1 permission or group to this account admin fr Vous devez ajouter au moins une permission ou groupe <20> ce compte
you must enter a base url admin fr Vous devez entrer une URL de base
you must enter a display admin fr Vous devez entrer un <20>cran
you must enter an application name and title. admin fr Vous devez entrer un nom d'application et titre.
you must enter a news url admin fr Vous devez entrer une URL de News
you must enter a password common fr Vous devez entrer un mot de passe
you must enter one or more search keywords calendar fr Vous devez entrer un ou plusieurs mots cl<63>s de recherche
you must enter the number of listings display admin fr Vous devez entrer le nombre d'<27>l<EFBFBD>ments <20> afficher
you must enter the number of minutes between reload admin fr Vous devez entrer le nombre de minutes entre les rechargements
you must select a file type admin fr Vous devez choisir un type de fichier
your current theme is: x preferences fr Voter th<74>me courant est: x
your message has been sent common fr Votre message a <20>t<EFBFBD> envoy<6F>
your search returned 1 match common fr Votre recherche a renvoy<6F> une correspondance
your search returned x matchs common fr Votre recherche a renvoy<6F> %1 correspondances
your session could not be verified. login fr Votre session n'a pas pu <20>tre v<>rifi<66>e.
your settings have been updated common fr Vos r<>glages ont <20>t<EFBFBD> mis <20> jour
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar fr L'heure que vous avez sugg<67>r<EFBFBD> <B> %1 - %2 </B> entre en conflit avec les entr<74>s suivantes du calendrier:
zip code addressbook fr Code postal
zone admin fr Zone
zone weather fr Zone

View File

@ -1,472 +0,0 @@
(for weekly) calendar hu (hetente t<>rt<72>n<EFBFBD> esem<65>nyn<79>l)
1 match found calendar hu 1 tal<61>lat
1 message has been deleted email hu 1 <20>zenet kit<69>r<EFBFBD>lve
a calendar hu
access common hu Hozz<7A>f<EFBFBD>r<EFBFBD>s
access type common hu Hozz<7A>f<EFBFBD>r<EFBFBD>s t<>pusa
access type todo hu El<45>r<EFBFBD>s t<>pusa
account active admin hu Hozz<7A>f<EFBFBD>r<EFBFBD>s akt<6B>v
account has been created common hu Hozz<7A>f<EFBFBD>r<EFBFBD>s l<>trehozva
account has been deleted common hu Hozz<7A>f<EFBFBD>r<EFBFBD>s t<>r<EFBFBD>lve
account has been updated common hu Hozz<7A>f<EFBFBD>r<EFBFBD>s m<>dos<6F>tva
account preferences common hu Hozz<7A>f<EFBFBD>r<EFBFBD>s tulajdons<6E>gok
active admin hu Akt<6B>v
add common hu Hozz<7A>ad
add a single phrase transy hu Egy kifejez<65>s hozz<7A>ad<61>sa
add new account admin hu Hozz<7A>f<EFBFBD>r<EFBFBD>st hozz<7A>ad
add new application admin hu Alkalmaz<61>s hozz<7A>ad<61>sa
add new phrase transy hu <09>j kifejez<65>s hozz<7A>ad<61>sa
add to addressbook email hu Hozz<7A>ad a c<>mlist<73>hoz
address book common hu C<>mjegyz<79>k
address book addressbook hu C<>mlista
address book - view addressbook hu C<>mjegyz<79>k - n<>zet
addressbook common hu C<>mjegyz<79>k
addressbook preferences common hu C<>mjegyz<79>k tulajdons<6E>gok
addsub todo hu Al-teend<6E>
admin common hu Admin
administration common hu Adminisztr<74>ci<63>
all transy hu <09>sszes
all calendar hu <09>sszes
all records and account information will be lost! admin hu Minden bejegyz<79>s <20>s inform<72>ci<63> t<>rl<72>sre ker<65>l a hozz<7A>f<EFBFBD>r<EFBFBD>si joggal kapcsolatban!
anonymous user admin hu N<>v n<>lk<6C>li felhaszn<7A>l<EFBFBD>
any transy hu B<>rmelyik
application transy hu Alkalmaz<61>s
application name admin hu Alkalmaz<61>s neve
application title admin hu Alkalmaz<61>s c<>me
applications admin hu Alkalmaz<61>sok
april common hu <09>prilis
are you sure you want to delete this account ? admin hu Biztosan t<>r<EFBFBD>lni akarja ezt a hozz<7A>f<EFBFBD>r<EFBFBD>si jogot?
are you sure you want to delete this application ? admin hu Biztosan t<>r<EFBFBD>lni akarja ezt az alkalmaz<61>st?
are you sure you want to delete this entry todo hu Biztosan t<>r<EFBFBD>lni akarja ezt a bejegyz<79>st?
are you sure you want to delete this entry ? common hu Biztosan t<>r<EFBFBD>lni akarja ezt a bejegyz<79>st?
are you sure you want to delete this group ? admin hu Biztosan t<>r<EFBFBD>lni akarja ezt a csoportot?
are you sure you want to delete this news site ? admin hu Biztosan t<>r<EFBFBD>lni akarja ezt a h<>roldalt?
are you sure you want to kill this session ? admin hu Biztosan ki akarja tiltani ezt a hozz<7A>f<EFBFBD>r<EFBFBD>st?
are you sure\nyou want to\ndelete this entry ? calendar hu Biztosan t<>r<EFBFBD>lni\nakarja ezt\na bejegyz<79>st?
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar hu Biztosan t<>r<EFBFBD>lni\nakarja ezt\na bejegyz<79>st?\n\nMinden felhaszn<7A>l<EFBFBD> sz<73>m<EFBFBD>ra\nt<6E>r<EFBFBD>lni fogja a bejegyz<79>s.
august common hu Augusztus
author nntp hu Szerz<72>
available groups nntp hu Lehets<74>ges csoportok
bad login or password login hu Rossz felhaszn<7A>l<EFBFBD> vagy jelsz<73>
base url admin hu F<> URL
birthday addressbook hu Sz<53>let<65>snap
book marks common hu K<>nyvjelz<6C>k
bookmarks common hu K<>nyvjelz<6C>k
brief description calendar hu R<>vid le<6C>r<EFBFBD>s
calendar common hu Napt<70>r
calendar - add calendar hu Napt<70>r - Hozz<7A>ad<61>s
calendar - edit calendar hu Napt<70>r - M<>dos<6F>t<EFBFBD>s
calendar preferences common hu Kalend<6E>rium tulajdons<6E>gok
cancel common hu M<>gse
cancel filemanager hu M<>gse
cc email hu Kapja m<>g
change common hu V<>ltoztat
change your password preferences hu Jelsz<73> megv<67>ltoztat<61>sa
change your profile preferences hu Profil megv<67>ltoztat<61>sa
change your settings preferences hu Be<42>ll<6C>t<EFBFBD>sok megv<67>ltoztat<61>sa
charset common hu iso-8859-2
chat common hu Besz<73>lget<65>s
city addressbook hu V<>ros
clear common hu T<>r<EFBFBD>l
clear form common hu Tiszta lap
clear form todo hu T<>rl<72>s
clipboard_contents filemanager hu V<>g<EFBFBD>lap tartalma
company name addressbook hu C<>gn<67>v
completed todo hu k<>sz
compose email hu Levelet <20>r
copy common hu M<>sol
copy filemanager hu M<>sol<6F>s
copy_as filemanager hu M<>sol<6F>s <20>j n<>vvel
create common hu L<>trehoz
create filemanager hu L<>trehoz<6F>s
create group admin hu Csoport l<>trehoz<6F>sa
create lang.sql file transy hu lang.sql f<>jl l<>trehoz<6F>sa
create new language set transy hu <09>j nyelv l<>trehoz<6F>sa
created by common hu K<>sz<73>tette
created by todo hu Illet<65>kes
current users common hu Aktu<74>lis felhaszn<7A>l<EFBFBD>k
current_file filemanager hu Aktu<74>lis f<>jl
daily calendar hu Naponta
daily matrix view calendar hu Napi m<>trix megtekint<6E>se
date common hu D<>tum
date email hu D<>tum
date nntp hu D<>tum
date due todo hu Esed<65>kess<73>g d<>tuma
date format preferences hu D<>tum form<72>tum
days datedue todo hu H<>tral<61>v<EFBFBD> napok
days repeated calendar hu napon ism<73>tl<74>dik
december common hu December
default application preferences hu Alap<61>rtelmezett alkalmaz<61>s
default sorting order email hu Alap<61>rtelmezett sorrend
delete common hu T<>r<EFBFBD>l
delete email hu T<>r<EFBFBD>l
delete filemanager hu T<>rl<72>s
description calendar hu Le<4C>r<EFBFBD>s
disabled admin hu Tiltott
display admin hu Megjelen<65>t<EFBFBD>s
display missing phrases in lang set transy hu Hi<48>nyz<79> szavak megjelen<65>t<EFBFBD>se
done common hu K<>sz
download filemanager hu Let<65>lt<6C>s
do_delete filemanager hu T<>rl<72>s
duration calendar hu Id<49>tartam
e-mail common hu E-Mail
e-mail addressbook hu E-mail
e-mail preferences common hu E-Mail tulajdons<6E>gok
edit common hu M<>dos<6F>t
edit filemanager hu M<>dos<6F>t<EFBFBD>s
edit application admin hu Alkalmaz<61>s m<>dos<6F>t<EFBFBD>sa
edit group admin hu Csoport m<>dos<6F>t<EFBFBD>sa
email email hu E-Mail
email common hu E-Mail
email account name email hu Email hozz<7A>f<EFBFBD>r<EFBFBD>s neve
email address email hu Email c<>m
email password email hu Email jelsz<73>
email signature email hu E-Mail al<61><6C>r<EFBFBD>s
enabled admin hu Enged<65>lyezett
enabled - hidden from navbar admin hu Enged<65>lyezve - Navbar-ban rejtve
end date/time calendar hu Befejez<65>s d<>tuma/ideje
enter your new password preferences hu <09>j jelsz<73> megad<61>sa
entry has been deleted sucessfully common hu Bejegyz<79>s t<>r<EFBFBD>lve
entry updated sucessfully common hu Bejegyz<79>s m<>dos<6F>tva
error common hu Hiba
error creating x x directory common hu Hiba a %1%2 k<>nyvt<76>r l<>trehoz<6F>sakor
error deleting x x directory common hu Hiba a %1%2 k<>nyvt<76>r t<>rl<72>sekor
error renaming x x directory common hu Hiba a %1%2 k<>nyvt<76>r <20>tnevez<65>sekor
err_saving_file filemanager hu Hiba a f<>jl lemezre ment<6E>se k<>zben
exit common hu Kil<69>p
exit filemanager hu Kil<69>p<EFBFBD>s
fax addressbook hu Fax
february common hu Febru<72>r
file manager common hu F<>jlkezel<65>
files email hu F<>jlok
files filemanager hu F<>jlok
file_upload filemanager hu F<>jl felt<6C>lt<6C>s
filter common hu Sz<53>r<EFBFBD>
first name common hu Keresztn<74>v
first name addressbook hu Keresztn<74>v
first page common hu els<6C> oldal
folder email hu Dosszi<7A>
forum common hu F<>rum
forward email hu Tov<6F>bbk<62>ld
fr calendar hu P
free/busy calendar hu Szabad/Elfoglalt
frequency calendar hu Gyakoris<69>g
fri calendar hu P
friday common hu P<>ntek
from email hu Felad<61>
ftp common hu FTP
full description calendar hu Teljes le<6C>r<EFBFBD>s
generate new lang.sql file transy hu <09>j lang.sql f<>jl gener<65>l<EFBFBD>sa
generate printer-friendly version calendar hu Nyomtat<61>-bar<61>t verzi<7A> gener<65>l<EFBFBD>sa
global public common hu Publikus
global public and group public calendar hu Glob<6F>lis publiskus <20>s csoport publikus
global public only calendar hu Csak glob<6F>lis publikus
go! calendar hu Hajr<6A>!
group access common hu Csoportos hozz<7A>f<EFBFBD>r<EFBFBD>s
group has been added common hu Csoport hozz<7A>adva
group has been deleted common hu Csoport t<>r<EFBFBD>lve
group has been updated common hu Csoport m<>dos<6F>tva
group name admin hu Csoport neve
group public common hu Csoporton bel<65>l publikus
group public only calendar hu Csak csoport publikus
groups common hu Csoportok
groupsfile_perm_error filemanager hu A hiba kijav<61>t<EFBFBD>s<EFBFBD>hoz helyesen kell be<62>ll<6C>tani a files/users k<>nyvt<76>r jogosults<74>g<EFBFBD>t.<BR>*nix rendszereken: chmod 770
group_files filemanager hu Csoportf<74>jlok
headline sites admin hu F<>c<EFBFBD>m oldalak
headlines common hu Fejl<6A>cek
help common hu S<>g<EFBFBD>
high common hu S<>rg<72>s
home common hu Kezd<7A>lap
home phone addressbook hu Otthoni telefon
human resources common hu Emberi er<65>forr<72>sok
i participate calendar hu R<>sztveszek
idle admin hu inakt<6B>v
if applicable email hu If Applicable
ignore conflict calendar hu <09>tfed<65>s figyelmen kiv<69>l hagy<67>sa
image email hu K<>p
imap server type email hu IMAP Server Type
import lang set transy hu Nyelv import<72>l<EFBFBD>sa
installed applications admin hu Telep<65>tett alkalmaz<61>sok
inventory common hu Lelt<6C>r
ip admin hu IP
it has been more then x days since you changed your password common hu T<>bb mint %1 nap telt el az utols<6C> jelsz<73>m<EFBFBD>dos<6F>t<EFBFBD>s <20>ta
january common hu Janu<6E>r
july common hu J<>lius
june common hu J<>nius
kill admin hu Kitilt<6C>s
language preferences hu Nyelv
last name common hu Csal<61>dn<64>v
last name addressbook hu Vezet<65>kn<6B>v
last page common hu Utols<6C> oldal
last time read admin hu Utols<6C> olvas<61>s id<69>pontja
last updated todo hu Utols<6C> m<>dos<6F>t<EFBFBD>s
last x logins admin hu Utols<6C> %1 bejelentkez<65>s
line 2 addressbook hu Line 2
list of current users admin hu aktu<74>lis felhaszn<7A>l<EFBFBD>k list<73>ja
listings displayed admin hu List<73>z<EFBFBD>sok megjeln<6C>tve
login common hu Bel<65>p<EFBFBD>s
login login hu Bel<65>p<EFBFBD>s
login time admin hu Bel<65>p<EFBFBD>s ideje
loginid admin hu LoginID
logout common hu Kil<69>p<EFBFBD>s
low common hu Alacsony
mail server email hu Mail szerver
mail server type email hu Mail szerver fajt<6A>ja
manager admin hu Manager
march common hu M<>rcius
max matchs per page preferences hu Max. tal<61>latok oldalank<6E>nt
may common hu M<>jus
medium common hu K<>zepes
message email hu <09>zeenet
message transy hu <09>zenet
message x nntp hu <09>zenet %1
messages email hu <09>zenetek
minutes calendar hu perc
minutes between reloads admin hu Percek <20>jrat<61>lt<6C>s el<65>tt
mo calendar hu H
mobile addressbook hu Mobiltelefon
mon calendar hu H
monday common hu H<>tf<74>
monitor email hu Monitor
monitor nntp hu Monitor
monitor newsgroups preferences hu H<>roldalak k<>vet<65>se
month calendar hu H<>nap
monthly calendar hu Havonta
monthly (by date) calendar hu Havonta (d<>tum szerint)
monthly (by day) calendar hu Havonta (naponta)
move selected messages into email hu Kiv<69>lasztott <20>zenetetek <20>thelyez<65>se
name common hu N<>v
network news admin hu H<>l<EFBFBD>zati h<>rek
new entry calendar hu <09>j bejegyz<79>s
new entry added sucessfully common hu <09>j bejegyz<79>s hozz<7A>adva
new group name admin hu <09>j csoport neve
new message email hu <09>j <20>zenet
new password [ leave blank for no change ] admin hu <09>j jelsz<73> [ <20>resen hagyva nem lesz v<>ltoz<6F>s ]
new phrase has been added common hu <09>j kifejez<65>s hozz<7A>adva
new phrase has been added transy hu <09>j kifejez<65>s hozz<7A>adva
news file admin hu H<>rek f<>jl
news headlines common hu H<>rek fejl<6A>cei
news reader common hu H<>rolvas<61>
news type admin hu H<>rek t<>pusa
newsgroups nntp hu H<>rcsoportok
new_file filemanager hu <09>j f<>jl
next email hu K<>vetkez<65>
next nntp hu K<>vetkez<65>
next page common hu k<>vetkez<65> oldal
nntp common hu NNTP
no common hu Nem
no filemanager hu Nem
no matches found. calendar hu Nincs tal<61>lat.
no subject email hu T<>rgy n<>lk<6C>l
non-standard email hu Nem szabv<62>nyos
none common hu Nincs
normal common hu Norm<72>l
note: this feature does *not* change your email password. this will need to be done manually. preferences hu Megjegyz<79>s: az email-ekn<6B>l haszn<7A>lt jelsz<73> ezzel nem v<>ltozott meg.
notes addressbook hu Jegyzet
november common hu November
no_file_name filemanager hu Nincs f<>jln<6C>v megadva
october common hu Okt<6B>ber
ok common hu OK
on *nix systems please type: x common hu *nix rendszereken <20>sse be: %1
only yours common hu csak saj<61>tot
original transy hu Eredeti
other number addressbook hu M<>s telefonsz<73>m
pager addressbook hu Szem<65>lyh<79>v<EFBFBD>
participants calendar hu R<>sztvev<65>k
password common hu Jelsz<73>
password login hu Jelsz<73>
password has been updated common hu Jelsz<73> m<>dos<6F>tva
percent of users that logged out admin hu Rendesen kijelentkezett felhaszn<7A>l<EFBFBD>k %-ban
permissions admin hu Jogok
permissions this group has admin hu A csoport jogosults<74>gai
permissions to the files/users directory common hu a files/users k<>nyvt<76>r jogai
phrase in english transy hu Kifejez<65>s angolul
phrase in new language transy hu Kifejez<65>s az <20>j nyelvben
phpgroupware login login hu phpGroupWare bejelentkez<65>s
please select a message first email hu El<45>sz<73>r v<>lasszon ki egy <20>zenetet
please x by hand common hu K<>rem %1 k<>zzel
please, select a new theme preferences hu V<>lasszon <20>j designt
powered by phpgroupware version x common hu
preferences common hu Tulajdons<6E>gok
previous email hu El<45>z<EFBFBD>
previous page common hu El<45>z<EFBFBD> oldal
print common hu Nyomtat
printer friendly calendar hu Nyomtat<61>-bar<61>t
priority common hu Priorit<69>s
private and global public calendar hu Szem<65>lyes <20>s glob<6F>lis publikus
private and group public calendar hu Szem<65>lyes <20>s csoport publikus
private_files filemanager hu Priv<69>t f<>jlok
private common hu Priv<69>t
private only calendar hu Csak szem<65>lyes
project description todo hu Projekt le<6C>r<EFBFBD>s
re-edit event calendar hu Esem<65>ny m<>dos<6F>t<EFBFBD>sa
re-enter password admin hu Jelsz<73> <20>jra
re-enter your password preferences hu <09>j jelsz<73> m<>gegyszer
record access addressbook hu Record Access
record owner addressbook hu Record owner
remove all users from this group admin hu Csoport <20>sszes felhaszn<7A>l<EFBFBD>j<EFBFBD>nak t<>rl<72>se
rename common hu <09>tnevez
rename filemanager hu <09>tnevez<65>s
rename_to filemanager hu <09>tnevez<65>s
repeat day calendar hu Ism<73>tl<74>d<EFBFBD>s napja
repeat end date calendar hu Ism<73>tl<74>d<EFBFBD>s v<>gs<67> d<>tuma
repeat type calendar hu Ism<73>tl<74>d<EFBFBD>s t<>pusa
repeating event information calendar hu Ism<73>tl<74>d<EFBFBD> esem<65>ny inform<72>ci<63>
repetition calendar hu Ism<73>tl<74>d<EFBFBD>s
reply email hu V<>laszol
reply all email hu Mindenkinek v<>laszol
sa calendar hu Sz
sat calendar hu Sz
saturday common hu Szombat
save common hu Elment
save filemanager hu Ment<6E>s
search common hu Keres
search results calendar hu Keres<65>s eredm<64>nye
section email hu R<>szleg
select application transy hu Alkalmaz<61>s kiv<69>laszt<7A>sa
select different theme preferences hu <09>j design kiv<69>laszt<7A>sa
select headline news sites preferences hu Select Headline News sites
select language to generate for transy hu Select language to generate for
select permissions this group will have admin hu V<>lassza ki milyen jogosults<74>gokkal rendelkezzen a csoport
select users for inclusion admin hu Felhaszn<7A>l<EFBFBD>k kiv<69>laszt<7A>sa
select which application for this phrase transy hu select which application for this phrase
select which language for this phrase transy hu select which language for this phrase
send email hu Elk<6C>ld
send deleted messages to the trash email hu T<>r<EFBFBD>lt <20>zenet a kuk<75>ba
september common hu Szeptember
session has been killed common hu Akt<6B>v bejelentkez<65>s kitiltva
show all common hu mindet megmutat
show all groups nntp hu Minden csoportot mutat
show birthday reminders on main screen addressbook hu Sz<53>let<65>snapi eml<6D>keztet<65>k megjelen<65>t<EFBFBD>se a f<>k<EFBFBD>perny<6E>n
show current users on navigation bar preferences hu Aktu<74>lis felhaszn<7A>l<EFBFBD>k a navig<69>ci<63>s soron
show groups containing nntp hu Csoportok amiben szerepel
show high priority events on main screen calendar hu Magas priorit<69>su esem<65>nyek megjelen<65>t<EFBFBD>se a f<>k<EFBFBD>perny<6E>n
show new messages on main screen email hu <09>j <20>zenetek megjelen<65>t<EFBFBD>se a f<>k<EFBFBD>perny<6E>n
show text on navigation icons preferences hu Sz<53>veg a navig<69>ci<63>s ikonokon
showing x common hu %1 list<73>zva
showing x - x of x common hu list<73>zva %1 - %2, <20>ssz: %3
site admin hu Oldal
size email hu M<>ret
sorry, that group name has already been taking. admin hu Sajnos ez a csoportn<74>v m<>r foglalt.
sorry, the follow users are still a member of the group x admin hu A k<>vetkez<65> felhaszn<7A>l<EFBFBD>k m<>r a(z) %1 csoport tagjai
sorry, there was a problem processing your request. common hu Hiba t<>rt<72>nt a k<>relem feldolgoz<6F>sakor!
sorry, your login has expired login hu A hozz<7A>f<EFBFBD>r<EFBFBD>se lej<65>rt
source language transy hu Forr<72>snyelv
specify_file_name filemanager hu Hi<48>nyzik a l<>trehozand<6E> f<>jl neve
start date/time calendar hu Kezdet d<>tuma/ideje
state addressbook hu <09>llam
status todo hu St<53>tusz
status admin hu Status
street addressbook hu Utca
su calendar hu V
subject email hu T<>rgy
subject nntp hu T<>rgy
submit common hu Elk<6C>ld
submit changes admin hu V<>ltoz<6F>sok elk<6C>ld<6C>se
sun calendar hu V
sunday common hu Vas<61>rnap
switch current folder to email hu Dosszi<7A> kiv<69>laszt<7A>sa
target language transy hu C<>lnyelv
th calendar hu Cs
that loginid has already been taken admin hu Ez a felhaszn<7A>l<EFBFBD>n<EFBFBD>v m<>r foglalt
that site has already been entered admin hu M<>r megt<67>rt<72>nt a bel<65>p<EFBFBD>s erre a h<>roldalra
the following conflicts with the suggested time:<ul>x</ul> calendar hu A k<>vetkez<65> bejegyz<79>s <20>tk<74>zik a javasolt id<69>ponttal:<ul>%1</ul>
the login and password can not be the same admin hu A felhaszn<7A>l<EFBFBD>n<EFBFBD>v <20>s a jelsz<73> nem egyezhet meg
the two passwords are not the same admin hu A k<>t jelsz<73> nem egyezik
the two passwords are not the same preferences hu A k<>t jelsz<73> nem egyezik
they must be removed before you can continue admin hu El kell t<>vol<6F>tani <20>ket a folytat<61>shoz
this folder is empty email hu Ez az dosszi<7A> <20>res
this month calendar hu Aktu<74>lis h<>napban
this server is located in the x timezone preferences hu id<69>z<EFBFBD>na
this week calendar hu Aktu<74>lis h<>ten
threads nntp hu T<>m<EFBFBD>k
thu calendar hu Cs
thursday common hu Cs<43>t<EFBFBD>rt<72>k
time common hu Id<49>
time format preferences hu Id<49> form<72>tum
time zone offset preferences hu Id<49>z<EFBFBD>na eltol<6F>d<EFBFBD>s
title admin hu C<>m
title addressbook hu C<>m
to email hu C<>mzett
to correct this error for the future you will need to properly set the common hu A hiba kijav<61>t<EFBFBD>s<EFBFBD>hoz helyesen kell be<62>ll<6C>tani a
today calendar hu Ma
today is x's birthday! common hu Ma van %1 sz<73>let<65>snapja!
todo todo hu Tev<65>kenys<79>g
todo list common hu Tennival<61>k list<73>ja
todo list todo hu Tennival<61>k list<73>ja
todo list - add todo hu Tennival<61>k list<73>ja - Hozz<7A>ad<61>s
todo list - edit todo hu Tennival<61>k list<73>ja - M<>dos<6F>t<EFBFBD>s
tomorrow is x's birthday. common hu Holnap van %1 sz<73>let<65>snapja.
total common hu <09>sszesen
total records admin hu <09>sszes rekord
translation transy hu Ford<72>t<EFBFBD>s
translation management common hu Ford<72>t<EFBFBD>s menedzsment
trouble ticket system common hu Trouble Ticket System
tu calendar hu K
tue calendar hu K
tuesday common hu Kedd
undisclosed recipients email hu C<>mzett nincs kit<69>ltve
undisclosed sender email hu Felad<61> nincs kit<69>ltve
update nntp hu Friss<73>t<EFBFBD>s
updated common hu M<>dos<6F>tva
upload filemanager hu Felt<6C>lt<6C>s
urgency todo hu S<>rg<72>ss<73>g
url addressbook hu URL
use cookies login hu haszn<7A>l s<>tit
use custom settings email hu Testreszabott be<62>ll<6C>t<EFBFBD>sok haszn<7A>lata
use end date calendar hu V<>gs<67> d<>tumot haszn<7A>lja
user accounts admin hu Felhaszn<7A>l<EFBFBD>i hozz<7A>f<EFBFBD>r<EFBFBD>sek
user groups admin hu Felhaszn<7A>l<EFBFBD>i csoportok
username login hu Felhaszn<7A>l<EFBFBD>
users common hu felhaszn<7A>l<EFBFBD>k
usersfile_perm_error filemanager hu A hiba kijav<61>t<EFBFBD>s<EFBFBD>hoz helyesen kell be<62>ll<6C>tani a files/users k<>nyvt<76>r jogosults<74>g<EFBFBD>t.<BR>*nix rendszereken: chmod 770
view common hu Megtekint
view access log admin hu El<45>r<EFBFBD>si napl<70> megtekint<6E>se
view sessions admin hu Kapcsolatok megtekint<6E>se
view this entry calendar hu Bejegyz<79>s megtekint<6E>se
view/edit/delete all phrases transy hu Kifejez<65>sek megtekint<6E>se/m<>dos<6F>t<EFBFBD>sa/t<>rl<72>se
we calendar hu Sz
wed calendar hu Sz
wednesday common hu Szerda
week calendar hu H<>t
weekday starts on calendar hu H<>tk<74>znap kezdete
weekly calendar hu Hetente
which groups common hu melyik csoport
which groups todo hu Ezeknek a csoportoknak
work day ends on calendar hu Munkanapok v<>ge
work day starts on calendar hu Munkanapok kezdete
work phone addressbook hu Munkahelyi telefon
x matches found calendar hu %1 tal<61>lat
x messages have been deleted email hu %1 <20>zenet kit<69>r<EFBFBD>lve
year calendar hu <09>v
yearly calendar hu <09>vente
yes common hu Igen
yes filemanager hu Igen
you are required to change your password during your first login common hu Els<6C> bejelentkez<65>skor meg kell v<>ltoztatnia a jelszav<61>t
you have 1 high priority event on your calendar today. common hu 1 fontos esem<65>ny szerepel a mai napra a napt<70>rban.
you have 1 new message! common hu 1 <20>j <20>zenete van!
you have been successfully logged out login hu Sikeresen kijelentkezett a rendszerb<72>l
you have entered an invailed date todo hu Helytelen d<>tum
you have not entered a\nbrief description calendar hu Nem <20>rt be\nle<6C>r<EFBFBD>st
you have not entered a\nvalid time of day. calendar hu Nem <20>rt be <20>rv<72>nyes\nid<69>pontot.
you have x high priority events on your calendar today. common hu %1 fontos esem<65>ny szerepel a mai napra a napt<70>rban.
you have x new messages! common hu %1 <20>j <20>zenete van!
you must add at least 1 permission to this account admin hu Legal<61>bb egy jogosults<74>got meg kell adni a bel<65>p<EFBFBD>si joghoz
you must enter a base url admin hu Meg kell adni az alap url-t
you must enter a display admin hu Meg kell adni egy megjelen<65>t<EFBFBD>t
you must enter a news url admin hu Meg kell adni egy news url-t
you must enter a password admin hu K<>telez<65> jelsz<73>t megadni
you must enter a password preferences hu A jelsz<73>t meg kell adni
you must enter an application name and title. admin hu K<>telez<65> megadni az alkalmaz<61>s nev<65>t <20>s c<>m<EFBFBD>t!
you must enter one or more search keywords calendar hu Egy vagy t<>bb kulcssz<73>t meg kell adni a keres<65>shez
you must enter the number of listings display admin hu You must enter the number of listings display
you must enter the number of minutes between reload admin hu Meg kell adni a friss<73>t<EFBFBD>sek k<>zti id<69>t
you must select a file type admin hu K<>telez<65> f<>jlt<6C>pust v<>lasztani
your current theme is: x preferences hu </b>
your message has been sent common hu <09>zenet elk<6C>ldve
your search returned 1 match common hu Keres<65>s v<>geredm<64>nye: 1 tal<61>lat
your search returned x matchs common hu Keres<65>s v<>geredm<64>nye: %1 tal<61>lat
your session could not be verified. login hu A hozz<7A>f<EFBFBD>r<EFBFBD>se nem ellen<65>rizhet<65>.
your settings have been updated common hu A be<62>ll<6C>t<EFBFBD>sai m<>dos<6F>t<EFBFBD>sra ker<65>ltek
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar hu A megadott id<69>pont <B> %1 - %2 </B> <20>ssze<7A>tk<74>zik a k<>vetkez<65> bejegyz<79>sekkel:
zip code addressbook hu Ir<49>ny<6E>t<EFBFBD>sz<73>m

View File

@ -1,693 +0,0 @@
1 match found calendar it Trovata 1 occorrenza
1 message has been deleted email it 1 messaggio &eacute; stato cancellato
a calendar it A
access common it Accesso
access not permitted common it Accesso non permesso
access type common it Tipo di accesso
account active admin it Account attivo
account has been created common it L'account &eacute; stato creato
account has been deleted common it L'account &eacute; stato cancellato
account has been updated common it L'account &eacute; stato aggiornato
account permissions admin it Permessi dell'account
account preferences common it Preferenze dell'account
acl common it ACL
action admin it Azione
active admin it Attivo
add a single phrase transy it Aggiungi una singola frase
add bookkeeping it Aggiungi
add category common it Aggiungi una categoria
add common it Aggiungi
add_expense bookkeeping it Aggiungi spesa
add global category admin it Aggiungi categoria globale
add_income bookkeeping it Aggiungi guadagno
add new account admin it Aggiungi un nuovo account
add new application admin it Aggiungi una nuova applicazione
add new phrase transy it Aggiungi una nuova frase
add new ticket tts it Aggiungi un nuovo biglietto
add note notes it Aggiungi una nota
address book common it Rubrica
addressbook common it Rubrica
addressbook preferences common it Preferenze della rubrica
address book - view addressbook it Rubrica - visualizza
address line 2 addressbook it Indirizzo linea 2
address line 3 addressbook it Indirizzo linea 3
address type addressbook it Tipo di indirizzo
addsub todo it AggiungiSub
add sub todo it Aggiungi Sub
add ticket tts it Aggiungi biglietto
add to addressbook email it Aggiungi alla rubrica
addvcard common it Aggiungi Vcard
admin bookkeeping it Amministrazione
admin common it Amministrazione
administration common it Amministrazione
all common it Tutto
all day calendar it Tutto il giorno
allow anonymous access to this app admin it Consenti accesso anonimo a questa applicazione
all records and account information will be lost! admin it Tutte le registrazioni e le informazioni dell'account andranno perse!
amount bookkeeping it Ammontare
anonymous user admin it Utente anonimo
any transy it Qualsiasi
application name admin it Nome applicazione
applications admin it Applicazioni
application title admin it Titolo applicazione
application transy it Applicazione
april common it Aprile
are you sure\nyou want to\ndelete this entry ? calendar it Sei sicuro\ndi voler\ncancellare questa nota ?
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar it Sei sicuro di\nvoler cancellare\nquesta nota ?\n\nQuesto canceller<65>\nquesta nota per tutti gli utenti.
are you sure you want to delete this account ? admin it Sei sicuro di voler cancellare questo account ?
are you sure you want to delete this application ? admin it Sei sicuro di voler cancellare questa applicazione ?
are you sure you want to delete this entry ? common it Sei sicuro di voler cancellare questa note ?
are you sure you want to delete this entry todo it Sei sicuro di voler cancellare quasta nota ?
are you sure you want to delete this group ? admin it Sei sicuro di voler cancellare questo gruppo ?
are you sure you want to delete this news site ? admin it Sei sicuro di voler cancellare questo sito di news ?
are you sure you want to delete this note ? notes it Sei sicuro di voler cancellare questa annotazione ?
are you sure you want to kill this session ? admin it Sei sicuro di voler terminare questa sessione ?
arial notes it Arial
august common it Agosto
author nntp it Autore
autosave default category common it Categoria default di salvataggio automatico
available groups nntp it Gruppi disponibili
bad login or password login it Login o password sbagliate
base url admin it URL Base
bbs phone addressbook it Telefono BBS
birthday addressbook it Compleanno
bookkeeping admins common it Amministratori Contabilit<69>
bookkeeping common it contabilit<69>
book marks common it segnalibri
bookmarks common it segnalibri
brief description calendar it Descrizione breve
business city common it Citt<74> Ufficio
business common it Ufficio
business address type addressbook it Tipo di indirizzo dell'ufficio
business country common it Citt<74> Ufficio
business email common it Email Ufficio
business email type common it Tipo email ufficio
business fax common it Fax ufficio
business phone common it Telefono ufficio
business state common it Provincia ufficio
business street common it Via ufficio
business zip code common it CAP ufficio
calendar - add calendar it Calendario - Aggiungi
calendar common it calendario
calendar - edit calendar it Calendario - Modifica
calendar preferences common it Preferenze calendario
cancel common it Cancella
cannot display the requested article from the requested newsgroup nntp it Impossibile visualizzare l'articolo richiesto dal newsgroup scelto
car phone addressbook it Telefono auto
categories common it Categorie
category common it Categoria
category description admin it Descrizione categoria
category name admin it Nome categoria
category x has been added ! admin it La categoria %1 <20> stata aggiunta !
cc email it CC
cell phone addressbook it telefono cellulare
center weather it Centro
change common it Cambia
change main screen message admin it Modifica messaggio della schermata principale
change your password preferences it Cambia la tua password
change your profile preferences it Cambia il tuo profilo
change your settings preferences it Cambia i tuoi settaggi
charset common it iso-8859-1
chat common it Chat
choose a font notes it Scegli un font
choose the font size notes it Scegli la dimensione del font
city addressbook it Citt<74>
city admin it Citt<74>
city weather it Citt<74>
clear common it Cancella
clear form common it Cancella il modulo
clipboard_contents filemanager it Contenuto degli appunti
common transy it Comune
company common it Societ<65>
company name addressbook it Nome societ<65>
completed todo it completato
compose email it Componi
contact common it Contatto
copy_as filemanager it Copia come
copy common it Copia
country addressbook it Stato
country weather it Stato
courier new notes it Courier New
create common it Create
created by common it Creato da
create group admin it Crea gruppo
create lang.sql file transy it Crea file lang.sql
create new language set transy it Crea nuovo set di lingua
currency common it Valuta
current_file filemanager it File attivo
current users common it Utenti attivi
custom common it Personalizza
custom fields addressbook it Campi Personalizzati
daily calendar it Giornaliero
daily matrix view calendar it Visualizza Matrice Giornaliera
date bookkeeping it Data
date common it Data
date due todo it Data Consegna
date format preferences it Formato data
days datedue todo it Giorni alla consegna
days repeated calendar it giorni ripetuti
december common it Dicembre
default application preferences it Applicazione preferita
default calendar filter calendar it Filtro del calendario preferito
default calendar view calendar it Visualizzazione preferita del calendario
default sorting order email it Ordinamento preferito
delete bookkeeping it Cancella
delete common it Cancella
department addressbook it Dipartimento
description admin it Descrizione
description bookkeeping it Descrizione
description calendar it Descrizione
detail tts it Dettagli
disabled admin it Disabilitato
display admin it Visualizza
display missing phrases in lang set transy it Visualizza frasi mancanti nel set della lingua
display note for notes it Visualizza nota per
display status of events calendar it Visualizza lo stato per gli Eventi
do_delete filemanager it Elimina
domestic common it Locale
done common it Terminato
download filemanager it Scarica
duration calendar it Durata
edit application admin it Modifica Applicazione
edit bookkeeping it Modifica
edit common it Modifica
edit category common it Modifica Categoria
edit categories common it Modifica Categorie
edit custom fields preferences it modifica campi personalizzati
edit_expense bookkeeping it Modifica Spese
edit group admin it Modifica Gruppo
edit_income bookkeeping it Modifica Fatturato
edit note for notes it Modifica nota per
edit user account admin it Modifica account dell'utente
email account name email it nome accoune email
email address email it Indirizzo email
e-mail common it Email
email common it Email
email password email it Password dell'email
e-mail preferences common it Preferenze email
email signature email it Firma email
email type common it Tipo email
enabled admin it Attivo
enabled - hidden from navbar admin it Attivo - nascosto dalla barra di navigazione
enabled weather it Attivo
end date/time calendar it Data/Ora finale
end date todo it Data finale
end time common it Ora Fine
enter your new password preferences it Inserisci la tua nuova password
entries bookkeeping it scrittura
entry has been deleted sucessfully common it La scrittura <20> stata cancellata correttamente
entry updated sucessfully common it La scrittura <20> stata aggiornata correttamente
error common it Errore
error creating x x directory common it Errore durante la creazione della %1%2 cartella
error deleting x x directory common it Errore durante la cancellazione della %1%2 cartella
error renaming x x directory common it Errore durante la rinomina della %1%2 cartella
err_saving_file filemanager it Errore durante il salvataggio del file su disco
exit common it Uscita
extra common it Extra
expense bookkeeping it Spesa
expenses bookkeeping it Spese
export contacts addressbook it Esporta Contatti
failed to find your station weather it Impossibile trovare la tua citt<74>
fax addressbook it Fax
february common it Febbraio
fields common it Campi
fields to show in address list addressbook it Campi da visualizzare nella lista dell'indirizzo
file manager common it File manager
files common it File
file_upload filemanager it Uplod file
filter common it Filtro
firstname bookkeeping it Nome
first name common it Nome
first page common it prima pagina
folder email it Cartella
forecast admin it Previsione
forecasts weather it Previsioni
forecast weather it Previsione
forecast zone admin it Zona di previsione
forum common it Forum
forward email it Inoltra
(for weekly) calendar it (per settimana)
fr calendar it V
free/busy calendar it Libero/Occupato
frequency calendar it Frequenza
fri calendar it Ven
friday common it Venerd<72>
from email it Da
ftp common it FTP
full description calendar it Descrizione completa
full name addressbook it Nome completo
fzone admin it ZonaF
fzone weather it ZonaF
generate new lang.sql file transy it Genera un nuovo file lang.sql
generate printer-friendly version calendar it Genera versione stampabile
geo addressbook it GEO
georgia notes it Georgia
global categories admin it Categorie Globali
global common it Globale
global public and group public calendar it Pubblico Globale e Pubblico per il Gruppo
global public common it Pubblico Globale
global public only calendar it Solo Pubblico Globale
global weather it Globale
go! calendar it Vai!
grant addressbook access common it Permetti accesso alla Rubrica
grant calendar access common it Permetti accesso al Calendario
grant todo access common it Permetti accesso al DaFare
group access common it Accesso Gruppo
group common it Gruppo
group_files filemanager it file del gruppo
group has been added common it Il gruppo <20> stato aggiunto
group has been deleted common it Il gruppo <20> stato cancellato
group has been updated common it Il gruppo <20> stato aggiornato
group name admin it Nome Gruppo
group public common it Gruppo Pubblico
group public only calendar it Solo Pubblico per il Gruppo
groups common it Gruppi
groupsfile_perm_error filemanager it Per correggere questo errore <20> necessario settare in maniera corretta i permessi della cartella dei file/guppi.<BR> Sui sistemi *nix digitare: chmod 770
headline preferences common it Preferenze NEWS
headlines common it NEWS
headline sites admin it Siti NEWS
help common it Aiuto
helvetica notes it Helvetica
hide php information admin it nascondi informazioni php
high common it Alta
home city addressbook it Citt<74> casa
home common it Casa
home address type addressbook it Tipo indirizzo di Casa
home country addressbook it Paese Casa
home directory admin it Cartella Personale
home email addressbook it Email a Casa
home email type addressbook it Tipo di email a Casa
home phone addressbook it Telefono Casa
home state addressbook it Stato Casa
home street addressbook it Via Casa
home zip code addressbook it CAP Casa
human resources common it Risorse umane
icons and text preferences it Icone e testo
icons only preferences it Solo icone
id admin it ID
idle admin it inattivo
id weather it ID
if applicable email it Se disponibile
ignore conflict calendar it Ignora Conflitto
image email it Immagine
imap server type email it Tipo di server IMAP
import contacts addressbook it Importa Contatti
import file addressbook it Importa File
import from outlook addressbook it Importa da Outlook
import lang set transy it Importa set di frasi da una lingua
income bookkeeping it Guadagno
installed applications admin it Applicazioni Installate
international common it Internazionale
inventory common it Inventario
ip admin it IP
i participate calendar it Io Partecipo
isdn phone addressbook it Telefono ISDN
it has been more then x days since you changed your password common it Sono passati pi<70> di %1 da quando hai cambiato la password
january common it Gennaio
july common it Luglio
june common it Giugno
kill admin it Termina
label addressbook it Etichetta
language preferences it Lingua
large notes it Grande
last login admin it ultimo login
last login from admin it ultimo login da
lastname bookkeeping it Cognome
last name common it Cognome
last page common it ultima pagina
last time read admin it Ultima volta letto
last updated todo it Ultimo Aggiornamento
last x logins admin it Ultimi %1 login
line 2 addressbook it Linea 2
links weather it Link
listings displayed admin it Elementi Visualizzati
list of current users admin it lista utenti attuali
logging bookkeeping it Accessi
login common it Login
loginid admin it LoginID
loginid bookkeeping it LoginID
login screen admin it Schermo di login
login shell admin it Shell di login
login time admin it Ora Login
logout common it Logout
low common it Bassa
mail folder(uw-maildir) email it Cartella Mail (uw-maildir)
mail server email it Server email
mail server type email it Tipo di mail server
main screen common it Schermata principale
main screen message admin it Messaggio nella schermata principale
manager admin it Manager
manual common it Manuale
march common it Marzo
max matchs per page preferences it Numero massimo di risultati per pagina
may common it Maggio
medium common it Medio
message common it Messaggio
message phone addressbook it Telefono per Messaggi
messages email it Messaggi
message x nntp it Messaggio %1
metar admin it Metar
metar weather it Metar
middle name addressbook it Secondo Nome
minutes between reloads admin it Minuti fra gli aggiornamenti
minutes calendar it minuti
mobile addressbook it Mobile
mobile phone common it Telefono cellulare
mo calendar it L
modem phone common it telefono Modem
mon calendar it Lun
monday common it Luned<65>
monitor common it Monitor
monitor newsgroups preferences it Monitor Newsgroups
month calendar it Mese
monthly (by date) calendar it Mensile (per data)
monthly (by day) calendar it Mensile (per giorno)
monthly calendar it Mensile
move selected messages into email it Move Selected Messages into
name common it Nome
network news admin it Network News
new entry added sucessfully common it Nuovo appuntamento aggiunto con successo
new entry calendar it Nuovo Appuntamento
new_file filemanager it Nuovo File
new group name admin it Nome nuovo gruppo
new message email it Nuovo messaggio
new password [ leave blank for no change ] admin it Nuova password [ Lascia in bianco per non cambiarla ]
new phrase has been added transy it La nuova frase <20> stata aggiunta
news file admin it File delle NEWS
newsgroups nntp it Newsgroup
newsgroups preferences it Newsgroup
news headlines common it Titoli delle NEWS
news reader common it newsreader
news type admin it Tipo di NEWS
new ticket tts it Nuovo Biglietto
next common it Avanti
next page common it prossima pagina
nntp common it NNTP
no common it No
no_file_name filemanager it Nessun nomefile <20> stato specificato
no matches found. calendar it Nessuna corrispondenza trovata.
no matchs found admin it Nessuna corrispondenza trovata.
none calendar it Nessuna
non-standard email it Non-Standard
normal common it Normale
no subject email it Nessun oggetto
not applicable weather it Non Applicabile
notes common it Note
notes list notes it Lista Note
notes preferences common it Preferenze delle note
note: this feature does *not* change your email password. this will need to be done manually. preferences it Nota: Questo *non* cambia la vostra password di email. Questo deve essere fatto manualemnte.
no tickets found tts it Nessun biglietto trovato.
november common it Novembre
observations weather it Osservazioni
october common it Ottobre
ok common it OK
only yours common it solo tuoi
on *nix systems please type: x common it Nei sistemi *nix per favore digitare: %1
or: days from startdate: todo it oppure: giorni dalla data d'inizio:
original transy it Originale
or: select for today: todo it oppure: seleziona per oggi:
other common it Altro
other number addressbook it Altro Numero
other phone common it Altro Telefono
owner common it Proprietario
pager addressbook it TeleDrin
parcel addressbook it Parcel
parent project todo it progetto genitore
participants calendar it Partecipanti
password common it Password
password has been updated common it La password <20> stata aggiornata
percent of users that logged out admin it Percentuale di utenti che sono usciti dal sistema in maniera corretta
permissions admin it Permessi
permissions this group has admin it Permessi che questo gruppo ha
permissions to the files/users directory common it permissi alla cartella file/utenti
personal common it Personale
phone numbers addressbook it Numeri telefono
phpgroupware login login it login phpGroupWare
php information admin it Informazioni su PHP
phrase in english transy it Frase in Inglese
phrase in new language transy it Frase nella nuova lingua
please enter a name for that category ! admin it Please enter a name for that category !
please select a message first email it Please select a message first
please, select a new theme preferences it Please, select a new theme
please set your preferences for this app common it Per favore specifica le tue preferenze per questa applicazione
please x by hand common it Please %1 by hand
postal addressbook it Postal
powered by phpgroupware version x common it Creato con <a href=http://www.phpgroupware.org>phpGroupWare</a> versione %1
pref common it pref
prefer common it Prefer
preferences common it Preferenze
prefix addressbook it Prefisso
previous email it Indietro
previous page common it Pagina precedente
print common it Stampa
printer friendly calendar it Versione Stampabile
priority common it Priorit<69>
private and global public calendar it Privato e Pubblico Globale
private and group public calendar it Private e Pubblico per il Gruppo
private common it Privato
private_files filemanager it File privati
private only calendar it Solo privato
proceed bookkeeping it Procedi.
project description todo it Descrizione Progetto
read common it Leggi
recent weather it Recente
record access addressbook it Accesso alla registrazione
record owner addressbook it Proprietario della registrazione
re-edit event calendar it Ri-modifica l'evento
re-enter password admin it Reinserisci la password
re-enter your password preferences it Reinserisci la password
region admin it Regione
regions admin it Regioni
regions weather it Regioni
region weather it Regione
remove all users from this group admin it Rimuovi tutti gli utenti da questo gruppo
rename common it Rinomina
rename_to filemanager it Rinomina in
repeat day calendar it Giorno ripetizione
repeat end date calendar it Data ultima ripetizione
repeating event information calendar it Informazioni sugli eventi ricorrenti
repeat type calendar it Tipo di ripetizione
repetition calendar it Ripetizione
reply all email it Rispondi a tutti
reply email it Rispondere
reports bookkeeping it Rapporti
sa calendar it Sa
sat calendar it Sab
saturday common it Sabato
save common it Salva
search common it Cerca
search results calendar it Risultati Ricerca
section email it Sezione
select application transy it Seleziona applicazione
select category common it Seleziona categoria
select different theme preferences it Seleziona un tema differente
select headline news sites common it Seleziona siti di NEWS
select language to generate for transy it Seleziona una lingua per cui generare
select parent category admin it Seleziona categoria superiore
select permissions this group will have admin it Seleziona i permessi che questo gruppo avr<76>
select users for inclusion admin it Seleziona utenti per l'inclusione
select which application for this phrase transy it seleziona quale applicazione per questa frase
select which language for this phrase transy it seleziona quale lingua per questa frase
select which location this app should appear on the navbar, lowest (left) to highest (right) admin it Seleziona in quale punto della Barra di Navigazione, dal pi<70> basso (sinistra) al pi<70> alto (destra)
send deleted messages to the trash email it Invia messaggi cancellati all Cestino
send email it Invia
send updates via email common it Invia aggiornamenti via email
september common it Settembre
session has been killed common it La sessione <20> stata terminata
show all common it mostra tutto
show all groups nntp it Mostra tutti i gruppi
show birthday reminders on main screen addressbook it Mostra annunci dei compleanni nella schermata principale
show current users on navigation bar preferences it Mostra utenti attuali nella barra di navigazione
show day view on main screen calendar it Mostra la vista giornaliera nella schermata principale
show groups containing nntp it Mostra i gruppi contenenti
show high priority events on main screen calendar it Mostra eventi ad alta priorit<69> nella schermata principale
showing x common it visualizzati %1
showing # x of x weather it mostro # %1 di %2
showing x - x of x common it mostro %1 - %2 si %3
show navigation bar as preferences it Mostra la barra di navigazione come
show new messages on main screen email it Mostra i nuovi messaggi nella schermata principale
show text on navigation icons preferences it Mostra testo nelle icone di navigazione
site admin it Sito
size email it Size
sorry, that group name has already been taking. admin it Peccato, quel nome di gruppo <20> gi<67> stato preso.
sorry, the follow users are still a member of the group x admin it Peccato, i seguenti utenti sono ancora membri del gruppo %1
sorry, there was a problem processing your request. common it Peccato, c'<27> stato un problema nel processare la tua richiesta.
sorry, your login has expired login it Peccato, il tuo login <20> scaduto
source language transy it Lingua Sorgente
specify_file_name filemanager it Devi specificare un nome per il file che desideri creare
start date/time calendar it Data/Ora Inizio
start date todo it Data Inizio
start time common it Ora Inizio
state addressbook it Provincia
state weather it Stato
station admin it Stazione
stations admin it Stazioni
stations weather it Stazioni
station weather it Stazione
statistics bookkeeping it Statistiche
status common it Stato
street addressbook it Via
subject common it Oggetto
submit changes admin it Invia Cambiamenti
submit common it Invia
subproject description todo it Descrizione Sotto-progetto
sub todo it sotto
su calendar it Do
suffix addressbook it Suffisso
sun calendar it Dom
sunday common it Domenica
switch current folder to email it Passa alla Cartella
switch to bookkeeping it Cambia in
table admin it Tabella
tables weather it Tabelle
target language transy it Lingua destinazione
text only preferences it Solo Testo
that category name has been used already ! admin it Quel nome di categoria <20> gia' stato usato !
that loginid has already been taken admin it Quel nome utente <20> gi<67> stato scelto
that phrase already exists common it Quella frase esiste gi<67>
that site has already been entered admin it Quel sito <20> gi<67> stato inserito
th calendar it G
the following conflicts with the suggested time:<ul>x</ul> calendar it Il seguente <20> in conflitto con l'orario suggerito:<ul>%1</ul>
the login and password can not be the same admin it La login e la pasword non possono essere uguali
there was an error trying to connect to your mail server.<br>please, check your username and password, or contact your admin. email it C'<27> stato un errore nel cercare di collegarsi al tuo server email.<br>Prego, controlla username e password, o contatta l'amministratore.
there was an error trying to connect to your news server.<br>please contact your admin to check the news servername, username or password. nntp it Si <20> verificato un errore durante il collegamento al tuo serve di news.<br>Per favore contatta il tuo amministratore di sistema.
the two passwords are not the same common it Le due password non sono identiche
they must be removed before you can continue admin it Devono essere rimossi prima di proseguire
this folder is empty email it Questa cartella <20> vuota
this month calendar it Questo mese
this person's first name was not in the address book. addressbook it Il nome di questa persona non era nella rubrica.
this server is located in the x timezone preferences it Questo server <20> situato nel fuso orario %1
this week calendar it Questa settimana
threads nntp it Thread
thu calendar it Gio
thursday common it Gioved<65>
time common it Ora
time created notes it Ora di creazione
time format preferences it Formato ora
times new roman notes it Times New Roman
time zone common it Fuso orario
time zone offset common it differenza di fuso orario
title common it Titolo
to correct this error for the future you will need to properly set the common it Per correggere questo errore in futuro occorre settare in maniera corretta
today calendar it Oggi
today is x's birthday! common it Oggi <20> il compleanno di %1!
todo list - add sub-project todo it Lista DaFare - aggiungi sotto-progetto
todo list - add todo it Lista da-fare - aggiungi
todo list common it Lista Da-Fare
todo list - edit todo it Lista da-fare - modifica
todo todo it da-fare
to email it A
tomorrow is x's birthday. common it Domani <20> il compleanno di %1.
total common it Totale
total records admin it Inserimenti totali
translation management common it Gestione Traduzione
translation transy it Traduzione
trouble ticket system common it Sistema per la gestione dei problemi
tu calendar it M
tue calendar it Mar
tuesday common it Marted<65>
undisclosed recipients email it Destinatari nascosti
undisclosed sender email it Mittente nascosto
updated common it Aggiornato
update nntp it Aggiorna
upload filemanager it Upload
urgency todo it Urgenza
url addressbook it URL
use cookies login it usa i cookie
use custom settings email it Usa settaggi personalizzati
use end date calendar it Usa data di termine
user accounts admin it Account utenti
user groups admin it Gruppi utenti
username login it Nome utente
users common it utenti
usersfile_perm_error filemanager it Per correggere questo errore <20> necessario settare in maniera corretta i permessi della cartella dei file/utenti.<BR> Sui sistemi *nix digitare: chmod 707
vcard common it VCard
vcards require a first name entry. addressbook it Le VCard richiedono un valore per il nome.
verdana notes it Verdana
very large notes it Molto grande
very small notes it Piccolo
video phone addressbook it Videotelefono
view access log admin it Visualizza elenco collegamenti
view all tickets tts it Visualizza tutti i biglietti
view bookkeeping it Visualizza
view common it Visualizza
view/edit/delete all phrases transy it Visualizza/modifica/cancella tutte le frasi
view_expense bookkeeping it Visualizza spese
view_income bookkeeping it View guadagni
view matrix of actual month todo it Visualizza la matrice del mese attuale
view only open tickets tts it Visualizza solo i problemi aperti
view sessions admin it Visualizza sessioni
view this entry calendar it Visualizza questo inserimento
voice phone addressbook it Telefono Vocale
weather center admin it Centro Meteo
weather center preferences it Centro Meteo
weather preferences it Meteo
weather weather it Weather
we calendar it M
wed calendar it Mer
wednesday common it Mercoled<65>
week calendar it Settimana
weekday starts on calendar it La settimana inizia di
weekly calendar it Settimanale
when creating new events default set to private calendar it Quando vengono creati nuovi eventi settali automaticamente privati
which groups common it Quali gruppi
work day ends on calendar it La giornata lavorativa termina alle
work day starts on calendar it La giornata lavorativa inizia alle
work phone addressbook it Telefono Ufficio
x matches found calendar it Trovate %1 occorrenze
x messages have been deleted email it %1 messaggi sono stati cancellati
year calendar it Anno
yearly calendar it Annuale
yes common it S<>
you are required to change your password during your first login common it Devi cambiare la tua password durante la tua prima sessione
you have 1 high priority event on your calendar today. common it Oggi hai 1 evento a priorit<69> alta nel tuo calendario.
you have 1 new message! common it hai un nuovo messaggio!
you have been successfully logged out login it Sei uscito dal sistema con successo
you have entered an invailed date todo it hai inserito una data non valida
you have messages! common it Hai nuovi messaggi
you have no new messages common it Non hai nuovi messaggi
you have not entered a\nbrief description calendar it Non hai inserito una\nBreve Descrizione
you have not entered a\nvalid time of day. calendar it Non hai inserito un\norario valido.
you have x high priority events on your calendar today. common it Oggi hai %1 eventi ad alta priorit<69> nel tuo calendario.
you have x new messages! common it Hai %1 nuovi messaggi!
you must add at least 1 permission or group to this account admin it Devi aggiungere almeno 1 permesso o gruppo a questo account
you must enter a base url admin it Devi inserire un url di base
you must enter a display admin it Dedi inserire un display
you must enter an application name and title. admin it Devi inserire un nome e un titolo per l'applicazione.
you must enter a news url admin it Devi inserire un url per le nesw
you must enter a password common it Devi inserire una nuova password
you must enter one or more search keywords calendar it Devi inserire una o pi<70> keyword per la ricerca
you must enter the number of listings display admin it Devi inserire il numero di righe da visualizzare
you must enter the number of minutes between reload admin it Devi inserire il numero di minuti fra i caricamenti
you must select a file type admin it Devi selezionare un tipo-file
your current theme is: x preferences it il tuo tema</b>
your message has been sent common it Il tuo messaggio <20> stato spedito
your search returned 1 match common it la tua ricerca ha restituito un risultato
your search returned x matchs common it your search returned %1 matches
your session could not be verified. login it La tua sessione non pu<70> essere verificata.
your settings have been updated common it I tuoi settaggi sono aggiornati
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar it L'orario suggerito <B> %1 - %2 </B> <20> in conflittop con i seguenti appunamenti presenti in calendario:
zip code addressbook it CAP
zone admin it Zone
zone weather it Zone
notes categories preferences it Categorie delle note
description preferences it Descrizione
notes categories for common it Categorie delle note per
todo preferences it Preferenze
user calendar it utente
week common it settimana
start date calendar it Data Inizio
end date calendar it Data Fine
this year calendar it Quest'anno
participates common it partecipa
participates calendar it partecipa
start date common it Data Inizio
end date common it Data Fine
squirrelmail admin it Squirrelmail
images admin it Immagini
themes admin it Temi
cron admin it cron
inc admin it inc
todo admin it Da-fare
personalized notes for notes it Note personalizzate per
who would you like to transfer all records owned by the deleted user to? admin it A chi vuoi trasferire TUTTE le registrazioni di questo utente?

View File

@ -1,901 +0,0 @@
(for weekly) calendar ja (<28><EFBFBD><E8BDB5>)
1 match found calendar ja <09><><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
1 message has been deleted email ja 1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
a calendar ja
ab common ja ab
accept calendar ja <09><><EFBFBD><EFBFBD>
accepted common ja <09><><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD>
access common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
access not permitted common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
access type common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
account active admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD>
account has been created common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
account has been deleted common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
account has been updated common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ򹹿<C8A4><F2B9B9BF><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
account must belong to at least 1 group common ja <09><>°<EFBFBD><C2B0><EFBFBD><EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
account permissions admin ja <09><><EFBFBD>Ѳ<EFBFBD>ǽ<EFBFBD><C7BD><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
account preferences common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ桼<C8A5><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
acl common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
action admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
active common ja <09><><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD>
add bookkeeping ja <09>ɲ<EFBFBD>
add common ja <09>ɲ<EFBFBD>
add a field addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD>ɲ<EFBFBD>
add a note for notes ja <09>Ρ<EFBFBD><CEA1><EFBFBD><EFBFBD>ɲ<EFBFBD>
add a single phrase transy ja Add a single pharse
add addressbook category for common ja <09><><EFBFBD>ɥ쥹Ģ<ECA5B9><C4A2><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ɲ<EFBFBD>
add address squirrelmail ja <09>ɲ<EFBFBD>
add category common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ɲ<EFBFBD>
add global category admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Х<D0A5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ɲ<EFBFBD>
add new account admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɲ<EFBFBD>
add new application admin ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɲ<EFBFBD>
add new entry notes ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
add new phrase transy ja Add new pharse
add new ticket tts ja <09>ɲ<EFBFBD>
add note notes ja <09>ɲ<EFBFBD>
add notes category for common ja <09>Ρ<EFBFBD><CEA1>ȥ<EFBFBD><C8A5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ɲ<EFBFBD>
add sub todo ja <09><><EFBFBD><EFBFBD><EFBFBD>ɲ<EFBFBD>
add ticket tts ja <09>ɲ<EFBFBD>
add todo category for common ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ɲ<EFBFBD>
add to addressbook email ja <09><><EFBFBD>ɥ쥹Ģ<ECA5B9><C4A2><EFBFBD>ɲ<EFBFBD>
add to x squirrelmail ja %1 <20>ɲ<EFBFBD>
add x category for common ja %1 <20><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ɲ<EFBFBD>
add_expense bookkeeping ja <09>ٽ<EFBFBD><D9BD>ɲ<EFBFBD>
add_income bookkeeping ja <09><><EFBFBD><EFBFBD><EFBFBD>ɲ<EFBFBD>
additional info squirrelmail ja <09>ɲþ<C9B2><C3BE><EFBFBD>
address book addressbook ja <09><><EFBFBD>ɥ쥹Ģ
address book common ja <09><><EFBFBD>ɥ쥹Ģ
address book - view addressbook ja <09><><EFBFBD>ɥ쥹Ģ - ɽ<><C9BD>
address line 2 addressbook ja Į<>
address line 3 addressbook ja Į<>
address type addressbook ja <09><><EFBFBD>ɥ쥹<C9A5><ECA5B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
addressbook common ja <09><><EFBFBD>ɥ쥹Ģ
addressbook preferences common ja <09><><EFBFBD>ɥ쥹Ģ<ECA5B9><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
addresses common ja <09><><EFBFBD>ɥ쥹Ģ
addsub todo ja <09><><EFBFBD><EFBFBD><EFBFBD>ɲ<EFBFBD>
addvcard common ja VCard<72>ɲ<EFBFBD>
admin bookkeeping ja <09>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD>
admin common ja <09>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD>
administration common ja <09>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD>
all common ja <09><><EFBFBD><EFBFBD>
all day calendar ja <09><><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD>
all records and account information will be lost! admin ja <09><><EFBFBD>٤ƤΥ<CEA5><ECA5B3><EFBFBD>ɤȥ<C9A4><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ⱦ<EFBFBD><C8BE>󤬼<EFBFBD><F3A4ACBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
allow anonymous access to this app admin ja ƿ̾<C6BF><EFBFBD><E6A1BC><EFBFBD>ؤε<D8A4><CEB5><EFBFBD>
am calendar ja <09><><EFBFBD><EFBFBD>
amount bookkeeping ja <09><><EFBFBD><EFBFBD>
anonymous user admin ja ƿ̾<C6BF><EFBFBD><E6A1BC>
any transy ja any
application transy ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
application name admin ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾
application title admin ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥿥<EFBFBD><F3A5BFA5>ȥ<EFBFBD>
applications admin ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
april common ja <09><><EFBFBD><EFBFBD>
are you sure you want to delete this account ? admin ja <09><><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure you want to delete this application ? admin ja <09><><EFBFBD>Υ<EFBFBD><CEA5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure you want to delete this category ? common ja <09><><EFBFBD>Υ<EFBFBD><CEA5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure you want to delete this entry todo ja <09><><EFBFBD>ι<EFBFBD><CEB9>ܤ<EFBFBD><DCA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure you want to delete this entry ? common ja <09><><EFBFBD>ι<EFBFBD><CEB9>ܤ<EFBFBD><DCA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure you want to delete this field? addressbook ja <09><><EFBFBD>ι<EFBFBD><CEB9>ܤ<EFBFBD><DCA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure you want to delete this group ? admin ja <09><><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure you want to delete this news site ? admin ja <09><><EFBFBD>Υ˥塼<CBA5><E5A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure you want to delete this note notes ja <09><><EFBFBD>ΥΡ<CEA5><CEA1>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure you want to delete this note ? notes ja <09><><EFBFBD>ΥΡ<CEA5><CEA1>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure you want to kill this session ? admin ja <09><><EFBFBD>Υ<EFBFBD><CEA5>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure\nyou want to\ndelete this entry ? calendar ja <09><><EFBFBD>ι<EFBFBD><CEB9>ܤ<EFBFBD>\n<><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>\n<><6E><EFBFBD><EFBFBD><EFBFBD>ƤΥ<CEA5><E6A1BC><EFBFBD>˱ƶ<CBB1><C6B6><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
arial notes ja Arial
as a subfolder of squirrelmail ja <09>ƥե<C6A5><D5A5><EFBFBD><EFBFBD><EFBFBD>
attach: squirrelmail ja ź<>եե<D5A5><D5A5><EFBFBD><EFBFBD><EFBFBD>
attach file email ja ź<>եե<D5A5><D5A5><EFBFBD><EFBFBD><EFBFBD>
attach signature email ja <09><>̾<EFBFBD>ɲ<EFBFBD>
attachments squirrelmail ja ź<>եե<D5A5><D5A5><EFBFBD><EFBFBD><EFBFBD>
august common ja <09><><EFBFBD><EFBFBD>
author nntp ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
autosave default category common ja <09>ǥե<C7A5><D5A5><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ư<EFBFBD><C6B0>¸
available groups nntp ja <09><><EFBFBD>Ѳ<EFBFBD>ǽ<EFBFBD><C7BD><EFBFBD><EFBFBD><EBA1BC>
back notes ja <09><><EFBFBD><EFBFBD>
back to projectlist todo ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥꥹ<C8A5>Ȥ<EFBFBD>
bad login or password login ja <09>ѥ<EFBFBD><D1A5><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD><EFBFBD>äƤ<C3A4><C6A4>ޤ<EFBFBD>
base url admin ja Base URL
bbs phone addressbook ja BBS<42><53><EFBFBD><EFBFBD>
bcc: squirrelmail ja <09>£ãá<C3A3>
birthday addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
body squirrelmail ja <09><>ʸ
book marks common ja <09>֥å<D6A5><C3A5>ޡ<EFBFBD><DEA1><EFBFBD>
bookkeeping common ja <09><><EFBFBD><EFBFBD>
bookkeeping admins common ja <09><><EFBFBD><EFBFBD><EFBFBD>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD>
bookmarks common ja <09>֥å<D6A5><C3A5>ޡ<EFBFBD><DEA1><EFBFBD>
brief description calendar ja <09><>̾
business common ja <09>ӥ<EFBFBD><D3A5>ͥ<EFBFBD>
business address type addressbook ja <09><><EFBFBD>ɥ쥹<C9A5><ECA5B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
business city common ja <09>Զ<EFBFBD>Į¼
business country common ja <09><>
business email common ja <09>Żҥ᡼<D2A5><E1A1BC>
business email type common ja <09>Żҥ᡼<D2A5>륿<EFBFBD><EBA5BF><EFBFBD><EFBFBD>
business fax common ja FAX
business phone common ja <09><><EFBFBD><EFBFBD>
business state common ja <09><>ƻ<EFBFBD>ܸ<EFBFBD>
business street common ja Į<><C4AE>
business zip code common ja ͹<><CDB9><EFBFBD>ֹ<EFBFBD>
calendar common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
calendar - add calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> - <20>ɲ<EFBFBD>
calendar - edit calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> - <20>Խ<EFBFBD>
calendar holiday management calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
calendar preferences common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
cancel common ja <09><><EFBFBD><EFBFBD>
cancel filemanager ja <09><><EFBFBD><EFBFBD>
cannot display the requested article from the requested newsgroup nntp ja Article <20><>ɽ<EFBFBD><C9BD><EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>
car phone addressbook ja <09><>ư<EFBFBD><C6B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
categories common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD>
category common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD>
category description admin ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ܺ<EFBFBD>
categories for common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD>
category name admin ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD>̾
category x has been added ! common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD> %1 <20><><EFBFBD>ɲä<C9B2><C3A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
category x has been updated ! common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD> %1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
cc common ja <09>ã<EFBFBD>
cc: squirrelmail ja <09>ãá<C3A3>
cell phone addressbook ja cell <20><><EFBFBD><EFBFBD>
center weather ja <09><><EFBFBD><EFBFBD>
change common ja <09>ѹ<EFBFBD>
change main screen message admin ja <09><EFBFBD><E1A5A4><EFBFBD><EFBFBD><EFBFBD>̥<EFBFBD><CCA5>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD>
change password preferences ja <09>ѥ<EFBFBD><D1A5><EFBFBD><EFA1BC><EFBFBD>ѹ<EFBFBD>
change your password preferences ja <09>ѥ<EFBFBD><D1A5><EFBFBD><EFA1BC><EFBFBD>ѹ<EFBFBD>
change your profile preferences ja <09>ץ<EFBFBD><D7A5>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD>
change your settings preferences ja <09><><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD>
charset common ja EUC-JP
chat common ja <09><><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD>
checkbox squirrelmail ja <09><><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><C3A5>ܥå<DCA5><C3A5><EFBFBD>
checked messages squirrelmail ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>
choose a font notes ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>
choose font size notes ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD><EFBFBD>
choose the font size notes ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD><EFBFBD>
choose the category common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
city addressbook ja <09>Զ<EFBFBD>Į¼
city admin ja <09>Զ<EFBFBD>Į¼
city weather ja <09>Զ<EFBFBD>Į¼
clear common ja <09><><EFBFBD>
clear form common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
clear form todo ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
clipboard contents: x filemanager ja <09><><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>: %1
color squirrelmail ja <09><>
common transy ja <09><><EFBFBD><EFBFBD>
company addressbook ja <09><><EFBFBD><EFBFBD>̾
company common ja <09><><EFBFBD><EFBFBD>
company name addressbook ja <09><><EFBFBD><EFBFBD>̾
completed todo ja ã<><C3A3>Ψ
compose common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
contact common ja Ϣ<><CFA2><EFBFBD><EFBFBD>
copy common ja <09><><EFBFBD>ԡ<EFBFBD>
copy_as filemanager ja <09><><EFBFBD>ԡ<EFBFBD><D4A1><EFBFBD>
countries calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
country common ja <09><>
courier new notes ja Courier New
create common ja <09><><EFBFBD><EFBFBD>
create filemanager ja <09><><EFBFBD><EFBFBD>
create a folder email ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
create folder squirrelmail ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
Created folder successfully! squirrelmail ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
create group admin ja <09><><EFBFBD><EFBFBD>׺<EFBFBD><D7BA><EFBFBD>
create lang.sql file transy ja lang.sql <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
create new language set transy ja Create new langague set
created by common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
cron common ja Cron
currency common ja <09>̲<EFBFBD>
currency preferences ja <09>̲<EFBFBD>
current folder squirrelmail ja <09><><EFBFBD>ߤΥե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD>
current folder: squirrelmail ja <09><><EFBFBD>ߤΥե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD>
current users common ja <09><><EFBFBD>ߤΥ<CEA5><E6A1BC>
current_file filemanager ja <09><><EFBFBD>ߤΥե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD>
current file filemanager ja <09><><EFBFBD>ߤΥե<CEA5><D5A5><EFBFBD><EFBFBD><EFBFBD>
custom common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
custom email settings email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
custom fields addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
custom field addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
daily calendar ja <09><>ñ<EFBFBD><C3B1>
daily matrix view calendar ja <09><><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
date bookkeeping ja <09><>
date common ja <09><>
date email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
date: squirrelmail ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ա<EFBFBD>
date nntp ja <09><>
date due todo ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
date format preferences ja <09><><EFBFBD>ս<EFBFBD><D5BD><EFBFBD>
days datedue todo ja days datedue
days repeated calendar ja <09><><EFBFBD><EFBFBD>
december common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
default application preferences ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʴ<EFBFBD><CAB4><EFBFBD><EFBFBD><EFBFBD>
default calendar filter calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ν<EFBFBD><CEBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
default calendar view calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ν<EFBFBD><CEBD><EFBFBD>ɽ<EFBFBD><C9BD>
default category admin ja <09><><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5>ƥ<EFBFBD><C6A5><EFBFBD>
default category common ja <09><><EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5>ƥ<EFBFBD><C6A5><EFBFBD>
default sorting order email ja <09><><EFBFBD><EFBFBD><EFBFBD>Ƚ<EFBFBD><C8BD>ʴ<EFBFBD><CAB4><EFBFBD><EFBFBD><EFBFBD>
delete common ja <09><><EFBFBD><EFBFBD>
delete a folder email ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
delete folder squirrelmail ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
deleted folder successfully! squirrelmail ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
delete all records admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
delete selected squirrelmail ja <09><><EFBFBD><EFBFBD>
department addressbook ja <09><><EFBFBD><EFBFBD>
description common ja <09>ܺ<EFBFBD>
detail tts ja <09><><EFBFBD><EFBFBD>
disabled admin ja <09>Բ<EFBFBD>
display admin ja ɽ<><C9BD>
display missing phrases in lang set transy ja Display missing pharases in lang set
display note for notes ja <09>Ρ<EFBFBD><CEA1><EFBFBD>ɽ<EFBFBD><C9BD>
display status of events calendar ja <09><><EFBFBD>٥<EFBFBD><D9A5>Ⱦ<EFBFBD><C8BE><EFBFBD>ɽ<EFBFBD><C9BD>
displaying subprojects of following project todo ja <09><><EFBFBD>֥ץ<D6A5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȱ<EFBFBD><C8B0><EFBFBD>
do_delete x filemanager ja %1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
do you also want to delete all subcategories ? common ja <09><><EFBFBD>֥<EFBFBD><D6A5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD>Ʊ<EFBFBD><C6B1><EFBFBD>˺<EFBFBD><CBBA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
domestic common ja <09><><EFBFBD><EFBFBD>
done common ja <09><>λ
down squirrelmail ja <09><>
download common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
download this as a file squirrelmail ja <09><><EFBFBD>Υ<EFBFBD><CEA5>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
duration calendar ja <09><>³<EFBFBD><C2B3><EFBFBD><EFBFBD>
e-mail addressbook ja <09>Żҥ᡼<D2A5><E1A1BC>
e-mail common ja <09>Żҥ᡼<D2A5><E1A1BC>
e-mail preferences common ja <09>Żҥ᡼<D2A5><E1A1BC><EFBFBD><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
e-mail address squirrelmail ja <09>Żҥ᡼<D2A5><E1A1BC>
edit common ja <09><><EFBFBD><EFBFBD>
edit addressbook category for common ja <09><><EFBFBD>ɥ쥹Ģ<ECA5B9><C4A2><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit application admin ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit categories common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit category common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit custom fields preferences ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit field addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit global category admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Х<D0A5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit group admin ja <09><><EFBFBD><EFBFBD><EBA1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit login screen message admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̥<EFBFBD><CCA5>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit main screen message admin ja <09><EFBFBD><E1A5A4><EFBFBD><EFBFBD><EFBFBD>̥<EFBFBD><CCA5>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit note for notes ja <09>Ρ<EFBFBD><CEA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit notes category for common ja <09>Ρ<EFBFBD><CEA1>ȥ<EFBFBD><C8A5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit selected squirrelmail ja <09><><EFBFBD><EFBFBD>
edit todo category for common ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit user account admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit x category for common ja %1 <20><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
edit_expense bookkeeping ja <09>ٽ<EFBFBD><D9BD><EFBFBD><EFBFBD><EFBFBD>
edit_income bookkeeping ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
email common ja <09>Żҥ᡼<D2A5><E1A1BC>
email account name email ja <09>Żҥ᡼<D2A5><EFBFBD><EBA5A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾
email address email ja <09>Żҥ᡼<D2A5><EFBFBD>ɥ쥹
email password email ja <09>Żҥ᡼<D2A5><E1A1BC><EFBFBD>ѥ<EFBFBD><D1A5><EFBFBD><EFA1BC>
email signature email ja <09><>̾
email type common ja <09>Żҥ᡼<D2A5>륿<EFBFBD><EBA5BF><EFBFBD><EFBFBD>
enabled admin ja <09><>ǽ
enabled weather ja <09><>ǽ
enabled - hidden from navbar admin ja <09><>ǽ - <20>ʥӥ<CAA5><D3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
end date common ja <09><>λ<EFBFBD><CEBB>
end date/time calendar ja <09><>λ<EFBFBD><CEBB><EFBFBD><EFBFBD>
end time common ja <09><>λ<EFBFBD><CEBB><EFBFBD><EFBFBD>
ends calendar ja <09><>λ<EFBFBD><CEBB>
enter your new password preferences ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѥ<EFBFBD><D1A5><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
entries bookkeeping ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ͽ
entry has been deleted sucessfully common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
entry updated sucessfully common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
err_saving_file filemanager ja <09><><EFBFBD><EFBFBD><E9A1BC><EFBFBD>ǥ<EFBFBD><C7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¸<EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
error common ja <09><><EFBFBD>
error creating x x directory common ja <09><><EFBFBD><EFBFBD><E9A1BC><EFBFBD>ǥ<EFBFBD><C7A5><EFBFBD>ȥ<EFBFBD> %1%2 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
error deleting x x directory common ja <09><><EFBFBD><EFBFBD><E9A1BC><EFBFBD>ǥ<EFBFBD><C7A5><EFBFBD>ȥ<EFBFBD> %1%2 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
error renaming x x directory common ja <09><><EFBFBD><EFBFBD><E9A1BC><EFBFBD>ǥ<EFBFBD><C7A5><EFBFBD>ȥ<EFBFBD> %1%2 <20><>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD><D1B9>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
everywhere squirrelmail ja <09><><EFBFBD>٤<EFBFBD>
exit common ja <09>Ĥ<EFBFBD><C4A4><EFBFBD>
exit filemanager ja <09>Ĥ<EFBFBD><C4A4><EFBFBD>
expense bookkeeping ja <09>ٽ<EFBFBD>
expenses bookkeeping ja <09>ٽ<EFBFBD>
export contacts addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1><EFBFBD>
export file name addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>ȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD>̾
export from addressbook addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>ȡʥ<C8A1><CAA5>ɥ쥹Ģ<ECA5B9><C4A2>
extra common ja <09>ɲ<EFBFBD>
failed to find your station weather ja failed to find your station
fax addressbook ja Fax
february common ja <09><><EFBFBD><EFBFBD>
field list addressbook ja <09><><EFBFBD>ܰ<EFBFBD><DCB0><EFBFBD>
field name addressbook ja <09><><EFBFBD><EFBFBD>̾
field x has been added ! addressbook ja <09><><EFBFBD><EFBFBD> %1 <20><><EFBFBD>ɲä<C9B2><C3A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
field x has been updated ! addressbook ja <09><><EFBFBD><EFBFBD> %1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
fields common ja <09><><EFBFBD><EFBFBD>
fields to show in address list addressbook ja <09><><EFBFBD>ɥ쥹<C9A5><EFBFBD>Ȥ<EFBFBD>ɽ<EFBFBD><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
file manager common ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޥ͡<DEA5><CDA1><EFBFBD><EFBFBD><EFBFBD>
file upload filemanager ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>åץ<C3A5><D7A5><EFBFBD><EFBFBD><EFBFBD>
file_upload filemanager ja <09><><EFBFBD>åץ<C3A5><D7A5><EFBFBD><EFBFBD><EFBFBD>
files common ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>
files email ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>
files filemanager ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>
filter common ja <09><><EFBFBD><EFBFBD>
first name common ja <09><>
first page common ja <09><>Ƭ<EFBFBD>ڡ<EFBFBD><DAA1><EFBFBD>
firstname bookkeeping ja <09><>
firstname email ja <09><>
folder email ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>
folder maintenance email ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥʥ<C6A5><CAA5><EFBFBD>
folders common ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>
forecast admin ja ŷ<><C5B7>ͽ<EFBFBD><CDBD>
forecast weather ja ŷ<><C5B7>ͽ<EFBFBD><CDBD>
forecast zone admin ja ŷ<><C5B7>ͽ<EFBFBD><CDBD>
forecasts weather ja ŷ<><C5B7>ͽ<EFBFBD><CDBD>
forum common ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
forward common ja ž<><C5BE>
fr calendar ja <09><>
free/busy calendar ja <09><><EFBFBD><EFBFBD>ɽ
frequency calendar ja <09>ֳ<EFBFBD>
fri calendar ja <09><>
friday common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
from common ja <09><><EFBFBD>п<EFBFBD>
from: squirrelmail ja <09><><EFBFBD>п͡<D0BF>
ftp common ja FTP
full description calendar ja <09>ܺ<EFBFBD>
full name common ja ̾<><CCBE>
fzone admin ja fzone
fzone weather ja fzone
generate new lang.sql file transy ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> lang.sql <20>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
generate printer-friendly version calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
geo addressbook ja Geo
georgia notes ja Georgia
global common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Х<EFBFBD>
global weather ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Х<EFBFBD>
global categories admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Х<D0A5>ƥ<EFBFBD><C6A5><EFBFBD>
global public common ja <09>ѥ֥<D1A5><D6A5>å<EFBFBD>
global public and group public calendar ja <09>ѥ֥<D1A5><D6A5>å<EFBFBD><C3A5>Ƚ<EFBFBD>°<EFBFBD><C2B0><EFBFBD><EFBFBD><EBA1BC>
global public only calendar ja <09>ѥ֥<D1A5><D6A5>å<EFBFBD>
go! calendar ja Go!
grant access common ja <09><><EFBFBD>ѵ<EFBFBD><D1B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
grant addressbook access common ja <09><><EFBFBD>ѵ<EFBFBD><D1B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
grant calendar access common ja <09><><EFBFBD>ѵ<EFBFBD><D1B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
grant todo access common ja <09><><EFBFBD>ѵ<EFBFBD><D1B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
group common ja <09><><EFBFBD><EFBFBD><EBA1BC>
group access common ja <09><><EFBFBD><EFBFBD><EBA1BC>
group has been added common ja <09><><EFBFBD><EFBFBD>פ<EFBFBD><D7A4>ɲä<C9B2><C3A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
group has been deleted common ja <09><><EFBFBD><EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
group has been updated common ja <09><><EFBFBD><EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
group name admin ja <09><><EFBFBD><EFBFBD><EBA1BC>̾
group public common ja <09><>°<EFBFBD><C2B0><EFBFBD><EFBFBD><EBA1BC>
group public only calendar ja <09><>°<EFBFBD><C2B0><EFBFBD><EFBFBD><EBA1BC>
group_files filemanager ja <09><><EFBFBD><EFBFBD>ץե<D7A5><D5A5><EFBFBD><EFBFBD><EFBFBD>
groups common ja <09><><EFBFBD><EFBFBD><EBA1BC>
groupsfile_perm_error filemanager ja To correct this error you will need to properly set the permissions to the files/groups directory.<BR> On *nix systems please type: chmod 707
headline preferences common ja <09>إåɥ饤<C9A5><E9A5A4>
headline sites admin ja <09>إåɥ饤<C9A5>󥵥<EFBFBD><F3A5B5A5><EFBFBD>
headlines common ja <09>إåɥ饤<C9A5><E9A5A4>
help common ja <09>إ<EFBFBD><D8A5><EFBFBD>
helvetica notes ja Helvetica
hide php information admin ja PHP<48><50><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><E1A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD>
high common ja <09><>
holiday calendar ja <09><><EFBFBD><EFBFBD>
holidays calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
home common ja <09>ۡ<EFBFBD><DBA1><EFBFBD>
home address type addressbook ja <09><><EFBFBD><EFBFBD>
home city addressbook ja <09>Զ<EFBFBD>Į¼
home country addressbook ja <09><>
home directory admin ja home directory
home email addressbook ja <09>Żҥ᡼<D2A5><E1A1BC>
home email type addressbook ja <09>Żҥ᡼<D2A5>륿<EFBFBD><EBA5BF><EFBFBD><EFBFBD>
home phone addressbook ja <09><><EFBFBD><EFBFBD>TEL
home state addressbook ja <09><>ƻ<EFBFBD>ܸ<EFBFBD>
home street addressbook ja Į<><C4AE>
home zip code addressbook ja ͹<><CDB9><EFBFBD>ֹ<EFBFBD>
human resources common ja <09>ͺ<EFBFBD>
i participate calendar ja <09><>ʬ<EFBFBD><EFBFBD>ü<EFBFBD>
icons and text preferences ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥƥ<C8A5><C6A5><EFBFBD><EFBFBD><EFBFBD>
icons only preferences ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Τ<EFBFBD>
id admin ja ID
id weather ja ID
identifying name squirrelmail ja <09><><EFBFBD><EFBFBD>̾
idle admin ja <09><><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD>
if applicable email ja Ŭ<>ѻ<EFBFBD>
ignore conflict calendar ja ̵<><CCB5>
image email ja Image
images common ja Images
imap server type email ja IMAP <20><><EFBFBD><EFBFBD><EFBFBD>Х<EFBFBD><D0A5><EFBFBD><EFBFBD><EFBFBD>
import contacts addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1><EFBFBD>
import file addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1><EFBFBD>
import from ldif, csv, or vcard addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>ȡ<EFBFBD>LDIF, CSV, VCard<72><64>
import from outlook addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD><DDA1>ȡ<EFBFBD>Outlook<6F><6B>
import lang set transy ja Import lang set
inc common ja Inc
income bookkeeping ja <09><><EFBFBD><EFBFBD>
index order squirrelmail ja ɽ<><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
info squirrelmail ja <09>ɲþ<C9B2><C3BE><EFBFBD>
installed applications admin ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
interface/template selection preferences ja <09>ƥ<EFBFBD><C6A5>ץ졼<D7A5><ECA1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
international common ja <09><><EFBFBD><EFBFBD>
inventory common ja <09>߸˴<DFB8><CBB4><EFBFBD>
ip admin ja IP
isdn phone addressbook ja ISDN
it has been more then x days since you changed your password common ja It has been more then %1 days since you changed your password
january common ja <09><><EFBFBD><EFBFBD>
july common ja <09><><EFBFBD><EFBFBD>
june common ja <09><><EFBFBD><EFBFBD>
kill admin ja <09><><EFBFBD><EFBFBD>
label addressbook ja <09><><EFBFBD>٥<EFBFBD>
language admin ja <09><><EFBFBD><EFBFBD>
language preferences ja <09><><EFBFBD><EFBFBD>
large common ja <09><>
last login admin ja <09>ǽ<EFBFBD><C7BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
last login from admin ja <09>ǽ<EFBFBD><C7BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>IP
last name common ja ̾
last page common ja last page
last time read admin ja Last Time Read
last updated todo ja Last Updated
last x logins admin ja <09><><EFBFBD><EFBFBD> %1 <20>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
lastname bookkeeping ja ̾
lastname email ja ̾
line 2 addressbook ja Į<><C4AE><EFBFBD>ʣ<EFBFBD><CAA3><EFBFBD><EFBFBD>ܡ<EFBFBD>
links weather ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
list of current users admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
listings displayed admin ja <09><><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
logging bookkeeping ja <09><><EFBFBD><EFBFBD>
login common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
login login ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
login screen admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
login shell admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥷥<EFBFBD><F3A5B7A5><EFBFBD>
login time admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
loginid admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID
loginid bookkeeping ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID
logout common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
low common ja <09><>
mail folder(uw-maildir) email ja <09><EFBFBD><E1A1BC><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>UW-MailDir<69><72>
mail server email ja <09><EFBFBD><EFBFBD><EBA5B5><EFBFBD><EFBFBD>
mail server type email ja <09><EFBFBD><EFBFBD><EBA5B5><EFBFBD>Х<EFBFBD><D0A5><EFBFBD><EFBFBD><EFBFBD>
main category common ja <09><EFBFBD>󥫥ƥ<F3A5ABA5><C6A5><EFBFBD>
main screen common ja <09><EFBFBD><E1A5A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
main screen message admin ja <09><EFBFBD><E1A5A4><EFBFBD><EFBFBD><EFBFBD>̥<EFBFBD><CCA5>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>
manager admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
manual common ja <09>ޥ˥奢<CBA5><E5A5A2>
march common ja <09><><EFBFBD><EFBFBD>
max matchs per page preferences ja <09><><EFBFBD>ڡ<EFBFBD><DAA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Կ<EFBFBD>
may common ja <09><><EFBFBD><EFBFBD>
medium common ja <09><>
message common ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>
message list squirrelmail ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
message has been updated admin ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
message highlighting squirrelmail ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĵɽ<C4B4><C9BD>
message phone addressbook ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>
message x nntp ja %1 <20>ĤΥ<C4A4><CEA5>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>
messages email ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>
metar admin ja M
metar weather ja M
middle name addressbook ja <09>ߥɥ<DFA5><C9A5>͡<EFBFBD><CDA1><EFBFBD>
minutes calendar ja ʬ
minutes between reloads admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
mo calendar ja <09><>
mobile addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
mobile phone common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
modem phone common ja <09><><EFBFBD>ǥ<EFBFBD>
mon calendar ja <09><>
monday common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
monitor common ja <09>ƻ<EFBFBD>
monitor newsgroups preferences ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
month calendar ja <09><>
month todo ja <09><>
monthly calendar ja <09><>ñ<EFBFBD><C3B1>
monthly (by date) calendar ja <09><>ñ<EFBFBD><C3B1>(<28><>)
monthly (by day) calendar ja <09><>ñ<EFBFBD><C3B1>(<28><><EFBFBD><EFBFBD>)
monthlybydate calendar ja <09><>ñ<EFBFBD><C3B1>(<28><>)
monthlybyday calendar ja <09><>ñ<EFBFBD><C3B1>(<28><><EFBFBD><EFBFBD>)
move squirrelmail ja <09><>ư
move & follow squirrelmail ja <09><>ư<EFBFBD><C6B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
move selected to: squirrelmail ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ư<EFBFBD><C6B0>
move selected messages into email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ư
must be unique squirrelmail ja <09><>ʣ<EFBFBD><CAA3><EFBFBD>ʤ<EFBFBD><CAA4>ͤ<EFBFBD><CDA4><EFBFBD><EFBFBD><EFBFBD>
name common ja ̾<><CCBE>
network news admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
never admin ja ̤
new squirrelmail ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
new entry calendar ja <09><><EFBFBD><EFBFBD><EFBFBD>ɲ<EFBFBD>
new entry added sucessfully common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܤ<EFBFBD><DCA4>ɲä<C9B2><C3A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
newest -> oldest email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
new file filemanager ja <09><><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>
new group name admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EBA1BC>̾
new main category common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥫥ƥ<F3A5ABA5><C6A5><EFBFBD>
new message email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>
new name: squirrelmail ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD><CCBE>
new password [ leave blank for no change ] admin ja <09><><EFBFBD>ѥ<EFBFBD><D1A5><EFBFBD><EFA1BC> [ Leave blank for no change ]
new phrase has been added transy ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե졼<D5A5><ECA1BC><EFBFBD><EFBFBD><EFBFBD>ɲä<C9B2><C3A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
new ticket tts ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD>
new_file filemanager ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>
news file admin ja <09>˥塼<CBA5><E5A1BC><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>
news headlines common ja <09>˥塼<CBA5><E5A1BC><EFBFBD>إåɥ饤<C9A5><E9A5A4>
news reader common ja <09>˥塼<CBA5><E5A1BC><EFBFBD><EFBFBD><EAA1BC><EFBFBD><EFBFBD>
news type admin ja <09>˥塼<CBA5><E5A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
newsgroups common ja <09>˥塼<CBA5><E5A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EBA1BC>
next common ja <09><>
next page common ja <09><><EFBFBD>ڡ<EFBFBD><DAA1><EFBFBD>
nickname squirrelmail ja <09>˥å<CBA5><C3A5>͡<EFBFBD><CDA1><EFBFBD>
nntp common ja <09>ͥåȥ˥塼<CBA5><E5A1BC>
no common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
no folders found squirrelmail ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD>
no folders were found to subscribe to! squirrelmail ja ɽ<><C9BD><EFBFBD><EFBFBD>ǽ<EFBFBD>ʥե<CAA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
no folders were found to unsubscribe from! squirrelmail ja <09><>ɽ<EFBFBD><C9BD><EFBFBD><EFBFBD>ǽ<EFBFBD>ʥե<CAA5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
no highlighting is defined squirrelmail ja <09><>Ĵɽ<C4B4><C9BD><EFBFBD><EFBFBD>̤<EFBFBD><CCA4><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD>
no messages found squirrelmail ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
no messages were selected. squirrelmail ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򤷤Ƥ<F2A4B7A4><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
no matches found. calendar ja <09><><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
no matchs found admin ja <09><><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
no response calendar ja <09><><EFBFBD><EFBFBD><EFBFBD>ʤ<EFBFBD>
no subject email ja No Subject
no tickets found tts ja <09><><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
no_file_name filemanager ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
non-standard email ja <09><><EFBFBD><EFBFBD><EFBFBD>ͤ<EFBFBD><CDA4><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4>ʤ<EFBFBD>
none common ja <09>ʤ<EFBFBD>
normal common ja ɸ<><C9B8>
not applicable weather ja Ŭ<>ѤǤ<D1A4><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
note has been added for x ! notes ja %1 <20>ΥΡ<CEA5><CEA1>Ȥ<EFBFBD><C8A4>ɲä<C9B2><C3A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
note has been deleted notes ja <09>Ρ<EFBFBD><CEA1>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
note has been updated for: x ! notes ja %1 <20>ΥΡ<CEA5><CEA1>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
note: this feature does *not* change your email password. this will need to be done manually. preferences ja <09><><EFBFBD><EFBFBD><EFBFBD>ա<EFBFBD><D5A1>Żҥ᡼<D2A5><E1A1BC><EFBFBD>Υѥ<CEA5><D1A5><EFBFBD>ɤ<EFBFBD><C9A4>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Żҥ᡼<D2A5><E1A1BC><EFBFBD>Υѥ<CEA5><D1A5><EFBFBD>ɤϡ<C9A4><CFA1><EFBFBD>ư<EFBFBD><C6B0><EFBFBD>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
notes common ja <09>Ρ<EFBFBD><CEA1><EFBFBD>
notes access preferences ja <09>Ρ<EFBFBD><CEA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѵ<EFBFBD><D1B5><EFBFBD>
notes categories preferences ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
notes list notes ja <09>Ρ<EFBFBD><CEA1>Ȱ<EFBFBD><C8B0><EFBFBD>
notes preferences common ja <09>Ρ<EFBFBD><CEA1>ȥ桼<C8A5><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
november common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
observations weather ja <09><>¬
observance rule calendar ja <09><><EFBFBD><EFBFBD><EFBFBD>Υ<CEA5><EBA1BC><EFBFBD><EFBFBD>Ŭ<EFBFBD><C5AC>
occurence calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
october common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
ok common ja OK
on *nix systems please type: x common ja On *nix systems please type: %1
only yours common ja <09><>ͭ<EFBFBD><CDAD>
oldest -> newest email ja <09><EFBFBD>
options squirrelmail ja <09><><EFBFBD>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD>
or: days from startdate: todo ja <09>ޤ<EFBFBD><DEA4>ϡ<EFBFBD><CFA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
or: select for today: todo ja <09>ޤ<EFBFBD><DEA4>ϡ<EFBFBD><CFA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
original transy ja <09><><EFBFBD><EFBFBD>ʥ<EFBFBD>
original message squirrelmail ja Original Message
other common ja <09><><EFBFBD><EFBFBD>¾
other number addressbook ja <09><><EFBFBD><EFBFBD>¾<EFBFBD>ֹ<EFBFBD>
other phone common ja <09><><EFBFBD><EFBFBD>¾<EFBFBD>ֹ<EFBFBD>
outcharset common ja ISO-2022-JP
owner common ja <09><>ͭ<EFBFBD><CDAD>
pager addressbook ja <09>ڡ<EFBFBD><DAA1><EFBFBD><EFBFBD>
parcel addressbook ja <09><><EFBFBD><EFBFBD>
parent project todo ja <09>ƥץ<C6A5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
parent project: todo ja <09>ƥץ<C6A5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾:
parent category common ja <09>ƥ<EFBFBD><C6A5>ƥ<EFBFBD><C6A5><EFBFBD>
participant calendar ja <09><><EFBFBD>ü<EFBFBD>
participates calendar ja <09><EFBFBD><E2BBB2>
participants calendar ja <09><><EFBFBD>ü<EFBFBD>
password common ja <09>ѥ<EFBFBD><D1A5><EFBFBD><EFA1BC>
password login ja <09>ѥ<EFBFBD><D1A5><EFBFBD><EFA1BC>
password has been updated common ja <09>ѥ<EFBFBD><D1A5><EFBFBD>ɤ<EFBFBD><C9A4>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
percent of users that logged out admin ja <09><EFBFBD><E6A1BC><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ψ
permissions admin ja <09>ѡ<EFBFBD><D1A1>ߥå<DFA5><C3A5><EFBFBD><EFBFBD><EFBFBD>
permissions this group has admin ja <09><><EFBFBD>Ѳ<EFBFBD>ǽ<EFBFBD><C7BD><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
permissions to the files/users directory common ja permissions to the files/users directory
personal common ja <09>Ŀ<EFBFBD>
personal address book squirrelmail ja <09>Ŀͥ<C4BF><CDA5>ɥ쥹Ģ
personal information squirrelmail ja <09>Ŀ;<C4BF><CDBE><EFBFBD>
personalized notes for notes ja <09>ŻҥΡ<D2A5><CEA1><EFBFBD>
phrase in english transy ja <09>ե졼<D5A5><ECA1BC><EFBFBD>ʱѸ<CAB1><D1B8><EFBFBD>
phrase in new langague transy ja <09>ե졼<D5A5><ECA1BC><EFBFBD>ʿ<EFBFBD><CABF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
phone numbers addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD>
php information admin ja PHP<48><50><EFBFBD><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><E1A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
phpgroupware login login ja phpGroupWare login
please enter a name for that category ! admin ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
Please enter a name for that field! addressbook ja <09><><EFBFBD><EFBFBD>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
please select a message first email ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򤷤Ƥ<F2A4B7A4><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
please set your preferences for this app common ja <09><><EFBFBD>Υ<EFBFBD><CEA5>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Υ<CEA5><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԤäƲ<C3A4><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
please x by hand common ja Please %1 by hand
please, check your username and password, or contact your admin. common ja <09><EFBFBD><E6A1BC><EFBFBD>ȥѥ<C8A5><D1A5><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EBA4AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԥ<EFBFBD><D4A4><EFBFBD><E4A4A4><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
please, select a new theme preferences ja Please, select a new theme
pm calendar ja <09><><EFBFBD><EFBFBD>
postal addressbook ja ͹<><CDB9>
powered by phpgroupware version x common ja Powered by <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
pref common ja ͥ<><CDA5>
prefer common ja <09><><EFBFBD><EFBFBD>
preferences common ja <09><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
prefix addressbook ja <09>ץ<EFBFBD><D7A5>ե<EFBFBD><D5A5>å<EFBFBD><C3A5><EFBFBD>
previous common ja <09><>
previous page common ja <09><><EFBFBD>ڡ<EFBFBD><DAA1><EFBFBD>
print common ja <09><><EFBFBD><EFBFBD>
printer friendly calendar ja <09><><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD>
priority common ja ͥ<><CDA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
private common ja <09>ץ饤<D7A5>١<EFBFBD><D9A1><EFBFBD>
private and global public calendar ja <09>ץ饤<D7A5>١<EFBFBD><D9A1>Ȥȶ<C8A4>ͭ
private and group public calendar ja <09>ץ饤<D7A5>١<EFBFBD><D9A1>ȤȽ<C8A4>°<EFBFBD><C2B0><EFBFBD><EFBFBD><EBA1BC>
private only calendar ja <09>ץ饤<D7A5>١<EFBFBD><D9A1>ȤΤ<C8A4>
private_files filemanager ja <09>Ŀͥե<CDA5><D5A5><EFBFBD><EFBFBD><EFBFBD>
proceed bookkeeping ja ³<><C2B3>
project description todo ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
project name todo ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾
projectname todo ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾
public common ja <09><>ͭ
public key addressbook ja <09>ѥ֥<D1A5><D6A5>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>
re-edit event calendar ja <09><><EFBFBD>Խ<EFBFBD>
re-enter password admin ja <09>ѥ<EFBFBD><D1A5><EFBFBD>ɺ<EFBFBD><C9BA><EFBFBD><EFBFBD><EFBFBD>
re-enter your password preferences ja <09>ѥ<EFBFBD><D1A5><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
read common ja ɽ<><C9BD>
recent weather ja <09>Ƕ<EFBFBD>
record access addressbook ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
record owner addressbook ja <09><>ͭ<EFBFBD><CDAD>
refresh calendar ja <09><>ɽ<EFBFBD><C9BD>
refresh folder list squirrelmail ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
region admin ja <09>ϰ<EFBFBD>
region weather ja <09>ϰ<EFBFBD>
regions admin ja <09>ϰ<EFBFBD>
regions weather ja <09>ϰ<EFBFBD>
reject calendar ja <09><><EFBFBD><EFBFBD>
rejected calendar ja <09><><EFBFBD>ݺѤ<DDBA>
remove squirrelmail ja <09><><EFBFBD><EFBFBD>
remove all users from this group admin ja <09><><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD>ƤΥ<CEA5><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
rename common ja ̾<><CCBE><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD>
rename filemanager ja ̾<><CCBE><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD>
rename a folder squirrelmail ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD><CCBE><EFBFBD>ѹ<EFBFBD>
renamed successfully! squirrelmail ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD><CCBE><EFBFBD>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
rename_to filemanager ja ̾<><CCBE><EFBFBD>ѹ<EFBFBD>
repeat day calendar ja <09><><EFBFBD><EFBFBD><EFBFBD>η<EFBFBD><CEB7>֤<EFBFBD>
repeat end date calendar ja <09><><EFBFBD>֤<EFBFBD><D6A4>ν<EFBFBD>λ<EFBFBD><CEBB>
repeat type calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
repeating event information calendar ja <09><><EFBFBD>֤<EFBFBD><D6A4><EFBFBD><EFBFBD>٥<EFBFBD><D9A5><EFBFBD>
repetition calendar ja <09><><EFBFBD>֤<EFBFBD>
repitition calendar ja <09><><EFBFBD>֤<EFBFBD>
reply common ja <09>ֿ<EFBFBD>
reply all common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֿ<EFBFBD>
replyto common ja <09><><EFBFBD>ץ饤
reply to squirrelmail ja <09><><EFBFBD>ץ饤
reports bookkeeping ja <09><><EFBFBD>ݡ<EFBFBD><DDA1><EFBFBD>
reset calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
sa calendar ja <09><>
sat calendar ja <09><>
saturday common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
save common ja <09><>¸
save filemanager ja <09><>¸
save note notes ja <09><>¸
scheduling conflict calendar ja ͽ<><CDBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǧ
search common ja <09><><EFBFBD><EFBFBD>
search results calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
section admin ja ɽ<><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
section email ja Section
select common ja <09><><EFBFBD><EFBFBD>
select all squirrelmail ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select application transy ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select category common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select country for including holidays calendar ja <09><><EFBFBD><EFBFBD><EFBFBD>ǡ<EFBFBD><C7A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select different theme preferences ja <09>ۤʤ<DBA4><CAA4>ơ<EFBFBD><C6A1>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD>򤷤Ƥ<F2A4B7A4><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select email address email ja <09>Żҥ᡼<D2A5><EFBFBD>ɥ쥹
select headline news sites common ja <09>إåɥ饤<C9A5><E9A5A4><EFBFBD>˥塼<CBA5><E5A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD>
select language to generate for transy ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select parent category common ja <09>ƥ<EFBFBD><C6A5>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select permissions this group will have admin ja <09><><EFBFBD>Ѳ<EFBFBD>ǽ<EFBFBD><C7BD><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select users for inclusion admin ja <09><>°<EFBFBD><C2B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6A1BC>
select which application for this phrase transy ja <09>ե졼<D5A5><ECA1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select which langauge for this pharse transy ja <09>ե졼<D5A5><ECA1BC><EFBFBD>θ<EFBFBD><CEB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select which language for this phrase transy ja <09>ե졼<D5A5><ECA1BC><EFBFBD>θ<EFBFBD><CEB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select which location this app should appear on the navbar, lowest (left) to highest (right) admin ja <09>ʥӥ<CAA5><D3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><D0A1>ΰ<EFBFBD><CEB0>֡ʿ<D6A1><CABF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ⱥ<EFBFBD><C8BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֡<EFBFBD>
select home email address email ja <09>Żҥ᡼<D2A5><E1A1BC><EFBFBD>ʸĿ͡<C4BF>
select work email address email ja <09>Żҥ᡼<D2A5><E1A1BC><EFBFBD>ʻŻ<CABB><C5BB><EFBFBD>
send common ja <09><><EFBFBD><EFBFBD>
send deleted messages to the trash email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򥴥<EFBFBD>Ȣ<EFBFBD><C8A2>
send updates via email common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Żҥ᡼<D2A5><E1A1BC><EFBFBD>Ǽ<EFBFBD><C7BC><EFBFBD><EFBFBD><EFBFBD>
september common ja <09><><EFBFBD><EFBFBD>
session has been killed common ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
show all common ja <09><><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
show all groups nntp ja <09><><EFBFBD>ƤΥ<C6A4><CEA5><EFBFBD><EBA1BC>
show birthday reminders on main screen addressbook ja <09><EFBFBD><E1A5A4><EFBFBD><EFBFBD><EFBFBD>̤<EFBFBD><CCA4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
show current users on navigation bar preferences ja <09><><EFBFBD>ߤΥ<CEA5><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD><EFBFBD><EFBFBD><EFBFBD>
show day view on main screen calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͽ<EFBFBD><CDBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1A5A4><EFBFBD><EFBFBD><EFBFBD>̤<EFBFBD>ɽ<EFBFBD><C9BD>
show groups containing nntp ja <09><><EFBFBD><EFBFBD><EBA1BC>ɽ<EFBFBD><C9BD>
show high priority events on main screen calendar ja ͥ<><CDA5><EFBFBD>٤<EFBFBD><D9A4><EFBFBD><E2A4A4><EFBFBD>٥<EFBFBD><D9A5>Ȥ<EFBFBD><C8A4><EFBFBD><E1A5A4><EFBFBD><EFBFBD><EFBFBD>̤<EFBFBD>ɽ<EFBFBD><C9BD>
show navigation bar as preferences ja <09>ʥӥ<CAA5><D3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
show new messages on main screen email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1A5A4><EFBFBD><EFBFBD><EFBFBD>̤<EFBFBD>ɽ<EFBFBD><C9BD>
show sender's email address with name email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD><CCBE>ɽ<EFBFBD><C9BD><EFBFBD><EFBFBD>ˡ
show text on navigation icons preferences ja <09>ʥӥ<CAA5><D3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥢥<EFBFBD><F3A5A2A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˥ƥ<CBA5><C6A5><EFBFBD><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
showing # x of x weather ja ɽ<><C9BD><EFBFBD><EFBFBD> %1 of %2
showing x common ja ɽ<><C9BD><EFBFBD><EFBFBD> %1
showing x - x of x common ja ɽ<><C9BD><EFBFBD><EFBFBD> %1 - %2 of %3
signature squirrelmail ja <09><>̾
site admin ja Site
size email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
small common ja <09><>
sorry, that group name has already been taking. admin ja <09><><EFBFBD><EFBFBD><EBA1BC>̾<EFBFBD>ϴ<EFBFBD><CFB4><EFBFBD>¸<EFBFBD>ߤ<EFBFBD><DFA4>ޤ<EFBFBD><DEA4><EFBFBD>
sorry, the follow users are still a member of the group x admin ja %1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>פΥ<D7A4><CEA5><EFBFBD><EFBFBD>С<EFBFBD><D0A1>ˤʤäƤ<C3A4><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
sorry, there was a problem processing your request. common ja Sorry, there was a problem processing your request.
sorry, your login has expired login ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͭ<EFBFBD><CDAD><EFBFBD><EFBFBD><EFBFBD>¤<EFBFBD><C2A4>ڤ<EFBFBD><DAA4>ޤ<EFBFBD><DEA4><EFBFBD>
source language transy ja <09><><EFBFBD>Ȥʤ<C8A4><CAA4><EFBFBD><EFBFBD><EFBFBD>
specify_file_name filemanager ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
squirrelmail common ja Squirrelmail
start date common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
start date/time calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
start time common ja <09><><EFBFBD>ϻ<EFBFBD><CFBB><EFBFBD>
state addressbook ja <09><>ƻ<EFBFBD>ܸ<EFBFBD>
state weather ja <09><>ƻ<EFBFBD>ܸ<EFBFBD>
station admin ja <09><><EFBFBD><EFBFBD>
station weather ja <09><><EFBFBD><EFBFBD>
stations admin ja <09><><EFBFBD><EFBFBD>
stations weather ja <09><><EFBFBD><EFBFBD>
statistics bookkeeping ja <09><><EFBFBD><EFBFBD>
status admin ja <09><><EFBFBD><EFBFBD>
status common ja <09><><EFBFBD><EFBFBD>
status todo ja ã<><C3A3>Ψ
street addressbook ja Į<><C4AE>
su calendar ja <09><>
sub todo ja <09><><EFBFBD><EFBFBD>
subject common ja <09><>̾
subject: common ja <09><>̾<EFBFBD><CCBE>
submit common ja <09>¹<EFBFBD>
submit changes admin ja <09>ѹ<EFBFBD>
subproject description todo ja <09><><EFBFBD>֥ץ<D6A5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
subscribe squirrelmail ja ɽ<><C9BD>
subscribed successfully! squirrelmail ja ɽ<><C9BD><EFBFBD>ˤ<EFBFBD><CBA4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
suffix addressbook ja <09>ɾ<EFBFBD>
sun calendar ja <09><>
sunday common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
switch current folder to email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥե<C8A5><D5A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD>
switch to bookkeeping ja <09><><EFBFBD><EFBFBD>
table admin ja <09>ơ<EFBFBD><C6A1>֥<EFBFBD>
tables weather ja <09>ơ<EFBFBD><C6A1>֥<EFBFBD>
tahoma notes ja Tahoma
target language transy ja <09>оݸ<D0BE><DDB8><EFBFBD>
tentative calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
text only preferences ja <09>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ȤΤ<C8A4>
th calendar ja <09><>
that category name has been used already ! common ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD>̾<EFBFBD>ϴ<EFBFBD><CFB4><EFBFBD>¸<EFBFBD>ߤ<EFBFBD><DFA4>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
that field name has been used already ! addressbook ja <09><><EFBFBD><EFBFBD>̾<EFBFBD>ϴ<EFBFBD><CFB4><EFBFBD>¸<EFBFBD>ߤ<EFBFBD><DFA4>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
that loginid has already been taken admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID<49>ϴ<EFBFBD><CFB4><EFBFBD><EFBFBD><EFBFBD>Ͽ<EFBFBD>ѤߤǤ<DFA4><C7A4><EFBFBD>
that phrase already exists common ja <09>ե졼<D5A5><ECA1BC><EFBFBD>ϴ<EFBFBD><CFB4><EFBFBD>¸<EFBFBD>ߤ<EFBFBD><DFA4>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
that site has already been entered admin ja <09><><EFBFBD><EFBFBD><EFBFBD>Ȥϴ<C8A4><CFB4><EFBFBD>¸<EFBFBD>ߤ<EFBFBD><DFA4>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
the following conflicts with the suggested time:<ul>x</ul> calendar ja The following conflicts with the suggested time:<ul>%1</ul>
the login and password can not be the same admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID<49>ȥѥ<C8A5><D1A5><EFBFBD>ɤ<EFBFBD>Ʊ<EFBFBD><C6B1><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD>
the two passwords are not the same common ja <09><><EFBFBD>ĤΥѥ<CEA5><D1A5><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
theme (colors/fonts) selection preferences ja <09>ơ<EFBFBD><C6A1>ޡʿ<DEA1><CABF><EFBFBD><EFBFBD>ե<EFBFBD><D5A5><EFBFBD><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD><EFBFBD>
themes common ja Themes
there was an error trying to connect to your mail server. common ja <09><EFBFBD><EFBFBD><EBA5B5><EFBFBD>Ф<EFBFBD><D0A4><EFBFBD>³<EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD>
there was an error trying to connect to your mail server.<br>please, check your username and password, or contact your admin. common ja <09><EFBFBD><EFBFBD><EBA5B5><EFBFBD>Ф<EFBFBD><D0A4><EFBFBD>³<EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD><BR><3E>Żҥ᡼<D2A5><E1A1BC><EFBFBD>Υ<CEA5><E6A1BC>̾<EFBFBD>ȥѥ<C8A5><D1A5><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD>ǧ<EFBFBD><C7A7><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
there was an error trying to connect to your news server.<br>please contact your admin to check the news servername, username or password. nntp ja <09>˥塼<CBA5><E5A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ф<EFBFBD><D0A4><EFBFBD>³<EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD><EFBFBD><EFBFBD><BR><3E><><EFBFBD><EFBFBD><EFBFBD>Ԥ˥˥塼<CBA5><E5A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><E6A1BC>̾<EFBFBD><CCBE><EFBFBD>ѥ<EFBFBD><D1A5><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD>ǧ<EFBFBD><C7A7><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
they must be removed before you can continue admin ja <09><><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
this contains personal information about yourself such as your name, your email address, etc. squirrelmail ja <09>Żҥ᡼<D2A5><EFBFBD>ɥ쥹<C9A5><ECA5B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD>ʤɤθĿ;<C4BF><CDBE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
this folder is empty common ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
this month calendar ja <09><><EFBFBD><EFBFBD>
this person's first name was not in the address book. addressbook ja <09><><EFBFBD>ɥ쥹Ģ<ECA5B9><C4A2>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
this server is located in the x timezone preferences ja <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E0A5BE><EFBFBD><EFBFBD>
this week calendar ja <09><><EFBFBD><EFBFBD>
this year calendar ja <09><>ǯ
threads nntp ja <09><><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD>
thu calendar ja <09><>
thursday common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
time common ja <09><><EFBFBD><EFBFBD>
time created notes ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
time format preferences ja <09><><EFBFBD>ֽ<EFBFBD><D6BD><EFBFBD>
time zone common ja <09><><EFBFBD><EFBFBD>
time zone offset common ja <09><><EFBFBD><EFBFBD>
times new roman notes ja Times New Roman
title common ja <09><><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD>
to email ja <09><><EFBFBD><EFBFBD>
to squirrelmail ja <09><><EFBFBD><EFBFBD>
to: squirrelmail ja <09><><EFBFBD>
to correct this error for the future you will need to properly set the common ja To correct this error for the future you will need to properly set the
today calendar ja <09><><EFBFBD><EFBFBD>
today is x's birthday! common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD>
todo common ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
todo categories preferences ja <09><><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
todo list common ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥꥹ<C8A5><EAA5B9>
todo list todo ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥꥹ<C8A5><EAA5B9>
todo list - add todo ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥꥹ<C8A5><EAA5B9> - <20>ɲ<EFBFBD>
todo list - add sub-project todo ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥꥹ<C8A5><EAA5B9> - <20><><EFBFBD>֥ץ<D6A5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɲ<EFBFBD>
todo list - edit todo ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥꥹ<C8A5><EAA5B9> - <20>Խ<EFBFBD>
todo preferences common ja <09>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȴĶ<C8B4><C4B6><EFBFBD><EFBFBD><EFBFBD>
tommorow is x's birthday. common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD>
tomorrow is x's birthday. common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4><EFBFBD>
total common ja <09><><EFBFBD><EFBFBD>
total records admin ja <09><><EFBFBD><EFBFBD>
translation transy ja <09><><EFBFBD><EFBFBD><EFBFBD>Ķ<EFBFBD>
translation management common ja <09><><EFBFBD><EFBFBD><EFBFBD>Ķ<EFBFBD>
trouble ticket system common ja <09><><EFBFBD><EFBFBD><EFBFBD>åȥ<C3A5><C8A5><EFBFBD><EFBFBD>ƥ<EFBFBD>
tu calendar ja <09><>
tue calendar ja <09><>
tuesday common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
undisclosed recipients email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̤<EFBFBD><CCA4><EFBFBD><EFBFBD>
undisclosed sender email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̤<EFBFBD><CCA4><EFBFBD><EFBFBD>
unsubscribe squirrelmail ja <09><>ɽ<EFBFBD><C9BD>
unsubscribed successfully! squirrelmail ja <09><>ɽ<EFBFBD><C9BD><EFBFBD>ˤ<EFBFBD><CBA4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
unselect all squirrelmail ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
up squirrelmail ja <09><>
update admin ja <09><><EFBFBD><EFBFBD>
update nntp ja <09><><EFBFBD><EFBFBD>
update address squirrelmail ja <09><><EFBFBD>ɥ쥹<C9A5><ECA5B9><EFBFBD><EFBFBD>
updated common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
upload filemanager ja <09><><EFBFBD>åץ<C3A5><D7A5><EFBFBD><EFBFBD><EFBFBD>
urgency todo ja ͥ<><CDA5><EFBFBD><EFBFBD>
url addressbook ja URL
use a signature? squirrelmail ja <09><>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
use cookies login ja Cookie <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
use custom settings email ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
use end date calendar ja <09><>λ<EFBFBD><CEBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
user calendar ja <09><EFBFBD><E6A1BC>
user accounts admin ja <09><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
user groups admin ja <09><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EBA1BC>
username login ja <09><EFBFBD><E6A1BC>̾
users common ja <09><EFBFBD><E6A1BC>
usersfile_perm_error filemanager ja To correct this error you will need to properly set the permissions to the files/users directory.<BR> On *nix systems please type: chmod 707
vcard common ja VCard
vcards require a first name entry. addressbook ja VCard <20>ˤϡ<CBA4>̾<EFBFBD><CCBE><EFBFBD><EFBFBD>ɬ<EFBFBD>פǤ<D7A4><C7A4><EFBFBD>
verdana notes ja Verdana
very large notes ja <09><><EFBFBD><EFBFBD>
very small notes ja <09>˾<EFBFBD>
video phone addressbook ja <09>ӥǥ<D3A5><C7A5><EFBFBD><EFBFBD><EFBFBD>
view bookkeeping ja ɽ<><C9BD>
view common ja ɽ<><C9BD>
view access log admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
view all tickets tts ja <09><><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD>ɽ<EFBFBD><C9BD>
view full header squirrelmail ja <09>إå<D8A5>ɽ<EFBFBD><C9BD>
view matrix of actual month todo ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
view notes notes ja <09>Ρ<EFBFBD><CEA1><EFBFBD>ɽ<EFBFBD><C9BD>
view only open tickets tts ja <09><><EFBFBD><EFBFBD><EFBFBD>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>å<EFBFBD>ɽ<EFBFBD><C9BD>
view sessions admin ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD>󻲾<EFBFBD>
view this entry calendar ja <09><><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
view user account admin ja <09><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
view/edit/delete all phrases transy ja ɽ<><C9BD>/<2F><><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƤΥե졼<D5A5><ECA1BC>
view_expense bookkeeping ja <09>ٽ<EFBFBD>ɽ<EFBFBD><C9BD>
view_income bookkeeping ja <09><><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
viewing full header squirrelmail ja <09>إå<D8A5>ɽ<EFBFBD><C9BD>
viewing message squirrelmail ja ɽ<><C9BD><EFBFBD><EFBFBD>
view messages squirrelmail ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
viewing messages squirrelmail ja ɽ<><C9BD><EFBFBD><EFBFBD>
viewsub todo ja <09><><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD>
voice phone addressbook ja <09><><EFBFBD><EFBFBD>
we calendar ja <09><>
weather common ja <09><>ŷ<EFBFBD><C5B7>
weather preferences ja <09><>ŷ<EFBFBD><C5B7><EFBFBD><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
weather weather ja <09><>ŷ<EFBFBD><C5B7>
weather center admin ja <09><>ŷ<EFBFBD><C5B7><EFBFBD><EFBFBD><EFBFBD>󥿡<EFBFBD>
weather center preferences ja <09><>ŷ<EFBFBD><C5B7><EFBFBD><EFBFBD><EFBFBD>󥿡<EFBFBD>
wed calendar ja <09><>
wednesday common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
week calendar ja <09><>
weekday starts on calendar ja <09><><EFBFBD>ν<EFBFBD><CEBD><EFBFBD>
weekly calendar ja <09><>ñ<EFBFBD><C3B1>
when creating new events default set to private calendar ja <09>ץ饤<D7A5>١<EFBFBD><D9A1><EFBFBD><EFBFBD>ѤȤ<D1A4><C8A4><EFBFBD><EFBFBD>ʿ<EFBFBD><CABF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
which groups common ja <09><><EFBFBD><EFBFBD><EBA1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
which groups todo ja <09><><EFBFBD><EFBFBD><EBA1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
who would you like to transfer all records owned by the deleted user to? admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6A1BC><EFBFBD>ε<EFBFBD>Ͽ<EFBFBD><CFBF>ž<EFBFBD><C5BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6A1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򤷤Ƥ<F2A4B7A4><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
work day ends on calendar ja <09><><EFBFBD>Ȼ<EFBFBD><C8BB>֡ʽ<D6A1>λ<EFBFBD><CEBB>
work day starts on calendar ja <09><><EFBFBD>Ȼ<EFBFBD><C8BB>֡ʳ<D6A1><CAB3>ϡ<EFBFBD>
work phone addressbook ja <09><>̳<EFBFBD><CCB3>TEL
x matches found calendar ja %1 <20><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
x messages have been deleted email ja %1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
year calendar ja ǯ
year todo ja ǯ
yearly calendar ja ǯñ<C7AF><C3B1>
yes common ja <09>Ϥ<EFBFBD>
yes filemanager ja <09>Ϥ<EFBFBD>
you are required to change your password during your first login common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˥ѥ<CBA5><D1A5><EFBFBD><EFA1BC><EFBFBD>ѹ<EFBFBD>
you are required to change your password durring your first login common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˥ѥ<CBA5><D1A5><EFBFBD><EFA1BC><EFBFBD>ѹ<EFBFBD>
you have 1 high priority event on your calendar today. common ja ͥ<><CDA5><EFBFBD>٤ι⤤ͽ<E2A4A4><EFBFBD><EAA4AC><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
you have 1 new message! common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EBA4AC><EFBFBD>̤<EFBFBD><CCA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
you have been successfully logged out login ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
you have entered an invailed date todo ja <09><><EFBFBD>դ<EFBFBD><D5A4><EFBFBD><EFBFBD>äƤ<C3A4><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
you have messages! common ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
you have no new messages common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1A1BC><EFBFBD>Ϥ<EFBFBD><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
you have not entered a\nbrief description calendar ja <09><><EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you have not entered a brief description calendar ja <09><><EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you have not entered a\nvalid time of day. calendar ja <09><><EFBFBD><EFBFBD><EFA4AC><EFBFBD>äƤ<C3A4><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>
you have x high priority events on your calendar today. common ja ͥ<><CDA5><EFBFBD>٤ι⤤ͽ<E2A4A4>꤬ %1 <20>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
you have x new messages! common ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>뤬 %1 <20>̤<EFBFBD><CCA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
you must add at least 1 permission or group to this account admin ja <09><><EFBFBD>ʤ<EFBFBD><CAA4>Ȥ⣱<C8A4>Ĥθ<C4A4><CEB8>¤<EFBFBD><C2A4><EFBFBD><EFBFBD><EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must add at least 1 permission to this account admin ja <09><><EFBFBD>Ѳ<EFBFBD>ǽ<EFBFBD><C7BD><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must enter a base url admin ja base URL <20><><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must enter a description todo ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must enter a display admin ja ɽ<><C9BD><EFBFBD><EFBFBD><EFBFBD>ܤ<EFBFBD><DCA4><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must enter a group name. admin ja <09><><EFBFBD><EFBFBD><EBA1BC>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must enter a news url admin ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> URL <20><><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must enter a password common ja <09>ѥ<EFBFBD><D1A5><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
You must enter an application name. admin ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must enter an application name and title. admin ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
You must enter an application title. admin ja <09><><EFBFBD>ץꥱ<D7A5><EAA5B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󥿥<EFBFBD><F3A5BFA5>ȥ<EFBFBD><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must enter one or more search keywords calendar ja <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɤ<EFBFBD><C9A4><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must enter the number of listings display admin ja ɽ<><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must enter the number of minutes between reload admin ja <09><><EFBFBD><EFBFBD><EFBFBD>ֳ֤<D6B3><D6A4><EFBFBD><EFBFBD>Ϥ<EFBFBD><CFA4>Ʋ<EFBFBD><C6B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must select a file type admin ja <09>ե<EFBFBD><D5A5><EFBFBD><EFBFBD>륿<EFBFBD><EBA5BF><EFBFBD>פ<EFBFBD><D7A4><EFBFBD><EFBFBD>򤷤Ƥ<F2A4B7A4><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you must select at least 1 column to display addressbook ja ɽ<><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܤ<EFBFBD><DCA4><EFBFBD><EFBFBD>򤷤Ƥ<F2A4B7A4><C6A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
your current theme is: x preferences ja </b>
your message has been sent common ja <09><><EFBFBD>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
your search has returned no matchs ! common ja <09><><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
your search returned 1 match common ja <09><><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
your search returned x matchs common ja %1 <20><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>
your session could not be verified. login ja Your session could not be verified.
your settings have been updated common ja Your settings have been Updated
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar ja <B> %1 - %2 </B> <20>ˤϡ<CBA4><CFA1>̤<EFBFBD>ͽ<EFBFBD><EFBFBD><EAA4AC><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>
zip code addressbook ja ͹<><CDB9><EFBFBD>ֹ<EFBFBD>
zone admin ja <09>ϰ<EFBFBD>
zone weather ja <09>ϰ<EFBFBD>

View File

@ -1,365 +0,0 @@
* make sure that you remove users from this group before you delete it. admin ko * <20><> <20>׷쿡<D7B7><ECBFA1> <20><><EFBFBD><EFBFBD><EFBFBD>ڸ<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻðڽ<C3B0><DABD>ϱ<EFBFBD>?
1 match found calendar ko 1<><31><EFBFBD>׸<EFBFBD> ã<><C3A3>
1 message has been deleted email ko 1<><31><EFBFBD><EFBFBD> <20>޼<EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
a calendar ko
access common ko <09>׼<EFBFBD><D7BC><EFBFBD>
access type common ko <09>׼<EFBFBD><D7BC><EFBFBD>Ÿ<EFBFBD><C5B8>
access type todo ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
account active admin ko <09><><EFBFBD><EFBFBD> Ȱ<><C8B0>ȭ
account has been created common ko <09><><EFBFBD>̵<EFBFBD><CCB5><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
account has been deleted common ko <09><><EFBFBD>̵<EFBFBD><CCB5><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
account has been updated common ko <09><><EFBFBD>̵<EFBFBD><CCB5><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
active admin ko Ȱ<><C8B0>ȭ
add common ko <09>߰<EFBFBD>
add to addressbook email ko <09>ּҷϿ<D2B7> <20>߰<EFBFBD>
address book addressbook ko <09>ּҷ<D6BC>
address book common ko <09>ּҷ<D6BC>
addressbook common ko <09>ּҷ<D6BC>
admin common ko <09><><EFBFBD><EFBFBD>
administration common ko <09><><EFBFBD><EFBFBD>
all records and account information will be lost! admin ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ڷ<EFBFBD><DAB7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>˴ϴ<CBB4>.
anonymous user admin ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
april common ko 4<><34>
are you sure you want to delete this account ? admin ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻðڽ<C3B0><DABD>ϱ<EFBFBD> ?
are you sure you want to delete this entry todo ko <09><> <20>׸<EFBFBD><D7B8><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20>Ͻðڽ<C3B0><DABD>ϱ<EFBFBD>?
are you sure you want to delete this entry ? common ko <09><><EFBFBD><EFBFBD> <20>׸<EFBFBD><D7B8><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻðڽ<C3B0><DABD>ϱ<EFBFBD>?
are you sure you want to delete this group ? admin ko <09><> <20>׷<EFBFBD><D7B7><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻðڽ<C3B0><DABD>ϱ<EFBFBD> ?
are you sure you want to delete this news site ? admin ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻðڽ<C3B0><DABD>ϱ<EFBFBD>?
are you sure you want to kill this session ? admin ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ű<EFBFBD>ðڽ<C3B0><DABD>ϱ<EFBFBD> ?
are you sure\nyou want to\ndelete this entry ? calendar ko <09><> <20>׸<EFBFBD><D7B8><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20>Ͻðڽ<C3B0><DABD>ϱ<EFBFBD> ?
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar ko <09><> <20>׸<EFBFBD><D7B8><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻðڽ<C3B0><DABD>ϱ<EFBFBD>?
august common ko 8<><38>
author nntp ko <09>ۼ<EFBFBD><DBBC><EFBFBD>
available groups nntp ko <09><><EFBFBD><EFBFBD><EBB0A1><EFBFBD><EFBFBD> <20>׷<EFBFBD>
bad login or password login ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID<49><44> <20>н<EFBFBD><D0BD><EFBFBD><EFBFBD>尡 Ʋ<><C6B2><EFBFBD>ϴ<EFBFBD>.
base url admin ko <09>⺻ URL
birthday addressbook ko <09><><EFBFBD><EFBFBD>
book marks common ko <09>ϸ<EFBFBD>ũ
bookmarks common ko <09>ϸ<EFBFBD>ũ
brief description calendar ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
calendar common ko <09><><EFBFBD><EFBFBD>
calendar - add calendar ko <09>޷<EFBFBD> - <20>߰<EFBFBD>
calendar - edit calendar ko <09>޷<EFBFBD> - <20><><EFBFBD><EFBFBD>
cancel filemanager ko <09><><EFBFBD><EFBFBD>
cancel common ko <09><><EFBFBD><EFBFBD>
cc email ko <09><><EFBFBD><EFBFBD>
change common ko <09><><EFBFBD><EFBFBD>
change your password preferences ko <09><>ȣ <20><><EFBFBD><EFBFBD>
change your settings preferences ko <09><><EFBFBD><EFBFBD> <20>ٲٱ<D9B2>
charset common ko euc-kr
chat common ko <09><>ȭ
city addressbook ko <09><><EFBFBD><EFBFBD>
clear common ko <09>ʱ<EFBFBD>ȭ
clear form common ko <09>ʱ<EFBFBD>ȭ
clear form todo ko <09><><EFBFBD><EFBFBD> <20>ۼ<EFBFBD>
clipboard_contents filemanager ko Ŭ<><C5AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
completed todo ko <09>Ϸ<EFBFBD>
compose email ko <09>ۼ<EFBFBD>
copy filemanager ko <09><><EFBFBD><EFBFBD>
copy common ko <09><><EFBFBD><EFBFBD>
copy_as filemanager ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
create filemanager ko <09><><EFBFBD><EFBFBD>
create common ko <09>ۼ<EFBFBD>
create group admin ko <09><> <20>׷<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
created by common ko <09>ۼ<EFBFBD><DBBC><EFBFBD>
created by todo ko <09>ۼ<EFBFBD><DBBC><EFBFBD>
current users common ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
current_file filemanager ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
daily calendar ko <09><><EFBFBD><EFBFBD>
date nntp ko <09><>¥
date email ko <09><>¥
date common ko <09><>¥
date due todo ko <09>
date format preferences ko <09><>¥ <20><><EFBFBD><EFBFBD>
days repeated calendar ko <09><><EFBFBD><EFBFBD> <20>ݺ<EFBFBD><DDBA>Ǿ<EFBFBD><C7BE><EFBFBD>
december common ko 12<31><32>
delete filemanager ko <09><><EFBFBD><EFBFBD>
delete email ko <09><><EFBFBD><EFBFBD>
delete common ko <09><><EFBFBD><EFBFBD>
description calendar ko <09><><EFBFBD><EFBFBD>
disabled admin ko <09><>Ȱ<EFBFBD><C8B0>ȭ
display admin ko Display
done common ko <09>Ϸ<EFBFBD>
download filemanager ko <09>ٿ<EFBFBD><D9BF>ε<EFBFBD>
do_delete filemanager ko <09><><EFBFBD><EFBFBD>
duration calendar ko <09>
e-mail addressbook ko E-Mail
e-mail common ko E-Mail
edit filemanager ko <09><><EFBFBD><EFBFBD>
edit common ko <09><><EFBFBD><EFBFBD>
email common ko E-Mail
email signature preferences ko E-Mail <20><><EFBFBD><EFBFBD>
enter your new password preferences ko <09><><EFBFBD>ο<EFBFBD> <20><>ȣ
entry has been deleted sucessfully common ko <09><><EFBFBD><EFBFBD><EFBFBD>Ͱ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
entry updated sucessfully common ko <09><><EFBFBD><EFBFBD><EFBFBD>Ͱ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
error common ko <09><><EFBFBD><EFBFBD>
error creating x x directory common ko %1%2 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E4B8AE> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>..
error deleting x x directory common ko %1%2 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E4B8AE> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>.
error renaming x x directory common ko %1%2 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E4B8AE> <20≯<EFBFBD><CCB8><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>.
err_saving_file filemanager ko <09><><EFBFBD><EFBFBD>ũ<EFBFBD><C5A9> <20><><EFBFBD><EFBFBD><EFBFBD>ϴµ<CFB4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>߻<EFBFBD><DFBB>Ͽ<EFBFBD><CFBF><EFBFBD><EFBFBD>ϴ<EFBFBD>.
exit filemanager ko <09><><EFBFBD><EFBFBD>
exit common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
fax addressbook ko <09>ѽ<EFBFBD>
february common ko 2<><32>
file manager common ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
files filemanager ko <09><><EFBFBD>ϵ<EFBFBD>
files email ko Files
file_upload filemanager ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD>ε<EFBFBD>
filter common ko <09><><EFBFBD><EFBFBD>
first name addressbook ko <09><>
first name common ko <09≯<EFBFBD>
first page common ko ù <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
folder email ko <09><><EFBFBD><EFBFBD>
forward email ko <09><><EFBFBD><EFBFBD>
frequency calendar ko <09><><EFBFBD><EFBFBD>
fri calendar ko <09>ݿ<EFBFBD><DDBF><EFBFBD>
friday common ko <09>ݿ<EFBFBD><DDBF><EFBFBD>
from email ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
ftp common ko FTP
full description calendar ko <09>ڼ<EFBFBD><DABC><EFBFBD> <20><><EFBFBD><EFBFBD>
generate printer-friendly version calendar ko <09><><EFBFBD><EFBFBD>Ʈ<EFBFBD>ϱ<EFBFBD>
global public common ko <09><><EFBFBD>ο<EFBFBD><CEBF><EFBFBD> <20><><EFBFBD><EFBFBD>
go! calendar ko <09><><EFBFBD><EFBFBD>!
group access common ko <09>׷<EFBFBD> <20>׼<EFBFBD><D7BC><EFBFBD>
group has been added common ko <09>׷<EFBFBD><D7B7><EFBFBD> <20>߰<EFBFBD><DFB0>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
group has been deleted common ko <09>׷<EFBFBD><D7B7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
group has been updated common ko <09>׷<EFBFBD><D7B7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
group name admin ko <09>׷<EFBFBD><D7B7≯<EFBFBD>
group public common ko <09>׷쳻 <20><><EFBFBD><EFBFBD>
groups common ko <09>׷<EFBFBD>
groupsfile_perm_error filemanager ko To correct this error you will need to properly set the permissions to the files/groups directory.<BR> On *nix systems please type: chmod 770
group_files filemanager ko <09>׷<EFBFBD> <20><><EFBFBD>ϵ<EFBFBD>
headline sites admin ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ
headlines common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
help common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
high common ko <09><><EFBFBD><EFBFBD>
home common ko Ȩ<><C8A8><EFBFBD><EFBFBD>
home phone addressbook ko <09><><EFBFBD><EFBFBD>ȭ
idle admin ko idle
image email ko <09>̹<EFBFBD><CCB9><EFBFBD>
ip admin ko IP
it has been more then x days since you changed your password common ko <09><>ȣ<EFBFBD><C8A3> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %1 <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>߽<EFBFBD><DFBD>ϴ<EFBFBD>.
january common ko 1<><31>
july common ko 7<><37>
june common ko 6<><36>
kill admin ko <09><><EFBFBD><EFBFBD>
language preferences ko <09><><EFBFBD><EFBFBD>
last name addressbook ko <09≯<EFBFBD>
last name common ko <09><>
last page common ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
last time read admin ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20>ð<EFBFBD>
last updated todo ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʈ
last x logins admin ko Last %1 logins
list of current users admin ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
listings displayed admin ko Listings Displayed
login common ko <09>α<EFBFBD><CEB1><EFBFBD>
login login ko <09>α<EFBFBD><CEB1><EFBFBD>
login time admin ko <09><><EFBFBD><EFBFBD> <20>ð<EFBFBD>
loginid admin ko <09><><EFBFBD><EFBFBD>ID
logout common ko <09>α׾ƿ<D7BE>
low common ko <09><><EFBFBD><EFBFBD>
manager admin ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
march common ko 3<><33>
max matchs per page preferences ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ִ<EFBFBD> <20>˻<EFBFBD> <20><><EFBFBD><EFBFBD> <20>׸<EFBFBD> <20><>
may common ko 5<><35>
medium common ko <09>߰<EFBFBD>
message email ko <09>޼<EFBFBD><DEBC><EFBFBD>
message x nntp ko <09>޼<EFBFBD><DEBC><EFBFBD> %1
messages email ko <09>޼<EFBFBD><DEBC><EFBFBD>
minutes calendar ko <09><>
minutes between reloads admin ko <09><><EFBFBD>ε<EFBFBD> <20>ð<EFBFBD>(<28>д<EFBFBD><D0B4><EFBFBD>)
mobile addressbook ko <09>ڵ<EFBFBD><DAB5><EFBFBD>
mon calendar ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
monday common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
monitor nntp ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
monitor email ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
month calendar ko <09><>
monthly (by date) calendar ko <09>ſ<EFBFBD> (by date)
monthly (by day) calendar ko <09>ſ<EFBFBD> (by day)
move selected messages into email ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>޼<EFBFBD><DEBC><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ű<EFBFBD><C5B1><EFBFBD>
n email ko <09>
name common ko <09≯<EFBFBD>
network news admin ko <09><>Ʈ<EFBFBD><C6AE>ũ <20><><EFBFBD><EFBFBD>
new entry calendar ko <09><><EFBFBD>ο<EFBFBD> <20>׸<EFBFBD>
new entry added sucessfully common ko <09><><EFBFBD>ο<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ͱ<EFBFBD> <20>߰<EFBFBD><DFB0>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
new group name admin ko <09><> <20>׷<EFBFBD> <20≯<EFBFBD>
new message email ko <09><> <20>޼<EFBFBD><DEBC><EFBFBD>
new password [ leave blank for no change ] admin ko <09><> <20>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD>[ <20>ٲ<EFBFBD><D9B2><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ĭ<EFBFBD><C4AD><EFBFBD><EFBFBD> <20><><EFBFBD>ܵμ<DCB5><CEBC><EFBFBD> ]
news file admin ko <09><><EFBFBD>ο<EFBFBD> <20><><EFBFBD><EFBFBD>
news headlines common ko <09><> ǥ<><C7A5><EFBFBD><EFBFBD>
news reader common ko <09><><EFBFBD><EFBFBD> <20>б<EFBFBD>
news type admin ko <09><><EFBFBD><EFBFBD> Ÿ<><C5B8>
newsgroups nntp ko <09><><EFBFBD><EFBFBD><EFBFBD>׷<EFBFBD>
new_file filemanager ko <09><> <20><><EFBFBD><EFBFBD>
next nntp ko <09><><EFBFBD><EFBFBD>
next email ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
next page common ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
nntp common ko NNTP
no filemanager ko <09>ƴϿ<C6B4>
no common ko <09>ƴϿ<C6B4>
no matches found. calendar ko <09>˻<EFBFBD><CBBB><EFBFBD><EFBFBD>ǿ<EFBFBD> <20>´<EFBFBD> <20>׸<EFBFBD><D7B8><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>.
no subject email ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
none common ko <09><><EFBFBD><EFBFBD>
normal common ko <09><><EFBFBD><EFBFBD>
note: this feature does *not* change your email password. this will need to be done manually. preferences ko <09><><EFBFBD><EFBFBD>: e-mail<69><6C> <20><>ȣ<EFBFBD><C8A3> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʽ<EFBFBD><CABD>ϴ<EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ͻʽÿ<CABD>.
notes addressbook ko <09><>Ÿ
november common ko 11<31><31>
no_file_name filemanager ko <09><><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD><CCB8><EFBFBD> <20>Էµ<D4B7><C2B5><EFBFBD> <20>ʾҽ<CABE><D2BD>ϴ<EFBFBD>.
october common ko 10<31><30>
ok common ko Ȯ<><C8AE>
on *nix systems please type: x common ko On *nix systems please type: %1
only yours common ko <09>ڽ<EFBFBD><DABD><EFBFBD> <20>͸<EFBFBD>
other number addressbook ko <09><>Ÿ<EFBFBD><C5B8>ȣ
pager addressbook ko <09>߻<EFBFBD>
participants calendar ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
password login ko <09><><EFBFBD>й<EFBFBD>ȣ
password common ko <09><>ȣ
password has been updated common ko <09><>ȣ<EFBFBD><C8A3> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
percent of users that logged out admin ko <09>ۼ<EFBFBD>Ʈ<EFBFBD><C6AE> <20><><EFBFBD><EFBFBD><EFBFBD>ڰ<EFBFBD> <20>α׾ƿ<D7BE> <20>Ͽ<EFBFBD><CFBF><EFBFBD><EFBFBD>ϴ<EFBFBD>.
permissions to the files/users directory common ko permissions to the files/users directory
please select a message first email ko <09>޼<EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>.
please x by hand common ko %1<><31> <20><><EFBFBD><EFBFBD> <20>Ͻÿ<CFBD>.
please, select a new theme preferences ko <09><><EFBFBD>ο<EFBFBD> <20>׸<EFBFBD><D7B8><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>.
powered by phpgroupware version common ko Powered by <a href=http://www.phpgroupware.org>phpGroupWare</a> version
preferences common ko ȯ<><EFBFBD><E6BCB3>
previous email ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
previous page common ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
printer friendly calendar ko <09><><EFBFBD><EFBFBD>Ʈ<EFBFBD>ϱ<EFBFBD>
priority common ko <09>߿䵵
private common ko <09><><EFBFBD><EFBFBD>
private_files filemanager ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD>ϵ<EFBFBD>
r calendar ko <09>
re-enter password admin ko <09><><EFBFBD>й<EFBFBD>ȣ <20><><EFBFBD>Է<EFBFBD>
re-enter your password preferences ko <09><><EFBFBD>ο<EFBFBD> <20><>ȣ Ȯ<><C8AE>
rename filemanager ko <09≯<EFBFBD><CCB8>ٲٱ<D9B2>
rename common ko <09≯<EFBFBD><CCB8><EFBFBD><EFBFBD><EFBFBD>
rename_to filemanager ko <09≯<EFBFBD> <20>ٲٱ<D9B2>
repeat day calendar ko <09>ݺ<EFBFBD> <20><><EFBFBD><EFBFBD>
repeat end date calendar ko <09>ݺ<EFBFBD> <20><><EFBFBD>ᳯ¥
repeat type calendar ko <09>ݺ<EFBFBD><DDBA><EFBFBD><EFBFBD><EFBFBD>
repetition calendar ko <09>ݺ<EFBFBD>
reply email ko <09><><EFBFBD><EFBFBD>
reply all email ko <09><><EFBFBD>ο<EFBFBD><CEBF><EFBFBD> <20><><EFBFBD><EFBFBD>
sat calendar ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
saturday common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
save filemanager ko <09><><EFBFBD><EFBFBD>
save common ko <09><><EFBFBD><EFBFBD>
search common ko <09>˻<EFBFBD>
search results calendar ko <09>˻<EFBFBD><CBBB><EFBFBD><EFBFBD><EFBFBD>
section email ko <09><><EFBFBD><EFBFBD>
select different theme preferences ko <09>׸<EFBFBD> <20>ٲٱ<D9B2>
select headline news sites preferences ko ǥ<><C7A5><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ <20><><EFBFBD><EFBFBD>
select users for inclusion admin ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ڸ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϼ<EFBFBD><CFBC><EFBFBD>.
send email ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
september common ko 9<><39>
session has been killed common ko <09>۾<EFBFBD><DBBE><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
show all common ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
show all groups nntp ko <09><><EFBFBD><EFBFBD> <20>׷<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ֱ<EFBFBD>
show birthday reminders on main screen preferences ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20>˷<EFBFBD><CBB7>ֱ<EFBFBD>.
show current users on navigation bar preferences ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ڸ<EFBFBD> navigation bar<61><72> ǥ<><C7A5><EFBFBD>մϴ<D5B4>.
show groups containing nntp ko <09>׷쳻<D7B7><ECB3BB> <20><><EFBFBD><EFBFBD><EFBFBD>ֱ<EFBFBD>
show high priority events on main screen preferences ko <09>߿䵵<DFBF><E4B5B5> <20><><EFBFBD><EFBFBD> <20>۾<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ֱ<EFBFBD>
show new messages on main screen preferences ko <09><><EFBFBD>ο<EFBFBD> <20>޽<EFBFBD><DEBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ȭ<EFBFBD><20><><EFBFBD><EFBFBD><EFBFBD>ݴϴ<DDB4>.
show text on navigation icons preferences ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
showing x common ko <09><><EFBFBD><EFBFBD> %1
showing x - x of x common ko <09><>ü %3<><33><EFBFBD><EFBFBD> %1 - %2
site admin ko Site
size email ko ũ<><C5A9>
sorry, there was a problem processing your request. common ko ó<><C3B3><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>߻<EFBFBD><DFBB>߽<EFBFBD><DFBD>ϴ<EFBFBD>.
sorry, your login has expired login ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID<49><44> <20><> <20>̻<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϽǼ<CFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>.
specify_file_name filemanager ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD≯<EFBFBD><CCB8><EFBFBD> <20>Է<EFBFBD><D4B7>ؾ<EFBFBD> <20>մϴ<D5B4>.
state addressbook ko <09><><EFBFBD><EFBFBD>
status todo ko <09><><EFBFBD><EFBFBD>
street addressbook ko <09>ּ<EFBFBD>
subject nntp ko <09><><EFBFBD><EFBFBD>
subject email ko <09><><EFBFBD><EFBFBD>
submit common ko <09><><EFBFBD><EFBFBD>
sun calendar ko <09>Ͽ<EFBFBD><CFBF><EFBFBD>
sunday common ko <09>Ͽ<EFBFBD><CFBF><EFBFBD>
switch current folder to email ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20>ٲٱ<D9B2>
that loginid has already been taken admin ko <09><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>̹<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
that site has already been entered admin ko <09><> <20><><EFBFBD><EFBFBD>Ʈ<EFBFBD><C6AE> <20>̹<EFBFBD> <20>ԷµǾ<C2B5> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.
the following conflicts with the suggested time:<ul>x</ul> calendar ko <09><><EFBFBD><EFBFBD> <20>׸<EFBFBD><D7B8><EFBFBD> <20><><EFBFBD>ȵ<EFBFBD> <20>ð<EFBFBD><C3B0><EFBFBD> <20><EFBFBD>մϴ<D5B4>. :<ul>%1</ul>
the login and password can not be the same admin ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20>ʾƾ<CABE> <20>մϴ<D5B4>.
the two passwords are not the same preferences ko <09><>ȣ<EFBFBD><C8A3> <20>߸<EFBFBD> <20>ԷµǾ<C2B5><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
the two passwords are not the same admin ko <09><><EFBFBD>й<EFBFBD>ȣ<EFBFBD><C8A3> <20><><EFBFBD><EFBFBD> <20>ʽ<EFBFBD><CABD>ϴ<EFBFBD>.
this folder is empty email ko <09><><EFBFBD><EFBFBD><EFBFBD>ִ<EFBFBD> <20><><EFBFBD><EFBFBD>
this month calendar ko <09>̹<EFBFBD><CCB9><EFBFBD>
this server is located in the x timezone preferences ko <20><> <20>ð<EFBFBD><C3B0><20><><EFBFBD><EFBFBD><EFBFBD>ϰ<EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.
this week calendar ko <09>̹<EFBFBD><CCB9><EFBFBD>
threads nntp ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
thu calendar ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
thursday common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
time common ko <09>ð<EFBFBD>
time format preferences ko <09>ð<EFBFBD> <20><><EFBFBD><EFBFBD>
time zone offset preferences ko <09>ð<EFBFBD><C3B0><EFBFBD> <20><><EFBFBD><EFBFBD>
to email ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
to correct this error for the future you will need to properly set the common ko To correct this error for the future you will need to properly set the
today calendar ko <09><><EFBFBD><EFBFBD>
today is x's birthday! common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %1<><31> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>!
todo todo ko <09><><EFBFBD><EFBFBD>
todo list common ko <09><><EFBFBD><EFBFBD>
todo list todo ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
todo list - add todo ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> - <20>߰<EFBFBD>
tomorrow is x's birthday. common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %1<><31> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
total common ko <09>հ<EFBFBD>
total records admin ko Total records
trouble ticket system common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʈ<EFBFBD>ý<EFBFBD><C3BD><EFBFBD>
tue calendar ko ȭ<><C8AD><EFBFBD><EFBFBD>
tuesday common ko ȭ<><C8AD><EFBFBD><EFBFBD>
undisclosed recipients email ko Undisclosed Recipients
update nntp ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʈ
updated common ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
upload filemanager ko <09><><EFBFBD>ε<EFBFBD>
urgency todo ko <09>߿䵵
use cookies login ko <09><>Ű<EFBFBD><C5B0><EFBFBD><EFBFBD>
use end date calendar ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>¥ <20><><EFBFBD><EFBFBD>
user accounts admin ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
user groups admin ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>׷<EFBFBD>
username login ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID
users common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
usersfile_perm_error filemanager ko To correct this error you will need to properly set the permissions to the files/users directory.<BR> On *nix systems please type: chmod 770
view common ko <09><><EFBFBD><EFBFBD>
view access log admin ko <09><><EFBFBD><EFBFBD> <20>α<EFBFBD> <20><><EFBFBD><EFBFBD>
view sessions admin ko <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
view this entry calendar ko <09>׸<EFBFBD> <20><><EFBFBD><EFBFBD>
wed calendar ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
wednesday common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
week calendar ko <09><>
weekday starts on preferences ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
weekly calendar ko <09><><EFBFBD><EFBFBD>
which groups common ko <09>׷켱<D7B7><ECBCB1>
which groups todo ko <09><20>׷<EFBFBD>
work day ends on preferences ko <09>ٹ<EFBFBD> <20><><EFBFBD><EFBFBD> <20>ð<EFBFBD>
work day starts on preferences ko <09>ٹ<EFBFBD> <20><><EFBFBD><EFBFBD> <20>ð<EFBFBD>
work phone addressbook ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȭ
x matches found calendar ko %1<><31> <20>׸<EFBFBD> ã<><C3A3>
x messages have been deleted email ko %1<><31><EFBFBD><EFBFBD> <20>޼<EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
year calendar ko <09><>
yearly calendar ko <09>ų<EFBFBD>
yes filemanager ko <09><>
yes common ko <09><>
you have 1 high priority event on your calendar today. common ko 1<><31><EFBFBD><EFBFBD> <20>߿䵵<DFBF><E4B5B5> <20><><EFBFBD><EFBFBD> <20>۾<EFBFBD><DBBE><EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.
you have 1 new message! common ko 1 <20><><EFBFBD><EFBFBD> <20><><EFBFBD>ο<EFBFBD> <20>޽<EFBFBD><DEBD><EFBFBD><EFBFBD><EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>!
you have been successfully logged out login ko <09>α׾ƿ<D7BE> <20>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
you have entered an invailed date todo ko <09><>Ȯ<EFBFBD><C8AE> <20><>¥<EFBFBD><C2A5> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD>.
you have not entered a\nbrief description calendar ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD>.
you have not entered a\nvalid time of day. calendar ko <09>ð<EFBFBD><C3B0><EFBFBD> <20><>Ȯ<EFBFBD>ϰ<EFBFBD> <20>Է<EFBFBD><D4B7>ϼ<EFBFBD><CFBC><EFBFBD>.
you have x high priority events on your calendar today. common ko %1<><31><EFBFBD><EFBFBD> <20>߿䵵<DFBF><E4B5B5> <20><><EFBFBD><EFBFBD> <20>۾<EFBFBD><DBBE><EFBFBD><EFBFBD><EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>.
you have x new messages! common ko %1 <20><><EFBFBD><EFBFBD> <20><><EFBFBD>ο<EFBFBD> <20>޽<EFBFBD><DEBD><EFBFBD><EFBFBD><EFBFBD> <20>ֽ<EFBFBD><D6BD>ϴ<EFBFBD>!
you must enter a base url admin ko <09>⺻ URL<52><4C> <20>Է<EFBFBD><D4B7>ؾ<EFBFBD> <20>մϴ<D5B4>.
you must enter a display admin ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Է<EFBFBD><D4B7>ؾ<EFBFBD> <20>մϴ<D5B4>.
you must enter a news url admin ko <09><><EFBFBD><EFBFBD> URL<52><4C> <20>Է<EFBFBD><D4B7>ؾ<EFBFBD> <20>մϴ<D5B4>.
you must enter a password preferences ko <09><>ȣ<EFBFBD><C8A3> <20>Է<EFBFBD><D4B7>ؾ߸<D8BE> <20>մϴ<D5B4>.
you must enter a password admin ko <09>н<EFBFBD><D0BD><EFBFBD><EFBFBD><20>Է<EFBFBD><D4B7>ؾ<EFBFBD> <20>մϴ<D5B4>.
you must enter one or more search keywords calendar ko <09>ϳ<EFBFBD> <20>̻<EFBFBD><CCBB><EFBFBD> <20>˻<EFBFBD>Ű<EFBFBD><C5B0><EFBFBD><20>Է<EFBFBD><D4B7>ϼž<CFBC> <20>մϴ<D5B4>.
you must enter the number of listings display admin ko <09>ѹ<EFBFBD><D1B9><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Է<EFBFBD><D4B7>ؾ<EFBFBD> <20>մϴ<D5B4>.
you must enter the number of minutes between reload admin ko <09><><EFBFBD>ε<EFBFBD><CEB5><EFBFBD> <20>ð<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>Է<EFBFBD><D4B7>ؾ<EFBFBD> <20>մϴ<D5B4>.
you must select a file type admin ko <09><><EFBFBD><EFBFBD> Ÿ<><C5B8><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ؾ<EFBFBD> <20>մϴ<D5B4>.
your current theme is: x preferences ko </b> <20>Դϴ<D4B4>.
your message has been sent common ko <09>޽<EFBFBD><DEBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>۵Ǿ<DBB5><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
your search returned 1 match common ko 1<><31><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>˻<EFBFBD><CBBB>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
your search returned x matchs common ko %1<><31><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>˻<EFBFBD><CBBB>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
your settings have been updated common ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD><EFBFBD>ϴ<EFBFBD>.
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar ko <B> %1 - %2 </B><3E><> <20>׸<EFBFBD><D7B8><EFBFBD> <20>޷¿<DEB7> <20>ִ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>.
zip code addressbook ko <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȣ

View File

@ -1,681 +0,0 @@
(for weekly) calendar nl (voor wekelijks)
1 match found calendar nl 1 resultaat gevonden
1 message has been deleted email nl 1 bericht is verwijderd
a calendar nl a
access common nl Toegang
access type common nl Toegangstype
access type todo nl Toegangstype
Account projects nl Rekening
account active admin nl Gebruiker actief
account has been created common nl Account is aangemaakt
account has been deleted common nl Account is verwijderd
account has been updated common nl Account is bijgewerkt
account preferences common nl Account voorkeuren
active admin nl actief
Active projects nl Actief
Activities list projects nl Activiteitenlijst
Activity projects nl Activiteit
Activity ID projects nl Activiteitnummer
actor mediadb nl Acteur
add common nl Toevoegen
add a single phrase transy nl Een enkele zin toevoegen
Add Activity projects nl Activiteit toevoegen
Add hours projects nl Uren toevoegen
add new account admin nl Nieuwe gebruiker toevoegen
add new application admin nl Nieuwe toepassing toevoegen
add new phrase transy nl Een nieuwe zin toevoegen
add new ticket tts nl Nieuwe melding toevoegen
Add project projects nl Project toevoegen
Add project hours projects nl Projecturen toevoegen
add ticket tts nl Melding toevoegen
add to addressbook email nl Aan adresboek toevoegen
additional notes tts nl Aanvullende opmerkingen
address book common nl Adresboek
address book addressbook nl Adresboek
Address book projects nl Adresboek
address book - view addressbook nl Adresboek - weergave
addressbook common nl Adresboek
addressbook preferences common nl Adresboek voorkeuren
addsub todo nl Subtaak toevoegen
admin common nl admin
Admin projects nl Admin
administration common nl Administratie
all transy nl Alle
all mediadb nl Alle
All delivery notes projects nl Alle levernota's
All deliverys projects nl Alle leveringen
All done hours projects nl Alle gewerkt uren
All invoices projects nl Alle facturen
All open hours projects nl Alle te werken uren
all records and account information will be lost! admin nl Alle records en gebruikersinformatie zal verloren gaan!
anonymous user admin nl Anonieme gebruiker
any transy nl Alle
application transy nl Toepassing
application name admin nl Toepassingsnaam
application title admin nl Toepassingstitel
applications admin nl Toepassingen
april common nl April
Archiv projects nl Archief
archives mediadb nl Archieven
are you sure you want to delete this account ? admin nl Weet u zeker dat u deze gebruiker wilt verwijderen?
are you sure you want to delete this application ? admin nl Weet u zeker dat u deze toepassing wilt verwijderen?
are you sure you want to delete this entry todo nl Weet u zeker dat u deze invoer wilt verwijderen
Are you sure you want to delete this entry projects nl Weet u zeker dat u deze invoer wilt verwijderen
are you sure you want to delete this entry ? common nl Weet u zeker dat u dit item wilt verwijderen?
are you sure you want to delete this group ? admin nl Weet u zeker dat u deze groep wilt verwijderen?
are you sure you want to delete this news site ? admin nl Weet u zeker dat u deze nieuwssite wilt verwijderen?
are you sure you want to kill this session ? admin nl Weet u zeker dat u deze sessie wilt verwijderen?
are you sure\nyou want to\ndelete this entry ? calendar nl Weet u zeker\n dat u deze\nafspraak wilt verwijderen
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar nl Weet u zeker\n dat u deze\nafspraak wilt verwijderen\nDit zal de afspraak bij\nalle gebruikers verwijderen.
artist mediadb nl Artiest
assign to tts nl Toewijzen aan
assigned from tts nl Toegewezen door
assigned to tts nl Toegewezen aan
august common nl Augustus
author nntp nl Auteur
author mediadb nl Auteur
avail mediadb nl Beschikbaar
available groups nntp nl Beschikbare groepen
bad login or password login nl Onjuiste gebruikersnaam of wachtwoord
base url admin nl Basis-url
Bill per workunit projects nl Tarief per werkeenheid
Billable activities projects nl Factureerbare activiteiten
Billed projects nl Gefactureerd
Billed only projects nl Alleen gefactureerd
birthday addressbook nl Verjaardag
book marks common nl bladwijzers
Bookable activities projects nl Boekbare activiteiten
bookmarks common nl bladwijzers
books mediadb nl Boeken
borrowed mediadb nl Geleend
borrower mediadb nl Lener
brief description calendar nl Korte omschrijving
Budget projects nl Budget
Calculate projects nl Berekenen
calendar common nl kalendar
calendar - add calendar nl Kalender - toevoegen
calendar - edit calendar nl Kalender - Bewerken
calendar preferences common nl Kalender voorkeuren
cancel common nl Annuleren
cancel filemanager nl Annuleren
cc email nl CC
center weather nl Centrum
change common nl Veranderen
change your password preferences nl Verander uw wachtwoord
change your profile preferences nl Verander uw profiel
change your settings preferences nl Verander uw instellingen
charset common nl iso-8859-1
chat common nl Chat
city addressbook nl Stad
city weather nl Stad
clear common nl Wissen
clear form common nl Formulier wissen
clear form todo nl Formulier wissen
clear form tts nl Formulier wissen
clipboard_contents filemanager nl Inhoud van het klembord
close tts nl Sluiten
close date tts nl Datum sluiting
closed tts nl Gesloten
comment mediadb nl Opmerking
comments common nl Opmerkingen
Company projects nl Bedrijfsnaam
company name addressbook nl Bedrijfsnaam
completed todo nl uitgevoerd
compose email nl Nieuw bericht schrijven
Coordinator projects nl Coordinator
copy common nl Kopieren
copy filemanager nl Kopieren
Copy template projects nl Sjabloon kopieren
copy_as filemanager nl Kopieren als
country weather nl Land
create common nl Maken
create filemanager nl Maken
Create delivery projects nl Levering maken
create group admin nl Groep maken
Create invoice projects nl Factuur maken
create lang.sql file transy nl Maak een lang.sql bestand
create new language set transy nl Maak een nieuwe taalset
created by common nl Gemaakt door
created by todo nl Gemaakt door
current users common nl huidig aantal gebruikers
current_file filemanager nl Huidig bestand
Customer projects nl Opdrachtgever
daily calendar nl Dagelijks
date common nl datum
date email nl datum
date nntp nl datum
Date projects nl Datum
date due todo nl Datum gereed
Date due projects nl Datum gereed
date format preferences nl Datumweergave
date hired common nl Datum in dienst
date opened tts nl Datum geopend
days datedue todo nl Dagen tot deadline
days repeated calendar nl dagen herhaald
december common nl December
default application preferences nl Standaard toepassing
default sorting order email nl Standaard sorteervolgorde
delete common nl Verwijderen
delete email nl Verwijderen
delete filemanager nl Verwijderen
Delete hours projects nl Uren verwijderen
delete this entry ? calendar nl Weet u zeker
Delivery projects nl Levering
Delivery date projects nl Leveringsdatum
Delivery ID projects nl Leveringsnummer
Delivery list projects nl Leveringslijst
Delivery note projects nl Levernota
deny mediadb nl Afwijzen
description calendar nl Omschrijving
Description projects nl Omschrijving
detail tts nl Detail
details tts nl Details
developer mediadb nl Ontwikkelaar
disabled admin nl Uitgeschakeld
display admin nl Weergave
display missing phrases in lang set transy nl Geef missende zinnen in taalset weer
do_delete filemanager nl Verwijderen
done common nl Gereed
Done projects nl Gereed
download filemanager nl Downloaden
due date mediadb nl Datum Terug
duration calendar nl Duur
e-mail common nl E-mail
e-mail addressbook nl E-mail
e-mail preferences common nl E-mail voorkeuren
edit common nl Bewerken
edit filemanager nl Bewerken
Edit projects nl Bewerken
Edit Activity projects nl Activiteit bewerken
edit application admin nl Toepassing bewerken
edit group admin nl Groep bewerken
Edit hours projects nl Uren bewerken
Edit project projects nl Project bewerken
Edit project hours projects nl Projecturen bewerken
email email nl E-mail
email common nl E-mail
email account name email nl E-mail gebruikersnaam
email address email nl E-mail adres
email password email nl Email wachtwoord
email signature email nl Email onderschrift
Employee projects nl Werknemer
enabled admin nl Ingeschakeld
enabled weather nl Ingeschakeld
enabled - hidden from navbar admin nl Ingeschakeld - niet zichtbaar op de navigatiebalk
End date projects nl Einddatum
enter your new password preferences nl Voer uw nieuwe wachtwoord in
Entry date projects nl Invoerdatum
entry has been deleted sucessfully common nl Item succesvol verwijderd
entry updated sucessfully common nl Item succesvol bijgewerkt
err_saving_file filemanager nl Fout bij opslaan op schijf
error common nl Fout
error creating x x directory common nl Fout bij maken van %1%2directory
error deleting x x directory common nl Fout bij verwijderen van %1%2directory
error renaming x x directory common nl Fout bij hernoemen %1%2directory
exit common nl Einde
exit filemanager nl Einde
fax addressbook nl Fax
february common nl Februari
file manager common nl Bestandsbeheer
file_upload filemanager nl Bestand uploaden
files email nl Bestanden
files filemanager nl Bestanden
filter common nl Filter
first name common nl Voornaam
first name addressbook nl Voornaam
first page common nl eerste pagina
Firstname projects nl Voornaam
folder email nl Folder
forecast weather nl Vooruitzicht
forecasts weather nl Vooruitzichten
forum common nl Forum
forward email nl Doorsturen
fr calendar nl Vr
free/busy calendar nl Vrij/Bezet
frequency calendar nl Frequentie
fri calendar nl Vr
friday common nl Vrijdag
from email nl Van
ftp common nl FTP
full description calendar nl Volledige omschrijving
fzone weather nl FZone
games mediadb nl Spellen
generate new lang.sql file transy nl Maak een nieuwe taalset
generate printer-friendly version calendar nl Genereer printervriendelijke versie
genre mediadb nl Genre
global weather nl Mondiaal
global public common nl Toegang Openbaar
go! calendar nl Uitvoeren!
group tts nl Groep
group access common nl Groepstoegang
group has been added common nl Groep is toegevoegd
group has been deleted common nl Groep is verwijderd
group has been updated common nl Groep is bijgewerkt
group name admin nl Groepsnaam
group public common nl Toegang voor groep
group_files filemanager nl groepsbestanden
groups common nl Groepen
groupsfile_perm_error filemanager nl Om deze fout te verhelpen dient u de rechten op de files/groups directory aan te passen.<br>Op *nix systemen typt u: chmod 770
headline sites admin nl Krantekoppen Sites
headlines common nl Krantekoppen
help common nl Help
high common nl Hoog
home common nl Start
home phone addressbook nl Telefoon thuis
honor mediadb nl Toekennen
Hours projects nl Uren
human resources common nl Personeel
i participate calendar nl Ik doe mee
id mediadb nl ID
id weather nl ID
idle admin nl inactief
if applicable email nl Indien van toepassing
ignore conflict calendar nl Conflict negeren
image email nl Afbeelding
imap server type email nl IMAP Server Type
imdb mediadb nl IMDB
import lang set transy nl Importeer taalset
in progress tts nl In uitvoering
installed applications admin nl Geinstalleerde toepassingen
inventory common nl Magazijn
Invoice projects nl Factuur
Invoice date projects nl Factuurdatum
Invoice ID projects nl Factuurnummer
Invoice list projects nl Facturenoverzicht
ip admin nl IP
it has been more then x days since you changed your password common nl Er zijn meer dan %1 dagen verstreken sinds u uw wachtwoord hebt gewijzigd
january common nl Januari
july common nl Juli
june common nl Juni
kill admin nl Beeindigen
language preferences nl Taal
last name common nl Achternaam
last name addressbook nl Achternaam
last page common nl laaste pagina
last time read admin nl Laatste keer gelezen
last updated todo nl Laatst bijgewerkt
last x logins admin nl Laatste %1 logins
Lastname projects nl Achternaam
line 2 addressbook nl Regel 2
links weather nl Links
list mediadb nl Lijst
List hours projects nl Urenoverzicht
list of current users admin nl Lijst van huidige gebruikers
List project hours projects nl Overzicht projecturen
listings displayed admin nl Weergegeven lijsten
loaned mediadb nl Uitgeleend
location common nl Locatie
login common nl Aanmelden
login login nl Aanmelden
login time admin nl Logintijd
loginid admin nl LoginID
logout common nl Afmelden
low common nl Laag
mail server email nl Mail Server
mail server type email nl Mail Server type
mainscreen_message mainscreen nl Bericht op hoofdscherm
manager admin nl Manager
march common nl Maart
max matchs per page preferences nl Maximum aantal resultaten per pagina
may common nl Mei
media mediadb nl Media
media database mediadb nl Media Database
medium common nl Gemiddeld
message email nl Bericht
message transy nl Bericht
message x nntp nl Bericht %1
messages email nl Berichten
metar weather nl Metar
minutes calendar nl minuten
minutes between reloads admin nl Minuten tussen heropenen
Minutes per workunit projects nl Minuten per werkeenheid
mo calendar nl Ma
mobile addressbook nl Mobiel
mobile common nl Mobiel
mon calendar nl Ma
monday common nl Maandag
monitor email nl Monitor
monitor nntp nl Monitor
monitor newsgroups preferences nl Monitor nieuwsgroepen
month calendar nl Maand
monthly (by date) calendar nl Maandelijks (op datum)
monthly (by day) calendar nl Maandelijks (op dag)
move selected messages into email nl Geselecteerde berichten verplaatsen naar
movies mediadb nl Films
music mediadb nl Muziek
n mediadb nl N
name common nl Naam
Netto projects nl Netto
network news admin nl Netwerknieuws
new mediadb nl Nieuw
new entry calendar nl Nieuwe afspraak
new entry added sucessfully common nl Nieuw item succesvol toegevoegd
new group name admin nl Nieuwe groepsnaam
new message email nl Nieuw bericht
new password [ leave blank for no change ] admin nl Nieuw wachtwoord [Leeg laten om niet te wijzigen]
new phrase has been added common nl Nieuwe zin is toegevoegd
new phrase has been added transy nl Nieuwe zin is toegevoegd
New project projects nl Nieuwe project
new ticket tts nl Nieuwe melding
new_file filemanager nl Nieuw bestand
news file admin nl Nieuwsbestand
news headlines common nl Nieuws koppen
news reader common nl Nieuwslezer
news type admin nl Nieuwstype
newsgroups nntp nl Nieuwsgroepen
next email nl Volgende
next nntp nl Volgende
next page common nl volgende pagina
nntp common nl NNTP
no common nl Nee
no filemanager nl Nee
No customer selected projects nl Geen opdrachtgever geselecteerd
no matches found. calendar nl Geen resultaten gevonden
no subject email nl Geen onderwerp
no subject tts nl Geen onderwerp
no tickets found tts nl Geen meldingen gevonden
no_file_name filemanager nl Er is geen bestandsnaam opgegeven
non-standard email nl Niet-standaard
Nonactive projects nl Nonactief
none common nl Geen
normal common nl Normaal
not applicable weather nl Niet van toepassing
note: this feature does *not* change your email password. this will need to be done manually. preferences nl Let op: Deze optie wijzigd *niet* uw email-wachtwoord. Dit dient handmatig te gebeuren.
notes addressbook nl Opmerkingen
november common nl November
Number projects nl Nummer
observations weather nl Observaties
october common nl Oktober
ok common nl OK
ok tts nl OK
on *nix systems please type: x common nl Op *nix systemen typt u: %1
only yours common nl alleen eigen weergeven
Open projects nl Open
open date tts nl Datum opening
opened by tts nl Geopend door
original transy nl Origineel
other number addressbook nl Ander nummer
others mediadb nl Anderen
Overall projects nl Totaal
own mediadb nl Eigen
owner mediadb nl Eigenaar
pager addressbook nl Buzzer
pager common nl Buzzer
participants calendar nl Deelnemers
password common nl Wachtwoord
password login nl Wachtwoord
password has been updated common nl Wachtwoord is gewijzigd
pend mediadb nl Wachten
percent of users that logged out admin nl Percentage gebruikers dat uitlogt
permissions admin nl Rechten
permissions this group has admin nl Rechten van deze groep
permissions to the files/users directory common nl privileges aan de bestanden/gebruikers toekennen
phrase in english transy nl Zin in het engels
phrase in new language transy nl Zin in de nieuwe taal
phone common nl Telefoon
phpgroupware login login nl pgpGroupWare aanmelding
please select a message first email nl Selecteer eerst een bericht
Please select currency,tax and your address in preferences! projects nl Selecteer valuta, btw en uw adres in voorkeuren
Please select your address in preferences! projects nl Selecteer uw adres in voorkeuren
please x by hand common nl Gelieve %1 handmatig uit te voeren
please, select a new theme preferences nl Selecteer een nieuw themak
Position projects nl Functie
powered by phpgroupware version x common nl Deze site werkt met <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
powered by phpgroupware version x all nl Deze site werkt met <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
preferences common nl Voorkeuren
previous email nl Vorige
previous page common nl Vorige pagina
print common nl Afdrukken
Print delivery projects nl Levering afdrukken
Print invoice projects nl Factuur afdrukken
printer friendly calendar nl Printervriendelijk
prio tts nl Prio
priority common nl Prioriteit
priority tts nl Prioriteit
private common nl Priv<69>
private_files filemanager nl Persoonlijke bestanden
Project projects nl Project
Project billing projects nl Projectfacturering
Project delivery projects nl Project oplevering
project description todo nl Projectomschrijving
Project hours projects nl Project uren
Project ID projects nl Projectnummer
Project list projects nl Projectenlijst
Project name projects nl Projectnaam
Project preferences projects nl Project voorkeuren
Project preferences preferences nl Project voorkeuren
Project statistic projects nl Projectstatestiek
Project statistics projects nl Projectstatestieken
Projects common nl Projecten
Projects admin nl Projecten
Projects projects nl Projecten
rated mediadb nl Leeftijdscategorie
re-edit event calendar nl Afspraak herbewerken
re-enter password admin nl Wachtwoord opnieuw invoeren
re-enter your password preferences nl Voor uw wachtwoord nogmaals in
recent weather nl Recent
record access addressbook nl Record-toegang
record owner addressbook nl Record-eigenaar
region weather nl Regio
regions weather nl Regio's
Remark projects nl Job [ Remark ]
Remark required projects nl Remark required
remove all users from this group admin nl Verwijder alle gebruikers uit deze groep
rename common nl Hernoemen
rename filemanager nl Hernoemen
rename_to filemanager nl Hernoemen naar
reopen tts nl Heropenen
repeat day calendar nl Dag herhalen
repeat end date calendar nl Einddatum herhalingspatroon
repeat type calendar nl Herhalingstype
repetition calendar nl Herhalingspatroon
reply email nl Antwoorden
reply all email nl Allen antwoorden
requests mediadb nl Verzoeken
Return to projects projects nl Terug naar projecten
sa calendar nl Za
sat calendar nl Za
saturday common nl Zaterdag
save common nl Opslaan
save filemanager nl Opslaan
scoring mediadb nl Score
search common nl Zoeken
Search projects nl Zoeken
search results calendar nl Zoekresultaten
section email nl Sectie
Select projects nl Selecteren
select application transy nl Selecteer toepassing
Select customer projects nl Selecteer opdrachtgever
select different theme preferences nl Selecteer een ander thema
select headline news sites preferences nl Selecteer Krantekoppen sites
select language to generate for transy nl Selecteer de taal om naar te vertalen
select permissions this group will have admin nl Selecteer de rechten die deze groep krijgt
Select tax for work hours projects nl Selecteer btw voor werkuren
select users for inclusion admin nl Selecteer gebruikers om toe te voegen
select which application for this phrase transy nl Selecteer de toepassing voor deze zin
select which language for this phrase transy nl Selecteer de taal voor deze zin
Select your address projects nl Selecteer uw adres
send email nl Verzenden
send deleted messages to the trash email nl Verplaats de verwijderde berichten naar de prullenbak
september common nl September
session has been killed common nl Sessie is be<62>indigd
show all common nl laat alles zien
show all groups nntp nl Alle groepen weergeven
show birthday reminders on main screen addressbook nl Verjaardagsherinneringen weergeven op hoofdscherm
show current users on navigation bar preferences nl Geef huidige gebruikers weer op de navigatiebalk
show groups containing nntp nl Groepen weergeven met
show high priority events on main screen calendar nl Evenementen met hoge prioriteit weergeven op hoofdscherm
show new messages on main screen email nl Nieuwe berichten weergeven op hoofdscherm
show text on navigation icons preferences nl Geef tekst weer op de navigatiebalk
showing x common nl weergegeven: %1
showing x - x of x common nl weergegeven: %1 - %2 van %3
site admin nl Site
size email nl Grootte
sorry, that group name has already been taking. admin nl Sorry, die groepsnaam is al in gebruik
sorry, the follow users are still a member of the group x admin nl Sorry, de volgende gebruikers zijn nog lid van groep %1
sorry, there was a problem processing your request. common nl Sorry, er is een probleem opgetreden met het verwerken van uw verzoek.
sorry, your login has expired login nl Sorry, uw sessie is verlopen
source language transy nl Brontaal
specify_file_name filemanager nl U moet een naam geven voor het bestand dat u wilt maken
Start date projects nl Startdatum
state addressbook nl Provincie
state weather nl Provincie
station weather nl Station
stations weather nl Stations
Statistic projects nl Statistiek
stats mediadb nl Statistieken
status todo nl status
status admin nl status
status mediadb nl status
Status projects nl Status
status common nl status
status/date closed tts nl Status/Datum sluiting
street addressbook nl Straatnaam
su calendar nl Zo
subject email nl Onderwerp
subject nntp nl Onderwerp
subject tts nl Onderwerp
submit common nl Verzenden
Submit projects nl Verzenden
submit changes admin nl Wijzigingen toepassen
Sum projects nl Som
sun calendar nl Zo
sunday common nl Zondag
switch current folder to email nl Ga naar folder
tables weather nl Tabellen
target language transy nl Doeltaal
tax projects nl BTW
Template projects nl Sjabloon
th calendar nl Do
that loginid has already been taken admin nl Die loginid is al in gebruik
that site has already been entered admin nl Die site is al toegevoegd
the following conflicts with the suggested time:<ul>x</ul> calendar nl Het volgende levert een confilct op met de voorgestelde tijd:<ul>%1</ul>
the login and password can not be the same admin nl De login en het wachtwoord mogen niet gelijk zijn
the two passwords are not the same admin nl De twee wachtwoorden komen niet overeen
the two passwords are not the same preferences nl De twee wachtwoorden komen niet overeen
There are no entries projects nl Er zijn geen gegevens
they must be removed before you can continue admin nl Ze moeten worden verwijderd voor u verder kunt
this folder is empty email nl Deze folder is leeg
this month calendar nl Deze maand
this server is located in the x timezone preferences nl Tijdzone
this week calendar nl Deze week
threads nntp nl Discussies
thu calendar nl Do
thursday common nl Donderdag
ticket tts nl Melding
Ticket assigned to x tts nl Melding toegewezen aan %1
time common nl tijd
Time projects nl Tijd
time format preferences nl Tijdweergave
time tracking common nl Tijdregistratie
time zone offset preferences nl Tijdzoneverschil
title admin nl Titel
title addressbook nl Titel
title mediadb nl Titel
Title projects nl Titel
to email nl Aan
to correct this error for the future you will need to properly set the common nl Om deze fout te in de toekomst te voorkomen moet u de juiste
today calendar nl Vandaag
today is x's birthday! common nl Vandaag is %1's verjaardag!
todo todo nl Taken
todo list common nl Takenlijst
todo list todo nl Takenlijst
todo list - add todo nl Takenlijst - toevoegen
todo list - edit todo nl Takenlijst - bewerken
tomorrow is x's birthday. common nl Morgen is %1's verjaardag.
total common nl Totaal
total records admin nl Aantal records
translation transy nl Vertaling
translation management common nl Vertalingen management
trouble ticket system common nl Probleem Registratie Systeem
trouble ticket system tts nl Probleem Registratie Systeem
tu calendar nl Di
tue calendar nl Di
tuesday common nl Dinsdag
undisclosed recipients email nl Onbekende ontvangers
undisclosed sender email nl onbekende afzender
update nntp nl bijwerken
Update projects nl Bijwerken
update tts nl bijwerken
Update project projects nl Project bijwerken
updated common nl Bijgewerkt
upload filemanager nl Uploaden
urgency todo nl Prioriteit
url addressbook nl URL
use cookies login nl gebruik koekjes
use custom settings email nl Gebruik persoonlijke instellingen
use end date calendar nl Gebruik einddatum
user accounts admin nl Gebruikersaccounts
user groups admin nl Gebruikersgroepen
user profiles admin nl Gebruikersprofielen
User statistic projects nl Gebruikersstatistiek
User statistics projects nl Gebruikersstatistieken
username login nl gebruikersnaam
Username projects nl Gebruikersnaam
users common nl gebruikers
usersfile_perm_error filemanager nl Om deze fout te verhelpen dient u de rechten op de files/groups directory aan te passen.<br>Op *nix systemen typt u: chmod 770
vacation hours per year common nl Jaarlijks aantal verlofuren
vacation hours used common nl Gebruikte verlofuren
view common nl Bekijken
view access log admin nl Toegangslog bekijken
view all tickets tts nl Alle meldingen bekijken
view job detail tts nl werkdetail bekijken
view only open tickets tts nl Alleen openstaande meldingen bekijken
view sessions admin nl Sessies bekijken
view this entry calendar nl Deze afspraak bekijken
view/edit/delete all phrases transy nl Bekijk/bewerk/verwijder alle zinnen
we calendar nl Wo
weather weather nl Weer
wed calendar nl Wo
wednesday common nl Woensdag
week calendar nl Week
weekday starts on calendar nl Weekdag begint om
weekly calendar nl wekelijks
which groups common nl welke groepen
which groups todo nl Welke groepen
withdraw mediadb nl Terugtrekken
work day ends on calendar nl Werkdag eindigt om
work day starts on calendar nl Werkdag begint om
work phone addressbook nl Telefoon werk
Workunit projects nl Werkeenheid
Workunits projects nl Werkeenheid
x matches found calendar nl %1 resultaten gevonden
x messages have been deleted email nl %1 berichten zijn verwijderd
y mediadb nl J
year calendar nl Jaar
year mediadb nl Jaar
yearly calendar nl Jaarlijks
yes common nl Ja
yes filemanager nl Ja
you are required to change your password during your first login common nl U moet na de eerste keer inlogggen uw eerste sessie uw wachtwoord wijzigen
you have 1 high priority event on your calendar today. common nl U hebt vandaag 1 afspraak met hoge prioriteit op uw agenda staan.
you have 1 new message! common nl U hebt 1 nieuw bericht!
you have been successfully logged out login nl U bent succesvol afgemeld
you have entered an invailed date todo nl U hebt een ongeldige datum ingevoerd
you have not entered a\nbrief description calendar nl U hebt geen korte\nomschrijving ingevoerd
you have not entered a\nvalid time of day. calendar nl U hebt geen geldige\n tijd ingevoerd
You have selected an invalid activity projects nl U hebt een ongeldige activiteit geselecteerd
You have selected an invalid date projects nl U hebt een ongeldige datum geselecteerd
You have to enter a remark projects nl U moet een REMARK invoeren
you have x high priority events on your calendar today. common nl U hebt vandaag %1 afspraken met hoge prioriteit op uw agenda staan.
you have x new messages! common nl U hebt %1 nieuwe berichten!
you must add at least 1 permission to this account admin nl U moet tenminste 1 recht toekennen aan deze gebruiker
you must enter a base url admin nl U moet een basis-url invoeren
you must enter a display admin nl U moet een weergave invoeren
you must enter a news url admin nl U moet een nieuws-url invoeren
you must enter a password admin nl U moet een wachtwoord invoeren
you must enter a password preferences nl U moet een wachtwoord invoeren
you must enter an application name and title. admin nl U moet een toepassingsnaam en -titel invoeren
you must enter one or more search keywords calendar nl U moet een of meer zoektermen invoeren
you must enter the number of listings display admin nl U moet het aantal weer te geven lijsten invoeren
you must enter the number of minutes between reload admin nl U moet het aantal minuten tussen heropenen invoeren
you must select a file type admin nl U moet een bestandstype invoeren
your current theme is: x preferences nl Uw huidige thema is
your message has been sent common nl Uw bericht is verzonden
your search returned 1 match common nl Uw zoekopdracht leverde 1 item op
your search returned x matchs common nl Uw zoekopdracht leverde %1 items op
your session could not be verified. login nl Uw sessie kon niet geverifieerd worden
your settings have been updated common nl Uw instellingen zijn gewijzigd
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar nl Uw opgegeven tijd (%1 - %2) levert een conflict op met de volgende afspraken:
zip code addressbook nl Postcode
zone weather nl Zone

View File

@ -1,322 +0,0 @@
(for weekly) calendar no (for Ukentlig)
1 match found calendar no 1 match funnet
access common no Access
access type common no Access type
access type todo no Access type
account active admin no Account aktiv
account has been created common no Account har blitt opprettet
account has been deleted common no Account har blitt slettet
account has been updated common no Account har blitt oppdatert
active admin no Aktiv
add common no Legg til
address book addressbook no Addresse Bok
address book common no Addresse Bok
addressbook common no Addressebook
admin common no Admin
administration common no Administrasjon
all records and account information will be lost! admin no All historie og brukerinformasjon vil g<> tapt!
anonymous user admin no Anonym bruker
april common no April
are you sure you want to delete this account ? admin no Er du sikker p<> at du vil slette denne account?
are you sure you want to delete this entry todo no Er du sikker p<> at du vil slette denne entry?
are you sure you want to delete this entry ? common no Er du sikker du vil slette denne entry ?
are you sure you want to delete this group ? admin no Er du sikker p<> du vil slette denne gruppen?
are you sure you want to delete this news site ? admin no Er du sikker p<> at du vil slette denne nyhets siten?
are you sure you want to kill this session ? admin no Er du sikker p<> at du vil avslutte denne session?
are you sure\nyou want to\ndelete this entry ? calendar no Er du sikker p<> at\ndu vil\nslette denne?
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for all users. calendar no Er du sikker p<> at\ndu vil\nslette denne entry ?\n\nDette vil slette\ndenne entry for alle brukere.
august common no August
author nntp no Forfatter
available groups nntp no Tilgjengelige grupper
bad login or password login no Ugyldig login eller passord
base url admin no Basis URL
birthday addressbook no F<>dselsdag
book marks common no Bokmerker
bookmarks common no Bookmarks
brief description calendar no Kort beskrivelse
calendar common no kalender
calendar - add calendar no Kalender - Tilf<6C>y
calendar - edit calendar no Kalender - Edit
cancel filemanager no Avbryt
cancel common no Avbryt
cannot display the requested article from this newsgroup nntp no Kan ikke vise den forespurte artikkel fra denne nyhetsgruppen
change common no Endre
change your password preferences no Endre passord
change your settings preferences no Endre innstillinger
charset common no iso-8859-1
chat common no Chat
city addressbook no By
clear common no Clear
clear form common no Endre Form
clear form todo no Slett innhold
clipboard_contents filemanager no Clipboard Innhold
completed todo no ferdig
copy filemanager no Kopier
copy common no Kopier
copy_as filemanager no Kopier som
create filemanager no Lage
create common no Lag
create group admin no Lag Gruppe
created by common no Laget av
created by todo no Laget av
current users common no Current brukere
current_file filemanager no Current File
daily calendar no Daglig
date nntp no Dato
date common no Dato
date due todo no Ferdig f<>r
date format preferences no Dato format
days repeated calendar no dager gjentatt
december common no Desember
delete filemanager no Slett
delete common no Slett
description calendar no Beskrivelse
disabled admin no Deaktivert
display admin no Vis
done common no Ferdig
download filemanager no Download
do_delete filemanager no Slett
duration calendar no Varighet
e-mail addressbook no E-Post
e-mail common no E-Post
edit filemanager no Edit
edit common no Editer
email common no E-Post
email signature preferences no E-Post signatur
enter your new password preferences no Skriv inn ditt nye passord
entry has been deleted sucessfully common no Entry har blitt slettet
entry updated sucessfully common no Entry er oppdatert
error common no Feil
err_saving_file filemanager no Feil ved lagring av fil til disk
exit filemanager no Avslutt
exit common no Avslutt
fax addressbook no Telefaks
february common no Februar
file manager common no Fil manager
files filemanager no Filer
file_upload filemanager no File Upload
filter common no Filter
first name addressbook no Fornavn
first name common no Fornavn
first page common no f<>rste side
frequency calendar no Hvor ofte
fri calendar no Fre
friday common no Fredag
ftp common no FTP
full description calendar no Full beskrivelse
generate printer-friendly version calendar no Generer printer-vennlig versjon
global public common no Global Public
go! calendar no Go!
group access common no Gruppe Access
group has been added common no Gruppe har blitt lagt til
group has been deleted common no Gruppe har blitt slettet
group has been updated common no Gruppe har blitt oppdatert
group name admin no Gruppe Navn
group public common no Gruppe Public
groups common no Grupper
groupsfile_perm_error filemanager no For <20> rette opp denne feilen m<> du sette adgangsinnstillingene korrekt for filer/gruppe directory.<BR> P<> *nix systemer vennligst skriv: chmod 770
group_files filemanager no gruppe filer
headline sites admin no Headline Siter
headlines common no Headlines
help common no Hjelp
high common no H<>y
home common no Hjemme
home phone addressbook no Hjemme telefon
idle admin no idle
ip admin no IP
it has been more then x days since you changed your password common no Det er mer enn %1 dager siden du har endet ditt passord
january common no Januar
july common no Juli
june common no Juni
kill admin no Avslutt
language preferences no Spr<70>ke
last name addressbook no Etternavn
last name common no Etternavn
last page common no siste side
last time read admin no Lest siste gang
last updated todo no Sist oppdatert
last x logins admin no Siste %1 logins
list of current users admin no liste over brukere
listings displayed admin no Lister vist
login login no Login
login common no Login
login time admin no Login Tid
loginid admin no LoginID
logout common no Logout
low common no Lav
manager admin no Manager
march common no Mars
max matchs per page preferences no Max matches per side
may common no Mai
medium common no Medium
message x nntp no Melding %1
minutes calendar no minutter
minutes between reloads admin no Minutter mellom Reloads
mobile addressbook no Mobil
mon calendar no Man
monday common no Mandag
monitor nntp no Monitor
month calendar no M<>ned
monthly (by date) calendar no M<>nedlig (etter dato)
monthly (by day) calendar no M<>nedlig (etter dag)
name common no Navn
new entry calendar no Ny Entry
new entry added sucessfully common no Ny entry er lagt til
new group name admin no Nytt gruppe navn
new password [ leave blank for no change ] admin no Nytt passord [ Ingenting hvis ingen forandring ]
news file admin no Nyhets Fil
news headlines common no Nyhets headlines
news reader common no Nyhets Leser
news type admin no Nyhets Type
newsgroups nntp no Nyhetsgruppe
new_file filemanager no Ny Fil
next nntp no Neste
next page common no neste side
no filemanager no Nei
no common no Nei
no matches found. calendar no Ingen match funnet.
none common no Ingen
normal common no Normal
note: this feature does *not* change your email password. this will need to be done manually. preferences no Noter: Denne funksonen endrer *ikke* ditt epost passord. Dette m<> gj<67>res manuellt.
notes addressbook no Annet
november common no November
no_file_name filemanager no Intet filnavn ble spesifisert
october common no Oktober
ok common no OK
only yours common no kun dine
other number addressbook no Annet Nummer
pager addressbook no Persons<6E>ker
participants calendar no Deltakere
password login no Passord
password common no Passord
password has been updated common no Passord har blitt oppdatert
percent of users that logged out admin no Prosent av brukere som logget ut
please, select a new theme preferences no Vennligst velg et nytt tema
powered by phpgroupware version common no Powered by <a href=http://www.phpgroupware.org>phpGroupWare</a> version
preferences common no Preferences
previous page common no Forrige side
printer friendly calendar no Printer Vennlig
priority common no Prioritet
private common no Privat
private_files filemanager no Private filer
re-enter password admin no Skriv inn passord igjen
re-enter your password preferences no Skriv inn ditt passord igjen
rename filemanager no Rename
rename common no Endre navn
rename_to filemanager no Rename to
repeat day calendar no Gjenta dag
repeat end date calendar no Gjennta sluttdato
repeat type calendar no Gjenta type
repetition calendar no Gjenntakelse
sat calendar no L<>r
saturday common no L<>rdag
save filemanager no Lagre
save common no Lagre
search common no S<>k
search results calendar no S<>k resultater
select different theme preferences no Velg annet tema
select headline news sites preferences no Velg Headline News sites
september common no September
session has been killed common no Session har blitt avsluttet
show all common no vis alle
show all groups nntp no Vis alle grupper
show birthday reminders on main screen preferences no Vis f<>dselsdags p<>minnere p<> hovedskjerm
show current users on navigation bar preferences no Vis current brukere i navigation bar
show groups containing nntp no Vis grupper som inneholder
show high priority events on main screen preferences no Vis h<>yprioritets events p<> hovedskjermen
show new messages on main screen preferences no Vis nye meldinger p<> hovedskjerm
show text on navigation icons preferences no Vis tekst p<> navigasjons ikoner
showing x common no showing %1
showing x - x of x common no showing %1 - %2 of %3
site admin no Site
sorry, there was a problem processing your request. common no Beklager, der var problemer ved din foresp<73>rsel.
sorry, your login has expired login no Beklager, din login er utg<74>tt
specify_file_name filemanager no Du m<> spesifisere et navn p<> filen du vil lage
state addressbook no Stat
status todo no Status
street addressbook no Gate
subject nntp no Subjekt
submit common no Submit
sun calendar no S<>n
sunday common no S<>ndag
that loginid has already been taken admin no Den loginID er opptatt
that site has already been entered admin no Den siten har allerede blitt brukt
the following conflicts with the suggested time:<ul>x</ul> calendar no De f<>lgende konflikter ved den foresl<73>tte tidene:<ul>%1</ul>
the login and password can not be the same admin no Loging og passord kan ikke v<>re det samme
the two passwords are not the same admin no Passordene er ikke de sammme
the two passwords are not the same preferences no Passordene stemmer ikke overens
this month calendar no Denne m<>neden
this server is located in the x timezone preferences no tids-sonen
this week calendar no Denne uken
threads nntp no Threads
thu calendar no Tor
thursday common no Torsdag
time common no Tid
time format preferences no Tids format
time zone offset preferences no Tids-sone offset
today calendar no I dag
today is x's birthday! common no I dag har %1 f<>dselsdag!
todo todo no <09>-gj<67>re
todo list common no <09>-gj<67>re Liste
todo list todo no <09>-gj<67>re liste
todo list - add todo no <09>-gj<67>re liste - legg til
todo list - edit todo no <09>-gj<67>re liste - edit
tomorrow is x's birthday. common no I morgen er det %1's f<>dselsdag.
total common no Total
total records admin no Total historie
trouble ticket system common no Trouble Ticket System
tue calendar no Tir
tuesday common no Tirsdag
update nntp no Oppdater
updated common no Oppdatert
upload filemanager no Upload
urgency todo no Prioritet
use cookies login no use cookies
use end date calendar no Bruk sluttdato
user accounts admin no Bruker accounts
user groups admin no Bruker Grupper
username login no Brukernavn
usersfile_perm_error filemanager no For <20> rette opp denne feilen m<> du sette adgangsinnstillingene korrekt for filer/bruker directory.<BR> P<> *nix systemer vennligst skriv: chmod 770
view common no Vis
view access log admin no Vis Access Log
view sessions admin no Vis sessions
view this entry calendar no Vis denne entry
wed calendar no Ons
wednesday common no Onsdag
week calendar no Uke
weekday starts on preferences no Ukedag begynner p<>
weekly calendar no Ukentlig
which groups common no hvilke grupper
which groups todo no Hvilke grupper
work day ends on preferences no Arbeidsdag slutter p<>
work day starts on preferences no Arbeidsdag begynner p<>
work phone addressbook no Arbeids telefon
x matches found calendar no %1 match funnet
year calendar no <09>r
yearly calendar no <09>rlig
yes filemanager no Ja
yes common no Ja
you have 1 high priority event on your calendar today. common no Du har 1 h<>y prioritets event i din kalender i dag.
you have 1 new message! common no Du har 1 ny melding!
you have been successfully logged out login no Du har n<> logget ut
you have entered an invailed date todo no du har skrevet inn en ugyldig dato
you have not entered a\nbrief description calendar no Du har ikke skrevet inn en\nkort beskrivelse
you have not entered a\nvalid time of day. calendar no Du har ikke skrevet inn en\ngyldig tid.
you have x high priority events on your calendar today. common no Du har %1 h<>y prioritets event i din kalender i dag.
you have x new messages! common no Du har %1 nye meldinger!
you must enter a base url admin no Du m<> skrive inn en base url
you must enter a display admin no Du m<> skrive inn et display
you must enter a news url admin no Du m<> skrive inn en nyhets url
you must enter a password admin no Du m<> skrive inn et passord
you must enter a password preferences no Du m<> skrive inn et passord
you must enter one or more search keywords calendar no Du m<> skrive inn ett eller flere s<>keord
you must enter the number of listings display admin no Du m<> skrive inn antallet visninger
you must enter the number of minutes between reload admin no Du m<> skrive inn antallet minutter mellom reload
you must select a file type admin no Du m<> velge en filtype
your current theme is: x preferences no </b>
your message has been sent common no Din melding har blitt sent
your search returned 1 match common no ditt s<>k gav 1 match
your search returned x matchs common no ditt s<>k gav %1 match
your settings have been updated common no Dine innstillinger har blitt oppdatert
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar no Din foresl<73>tte tid av <B> %1 - %2 </B> er i konflikt med de f<>lgende kalender entries:
zip code addressbook no Postnummer

View File

@ -1,506 +0,0 @@
(for weekly) calendar sv (f<>r veckovis)
1 match found calendar sv 1 tr<74>ff hittad
1 message has been deleted email sv 1 meddelande har raderats
a calendar sv a
about x common sv Om %1
access common sv <09>tkomst
access type common sv <09>tkomst typ
access type todo sv <09>tkomst typ
account active admin sv Account aktiv
account has been created common sv Kontot har blivit skapat
account has been deleted common sv Kontot har blivit borttaget
account has been updated common sv Kontot har blivit uppdaterat
account preferences common sv Konto inst<73>llningar
account_permissions admin sv Applikations r<>ttigheter
active admin sv Aktiv
add common sv L<>gg till
add a single phrase transy sv L<>gg till enkel fras
add new account admin sv L<>gg till nytt konto
add new application admin sv L<>gg till ny application
add new phrase transy sv L<>gg till ny fras
add to addressbook email sv L<>gg till i adressbok
address book addressbook sv Adress bok
address book common sv Adress Bok
address book - view addressbook sv Adress bok - visa
addressbook common sv Adressbok
addressbook preferences common sv Adressbok inst<73>llningar
addsub todo sv Addsub
addvcard common sv L<>gg till Vkort
admin common sv Admin
administration common sv Administration
all calendar sv Alla
all transy sv Alla
all records and account information will be lost! admin sv Alla f<>rteckningar och anv<6E>ndarinformation kommer att f<>rsvinna!
anonymous user admin sv Anonym anv<6E>ndare
any transy sv N<>gon
application transy sv Applikation
application name admin sv Applications namn
application title admin sv Applications titel
applications admin sv Applikationer
april common sv April
are you sure you want to delete this account ? admin sv <09>r du s<>ker p<> att du vill ta bort detta account?
are you sure you want to delete this application ? admin sv <09>r det s<>kert du vill ta bort denna applikation ?
are you sure you want to delete this entry todo sv <09>r du s<>ker p<> att du vill ta bort denna entry?
are you sure you want to delete this entry ? common sv <09>r du s<>ker att du vill radera denna entry ?
are you sure you want to delete this group ? admin sv <09>r det s<>kert du vill ta bort denna gruppen?
are you sure you want to delete this news site ? admin sv <09>r du s<>ker p<> att du vill ta bort denna nyhets siten?
are you sure you want to kill this session ? admin sv <09>r du s<>ker p<> att du vill avsluta denna sessionen?
are you sure\\\\\\\\nyou want to\\\\\\\\ndelete this entry ? calendar sv <09>r du s<>ker p<> attndu villnta bort denna?
are you sure\\\\\\\\nyou want to\\\\\\\\ndelete this entry ?\\\\\\\\n\\\\\\\\nthis will delete\\\\\\\\nthis entry for all users. calendar sv <09>r du s<>ker p<> attndu villnta bort denna entry ?nnDetta vill ta bortndenna entry f<>r alla anv<6E>ndare.
are you sure\\\\nyou want to\\\\ndelete this entry ? calendar sv <09>r du s<>ker\\\\natt du vill\\\\ntabort denna post?
are you sure\\\\nyou want to\\\\ndelete this entry ?\\\\n\\\\nthis will delete\\\\nthis entry for all users. calendar sv <09>r du s<>ker\\\\natt du vill\\\\ntabort denna post?\\\\n\\\\nDetta tar bort den\\\\nf<6E>r alla anv<6E>ndare.
are you sure\\nyou want to\\ndelete this entry ? calendar sv <09>r du s<>ker\\natt du vill\\\\nradera denna post?
are you sure\\nyou want to\\ndelete this entry ?\\n\\nthis will delete\\nthis entry for all users. calendar sv <09>r du s<>ker\\\\natt du vill\\\\nradera denna post?\\\\n\\\\nDetta tar bort\\\\ndenna post f<>r alla\\\\nanv<6E>ndare.
august common sv Augusti
author nntp sv F<>rfattare
available groups nntp sv Tillg<6C>ngliga grupper
bad login or password login sv Ogiltigt login eller l<>senord
base url admin sv Bas URL
birthday addressbook sv F<>delsedag
birthday common sv F<>delsedag
book marks common sv Bokm<6B>rken
bookmarks common sv Bookmarks
brief description calendar sv Kort beskrivning
calendar common sv kalender
calendar - add calendar sv Kalender - L<>gg till
calendar - edit calendar sv Kalender - Edit
calendar preferences common sv Kalender inst<73>llningar
cancel common sv Avbryt
cancel filemanager sv Avbryt
cannot display the requested article from this newsgroup nntp sv Kan inte visa den efterfr<66>gade artikeln fr<66>n denna nyhetsgruppen
cc email sv CC
change common sv <09>ndra
change main screen message admin sv <09>ndra huvudsk<73>rms meddelande
change your password preferences sv <09>ndra ditt l<>senord
change your profile preferences sv <09>ndra din profil
change your settings preferences sv <09>ndra dina inst<73>llningar
charset common sv iso-8859-1
chat common sv Chat
city addressbook sv Stad
city common sv Stad
clear common sv Rensa
clear form common sv Rensa formul<75>r
clear form todo sv Rensa formul<75>r
clipboard_contents filemanager sv Urklipps Inneh<65>ll
company common sv F<>retag
company name addressbook sv F<>retags namn
completed todo sv f<>rdig
compose email sv Skriva
copy common sv Kopiera
copy filemanager sv Kopiera
copy_as filemanager sv Kopiera som
create common sv Skapa
create filemanager sv Skapa
create group admin sv Skapa Grupp
create lang.sql file transy sv Skapa lang.sql fil
create new language set transy sv Skapa ny spr<70>kupps<70>ttning
created by common sv Skapat av
created by todo sv Skapat av
current users common sv Nuvarande anv<6E>ndare
current_file filemanager sv Nuvarande File
daily calendar sv Daglig
daily matrix view calendar sv Daglig matris vy
date common sv Datum
date email sv Datum
date nntp sv Datum
date due todo sv F<>rdig till
date format preferences sv Datum format
days datedue todo sv dagar till slutdatum
days repeated calendar sv dagar repeterade
december common sv December
default application preferences sv Standard application
default sorting order email sv Normal sorterings ordning
default sorting order preferences sv Standard sorterings ordning
delete common sv Ta bort
delete email sv Ta bort
delete filemanager sv Ta bort
description calendar sv Beskrivning
disabled admin sv Deaktivera
display admin sv Visa
display missing phrases in lang set transy sv Visa saknade fraser i en spr<70>kupps<70>ttning
do_delete filemanager sv Radera nu
done common sv F<>rdig
download filemanager sv Ladda ner
duration calendar sv Varaktighet
e-mail addressbook sv E-Post
e-mail common sv E-Post
e-mail preferences common sv E-Post int<6E>llningar
edit common sv Editera
edit filemanager sv Editera
edit application admin sv Editera applikation
edit group admin sv Editera Grupp
email common sv E-Post
email email sv E-Post
email account name email sv EPost Konto namn
email address email sv EPost Adress
email password email sv EPost L<>senord
email signature email sv E-Post signatur
email signature preferences sv E-Post signatur
enabled admin sv Aktiv
enabled - hidden from navbar admin sv Aktiv - G<>md p<> navbar
end date/time calendar sv Slut Datum/tid
enter your new password preferences sv Skriv in ditt nya l<>senord
entry has been deleted sucessfully common sv Entry har blivit borttaget
entry updated sucessfully common sv Entry <20>r uppdaterad
err_saving_file filemanager sv Fel vid lagring av fil till disk
error common sv Fel
error creating x x directory common sv Fel vid skapande %1%2 bibliotek
error deleting x x directory common sv Fel vid borttagning %1%2 bibliotek
error renaming x x directory common sv Fel vid namnbyte %1%2 bibliotek
exit common sv Avsluta
exit filemanager sv Avbryt
fax addressbook sv Telefax
fax common sv Fax nummer
february common sv Februari
file manager common sv Fil manager
file_upload filemanager sv File Upload
files email sv Filer
files filemanager sv Filer
filter common sv Filter
first name addressbook sv F<>rnamn
first name common sv F<>rnamn
first page common sv f<>rsta sidan
folder email sv Mapp
forum common sv Forum
forward email sv Vidarebefodra
fr calendar sv Fr
free/busy calendar sv Ledig/Upptagen
frequency calendar sv Hur ofta
fri calendar sv Fre
friday common sv Fredag
from email sv Fr<46>n
ftp common sv FTP
full description calendar sv Full beskrivning
generate new lang.sql file transy sv Generera ny lang.sql fil
generate printer-friendly version calendar sv G<>r en printer-v<>nlig verision
global public common sv Global Public
global public and group public calendar sv Globalt publikt och Grupp publikt
global public only calendar sv Endast Globalt publikt
go! calendar sv Go!
group access common sv Grupp Access
group has been added common sv Grupp har lagts till
group has been deleted common sv Grupp har tagits bort
group has been updated common sv Grupp har uppdaterats
group name admin sv Grupp Namn
group public common sv Grupp Public
group public only calendar sv Endast grupp publikt
group_files filemanager sv grupp filer
groups common sv Grupper
groupsfile_perm_error filemanager sv F<>r att r<>tta till detta felet m<>ste du <20>ndra r<>ttigheterna p<> filer/group directory.<BR> P<> *nix system normalt skriv: chmod 770
headline sites admin sv Headline Sites
headlines common sv Headlines
help common sv Hj<48>lp
high common sv H<>g
home common sv Hem
home phone addressbook sv Hemtelefon
home phone common sv Hemma telefon
human resources common sv M<>nskliga resurser
i participate calendar sv Jag deltar
idle admin sv idle
if applicable email sv Om Till<6C>mpligt
ignore conflict calendar sv Ignorera konflikt
image email sv Bild
imap server type email sv IMAP Server typ
import file addressbook sv Importera Fil
import from outlook addressbook sv Importera fr<66>n OutLook
import lang set transy sv Importera spr<70>kupps<70>ttning
installed applications admin sv Installerade applicationer
inventory common sv Inventarium
ip admin sv IP
it has been more then x days since you changed your password common sv Det er mer <20>n %1 dagar sedan du <20>ndrade ditt l<>senord
january common sv Januari
july common sv Juli
june common sv Juni
kill admin sv Avsluta
language preferences sv Spr<70>k
last name addressbook sv Efternamn
last name common sv Efternamn
last page common sv sista sidan
last time read admin sv L<>st sista g<>ng
last updated todo sv Sist uppdaterat
last x logins admin sv Sista %1 logins
line 2 addressbook sv Linje 2
line 2 common sv Andra raden
list of current users admin sv lista <20>ver nuvarande anv<6E>ndare
listings displayed admin sv Visade lister
login common sv Login
login time admin sv Login Tid
loginid admin sv LoginID
logout common sv Logout
low common sv L<>g
mail server email sv Mail Server
mail server type email sv Mail Server typ
manager admin sv Manager
march common sv Mars
max matchs per page preferences sv Max tr<74>ffar per sida
may common sv Maj
medium common sv Medium
message email sv Meddelande
message transy sv Meddelande
message x nntp sv Meddelande %1
messages email sv Meddelanden
minutes calendar sv minuter
minutes between reloads admin sv Minuter mellan uppdatering
mo calendar sv M<>
mobile addressbook sv Mobil
mobile phone common sv Mobil nummer
mon calendar sv M<>n
monday common sv M<>ndag
monitor email sv Kontrollera
monitor nntp sv Kontrollera
month calendar sv M<>nad
monthly calendar sv M<>nadsvis
monthly (by date) calendar sv M<>natligt (efter datum)
monthly (by day) calendar sv M<>natligt (efter dag)
move selected messages into email sv Flytta valda meddelande till
name common sv Namn
network news admin sv Network News
new entry calendar sv Ny Post
new entry added sucessfully common sv Ny entry har lagts till
new group name admin sv Nytt grupp namn
new message email sv Nytt meddelande
new password [ leave blank for no change admin sv Nytt l<>senord [ L<>t f<>ltet vara tomt f<>r att inte <20>ndra ]
new password [ leave blank for no change ] admin sv Nytt l<>senord [ L<>t f<>ltet vara tomt f<>r att inte <20>ndra ]
new phrase has been added common sv Ny fras har lagts till
new phrase has been added transy sv Ny fras har lagts till
new_file filemanager sv Ny Fil
news file admin sv Nyhets Fil
news headlines common sv Nyhets headlines
news reader common sv Nyhets L<>sare
news type admin sv Nyhets Typ
newsgroups nntp sv Nyhetsgrupper
next email sv N<>sta
next nntp sv N<>sta
next page common sv n<>sta sida
nntp common sv NNTP
no common sv Nej
no filemanager sv Nej
no matches found. calendar sv Ingen tr<74>ff hittad.
no subject email sv Inget Subjekt
no_file_name filemanager sv Inget filnamn blev specifierat
non-standard email sv inte standard
none common sv Ingen
normal common sv Normal
note: this feature does *not* change your email password. this will need to be done manually. preferences sv Note: Denna funktionen <20>ndrar *inte* ditt epost l<>senord. Detta m<>ste g<>ras manuellt.
notes addressbook sv Annat
november common sv November
october common sv Oktober
ok common sv OK
on *nix systems please type: x common sv Skriv %1 p<> *nix system
only yours common sv endast dina
original transy sv Orginal
other number addressbook sv Annat Nummer
other phone common sv Annat nummer
pager addressbook sv Persons<6E>kare
pager common sv Persons<6E>kare
participants calendar sv Deltagare
password common sv L<>senord
password has been updated common sv L<>senord har blivit uppdaterat
percent of users that logged out admin sv Procent av anv<6E>ndare som loggat ut
permissions admin sv R<>ttigheter
permissions this group has admin sv Till<6C>tna applicationer f<>r denna gruppen
permissions to the files/users directory common sv r<>ttigheter p<> files/users bibliotek
phrase in english transy sv Fras p<> Engelska
phrase in new language transy sv Fras p<> det nya spr<70>ket
please select a message first email sv V<>nligen v<>lj ett meddelande f<>rst
please x by hand common sv Var v<>nlig %1 f<>r hand
please, select a new theme preferences sv V<>nligen v<>lj ett nytt tema
powered by phpgroupware version x common sv Powered by <a href=http://www.phpgroupware.org>phpGroupWare</a> version %1
preferences common sv Inst<73>llningar
previous email sv F<>reg<65>ende
previous page common sv F<>reg<65>ende sida
print common sv Skriv ut
printer friendly calendar sv Printer V<>nlig
priority common sv Prioritet
private common sv Privat
private and global public calendar sv Privat och globalt publikt
private and group public calendar sv Privat och Grupp publikt
private only calendar sv Endast privat
private_files filemanager sv Privata filer
project description todo sv Projekt beskrivning
re-edit event calendar sv <09>ndra h<>ndelse
re-enter password admin sv Skriv in l<>senord igen
re-enter your password preferences sv Skriv in ditt l<>senord igen
record access addressbook sv Uppgifts <20>tkomst
record owner addressbook sv Uppgifts <20>gare
remove all users from this group admin sv Ta bort alla anv<6E>ndare fr<66>n denna grupp
rename common sv <09>ndra namn
rename filemanager sv D<>p om
rename_to filemanager sv D<>p om till
repeat day calendar sv Repetera dag
repeat end date calendar sv Repetera slutdatum
repeat type calendar sv Repetera type
repeating event information calendar sv Repetera h<>ndelse information
repetition calendar sv Repetition
reply email sv Svara
reply all email sv Svara alla
sa calendar sv L<>
sat calendar sv L<>r
saturday common sv L<>rdag
save common sv Spara
save filemanager sv Spara
search common sv S<>k
search results calendar sv S<>k resultat
section email sv Sektion
select addressbook columns to display addressbook sv V<>lj kolumner som skall visas i adressboken
select application transy sv V<>lj applikation
select columns to display preferences sv V<>lj vilka kolumner som skall visas
select different theme preferences sv V<>lj annat tema
select headline news sites preferences sv V<>lj Headline News sites
select language to generate for transy sv V<>lj spr<70>k att generera f<>r
select permissions this group will have admin sv V<>lj r<>ttigheter f<>r denna grupp
select users for inclusion admin sv V<>lj gruppmedlemmar
select which application for this phrase transy sv V<>lj applikation f<>r denna fras
select which language for this phrase transy sv V<>lj vilket spr<70>k f<>r denna fras
send email sv S<>nd
send deleted messages to the trash email sv S<>nd borttagna meddelande till papperkorgen
september common sv September
session has been killed common sv Session har blivit avslutad
show all common sv visa alla
show all groups nntp sv Visa alla grupper
show birthday reminders on main screen addressbook sv Visa f<>delsedags notis p<> huvudsk<73>rm
show birthday reminders on main screen preferences sv Visa f<>delsedags p<>minnelse p<> huvudsk<73>rmen
show current users on navigation bar preferences sv Visa nuvarande anv<6E>ndare i navigation bar
show groups containing nntp sv Visa grupper som inneh<65>ller
show high priority events on main screen calendar sv Visa h<>gprioritets h<>ndelser p<> huvudsk<73>rmen
show high priority events on main screen preferences sv Visa h<>gprioritets h<>ndelse p<> huvudsk<73>rmen
show new messages on main screen email sv Visa nya meddelande p<> huvud sk<73>rmen
show new messages on main screen preferences sv Visa nya meddelande p<> huvudsk<73>rmen
show text on navigation icons preferences sv Visa text p<> navigations ikoner
showing x common sv visar %1
showing x - x of x common sv visar %1 - %2 av %3
site admin sv Site
size email sv Storlek
sorry, that group name has already been taking. admin sv Urs<72>kta, men gruppnamnet <20>r upptaget
sorry, the follow users are still a member of the group x admin sv Urs<72>kta men f<>ljande anv<6E>ndare <20>r medlem av grupp %1
sorry, there was a problem processing your request. common sv Beklagar, det var problem att utf<74>ra din <20>nskan.
sorry, your login has expired login sv Beklagar, din login har utg<74>tt
source language transy sv K<>ll spr<70>k
specify_file_name filemanager sv Du m<>ste specifiera ett namn p<> filen du vill spara
start date/time calendar sv Start Datum/Tid
state addressbook sv Stat
state common sv Stat
status admin sv Status
status todo sv Status
street addressbook sv Gata
street common sv Gata
su calendar sv S<>
subject email sv Subjekt
subject nntp sv Subjekt
submit common sv Utf<74>r
submit changes admin sv Verkst<73>ll <20>ndring
sun calendar sv S<>n
sunday common sv S<>ndag
switch current folder to email sv Skifta nuvarande mapp till
target language transy sv M<>l spr<70>k
th calendar sv To
that loginid has already been taken admin sv Den loginID <20>r upptagen
that site has already been entered admin sv Den siten har redan blivit inlaggd
the following conflicts with the suggested time:<ul>x</ul> calendar sv F<>ljande kommer i konflikt med den f<>reslagna tiden:<ul>%1</ul>
the login and password can not be the same admin sv Login och l<>senord kan inte vara lika
the two passwords are not the same admin sv L<>senorden <20>r inte identiska
they must be removed before you can continue admin sv De m<>ste tas bort innan du kan forts<74>tta
this folder is empty email sv Denna map <20>r tom
this month calendar sv Denna m<>naden
this server is located in the x timezone preferences sv Denna server <20>r placerad i %1 tidszone
this week calendar sv Denna veckan
threads nntp sv Threads
thu calendar sv Tor
thursday common sv Torsdag
time common sv Tid
time format preferences sv Tids format
time zone offset preferences sv Tids-Zone offset
title addressbook sv Titel
title admin sv Titel
to email sv Till
to correct this error for the future you will need to properly set the common sv F<>r att framgent r<>tta till detta problem m<>ste du riktigt s<>tta
today calendar sv I dag
today is x's birthday! common sv I dag har %1 f<>delsedag!
todo todo sv Att g<>ra
todo list common sv Att g<>ra lista
todo list todo sv Att g<>ra lista
todo list - add todo sv Att g<>ra lista - l<>gg till
todo list - edit todo sv Att g<>ra lista - edit
tomorrow is x's birthday. common sv I morgon <20>r det %1's f<>delsedag.
total common sv Total
total records admin sv Fullst<73>ndig f<>rteckning
translation transy sv <09>vers<72>ttning
translation management common sv <09>vers<72>ttnings hanteraren
trouble ticket system common sv Trouble Ticket System
tu calendar sv Ti
tue calendar sv Tis
tuesday common sv Tisdag
undisclosed recipients email sv Ok<4F>nd mottagare
undisclosed sender email sv Ok<4F>nd S<>ndare
update nntp sv Uppdatera
updated common sv Uppdaterat
upload filemanager sv Upload
urgency todo sv Prioritet
url addressbook sv URL
use cookies login sv Anv<6E>nd cookies
use custom settings email sv Anv<6E>nd egna inst<73>llningar
use end date calendar sv Anv<6E>nd slutdatum
user accounts admin sv Anv<6E>ndar konton
user groups admin sv Anv<6E>ndar Grupper
username login sv Anv<6E>ndarnamn
users common sv anv<6E>ndare
usersfile_perm_error filemanager sv F<>r att r<>tta till detta felet m<>ste du <20>ndra r<>ttigheterna p<> filer/users directory.<BR> P<> *nix system normalt skriv: chmod 770
vcard common sv VKort
view common sv Visa
view access log admin sv Visa Access Log
view sessions admin sv Visa sessions
view this entry calendar sv Visa denna post
view/edit/delete all phrases transy sv Visa/editera/radera alla fraser
we calendar sv On
wed calendar sv Ons
wednesday common sv Onsdag
week calendar sv Vecka
weekday starts on calendar sv F<>rsta veckodag <20>r
weekday starts on preferences sv Vecka b<>rjar p<>
weekly calendar sv Veckovis
which groups common sv vilken grupp
which groups todo sv Vilken grupp
work day ends on calendar sv Arbetsdagen slutar
work day ends on preferences sv Arbetsdag slutar kl:
work day starts on calendar sv Arbetsdagen b<>rjar
work day starts on preferences sv Arbetsdag b<>rjar kl:
work phone addressbook sv Arbetstelefon
work phone common sv Arbets telefon
x matches found calendar sv %1 tr<74>ffar hittade
x messages have been deleted email sv %1 meddelande har raderats
year calendar sv <09>r
yearly calendar sv <09>rligen
yes common sv Ja
yes filemanager sv Ja
you are required to change your password during your first login common sv Du m<>ste byta l<>senord vid din f<>rsta inloggning
you have 1 high priority event on your calendar today. common sv Du har 1 h<>gprioritets h<>ndelse i din kalender i dag.
you have 1 new message! common sv Du har 1 nytt meddelande!
you have been successfully logged out login sv Du har nu loggat ut
you have entered an invailed date todo sv du har skrivit in ett ogiltigt datum
you have not entered a\\\\\\\\nbrief description calendar sv Du har inte skrivit in ennkort beskrivning
you have not entered a\\\\\\\\nvalid time of day. calendar sv Du har inte skrivit in enngiltig tid.
you have not entered a\\\\nbrief description calendar sv Du har inte gett\\\\nn<6E>gon beskrivning
you have not entered a\\\\nvalid time of day. calendar sv Du har inte angett\\\\nn<6E>gon giltig tid p<> dagen.
you have not entered a\\nbrief description calendar sv Du har inte skrivit\\\\nen beskrivning.
you have not entered a\\nvalid time of day. calendar sv Du har inte angivit\\\\nen giltig tid.
you have x high priority events on your calendar today. common sv Du har %1 h<>gprioritets h<>ndelse i din kalender i dag.
you have x new messages! common sv Du har %1 nya meddelanden!
you must add at least 1 permission to this account admin sv Du m<>ste ge minst 1 r<>ttighet till detta konto
you must enter a base url admin sv Du m<>ste skriva in en bas url
you must enter a display admin sv Du m<>ste skriva in en display
you must enter a news url admin sv Du m<>ste skriva in en nyhets url
you must enter a password admin sv Du m<>ste skriva in ett l<>senord
you must enter an application name and title. admin sv Du m<>ste skriva in namn och titel f<>r applikation
you must enter one or more search keywords calendar sv Du m<>ste skriva in ett eller flera s<>kord
you must enter the number of listings display admin sv Du m<>ste skriva in antalet rader att visa
you must enter the number of minutes between reload admin sv Du m<>ste skriva in antalet minuter mellan uppdatering
you must select a file type admin sv Du m<>ste v<>lja en filtype
you must select at least 1 column to display addressbook sv Du m<>ste v<>lja minst 1 kolumn att visa
your current theme is: x preferences sv Ditt nuvarande tema <20>r: %1
your message has been sent common sv Ditt meddelande har blivit s<>nt
your search returned 1 match common sv din s<>kning gav 1 tr<74>ff
your search returned x matchs common sv din s<>kning gav %1 tr<74>ffar
your settings have been updated common sv Dina innst<73>llningar har blivit uppdaterade
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: calendar sv Din f<>reslagna tid av <B> %1 - %2 </B> <20>r i konflikt med de f<>ljande kalender entries:
zip code addressbook sv Postnummer
zip code common sv Postnummer

View File

@ -1,772 +0,0 @@
common zt <09>w<EFBFBD><77><EFBFBD><EFBFBD><EFBFBD>{
(for weekly) common zt (<28>C<EFBFBD>g<EFBFBD><67>)
1 match found common zt <20><><EFBFBD><EFBFBD><EFBFBD>@<40>ӲŦX<C5A6><58><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
1 message has been deleted common zt <20>T<EFBFBD><54><EFBFBD>w<EFBFBD>Q<EFBFBD>R<EFBFBD><52>
a common zt <09>@<40><>
accept common zt <20><><EFBFBD><EFBFBD>
accepted common zt <20><><EFBFBD><EFBFBD>
access common zt <20>п<EFBFBD><D0BF><EFBFBD>Ū<EFBFBD><C5AA><EFBFBD>s<EFBFBD><73>
access not permitted common zt <09><><EFBFBD>g<EFBFBD>P<EFBFBD>N<EFBFBD><4E><EFBFBD><6F><C5AA>
access type common zt <20>s<EFBFBD><73><EFBFBD>κA
account active common zt <20>b<EFBFBD><62><EFBFBD><EFBFBD><EFBFBD>A (<28><><EFBFBD><EFBFBD>/<2F>L<EFBFBD><4C>)
account has been created common zt <09>s<EFBFBD>W<EFBFBD>b<EFBFBD><62>
account has been deleted common zt <09>R<EFBFBD><52><EFBFBD>b<EFBFBD><62>
account has been updated common zt <09>ק<EFBFBD><D7A7>b<EFBFBD><62>
account permissions common zt <09>P<EFBFBD>N<EFBFBD>b<EFBFBD><62><EFBFBD>s<EFBFBD><73>
account preferences common zt <09>b<EFBFBD><62><EFBFBD>]<5D>w
acl common zt <09>ؿ<EFBFBD>
action common zt <09><><EFBFBD>b<EFBFBD>ϥΪ<CFA5><CEAA><EFBFBD><EFBFBD>ε{<7B><>
active common zt <09><><EFBFBD>A
add common zt <09>s<EFBFBD>W
add a note for common zt <09>s<EFBFBD>W<EFBFBD>O<EFBFBD>ƨ<EFBFBD>
add a note for x common zt <09>s<EFBFBD>W<EFBFBD>O<EFBFBD>ƨ<EFBFBD>%1
add a single phrase common zt <09>b<EFBFBD><62><EFBFBD>Ʈw<C6AE>s<EFBFBD>W<EFBFBD><57><EFBFBD><EFBFBD>
add category common zt <09>s<EFBFBD>W<EFBFBD>ؿ<EFBFBD>
add global category common zt <09>s<EFBFBD>W<EFBFBD>s<EFBFBD>եؿ<D5A5>
add new account common zt <09>s<EFBFBD>W<EFBFBD>b<EFBFBD><62>
add new application common zt <09>s<EFBFBD>W<EFBFBD><57><EFBFBD>ε{<7B><>
add new phrase common zt <09>s<EFBFBD>W<EFBFBD>r<EFBFBD><72>
add new ticket common zt <09>s<EFBFBD>W<EFBFBD>
add note common zt <09>s<EFBFBD>W<EFBFBD>O<EFBFBD><4F>
add ok common zt <09>s<EFBFBD>W<EFBFBD><57><EFBFBD><EFBFBD>
add sub common zt <09>s<EFBFBD>W<EFBFBD>l<EFBFBD><6C><EFBFBD><EFBFBD>
add ticket common zt <09>s<EFBFBD>W<EFBFBD>
add to addressbook common zt <09>s<EFBFBD>W<EFBFBD>ܳq<DCB3>T<EFBFBD><54>
add x category for common zt <09>s<EFBFBD>W<EFBFBD>@<40>Ӹ<EFBFBD><D3B8>Ƨ<EFBFBD><C6A7><EFBFBD>%1
additional common zt <09><><EFBFBD><EFBFBD>
address common zt <09>s<EFBFBD><73><EFBFBD>a<EFBFBD>}
address book common zt <09>q<EFBFBD>T<EFBFBD><54>
address book - view common zt <09>s<EFBFBD><73><EFBFBD>q<EFBFBD>T<EFBFBD><54>
address line 2 common zt <09>a<EFBFBD>}2
address line 3 common zt <09>a<EFBFBD>}3
address type common zt <09>a<EFBFBD>}<7D><><EFBFBD><EFBFBD><EFBFBD>A
addressbook common zt <09>q<EFBFBD>T<EFBFBD><54>
addressbook preferences common zt <09>q<EFBFBD>T<EFBFBD><54><EFBFBD>]<5D>w
addressbook_group common zt <09>q<EFBFBD>
addresses common zt <09>q<EFBFBD>T<EFBFBD><54>
address_book common zt <09>q<EFBFBD>
addsub common zt <09>s<EFBFBD>W<EFBFBD>l<EFBFBD><6C>
admin common zt <09><><EFBFBD><EFBFBD><EFBFBD>x
administration common zt <09>޲z<DEB2><7A>
adres common zt <09>q<EFBFBD>T<EFBFBD><54>
common common zt <09>Ҧ<EFBFBD>
common day common zt <09><><EFBFBD><EFBFBD>
common records and account information will be lost! common zt <09>Ҧ<EFBFBD><D2A6><EFBFBD><EFBFBD>b<EFBFBD><62><EFBFBD>M<EFBFBD>O<EFBFBD><4F><EFBFBD>N<EFBFBD>M<EFBFBD><4D><EFBFBD>I
commonow anonymous access to this app common zt <09>P<EFBFBD>NGuessŪ<73><C5AA><EFBFBD>o<EFBFBD><6F><EFBFBD><EFBFBD><EFBFBD>ε{<7B><>
common_group common zt <09>Ҧ<EFBFBD><D2A6>s<EFBFBD><73>
amount common zt <09>ƶq
anonymous user common zt <09>ΦW<CEA6>ϥΪ<CFA5>
any common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
application common zt <09><><EFBFBD>ε{<7B><>
application name common zt <09><><EFBFBD>ε{<7B><><EFBFBD>W<EFBFBD><57>
application title common zt <09><><EFBFBD>ε{<7B><><EFBFBD><EFBFBD><EFBFBD>D
applications common zt <09><><EFBFBD>ε{<7B><>
april common zt <09>|<7C><>
are you sure you want to delete this account ? common zt <09>A<EFBFBD>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD>ӱb<D3B1><62><EFBFBD>ܡH
are you sure you want to delete this application ? common zt <09>A<EFBFBD>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD><6F><EFBFBD><EFBFBD><EFBFBD>ε{<7B><><EFBFBD>ܡH
are you sure you want to delete this category ? common zt <09>z<EFBFBD>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD><EFBFBD>?
are you sure you want to delete this entry common zt <09>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD>@<40><><EFBFBD><EFBFBD><EFBFBD>ơH
are you sure you want to delete this entry ? common zt <09>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD>@<40><><EFBFBD><EFBFBD><EFBFBD>ơH
are you sure you want to delete this group ? common zt <09>A<EFBFBD>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD>Ӹs<D3B8>նܡH
are you sure you want to delete this news site ? common zt <09>A<EFBFBD>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD>ӷs<D3B7>D<EFBFBD><44><EFBFBD>D<EFBFBD>ܡH
are you sure you want to delete this note ? common zt <09>z<EFBFBD>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>ӵ<EFBFBD><D3B5><EFBFBD><EFBFBD>ƶ<EFBFBD>?
are you sure you want to kill this session ? common zt <20>A<EFBFBD>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD>ӽu<D3BD>W<EFBFBD>ϥΪ̶ܡH
are you sure\nyou want to\ndelete this entry ? common zt <09>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD><6F><EFBFBD><EFBFBD><EFBFBD>ơH
are you sure\nyou want to\ndelete this entry ?\n\nthis will delete\nthis entry for common users. common zt <09>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD><6F><EFBFBD><EFBFBD><EFBFBD>ơH<C6A1>o<EFBFBD>˷|<7C>ϩҦ<CFA9><D2A6>ϥΪ̳<CEAA><CCB3>ݤ<EFBFBD><DDA4><EFBFBD><EFBFBD>I
assign to common zt <09><><EFBFBD>t
attach: common zt <09><><EFBFBD><EFBFBD>:
august common zt <09>K<EFBFBD><4B>
author common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD>
autosave default category common zt <09>۰<EFBFBD><DBB0>x<EFBFBD>s<EFBFBD><73><EFBFBD>w<EFBFBD>]<5D><><EFBFBD><EFBFBD><EFBFBD>Ƨ<EFBFBD>
available groups common zt <09>s<EFBFBD>եi<D5A5>ϥ<EFBFBD>
back common zt <09>W<EFBFBD>@<40><>
back to projectlist common zt <09>^<5E><><EFBFBD>u<EFBFBD>@<40>i<EFBFBD><69>
bad login or password common zt <09>K<EFBFBD>X<EFBFBD>αb<CEB1><62><EFBFBD><EFBFBD><EFBFBD>~
base url common zt <09><><EFBFBD>}
bcc: common zt <09>K<EFBFBD><4B><EFBFBD>ƥ<EFBFBD>:
birthday common zt <09>ͤ<EFBFBD>
black common zt <09>º<EFBFBD><C2BA>F
blue common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
book marks common zt <09>q<EFBFBD>l<EFBFBD><6C><EFBFBD><EFBFBD>
bookkeeping common zt <09>O<EFBFBD>ƥ<EFBFBD>
bookmarks common zt <09>q<EFBFBD>l<EFBFBD><6C><EFBFBD><EFBFBD>
brief description common zt <09>ݿ<EFBFBD><DDBF>ƶ<EFBFBD>
brown common zt <09>ɴĦ<C9B4>
business common zt <09><><EFBFBD>q
business city common zt <09><><EFBFBD>W
business country common zt <09>u<EFBFBD>@<40><><EFBFBD><EFBFBD><EFBFBD>a
business email common zt Email
business fax common zt FAX
business phone common zt <09><><EFBFBD>q<EFBFBD>q<EFBFBD><71>
business state common zt <09>m/<2F><>/<2F><>/<2F><>
business street common zt <09><EFBFBD>Ǧa<C7A6>}
business zip code common zt <09><><EFBFBD><EFBFBD>
calendar common zt <09><><EFBFBD>ƾ<EFBFBD>
calendar - add common zt <09>s<EFBFBD>W
calendar - edit common zt <09>s<EFBFBD><73>
calendar preferences common zt <09><><EFBFBD>ƾ<EFBFBD><C6BE>]<5D>w
cancel common zt <09><><EFBFBD><EFBFBD>
cannot display the requested article from the requested newsgroup common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܩҭn<D2AD>D<EFBFBD><44><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
categories common zt <09><><EFBFBD>Ƨ<EFBFBD>
categories for common zt <09><><EFBFBD>Ƨ<EFBFBD>
category common zt <09><><EFBFBD>ܨϥΪ<CFA5><CEAA><EFBFBD><EFBFBD>Ƨ<EFBFBD>
category description common zt <09><><EFBFBD>Ƨ<EFBFBD><C6A7><EFBFBD><EFBFBD>y<EFBFBD>z
category name common zt <09><><EFBFBD>Ƨ<EFBFBD><C6A7>W<EFBFBD><57>
category x has been added ! common zt <09>s<EFBFBD>W%1<><31><EFBFBD>Ƨ<EFBFBD>
category x has been updated ! common zt <09><><EFBFBD>s%1<><31><EFBFBD>Ƨ<EFBFBD>
cc common zt <09>ƥ<EFBFBD>
cc: common zt <09><><EFBFBD><EFBFBD>:
cell phone common zt <09><><EFBFBD>ʹq<CAB9><71>
center common zt <09><><EFBFBD><EFBFBD>
change common zt <09>T<EFBFBD>w
change main screen message common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>T<EFBFBD><54>
change your password common zt <09><><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>X
change your profile common zt <09><><EFBFBD><EFBFBD>profile
change your settings common zt <09><><EFBFBD><EFBFBD><EFBFBD>]<5D>w
charset common zt <09>r<EFBFBD><72><EFBFBD>]<5D>w
chat common zt <09><><EFBFBD>ѫ<EFBFBD>
check lang common zt zt
checklang common zt zt
chinese manual common zt <09>ϥΤ<CFA5><CEA4>U
choice common zt <09><><EFBFBD><EFBFBD>
choose a category common zt <09><><EFBFBD>ܸ<EFBFBD><DCB8>Ƨ<EFBFBD>
choose a font common zt <09><><EFBFBD>ܦr<DCA6><72>
choose the category common zt <09><><EFBFBD>ܸ<EFBFBD><DCB8>Ƨ<EFBFBD>
choose the font size common zt <09><><EFBFBD>ܦr<DCA6><72><EFBFBD>j<EFBFBD>p
city common zt <09><><EFBFBD><EFBFBD>
classifieds addressbook common zt <09>q<EFBFBD>T<EFBFBD>s<EFBFBD><73>
clear common zt <09>M<EFBFBD><4D>
clear form common zt <09>M<EFBFBD><4D><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
click here to return to inbox common zt <09>^<5E>W<EFBFBD>@<40><>
clipboard_contents common zt <09><><EFBFBD>[<5B><><EFBFBD><EFBFBD>
company common zt <09><><EFBFBD>q
company name common zt <09><><EFBFBD>q<EFBFBD>W<EFBFBD><57>
completed common zt <09><><EFBFBD><EFBFBD><EFBFBD>i<EFBFBD><69>
compose common zt <09>s<EFBFBD>W<EFBFBD>q<EFBFBD>l<EFBFBD>l<EFBFBD><6C>
contact common zt <09><>IJ
copy common zt <09>ƻs
copy_as common zt <09>ƻs<C6BB><73>
correct common zt <09>ק<EFBFBD>
country common zt <09><><EFBFBD>a
courier new common zt Courier New
create common zt <09>إ߮ɶ<DFAE>
create group common zt <09>T<EFBFBD>w
create lang.sql file common zt <09>ץX<D7A5>y<EFBFBD>t<EFBFBD>ɮ<EFBFBD>
create new language set common zt <09>s<EFBFBD>y<EFBFBD><79><EFBFBD><EFBFBD><EFBFBD>]<5D>w
created by common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD>
currency common zt <09>ثe<D8AB><65><EFBFBD>b<EFBFBD>ϥ<EFBFBD>
current folder common zt <09><><EFBFBD>b<EFBFBD>ϥΪ<CFA5><CEAA><EFBFBD><EFBFBD>Ƨ<EFBFBD>
current users common zt <09>u<EFBFBD>W<EFBFBD>ϥΪ<CFA5>
current_file common zt <09>ϥθ<CFA5><CEB8>Ƨ<EFBFBD>
custom common zt <09>Ȥ<EFBFBD>
custom email settings common zt <09>Ȥ᪺Email<69>]<5D>w
custom fields common zt <09>s<EFBFBD>W<EFBFBD><57><EFBFBD><EFBFBD>
daily common zt <09>C<EFBFBD>
daily matrix view common zt <09>w<EFBFBD><77><EFBFBD>C<EFBFBD><43>
darkblue common zt <09>~<7E>{<7B><>
darkgreen common zt <09>C<EFBFBD><43><EFBFBD><EFBFBD>
date common zt <09><><EFBFBD><EFBFBD>
date due common zt <09>I<EFBFBD><49><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
date format common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܤ覡
days datedue common zt <09>I<EFBFBD><49><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
days repeated common zt <09><><EFBFBD>ƤѼ<C6A4>
dd common zt <09><>
december common zt <09>Q<EFBFBD>G<EFBFBD><47>
default common zt <09>w<EFBFBD>]
default application common zt <09>w<EFBFBD>]<5D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ε{<7B><>
default calendar filter common zt <09>w<EFBFBD>]<5D>ϥΪ<CFA5><CEAA><EFBFBD><EFBFBD>Ƨ<EFBFBD>
default calendar view common zt <09>w<EFBFBD>]<5D>w<EFBFBD><77><EFBFBD><EFBFBD><EFBFBD>ƾ<EFBFBD>
default sorting order common zt <09>w<EFBFBD>]<5D><>
delete common zt <09>R<EFBFBD><52>
delete addressbook? common zt <09>R<EFBFBD><52>
delete ok! common zt <09>R<EFBFBD><52><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
department common zt <09><><EFBFBD><EFBFBD>
description common zt <09>y<EFBFBD>z
detail common zt <09>Բ<EFBFBD>
disabled common zt <09><><EFBFBD><EFBFBD>
display common zt <09>C<EFBFBD>X
display missing phrases in lang set common zt <09><><EFBFBD>ܧR<DCA7><52><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
display note for common zt <09><><EFBFBD>ܰO<DCB0>ƨ<EFBFBD>
display preferences common zt <09><><EFBFBD>ܳ]<5D>w
display status of events common zt <09><><EFBFBD>ܨƥ󪬺A
displaying subprojects of following project common zt <09>u<EFBFBD>@<40>i<EFBFBD><69>
do you want delete this group? common zt <09>z<EFBFBD>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD><6F><EFBFBD><EFBFBD><EFBFBD>ơH
domestic common zt <09><><EFBFBD><EFBFBD>
done common zt <09><><EFBFBD><EFBFBD>
download common zt <09>U<EFBFBD><55>
download output as a lang file common zt <09>ץX<D7A5>ɮ<EFBFBD>
do_delete common zt <09>R<EFBFBD><52>
duration common zt <09><><EFBFBD><EFBFBD>
e-mail common zt <09>q<EFBFBD>l<EFBFBD>l<EFBFBD><6C>
e-mail preferences common zt <09>q<EFBFBD>l<EFBFBD>l<EFBFBD><6C><EFBFBD>]<5D>w
edit common zt <09>s<EFBFBD><73>
edit application common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD>ε{<7B><>
edit categories common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD>Ƨ<EFBFBD>
edit custom fields common zt <09>s<EFBFBD>W<EFBFBD><57><EFBFBD><EFBFBD>
edit global category common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD>ժ<EFBFBD><D5AA><EFBFBD><EFBFBD>Ƨ<EFBFBD>
edit group common zt <09>s<EFBFBD><73><EFBFBD>s<EFBFBD><73>
edit login screen message common zt <09>s<EFBFBD><73><EFBFBD>n<EFBFBD><6E><EFBFBD>D<EFBFBD>e<EFBFBD><65><EFBFBD><EFBFBD><EFBFBD>T<EFBFBD><54>
edit main screen message common zt <09>s<EFBFBD><EFBFBD><E8ADBA><EFBFBD>T<EFBFBD><54>
edit note for common zt <09>s<EFBFBD><73><EFBFBD>O<EFBFBD>ƨ<EFBFBD>
edit ok common zt <09>ק粒<D7A7><EFA7B9>
edit user account common zt <09>s<EFBFBD><73><EFBFBD>ϥΪ̱b<CCB1><62>
edit x category for common zt <09>s<EFBFBD><73>%1<><31><EFBFBD>Ƨ<EFBFBD><C6A7><EFBFBD>
editer common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD>
email common zt <09>q<EFBFBD>l<EFBFBD>l<EFBFBD><6C>
email account name common zt <09>b<EFBFBD><62>
email address common zt Email<69><6C><EFBFBD>b<EFBFBD><62>
email is error common zt Email<69><EFBFBD><E6A6A1><EFBFBD>~
email password common zt <09>K<EFBFBD>X
email signature common zt ñ<>W<EFBFBD><57>
email type common zt Email<69><6C><EFBFBD><EFBFBD><EFBFBD>A
enabled common zt <09>v<EFBFBD><76>
enabled - hidden from navbar common zt <09>}<7D>Ҧ<EFBFBD><D2A6><EFBFBD><EFBFBD>ùϥ<C3B9>
end date common zt <09>ƥ󵲧<C6A5><F3B5B2A7><EFBFBD>
end date/time common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F>ɶ<EFBFBD>
end time common zt <09>ƥ󵲧<C6A5><F3B5B2A7>ɶ<EFBFBD>
ending date can not be before start date common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɶ<EFBFBD><C9B6><EFBFBD><EFBFBD>}<7D>l<EFBFBD><6C><EFBFBD>ɶ<EFBFBD><C9B6><EFBFBD>
ends common zt <09><><EFBFBD><EFBFBD>
enter your new password common zt <09><><EFBFBD>J<EFBFBD>s<EFBFBD>K<EFBFBD>X
entries common zt <09>i<EFBFBD>J
entry has been deleted sucessfully common zt <09>R<EFBFBD><52><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
entry updated sucessfully common zt <09>ק粒<D7A7><EFA7B9>
error common zt <09><><EFBFBD>~<7E>T<EFBFBD><54>
error creating x x directory common zt <09>s<EFBFBD>W<EFBFBD>o<EFBFBD>Ϳ<EFBFBD><CDBF>~ %1%2
error deleting x x directory common zt <09>R<EFBFBD><52><EFBFBD><EFBFBD><EFBFBD>~ %1%2
error renaming x x directory common zt <09><><EFBFBD>s<EFBFBD>R<EFBFBD>W<EFBFBD>o<EFBFBD>Ϳ<EFBFBD><CDBF>~ %1%2
err_saving_file common zt <09>x<EFBFBD>s<EFBFBD><EFBFBD><E6A6A1><EFBFBD>~
exit common zt <09><><EFBFBD>}
extra common zt <09>B<EFBFBD>~
fancy common zt <09>۷Q<DBB7><51>
fax common zt <09>ǯu
february common zt <09>G<EFBFBD><47>
fields to show in address list common zt <09>п<EFBFBD><D0BF>ܭn<DCAD><6E><EFBFBD>ܦb<DCA6>q<EFBFBD>T<EFBFBD><54><EFBFBD>W<EFBFBD><57><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
file manager common zt <09>ɮ׺޲z
files common zt <09>ɮ<EFBFBD>
file_upload common zt <09>ɮפW<D7A4><57>
filter common zt <09><><EFBFBD>ܸs<DCB8><73>
first name common zt <09>W<EFBFBD>r
first page common zt <09>Ĥ@<40><>
firstname common zt <09>W<EFBFBD>r
folder common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
folder preferences common zt <09>H<EFBFBD>󧨳]<5D>w
folders common zt <09>H<EFBFBD><48><EFBFBD><EFBFBD>
forecast common zt <09>w<EFBFBD><77>
forecast zone common zt <09>w<EFBFBD><77><EFBFBD>a<EFBFBD><61>
forecasts common zt <09>w<EFBFBD><77>
forum common zt <09>Q<EFBFBD>װ<EFBFBD>
forward common zt <09><><EFBFBD>H
fr common zt F
free/busy common zt <09>Ŷ<EFBFBD><C5B6><EFBFBD>/<2F><><EFBFBD>L<EFBFBD><4C>
frequency common zt <09>C<EFBFBD>j<EFBFBD>X<EFBFBD>ѥX<D1A5>{<7B>@<40><>
fri common zt <09><>
friday common zt <09>P<EFBFBD><50><EFBFBD><EFBFBD>
from common zt <09>H<EFBFBD><48><EFBFBD><EFBFBD>
ftp common zt <09>ɮ׶ǿ<D7B6>
full description common zt <09><><EFBFBD>e
full name common zt <09><><EFBFBD>W
generate new lang.sql file common zt <09>ץX<D7A5>ɮ<EFBFBD>
generate printer-friendly version common zt <09>C<EFBFBD>L
global common zt <09><><EFBFBD><EFBFBD>
global categories common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD>ƧX<C6A7>]<5D><><EFBFBD><EFBFBD><EFBFBD>^
global public common zt <09><><EFBFBD>ܾ<EFBFBD><DCBE>Ӹs<D3B8><73>
global public and group public common zt <09><><EFBFBD>ܾ<EFBFBD><DCBE>Ӹs<D3B8>թM<D5A9>ۤv<DBA4><76><EFBFBD>ݪ<EFBFBD><DDAA>s<EFBFBD><73>
global public only common zt <09>u<EFBFBD><75><EFBFBD>ܾ<EFBFBD><DCBE>Ӹs<D3B8><73>
go! common zt <09>բݡI
grant addressbook access common zt <09>ϥΪ<CFA5><CEAA>v<EFBFBD><76>
grant calendar access common zt <09>ϥΪ<CFA5><CEAA>v<EFBFBD><76>
grant todo access common zt <09>ϥΪ<CFA5><CEAA>v<EFBFBD><76>
greys common zt <09>Ǫ<EFBFBD><C7AA>@<40><>
group common zt <09>s<EFBFBD><73>
group access common zt <09>s<EFBFBD>զs<D5A6><73>
group has been added common zt <09>s<EFBFBD>W<EFBFBD>s<EFBFBD><73>
group has been deleted common zt <09>R<EFBFBD><52><EFBFBD>s<EFBFBD><73>
group has been updated common zt <09>ק<EFBFBD><D7A7>s<EFBFBD><73>
group name common zt <09>s<EFBFBD>զW<D5A6><57>
group public common zt <09><><EFBFBD>ܦۤv<DBA4><76><EFBFBD>ݪ<EFBFBD><DDAA>s<EFBFBD><73>
group public only common zt <09>u<EFBFBD><75><EFBFBD>ܦۤv<DBA4><76><EFBFBD>ݪ<EFBFBD><DDAA>s<EFBFBD><73>
groupname common zt <09>s<EFBFBD>զW<D5A6><57>
groups common zt <09>s<EFBFBD><73>
groups common zt <09><><EFBFBD>ݪ<EFBFBD><DDAA>s<EFBFBD><73>
groupsfile_perm_error common zt <09><><EFBFBD>~<7E>G<EFBFBD>Цܸs<DCB8>ո<EFBFBD><D5B8>Ƨ<EFBFBD><C6A7><EFBFBD><EFBFBD>A<EFBFBD><41><EFBFBD><EFBFBD><EFBFBD>]<5D>w
group_files common zt <09>s<EFBFBD><73><EFBFBD>ɮק<C9AE>
headline preferences common zt <09>]<5D>w<EFBFBD>Y<EFBFBD><59><EFBFBD>s<EFBFBD>D
headline sites common zt <09>s<EFBFBD>D<EFBFBD>Y<EFBFBD><59><EFBFBD><EFBFBD><EFBFBD>}
headlines common zt <09>s<EFBFBD>D<EFBFBD>Y<EFBFBD><59>
heaven common zt <09>Ѫ<EFBFBD><D1AA><EFBFBD>
help common zt <09><><EFBFBD><EFBFBD>
hide php information common zt <09><><EFBFBD>âޢ֢ު<D6A2><DEAA><EFBFBD><EFBFBD>T
high common zt <09><>
home common zt <09><><EFBFBD><EFBFBD>
home city common zt <09>m/<2F><>/<2F><>/<2F><>
home country common zt <09><><EFBFBD>a/<2F>a<EFBFBD><61>
home email common zt <09><><EFBFBD>a<EFBFBD>q<EFBFBD>l<EFBFBD>l<EFBFBD><6C>
home phone common zt <09><><EFBFBD>a<EFBFBD>q<EFBFBD><71>
home state common zt <09><>/<2F><>
home street common zt <09><><EFBFBD>W
home zip code common zt <09>l<EFBFBD><6C><EFBFBD>ϸ<EFBFBD>
human resources common zt <09>H<EFBFBD>O<EFBFBD>
i participate common zt <09>ѻP
icons and text common zt <09>ϥܻP<DCBB><50><EFBFBD>r
icons only common zt <09><><EFBFBD>ܹϥ<DCB9>
id common zt ID
idle common zt <09>s<EFBFBD>u<EFBFBD>ɶ<EFBFBD>
idsociety common zt <09>M<EFBFBD>~<7E><>
if applicable common zt <09>i<EFBFBD><69><EFBFBD>Ϊ<EFBFBD>
ignore conflict common zt <09><><EFBFBD>L<EFBFBD>Ĭ<EFBFBD>
image common zt <09>Ϥ<EFBFBD>
imap server type common zt <09>q<EFBFBD>l<EFBFBD>l<EFBFBD>󪺫<EFBFBD><F3AABAAB>A
import contacts common zt <09>פJ
import file common zt <09>פJ<D7A4><4A><EFBFBD>Ƨ<EFBFBD>
import from outlook common zt <09>qOutlook<6F>פJ
import lang set common zt <09>פJ<D7A4>y<EFBFBD>t<EFBFBD>]<5D>w
index order common zt <09>l<EFBFBD><6C><EFBFBD>M<EFBFBD><4D><EFBFBD>]<5D>w
instcommoned applications common zt <09><><EFBFBD>ε{<7B><>
interface/template selection common zt <09><><EFBFBD>ܨϥΤ<CFA5><CEA4><EFBFBD>
international common zt <09><><EFBFBD>ڤ<EFBFBD>
invalid entry id. common zt <09><><EFBFBD>~<7E><><EFBFBD>ϥο<CFA5><CEBF>ܸs<DCB8><73>
inventory common zt <09>w<EFBFBD>s<EFBFBD>޲z
ip common zt <09><><EFBFBD>}
it has been more then x days since you changed your password common zt <09><><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>X<EFBFBD><58><EFBFBD>X<EFBFBD><58>
january common zt <09>@<40><>
july common zt <09>C<EFBFBD><43>
june common zt <09><><EFBFBD><EFBFBD>
justweb common zt <09>зǫ<D0B7>
kill common zt <09>R<EFBFBD><52>
language common zt <09><><EFBFBD>ܨϥλy<CEBB>t
lang_up common zt <09>W<EFBFBD>@<40><>
large common zt <09>j
last login common zt <09>n<EFBFBD>J<EFBFBD>ɶ<EFBFBD>
last login from common zt <09>n<EFBFBD>J<EFBFBD><4A><EFBFBD>}
last name common zt <20>m<EFBFBD><6D>
last page common zt <09>̫<EFBFBD><CCAB>@<40><>
last time read common zt <09>̫<EFBFBD>Ū<EFBFBD><C5AA><EFBFBD>ɶ<EFBFBD>
last updated common zt <09>̪<EFBFBD><CCAA>ק<EFBFBD><D7A7>O<EFBFBD><4F>
last x logins common zt <09>̪<EFBFBD><CCAA>n<EFBFBD>J<EFBFBD>O<EFBFBD><4F>
lastname common zt <09>m<EFBFBD><6D>
lightblue common zt <09>K<EFBFBD><4B><EFBFBD><EFBFBD>
lightbrown common zt <09><><EFBFBD>q<EFBFBD>u
line 2 common zt line 2
links common zt <09>s<EFBFBD><73>
list add common zt <09>s<EFBFBD><73><EFBFBD>ӤH<D3A4>q<EFBFBD>
list of current users common zt <09><><EFBFBD>ܨϥΪ̦C<CCA6><43>
listings displayed common zt <09><><EFBFBD>ܦC<DCA6><43>
login common zt <09>n<EFBFBD>J
login screen common zt <09>n<EFBFBD>J<EFBFBD>D<EFBFBD>e<EFBFBD><65>
login time common zt <09>n<EFBFBD>J<EFBFBD>ɶ<EFBFBD>
loginid common zt <09>b<EFBFBD><62>
loginscreen_message loginscreen zt test*
loginscreen_message mainscreen zt <09>п<EFBFBD><D0BF>J<EFBFBD>z<EFBFBD><7A><EFBFBD>l<EFBFBD>K<EFBFBD>X<EFBFBD><58>:<font color=red>1234</font><3E>A<EFBFBD>i
<EFBFBD>J<EFBFBD><EFBFBD><font color=red><3E><><EFBFBD>ܧ<EFBFBD><DCA7>A<EFBFBD><41><EFBFBD>K<EFBFBD>X</font>*
loginscreen_message common zt <09>п<EFBFBD><D0BF>J<EFBFBD>z<EFBFBD><7A><EFBFBD>l<EFBFBD>K<EFBFBD>X<EFBFBD><58>:<font color=red>1234</font><3E>A<EFBFBD>i<EFBFBD>J<EFBFBD><4A><font color=red><3E><><EFBFBD>ܧ<EFBFBD><DCA7>A<EFBFBD><41><EFBFBD>K<EFBFBD>X</font>
logout common zt <09>n<EFBFBD>X
low common zt <09>C
mail folder(uw-maildir) common zt Email<69><6C><EFBFBD><EFBFBD><EFBFBD>Ƨ<EFBFBD>
mail server common zt <09>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>A<EFBFBD><41>
mail server type common zt <09>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>A<EFBFBD><41><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
main screen common zt <09><><EFBFBD><EFBFBD>
main screen message common zt <09><><EFBFBD><EFBFBD><EFBFBD>T<EFBFBD><54>
mainscreen_message mainscreen zt <09>w<EFBFBD><77><EFBFBD><EFBFBD><EFBFBD>{
manager common zt <09>t<EFBFBD>κ޲z<DEB2><7A>
manual common zt <09>ϥΤ<CFA5><CEA4>U
march common zt <09>T<EFBFBD><54>
max matchs per page common zt <09>C<EFBFBD><43><EFBFBD>̦h<CCA6>n<EFBFBD><6E><EFBFBD>ܴX<DCB4><58><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
may common zt <09><><EFBFBD><EFBFBD>
medium common zt <09><>
message common zt <09>T<EFBFBD><54>
message has been updated common zt <09>T<EFBFBD><54><EFBFBD>w<EFBFBD><77><EFBFBD>s
message highlighting common zt <09>l<EFBFBD><6C><EFBFBD>W<EFBFBD>h
message x common zt <09>T<EFBFBD><54>
messages common zt <09>T<EFBFBD><54>
metar common zt <09>ܤ<EFBFBD>
minutes common zt <09><><EFBFBD><EFBFBD>
minutes between reloads common zt <09>n<EFBFBD>J<EFBFBD>ɶ<EFBFBD>
mm common zt <09><>
mo common zt M
mobile common zt <09>j<EFBFBD><6A><EFBFBD>j
mobile phone common zt <09><><EFBFBD>ʹq<CAB9><71>
modem phone common zt <09>q<EFBFBD><71>
mojo common zt <09>·t<C2B7>a<EFBFBD><61>
mon common zt <09>@
monday common zt <09>P<EFBFBD><50><EFBFBD>@
monitor common zt <09>ù<EFBFBD>
monitor newsgroups common zt <09>s<EFBFBD>շs<D5B7>D
month common zt <09><>
monthly common zt <09>C<EFBFBD><43>
monthly (by date) common zt <09>C<EFBFBD><43>(<28><><EFBFBD><EFBFBD>)
monthly (by day) common zt <09>C<EFBFBD><43>(<28><><EFBFBD>m)
move selected messages into common zt <09><><EFBFBD>ʶl<CAB6><6C><EFBFBD>ܨ<EFBFBD><DCA8>L<EFBFBD>H<EFBFBD><48>
name common zt <09>W<EFBFBD><57>
network news common zt <09><><EFBFBD><EFBFBD><EFBFBD>s<EFBFBD>D
never common zt <09>q<EFBFBD><71><EFBFBD>n<EFBFBD>J
new entry common zt <09>s<EFBFBD>W<EFBFBD><57><EFBFBD><EFBFBD>
new entry added sucessfully common zt <09>s<EFBFBD>W<EFBFBD>O<EFBFBD>Ƨ<EFBFBD><C6A7><EFBFBD>
new group name common zt <09>s<EFBFBD>s<EFBFBD>զW<D5A6><57>
new message common zt <09>s<EFBFBD>T<EFBFBD><54>
new password [ leave blank for no change common zt <09>s<EFBFBD>K<EFBFBD>X
new phrase has been added common zt <09>r<EFBFBD><72><EFBFBD>w<EFBFBD>s<EFBFBD>W
new ticket common zt <09>s<EFBFBD>W<EFBFBD>
news file common zt <09>s<EFBFBD>ɮ<EFBFBD>
news headlines common zt <09>Y<EFBFBD><59><EFBFBD>s<EFBFBD>D
news reader common zt <09>s<EFBFBD><73>Ū<EFBFBD><C5AA>
news type common zt <09>s<EFBFBD>s<EFBFBD>զW<D5A6><57>
newsgroups common zt <09>s<EFBFBD>s<EFBFBD><73>
new_file common zt <09>s<EFBFBD>ɮ<EFBFBD>
next common zt <09>U<EFBFBD>@<40><>
next page common zt <09>U<EFBFBD>@<40><>
nickname common zt <09>ʺ<EFBFBD>
nntp common zt <09><><EFBFBD><EFBFBD><EFBFBD>s<EFBFBD>D
no common zt <09>_
no matches found. common zt <09><EFBFBD><E4A4A3><EFBFBD>ŦX<C5A6><58><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
no matchs found common zt <09><EFBFBD><E4A4A3><EFBFBD>ŦX<C5A6><58><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
no response common zt <09>S<EFBFBD><53><EFBFBD>^<5E><>
no subject common zt <09>S<EFBFBD><53><EFBFBD><EFBFBD><EFBFBD>D
non-standard common zt Non-Standard
none common zt <09>L
normal common zt <09>@<40><>
not applicable common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
not available yet common zt <09><><EFBFBD><EFBFBD><EFBFBD>ϥ<EFBFBD>
note has been added for x ! common zt <09>s<EFBFBD>W%1<>O<EFBFBD><4F>
note: this feature does *not* change your email password. this will need to be done manucommony. common zt <09>`<60>N<EFBFBD>G<EFBFBD>Yemail<69><6C><EFBFBD>K<EFBFBD>X<EFBFBD><58><EFBFBD><EFBFBD>ѡA<D1A1>и߰ݺ<DFB0><DDBA>ޤH<DEA4><48><EFBFBD>C
notes common zt <09>Ƶ<EFBFBD>
notes categories common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD>ƧX
notes list common zt <09>ؿ<EFBFBD>
notes preferences common zt <09>]<5D>w
november common zt <09>Q<EFBFBD>@<40><>
no_file_name common zt <09><EFBFBD><EFBFBD><ECA6B9><EFBFBD>Ƨ<EFBFBD>
october common zt <09>Q<EFBFBD><51>
ok common zt <09>T<EFBFBD>w
on *nix systems please type: x common zt On *nix systems please type: %1
only yours common zt <09>p<EFBFBD>H<EFBFBD><48>
options common zt <09>
or: days from startdate: common zt <09>Ϊ̿<CEAA><CCBF>ܤu<DCA4>@<40>Ѽ<EFBFBD>
or: select for today: common zt <09>Ϊ̿<CEAA><CCBF>ܹw<DCB9>]<5D><><EFBFBD><EFBFBD>
original common zt <09><><EFBFBD>l<EFBFBD><6C>
other common zt <09><><EFBFBD>L
other number common zt <09>
other phone common zt <09><><EFBFBD>L<EFBFBD>q<EFBFBD><71>
overview common zt <09>w<EFBFBD><77>
owner common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD>
pager common zt <09>I<EFBFBD>s<EFBFBD><73>
parent category common zt <09>D<EFBFBD>n<EFBFBD>ؿ<EFBFBD>
parent project common zt <09>u<EFBFBD>@<40>i<EFBFBD>ױԭz
participant common zt <09>ѻP<D1BB>H<EFBFBD><48>
participates common zt <09>ѻP
password common zt <09><><EFBFBD>J<EFBFBD>K<EFBFBD>X
password could not be changed common zt <09>K<EFBFBD>X<EFBFBD>ק良<D7A7><EFA5BC><EFBFBD><EFBFBD>
password has been updated common zt <09>K<EFBFBD>X<EFBFBD>w<EFBFBD>g<EFBFBD><67><EFBFBD><EFBFBD>
percent of users that logged out common zt <09>ϥΪ̵n<CCB5>X<EFBFBD><58><EFBFBD>v
permissions common zt <09>s<EFBFBD>ɮ<EFBFBD>
permissions this group has common zt <09>п<EFBFBD><D0BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ε{<7B><>
permissions to the files/users directory common zt <09>P<EFBFBD>N<EFBFBD><4E><EFBFBD><EFBFBD><EFBFBD>Ƨ<EFBFBD><C6A7>ѨϥΪ<CFA5>Ū<EFBFBD><C5AA>
personal common zt <09>ӤH
personal information common zt <09>ӤH<D3A4><48><EFBFBD>T
personalized notes for common zt <09>ӤH<D3A4>O<EFBFBD><4F>
pharse in english transy zt <09>^<5E>y<EFBFBD><79>pharse
pharse in new langague transy zt <09>s<EFBFBD>y<EFBFBD><79><EFBFBD><EFBFBD>pharse
phone numbers common zt <09>q<EFBFBD>ܸ<EFBFBD><DCB8>X
php information common zt PHP<48><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>T
phpgroupware login common zt <09>n<EFBFBD>J
phpgroupware-version common zt phpgroupware <20><><EFBFBD>
phrase in english common zt <09><><EFBFBD>J<EFBFBD>^<5E><><EFBFBD>r<EFBFBD><72>
phrase in new language common zt <09>T<EFBFBD>{<7B><><EFBFBD>J<EFBFBD>r<EFBFBD><72>
please enter a name for that category ! common zt <09>п<EFBFBD><D0BF>J<EFBFBD><4A><EFBFBD>Ƨ<EFBFBD><C6A7><EFBFBD><EFBFBD>W<EFBFBD><57>
please enter a~z and 0~9 compose common zt <09>п<EFBFBD><D0BF>J<EFBFBD>^<5E><><EFBFBD>r<EFBFBD>M<EFBFBD>Ʀr<C6A6>զ<EFBFBD><D5A6><EFBFBD><EFBFBD>עҳ̦h8<68><38><EFBFBD>r<EFBFBD><72>
please select a message first common zt <09>п<EFBFBD><D0BF>ܰT<DCB0><54>
please set your preferences for this app common zt <09>Y<EFBFBD><59><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>q<EFBFBD>T<EFBFBD><54><EFBFBD>Цܳ]<5D>w<EFBFBD>ϧ<EFBFBD><CFA7><EFBFBD>
please x by hand common zt <09>ХѶǻ<D1B6>
please, select a new theme common zt <09>п<EFBFBD><D0BF>ܤ@<40>ӷs<D3B7><73>
powered by phpgroupware version x common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>www.phpgroupware.org<72><67><EFBFBD><EFBFBD>
preferences common zt <09>ߦn<DFA6>]<5D>w
prefix common zt <09>ٿ<EFBFBD>
previous common zt <09>w<EFBFBD><77>
previous page common zt <09>e<EFBFBD>@<40><>
print common zt <09>C<EFBFBD>L
printer friendly common zt <09>C<EFBFBD>L
priority common zt <09>ƥ<EFBFBD><C6A5>u<EFBFBD><75><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
private common zt <09>ӤH
private and global public common zt <09><><EFBFBD>ܭӤH<D3A4><48><EFBFBD>M<EFBFBD><4D><EFBFBD>Ӹs<D3B8><73>
private and group public common zt <09><><EFBFBD>ܭӤH<D3A4><48><EFBFBD>M<EFBFBD>ۤv<DBA4><76><EFBFBD>ݸs<DDB8><73>
private only common zt <09>ӤH<D3A4><48><EFBFBD><EFBFBD><EFBFBD>ƾ<EFBFBD>
private_files common zt <09>ӤH<D3A4><48><EFBFBD><EFBFBD><EFBFBD>Ƨ<EFBFBD>
proceed common zt <09>~<7E><><EFBFBD>i<EFBFBD><69>
project description common zt <09>u<EFBFBD>@<40>ԭz
projectname common zt <09>M<EFBFBD>צW<D7A6><57>
public common zt <09><><EFBFBD>}
public key common zt <09><><EFBFBD>}<7D><>
purple common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
re-edit event calendar zt <09>W<EFBFBD>[<5B>ƶ<EFBFBD>
re-edit event common zt <09><><EFBFBD>s<EFBFBD>s<EFBFBD><73>
re-enter password common zt <09>T<EFBFBD>{<7B>s<EFBFBD>K<EFBFBD>X
re-enter your password common zt <09>T<EFBFBD>{<7B>s<EFBFBD>K<EFBFBD>X
read common zt <09>
recent common zt <09>̪<EFBFBD>
record access common zt <09>O<EFBFBD>_<EFBFBD><5F><EFBFBD>}<7D>ϥΰO<CEB0><4F>
record owner common zt <09>ϥΪ<CFA5>
red common zt <09><><EFBFBD>K<EFBFBD><4B>
refresh common zt <09><><EFBFBD>s
region common zt <09>a<EFBFBD>a
regions common zt <09>a<EFBFBD>a
reject common zt <09>ڵ<EFBFBD>
rejected common zt <09>ڵ<EFBFBD>
remove common users from this group common zt <09>۸s<DBB8>ղ<EFBFBD><D5B2><EFBFBD><EFBFBD>Ҧ<EFBFBD><D2A6>ϥΪ<CFA5>
rename common zt <09><><EFBFBD>s<EFBFBD>R<EFBFBD>W
rename_to common zt <09><><EFBFBD>s<EFBFBD>R<EFBFBD>W<EFBFBD><57>
repeat day common zt <09><><EFBFBD>ܭ<EFBFBD><DCAD>ƪ<EFBFBD><C6AA>ƥ<EFBFBD>
repeat end date common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƨƥ󪺤<C6A5><F3AABAA4><EFBFBD>
repeat type common zt <09><><EFBFBD>ƫ<EFBFBD><C6AB>A
repeating event information common zt <09><><EFBFBD>ƨƥ<C6A8><C6A5>T<EFBFBD><54>
repetition common zt <09><><EFBFBD>ƨƥ<C6A8>
reply common zt <09>^<5E><>
reply common common zt <09>^<5E>Х<EFBFBD><D0A5><EFBFBD>
replyto common zt <09>^<5E>_<EFBFBD><5F>
reports common zt <09><><EFBFBD>i
rose common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
sa common zt Sa
sat common zt <09><>
saturday common zt <09>P<EFBFBD><50><EFBFBD><EFBFBD>
save common zt <09>x<EFBFBD>s
scheduling conflict common zt <09>ƥ<EFBFBD><C6A5>Ĭ<EFBFBD>
search common zt <09>j<EFBFBD>M
search group address book common zt <09>j<EFBFBD>M<EFBFBD>s<EFBFBD>ճq<D5B3>
search personal addressbook group common zt <09>j<EFBFBD>M<EFBFBD>ӤH<D3A4>s<EFBFBD>ճq<D5B3>T<EFBFBD><54>
search personal address_book common zt <09>j<EFBFBD>M<EFBFBD>ӤH<D3A4>q<EFBFBD>
search repeating event common zt <09><><EFBFBD>ƨƥ<C6A8>
search results common zt <09>j<EFBFBD>M<EFBFBD><4D><EFBFBD>G
section common zt <09><><EFBFBD>ܪ<EFBFBD><DCAA><EFBFBD><EFBFBD>m
select common zt <09>T<EFBFBD>w
select common common zt <09><><EFBFBD>ܥ<EFBFBD><DCA5><EFBFBD>
select application common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ε{<7B><>
select category common zt <09><><EFBFBD>ܸ<EFBFBD><DCB8>Ƨ<EFBFBD>
select different theme common zt <09><><EFBFBD>ܤ<EFBFBD><DCA4>P<EFBFBD><50><EFBFBD>D<EFBFBD>D
select group common zt <09><><EFBFBD>ܸs<DCB8><73>
select headline news sites common zt <09><><EFBFBD><EFBFBD><EFBFBD>Y<EFBFBD><59><EFBFBD>s<EFBFBD>D<EFBFBD><44><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
select language to generate for common zt <09><><EFBFBD>ܻy<DCBB>t
select parent category common zt <09>п<EFBFBD><D0BF>ܥD<DCA5>n<EFBFBD>ؿ<EFBFBD>
select parentcategory common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>O
select permissions this group will have common zt <09><><EFBFBD>ܨ<EFBFBD><DCA8>Ӹs<D3B8>եi<D5A5>ϥ<EFBFBD>
select users for inclusion common zt <09><><EFBFBD>ܨϥΪ<CFA5>
select which application for this phrase common zt <09>s<EFBFBD>W<EFBFBD>r<EFBFBD><EFBFBD><EAAABA><EFBFBD>ε{<7B><>
select which language for this phrase common zt <09><><EFBFBD>ܭ<EFBFBD><DCAD>l<EFBFBD><6C><EFBFBD>y<EFBFBD>t
select which location this app should appear on the navbar, lowest (left) to highest (right) common zt <09>N<EFBFBD><4E><EFBFBD><EFBFBD><EFBFBD>ε{<7B><><EFBFBD><EFBFBD><EFBFBD>b<EFBFBD>u<EFBFBD><75><EFBFBD>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD>m
send common zt <09>e<EFBFBD>X
send deleted messages to the trash common zt <09>R<EFBFBD><52>
send updates via email common zt <09><>email<69>e<EFBFBD>X<EFBFBD>s<EFBFBD>T<EFBFBD><54>
september common zt <09>E<EFBFBD><45>
session has been killed common zt <09>R<EFBFBD><52><EFBFBD>u<EFBFBD>W<EFBFBD>ϥΪ<CFA5>
show common common zt <09><><EFBFBD>ܥ<EFBFBD><DCA5><EFBFBD>
show common groups common zt <09><><EFBFBD>ܥ<EFBFBD><DCA5><EFBFBD><EFBFBD>s<EFBFBD><73>
show birthday reminders on main screen common zt <09><><EFBFBD>ܥͤ<DCA5><CDA4>b<EFBFBD><62><EFBFBD><EFBFBD><EFBFBD>W
show current users on navigation bar common zt <09><><EFBFBD>ܽu<DCBD>W<EFBFBD>ϥΪ<CFA5>
show day view on main screen common zt <09><><EFBFBD>ܤ<EFBFBD><DCA4><EFBFBD><EFBFBD>b<EFBFBD><62><EFBFBD><EFBFBD><EFBFBD>W
show groups containing common zt <09><><EFBFBD>ܸs<DCB8><73>
show high priority events on main screen common zt <09><><EFBFBD>ܨƱ<DCA8><C6B1>u<EFBFBD><75><EFBFBD><EFBFBD><EFBFBD>Ǧb<C7A6><62><EFBFBD><EFBFBD><EFBFBD>W
show navigation bar as common zt <09>u<EFBFBD><75><EFBFBD>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
show new messages on main screen common zt <09><><EFBFBD>ܷs<DCB7>T<EFBFBD><54><EFBFBD>b<EFBFBD>D<EFBFBD>n<EFBFBD><6E><EFBFBD><EFBFBD><EFBFBD>W
show sender's email address with name common zt <09><><EFBFBD>ܱH<DCB1><48><EFBFBD>H<EFBFBD><48><EFBFBD><EFBFBD><EFBFBD>m<EFBFBD>W<EFBFBD>M<EFBFBD>a<EFBFBD>}
show text on navigation icons common zt <09><><EFBFBD>ܤ<EFBFBD><DCA4>r<EFBFBD>P<EFBFBD><50><EFBFBD>s
show x address common zt <09>@ %1 <20><>
showing # x of x common zt <09><><EFBFBD><EFBFBD>#%1of %2
showing x common zt <09><><EFBFBD><EFBFBD>%1
showing x - x of x common zt <09><><EFBFBD><EFBFBD> %1 - %2 of %3
site common zt <09><><EFBFBD><EFBFBD>
size common zt <09>j<EFBFBD>p
smcommon common zt <09>p
sorry, that group name has already been taking. common zt <09><><EFBFBD>p<EFBFBD>A<EFBFBD>s<EFBFBD>զW<D5A6>٤w<D9A4>s<EFBFBD>b
sorry, the follow users are still a member of the group x common zt Sorry, the follow users are still a member of the group %1
sorry, there was a problem processing your request. common zt <09><><EFBFBD>p<EFBFBD>A<EFBFBD>o<EFBFBD>Ӱ<EFBFBD><D3B0>D<EFBFBD>B<EFBFBD>z<EFBFBD>L<EFBFBD>{<7B>o<EFBFBD>Ϳ<EFBFBD><CDBF>~
sorry, your login has expired common zt <09>n<EFBFBD>J<EFBFBD>פ<EFBFBD>
source language common zt <09><EFBFBD><ECA5BB><EFBFBD>y<EFBFBD><79>
specify_file_name common zt <09>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>T<EFBFBD><54><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҫإߪ<D8A5><DFAA><EFBFBD><EFBFBD>Ƨ<EFBFBD>
squirrelmail common zt <09>Q<EFBFBD><51><EFBFBD>q<EFBFBD>l<EFBFBD>l<EFBFBD><6C>
squirrelmail preferences: common zt <09>Q<EFBFBD><51><EFBFBD>q<EFBFBD>l<EFBFBD>l<EFBFBD><6C><EFBFBD>]<5D>w
squlabook common zt <09>Q<EFBFBD><51><EFBFBD>q<EFBFBD>T<EFBFBD><54>
squlabook add common zt <09>s<EFBFBD>ճq<D5B3><54>]<5D><><EFBFBD><EFBFBD><EFBFBD>^
squlabook group common zt <09>s<EFBFBD>ճq<D5B3>T<EFBFBD><54>
start date common zt <09>ƥ<EFBFBD><C6A5>}<7D>l<EFBFBD><6C>
start date/time common zt <09>}<7D>l<EFBFBD><6C><EFBFBD><EFBFBD>/<2F>ɶ<EFBFBD>
start time common zt <09>ƥ<EFBFBD><C6A5>}<7D>l<EFBFBD>ɶ<EFBFBD>
state common zt <09><><EFBFBD>a
statistics common zt <09>έp
status todo zt <09>i<EFBFBD><69>
status common zt <09>O<EFBFBD>_<EFBFBD>}<7D>Ҧ<EFBFBD><D2A6>v<EFBFBD><76>
street common zt <09><>
su common zt Su
sub common zt <09>^<5E><>
sub-project description common zt <09>l<EFBFBD><6C><EFBFBD>ؤu<D8A4>@<40>i<EFBFBD>ױԭz
subject common zt <09>D<EFBFBD><44>
subject: common zt <09>D<EFBFBD><44>:
submarine common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
submit common zt <09>e<EFBFBD>X
submit changes common zt <09>e<EFBFBD>X
subproject description common zt <09>l<EFBFBD><6C><EFBFBD>ؤu<D8A4>@<40>i<EFBFBD>ת<EFBFBD><D7AA>ԭz
sun common zt <09><>
sunday common zt <09>P<EFBFBD><50><EFBFBD><EFBFBD>
switch current folder to common zt <09><><EFBFBD>ʨ<EFBFBD><CAA8><EFBFBD><EFBFBD>L<EFBFBD>H<EFBFBD><48>
table common zt <09><><EFBFBD><EFBFBD>
tables common zt <09><><EFBFBD><EFBFBD>
target language common zt <09><><EFBFBD><EFBFBD><EFBFBD>y<EFBFBD><79>
tel common zt <09>s<EFBFBD><73><EFBFBD>q<EFBFBD><71>
tentative common zt <09>Ȯɤ<C8AE><C9A4>^<5E><>
text only common zt <09><><EFBFBD>ܤ<EFBFBD><DCA4>r
th common zt T
that category name has been used already ! common zt <09>o<EFBFBD>Ӹ<EFBFBD><D3B8>Ƨ<EFBFBD><C6A7>w<EFBFBD>g<EFBFBD>s<EFBFBD>b<EFBFBD>F!
that loginid has already been taken common zt <09>w<EFBFBD>g<EFBFBD>n<EFBFBD>J<EFBFBD>F
that phrase already exists common zt <09>s<EFBFBD>W<EFBFBD><57><EFBFBD>r<EFBFBD><72><EFBFBD>w<EFBFBD>s<EFBFBD>b
that site has already been entered common zt <09><><EFBFBD>A
the following conflicts with the suggested time:<ul>x</ul> common zt <09>o<EFBFBD>ͩ<EFBFBD>IJ<ul>%1</ul>
the login and password can not be the same common zt <09>n<EFBFBD>J<EFBFBD>b<EFBFBD><62><EFBFBD>M<EFBFBD>K<EFBFBD>X<EFBFBD><58><EFBFBD><EFBFBD>P<EFBFBD>˦a
the two passwords are not the same common zt <09>K<EFBFBD>X<EFBFBD><58><EFBFBD>ۦP
theme (colors/fonts) selection common zt <09><><EFBFBD>ܭI<DCAD><49><EFBFBD>C<EFBFBD><43>
there was an error trying to connect to your mail server.<br>please, check your username and password, or contact your admin. common zt <09>H<EFBFBD>c<EFBFBD><63><EFBFBD>A<EFBFBD><41><EFBFBD>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD>~,<2C><><EFBFBD>ˬd<CBAC>A<EFBFBD><41><EFBFBD>ϥΪ̱b<CCB1><62><EFBFBD>M<EFBFBD>K<EFBFBD>X<EFBFBD>C
they must be removed before you can continue common zt <09>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~<7E><><EFBFBD>~<7E><><EFBFBD>I
this email have been exist common zt <09>o<EFBFBD><6F>Email<69>w<EFBFBD>s<EFBFBD>b
this event is not exist! common zt <09>o<EFBFBD><6F><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>s<EFBFBD>b<EFBFBD>I
this folder is empty common zt <09><><EFBFBD>󧨬O<F3A7A8AC>Ū<EFBFBD>
this month common zt <09><><EFBFBD><EFBFBD>
this name have been exist common zt <09>o<EFBFBD>ӦW<D3A6>٤w<D9A4>g<EFBFBD>s<EFBFBD>b
this person's first name was not in the address book. common zt <09>o<EFBFBD>ӤH<D3A4>W<EFBFBD><57><EFBFBD>s<EFBFBD>b<EFBFBD>q<EFBFBD>T<EFBFBD><54><EFBFBD><EFBFBD>
this server is located in the x timezone preferences zt <09>ɮt
this server is located in the x timezone common zt <20>ɶ<EFBFBD><C9B6>ϰ<EFBFBD>
this week common zt <09><><EFBFBD>g
this x have been exist common zt <09>o %1 <20><><EFBFBD><EFBFBD><EFBFBD>Ƥw<C6A4>g<EFBFBD>s<EFBFBD>b
this year common zt <09><><EFBFBD>~
threads common zt threads
thu common zt <09>|
thursday common zt <09>P<EFBFBD><50><EFBFBD>|
time common zt <09>ɶ<EFBFBD>
time format common zt <09>ɶ<EFBFBD><C9B6><EFBFBD><EFBFBD>
time zone common zt <09>ɮt
time zone offset common zt <09>ɮt
times new roman common zt Times New Roman
title admin zt <09><><EFBFBD>ε{<7B><><EFBFBD>W<EFBFBD><57>
title addressbook zt ¾<><C2BE>
title calendar zt <09>y<EFBFBD>z
title common zt <09>y<EFBFBD>z
title1 common zt <09>y<EFBFBD>z
to common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
to correct this error for the future you will need to properly set the common zt To correct this error for the future you will need to properly set the
to: common zt <09><><EFBFBD>H<EFBFBD>H:
to: can't empty common zt <09>ж<EFBFBD><D0B6>g<EFBFBD><67><EFBFBD>H<EFBFBD>H
today common zt <09><><EFBFBD><EFBFBD>
today is x's birthday! common zt <09><><EFBFBD>ѬO%1<><31><EFBFBD>ͤ<EFBFBD>
todo common zt <09>u<EFBFBD>@<40>i<EFBFBD>׺޲z
todo categories common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD>ƧX
todo list common zt <09>u<EFBFBD>@<40>i<EFBFBD>׺޲z
todo list todo zt <09>u<EFBFBD>@<40>i<EFBFBD>׺޲z
todo list - add common zt <09>s<EFBFBD>W<EFBFBD>u<EFBFBD>@<40>i<EFBFBD><69>
todo list - add sub-project common zt <09>s<EFBFBD>W<EFBFBD>l<EFBFBD><6C><EFBFBD>ؤu<D8A4>@<40>i<EFBFBD><69>
todo list - edit common zt <09>s<EFBFBD><73>
todo preferences common zt <09>u<EFBFBD>@<40>i<EFBFBD>׺޲z<DEB2>]<5D>w
tomorrow is x's birthday. common zt <09><><EFBFBD>ѬO%1<><31><EFBFBD>ͤ<EFBFBD>
total common zt <09><><EFBFBD><EFBFBD>
total records common zt <09>Ҧ<EFBFBD><D2A6>O<EFBFBD><4F>
translation common zt ½Ķ
translation management common zt <09>y<EFBFBD>t<EFBFBD>
trouble ticket system common zt <09><EFBFBD><EBB2BC>
tu common zt T
tue common zt <09>G
tuesday common zt <09>P<EFBFBD><50><EFBFBD>G
undisclosed recipients common zt Undisclosed Recipients
undisclosed sender common zt <09><><EFBFBD><EFBFBD><EFBFBD>H<EFBFBD><48><EFBFBD><EFBFBD>
unselect common common zt <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
up pages common zt <09>W<EFBFBD>@<40><>
update common zt <09><><EFBFBD>s
update ok common zt <09><><EFBFBD>s<EFBFBD><73><EFBFBD><EFBFBD>
updated common zt <09>s<EFBFBD><73><EFBFBD>ɶ<EFBFBD>
upload common zt <09>W<EFBFBD><57>
urgency common zt <09><><EFBFBD>n<EFBFBD><6E>
url common zt <09>ӤH<D3A4><48><EFBFBD>}
use cookies common zt use cookies
use custom settings common zt <09>ϥΪ̱b<CCB1><62>
use end date common zt <09>ƥ󵲧<C6A5><F3B5B2A7><EFBFBD><EFBFBD><EFBFBD>
user common zt <09>ϥΪ<CFA5>
user accounts common zt <09>ϥΪ̱b<CCB1><62>
user groups common zt <09>ϥΪ̸s<CCB8><73>
username common zt <09>ϥΪ̦W<CCA6><57>
users common zt <09>ϥΪ<CFA5>
usersfile_perm_error common zt To correct this error you will need to properly set the permissions to the files/users directory.<BR> On *nix systems please type: chmod 707
vcard common zt <09>פJOutlook
verdilak common zt <09>V<EFBFBD>X<EFBFBD><58>
very large common zt <09>̤j
very smcommon common zt <09>̤p
view common zt <09>w<EFBFBD><77>
view access log common zt <09>ϥΰO<CEB0><4F>
view addressbook common zt <09>w<EFBFBD><77>
view common tickets common zt <09>[<5B>ݧ벼<DDA7>O<EFBFBD><4F>
view group addressbook common zt <09>w<EFBFBD><77><EFBFBD>s<EFBFBD>ճq<D5B3>T<EFBFBD><54>
view group address_book common zt <09>˵<EFBFBD><CBB5>s<EFBFBD>ճq<D5B3>
view matrix of actual month todo zt <09>w<EFBFBD><77><EFBFBD>u<EFBFBD>@<40>i<EFBFBD><69>
view only open tickets common zt <09>}<7D><><EFBFBD><EFBFBD>
view personal addressbook common zt <09>w<EFBFBD><77><EFBFBD>ӤH<D3A4>q<EFBFBD>T<EFBFBD><54>
view personal addressbook group common zt <09>w<EFBFBD><77><EFBFBD>ӤH<D3A4>s<EFBFBD>ճq<D5B3>T<EFBFBD><54>
view personal address_book common zt <09>˵<EFBFBD><CBB5>ӤH<D3A4>q<EFBFBD>
view sessions common zt <09>u<EFBFBD>W<EFBFBD>ϥΪ<CFA5>
view this entry common zt <09>w<EFBFBD><77><EFBFBD>O<EFBFBD><4F>
view user account common zt <09>w<EFBFBD><77><EFBFBD>ϥΪ̱b<CCB1><62>
view/edit/delete common phrases common zt <09>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
viewsub common zt <09>w<EFBFBD><77><EFBFBD>u<EFBFBD>@<40>i<EFBFBD><69>
we common zt W
weather common zt <09><><EFBFBD>H
weather center common zt <09><><EFBFBD>H<EFBFBD><48><EFBFBD><EFBFBD>
wed common zt <09>T
wednesday common zt <09>P<EFBFBD><50><EFBFBD>T
week common zt <09>P<EFBFBD><50>
weekday starts on common zt <09>u<EFBFBD>@<40><><EFBFBD>}<7D>l
weekly common zt <09>C<EFBFBD>g<EFBFBD><67>
when creating new events default set to private common zt <09>s<EFBFBD>W<EFBFBD>s<EFBFBD>ƥ<EFBFBD><C6A5>ɹw<C9B9>]<5D>Ȭ<EFBFBD><C8AC>p<EFBFBD>H
which groups common zt <09>п<EFBFBD><D0BF>ܸs<DCB8><73>
who would you like to transfer common records owned by the deleted user to? common zt <09>z<EFBFBD>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>o<EFBFBD>ӨϥΪ̶<CEAA>?
work day ends on common zt <09>u<EFBFBD>@<40><><EFBFBD><EFBFBD><EFBFBD>ɶ<EFBFBD>
work day starts on common zt <09>u<EFBFBD>@<40>}<7D>l<EFBFBD>ɶ<EFBFBD>
work phone common zt <09><><EFBFBD>q<EFBFBD>q<EFBFBD><71>
ww common zt <09>P<EFBFBD><50>
x matches found common zt %1 <20><><EFBFBD><EFBFBD><EFBFBD>ŦX<C5A6><58><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
x messages have been deleted common zt %1 <20>T<EFBFBD><54><EFBFBD>R<EFBFBD><52>
year common zt <09>~
yearly common zt <09>C<EFBFBD>~<7E><>
yellows common zt <09>Z<EFBFBD><5A><EFBFBD><EFBFBD>
yes common zt <09>O
you are required to change your password durring your first login common zt <09><><EFBFBD><EFBFBD><EFBFBD>n<EFBFBD>J<EFBFBD>A<EFBFBD><41><EFBFBD>ܧ<EFBFBD><DCA7>z<EFBFBD><7A><EFBFBD>K<EFBFBD>X
you do not have permission to read this record! common zt <09>z<EFBFBD>S<EFBFBD><53>Ū<EFBFBD><C5AA><EFBFBD><EFBFBD><EFBFBD>ƪ<EFBFBD><C6AA>v<EFBFBD><76>
you have 1 high priority event on your calendar today. common zt <09>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD>n<EFBFBD>T<EFBFBD><54><EFBFBD>I
you have 1 new message! common zt <09>z<EFBFBD><7A><EFBFBD>@<40>ʷs<CAB7>l<EFBFBD><6C><EFBFBD>I
you have been add common zt <09>s<EFBFBD>W<EFBFBD>@<40><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you have been successfully logged out common zt <09>z<EFBFBD>w<EFBFBD>n<EFBFBD>X<EFBFBD><58><EFBFBD><EFBFBD>
you have entered an ending invalid date common zt <09>п<EFBFBD><D0BF>J<EFBFBD>u<EFBFBD>@<40><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you have entered an invailed date common zt <09>z<EFBFBD>W<EFBFBD><57><EFBFBD>i<EFBFBD>J<EFBFBD><4A><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
you have entered groupname common zt <09>п<EFBFBD><D0BF>J<EFBFBD>s<EFBFBD>զW<D5A6><57>
you have messages! common zt <09>z<EFBFBD><7A><EFBFBD>s<EFBFBD>T<EFBFBD><54>
you have no new messages common zt <09>S<EFBFBD><53><EFBFBD>s<EFBFBD>l<EFBFBD><6C>
you have not entered a brief description common zt <09>п<EFBFBD><D0BF>J<EFBFBD>ƥ<EFBFBD><C6A5>y<EFBFBD>z
you have not entered a valid date. common zt <09><><EFBFBD>J<EFBFBD><4A><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>T
you have not entered a\nbrief description common zt <09>п<EFBFBD><D0BF>J<EFBFBD>D<EFBFBD>D
you have not entered a\nvalid time of day. common zt <09>п<EFBFBD><D0BF>J<EFBFBD>ɶ<EFBFBD>
you have not entered nickname and email common zt <09>п<EFBFBD><D0BF>J<EFBFBD>ʺ٩MEmail
you have x high priority events on your calendar today. common zt <09>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD>n<EFBFBD>T<EFBFBD><54><EFBFBD>I
you have x new messages! common zt <09>z<EFBFBD><7A> %1 <20>T<EFBFBD><54><EFBFBD>I
you must add at least 1 permission or group to this account common zt <09>z<EFBFBD>ܤ֭n<D6AD><6E><EFBFBD>ܤ@<40>Ӹs<D3B8><73>
you must add at least 1 permission to this account common zt <09>z<EFBFBD>̤֥<CCA4><D6A5><EFBFBD><EFBFBD>[<5B>J<EFBFBD>@<40>Ӹs<D3B8><73>
you must enter a base url common zt <09>п<EFBFBD><D0BF>J<EFBFBD><4A><EFBFBD>}
you must enter a description common zt <09>п<EFBFBD><D0BF>J<EFBFBD>u<EFBFBD>@<40>ԭz
you must enter a display common zt <09>Ы<EFBFBD><D0AB><EFBFBD><EFBFBD><EFBFBD>
you must enter a group name. common zt <09>п<EFBFBD><D0BF>J<EFBFBD>s<EFBFBD>զW<D5A6><57>
you must enter a loginid common zt <09>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD>J<EFBFBD>ϥΪ̱b<CCB1><62>
you must enter a news url common zt <09>п<EFBFBD><D0BF>J<EFBFBD>s<EFBFBD>D<EFBFBD><44><EFBFBD>}
you must enter a password common zt <09>п<EFBFBD><D0BF>J<EFBFBD>K<EFBFBD>X
you must enter an application name and title. common zt <09>п<EFBFBD><D0BF>J<EFBFBD><4A><EFBFBD>ε{<7B><><EFBFBD>M<EFBFBD><4D><EFBFBD>D
you must enter an application name. common zt <09>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>J<EFBFBD><4A><EFBFBD>ε{<7B><><EFBFBD>W<EFBFBD><57>
you must enter an application title. common zt <09>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>J<EFBFBD><4A><EFBFBD>ε{<7B><><EFBFBD><EFBFBD><EFBFBD>D
you must enter one or more search keywords common zt <09>п<EFBFBD><D0BF>J<EFBFBD>j<EFBFBD>M<EFBFBD><4D>key word
you must enter the number of listings display common zt <09>п<EFBFBD><D0BF>J<EFBFBD><4A><EFBFBD>ܦC<DCA6><43>
you must enter the number of minutes between reload common zt <09>q<EFBFBD>sreload<61>A<EFBFBD><41><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD><58><EFBFBD><EFBFBD>
you must select a file type common zt <09>п<EFBFBD><D0BF><EFBFBD><EFBFBD>ɮקκA
your current theme is: x common zt <09>z<EFBFBD>ҨϥΪ<CFA5><CEAA>Gx </b>
your message has been sent common zt <09>A<EFBFBD><41><EFBFBD>T<EFBFBD><54><EFBFBD>w<EFBFBD>e<EFBFBD>X
your search returned 1 match common zt <09><><EFBFBD><EFBFBD><EFBFBD>@<40>ӲŦX<C5A6><58>
your search returned x matchs common zt <09>ŦX<C5A6>z<EFBFBD>ҭn<D2AD><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%1
your session could not be verified. common zt <09><EFBFBD><E4A4A3><EFBFBD>o<EFBFBD>ӨϥΪ̱b<CCB1><62>
your settings have been updated common zt <09>]<5D>w<EFBFBD><77><EFBFBD>s
your suggested time of <b> x - x </b> conflicts with the following existing calendar entries: common zt <09>z<EFBFBD>ҿ<EFBFBD><D2BF>J<EFBFBD><4A><EFBFBD>ƥ<EFBFBD><B>%1-%2</B><3E>M<EFBFBD><EFBFBD>s<EFBFBD>b<EFBFBD><62><EFBFBD>ƾ䪺<C6BE>ƥ󦳽Ĭ<F3A6B3BD><C4AC>I
yy common zt <09>~
zip code common zt <09>l<EFBFBD><6C><EFBFBD>ϸ<EFBFBD>

View File

@ -1,145 +0,0 @@
<?php
// Little file to setup a demo install
/* $Id $ */
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
include("./inc/functions.inc.php");
include("../header.inc.php");
// Authorize the user to use setup app and load the database
// Does not return unless user is authorized
if (!$phpgw_setup->auth("Config")){
Header("Location: index.php");
exit;
}
if (! $submit) {
$phpgw_setup->show_header("Demo Server Setup");
?>
<table border="1" width="100%" cellspacing="0" cellpadding="2">
<tr><td>
This will create 1 admin account and 3 demo accounts<br>
The username/passwords are: demo/guest, demo2/guest and demo3/guest.<br>
<b>!!!THIS WILL DELETE ALL EXISTING ACCOUNTS!!!</b><br>
</td></tr>
<tr><td align="left" bgcolor="486591"><font color="fefefe">Details for Admin account</td><td align="right" bgcolor="486591">&nbsp;</td></tr>
<tr><td>
<form method="POST" action="<?php echo $PHP_SELF; ?>">
<table border="0">
<tr>
<td>Admin username</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>Admin first name</td>
<td><input type="text" name="fname"></td>
</tr>
<tr>
<td>Admin last name</td>
<td><input type="text" name="lname"></td>
</tr>
<tr>
<td>Admin password</td>
<td><input type="password" name="passwd"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="submit" value="Submit"> </td>
</tr>
</table>
</form>
</td></tr></table>
<?php
}else{
$phpgw_setup->loaddb();
/* First clear out exsisting tables */
$phpgw_setup->db->query("delete from phpgw_accounts");
$phpgw_setup->db->query("delete from phpgw_preferences");
$phpgw_setup->db->query("delete from phpgw_acl");
$defaultprefs = 'a:5:{s:6:"common";a:10:{s:9:"maxmatchs";s:2:"15";s:12:"template_set";s:8:"verdilak";s:5:"theme";s:6:"purple";s:13:"navbar_format";s:5:"icons";s:9:"tz_offset";N;s:10:"dateformat";s:5:"m/d/Y";s:10:"timeformat";s:2:"12";s:4:"lang";s:2:"en";s:11:"default_app";N;s:8:"currency";s:1:"$";}s:11:"addressbook";a:1:{s:0:"";s:4:"True";}:s:8:"calendar";a:4:{s:13:"workdaystarts";s:1:"7";s:11:"workdayends";s:2:"15";s:13:"weekdaystarts";s:6:"Monday";s:15:"defaultcalendar";s:9:"month.php";}}';
// $defaultprefs = 'a:5:{s:6:"common";a:1:{s:0:"";s:2:"en";}s:11:"addressbook";a:1:{s:0:"";s:4:"True";}i:8;a:1:{s:0:"";s:13:"workdaystarts";}i:15;a:1:{s:0:"";s:11:"workdayends";}s:6:"Monday";a:1:{s:0:"";s:13:"weekdaystarts";}}';
$defaultgroupid = mt_rand (100, 600000);
$sql = "insert into phpgw_accounts";
$sql .= "(account_id, account_lid, account_type, account_pwd, account_firstname, account_lastname, account_lastpwd_change, account_status)";
$sql .= "values (".$defaultgroupid.", 'Default', 'g', '".md5($passwd)."', 'Default', 'Group', ".time().", 'A')";
$phpgw_setup->db->query($sql);
$admingroupid = mt_rand (100, 600000);
$sql = "insert into phpgw_accounts";
$sql .= "(account_id, account_lid, account_type, account_pwd, account_firstname, account_lastname, account_lastpwd_change, account_status)";
$sql .= "values (".$admingroupid.", 'Admins', 'g', '".md5($passwd)."', 'Admin', 'Group', ".time().", 'A')";
$phpgw_setup->db->query($sql);
/* Create records for demo accounts */
$accountid = mt_rand (100, 600000);
$sql = "insert into phpgw_accounts";
$sql .= "(account_id, account_lid, account_type, account_pwd, account_firstname, account_lastname, account_lastpwd_change, account_status)";
$sql .= "values (".$accountid.", 'demo', 'u', '084e0343a0486ff05530df6c705c8bb4', 'Demo', 'Account', ".time().", 'A')";
$phpgw_setup->db->query($sql);
$phpgw_setup->db->query("insert into phpgw_preferences (preference_owner, preference_value) values ('$accountid', '$defaultprefs')");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights)values('preferences', 'changepassword', ".$accountid.", 0)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('phpgw_group', '".$defaultgroupid."', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('addressbook', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('filemanager', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('calendar', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('email', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('notes', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('todo', 'run', ".$accountid.", 1)");
$accountid = mt_rand (100, 600000);
$sql = "insert into phpgw_accounts";
$sql .= "(account_id, account_lid, account_type, account_pwd, account_firstname, account_lastname, account_lastpwd_change, account_status)";
$sql .= "values (".$accountid.", 'demo2', 'u', '084e0343a0486ff05530df6c705c8bb4', 'Demo2', 'Account', ".time().", 'A')";
$phpgw_setup->db->query($sql);
$phpgw_setup->db->query("insert into phpgw_preferences (preference_owner, preference_value) values ('$accountid', '$defaultprefs')");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights)values('preferences', 'changepassword', ".$accountid.", 0)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_account, acl_location, acl_rights) values('phpgw_group', '".$defaultgroupid."', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('addressbook', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('filemanager', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('calendar', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('email', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('notes', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('todo', 'run', ".$accountid.", 1)");
$accountid = mt_rand (100, 600000);
$sql = "insert into phpgw_accounts";
$sql .= "(account_id, account_lid, account_type, account_pwd, account_firstname, account_lastname, account_lastpwd_change, account_status)";
$sql .= "values (".$accountid.", 'demo3', 'u', '084e0343a0486ff05530df6c705c8bb4', 'Demo3', 'Account', ".time().", 'A')";
$phpgw_setup->db->query($sql);
$phpgw_setup->db->query("insert into phpgw_preferences (preference_owner, preference_value) values ('$accountid', '$defaultprefs')");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights)values('preferences', 'changepassword', ".$accountid.", 0)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('phpgw_group', '".$defaultgroupid."', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('addressbook', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('filemanager', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('calendar', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('email', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('notes', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('todo', 'run', ".$accountid.", 1)");
/* Create records for administrator account */
$accountid = mt_rand (100, 600000);
$sql = "insert into phpgw_accounts";
$sql .= "(account_id, account_lid, account_type, account_pwd, account_firstname, account_lastname, account_lastpwd_change, account_status)";
$sql .= "values (".$accountid.", '$username', 'u', '".md5($passwd)."', '$fname', '$lname', ".time().", 'A')";
$phpgw_setup->db->query($sql);
$phpgw_setup->db->query("insert into phpgw_preferences (preference_owner, preference_value) values ('$accountid', '$defaultprefs')");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('phpgw_group', '".$defaultgroupid."', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('phpgw_group', '".$admingroupid."', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights)values('preferences', 'changepassword', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('admin', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('addressbook', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('filemanager', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('calendar', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('email', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('notes', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('nntp', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('todo', 'run', ".$accountid.", 1)");
// $phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('transy', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('manual', 'run', ".$accountid.", 1)");
$phpgw_setup->db->query("update phpgw_accounts set account_expires='-1'",__LINE__,__FILE__);
Header("Location: index.php");
exit;
}
?>

View File

@ -1,280 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
function add_default_server_config(){
global $phpgw_info, $phpgw_setup;
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('template_set', 'user_choice')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('temp_dir', '/path/to/tmp')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('files_dir', '/path/to/dir/phpgroupware/files')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('encryptkey', 'change this phrase 2 something else')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('site_title', 'phpGroupWare')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('hostname', 'local.machine.name')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('webserver_url', 'http://www.domain.com/phpgroupware')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('auth_type', 'sql')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('ldap_host', 'localhost')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('ldap_context', 'ou=People,dc=my-domain,dc=com')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('ldap_encryption_type', 'DES')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('ldap_root_dn', 'cn=Manager,dc=my-domain,dc=com')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('ldap_root_pw', 'secret')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('usecookies', 'True')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('mail_server', 'localhost')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('mail_server_type', 'imap')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('imap_server_type', 'Cyrus')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('mail_suffix', 'yourdomain.com')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('mail_login_type', 'standard')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('smtp_server', 'localhost')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('smtp_port', '25')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_server', 'news.freshmeat.net')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_port', '119')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_sender', 'complaints@yourserver.com')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_organization', 'phpGroupWare')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_admin', 'admin@yourserver.com')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_login_username', '')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_login_password', '')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('charset', 'iso-8859-1')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('default_ftp_server', 'localhost')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('httpproxy_server', '')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('httpproxy_port', '')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('showpoweredbyon', 'bottom')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('htmlcompliant', 'False')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('checkfornewversion', 'False')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('freshinstall', 'True')");
// I didn't want to change all of these becuase of setup2 (jengo)
$phpgw_setup->db->query("update phpgw_config set config_app='phpgwapi'",__LINE__,__FILE__);
}
if ($useglobalconfigsettings == "on"){
if (is_file($basedir)){
include (PHPGW_INCLUDE_ROOT."/globalconfig.inc.php");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('template_set', '".$phpgw_info["server"]["template_set"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('temp_dir', '".$phpgw_info["server"]["temp_dir"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('files_dir', '".$phpgw_info["server"]["files_dir"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('encryptkey', '".$phpgw_info["server"]["encryptkey"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('site_title', '".$phpgw_info["server"]["site_title"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('hostname', '".$phpgw_info["server"]["hostname"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('webserver_url', '".$phpgw_info["server"]["webserver_url"].")");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('auth_type', '".$phpgw_info["server"]["auth_type"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('ldap_host', '".$phpgw_info["server"]["ldap_host"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('ldap_context', '".$phpgw_info["server"]["ldap_context"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('usecookies', '".$phpgw_info["server"]["usecookies"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('mail_server', '".$phpgw_info["server"]["mail_server"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('mail_server_type', '".$phpgw_info["server"]["mail_server_type"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('imap_server_type', '".$phpgw_info["server"]["imap_server_type"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('mail_suffix', '".$phpgw_info["server"]["mail_suffix"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('mail_login_type', '".$phpgw_info["server"]["mail_login_type"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('smtp_server', '".$phpgw_info["server"]["smtp_server"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('smtp_port', '".$phpgw_info["server"]["smtp_port"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_server', '".$phpgw_info["server"]["nntp_server"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_port', '".$phpgw_info["server"]["nntp_port"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_sender', '".$phpgw_info["server"]["nntp_sender"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_organization', '".$phpgw_info["server"]["nntp_organization"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_admin', '".$phpgw_info["server"]["nntp_admin"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_login_username', '".$phpgw_info["server"]["nntp_login_username"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('nntp_login_password', '".$phpgw_info["server"]["nntp_login_password"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('charset', '".$phpgw_info["server"]["charset"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('default_ftp_server', '".$phpgw_info["server"]["default_ftp_server"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('httpproxy_server', '".$phpgw_info["server"]["httpproxy_server"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('httpproxy_port', '".$phpgw_info["server"]["httpproxy_port"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('showpoweredbyon', '".$phpgw_info["server"]["showpoweredbyon"]."')");
$phpgw_setup->db->query("insert into phpgw_config (config_name, config_value) values ('checkfornewversion', '".$phpgw_info["server"]["checkfornewversion"]."')");
// I didn't want to change all of these becuase of setup2 (jengo)
$phpgw_setup->db->query("update phpgw_config set config_app='phpgwapi'",__LINE__,__FILE__);
}else{
echo "<table border=\"0\" align=\"center\">\n";
echo " <tr bgcolor=\"486591\">\n";
echo " <td colspan=\"2\"><font color=\"fefefe\">&nbsp;<b>Error</b></font></td>\n";
echo " </tr>\n";
echo " <tr bgcolor=\"e6e6e6\">\n";
echo " <td>Could not find your old globalconfig.inc.php.<br> You will be required to configure your installation manually.</td>\n";
echo " </tr>\n";
echo "</table>\n";
add_default_server_config();
}
}else{
add_default_server_config();
}
include(PHPGW_SERVER_ROOT . "/setup/sql/default_applications.inc.php");
$defaultgroupid = mt_rand (100, 600000);
$sql = "insert into phpgw_accounts";
$sql .= "(account_id, account_lid, account_type, account_pwd, account_firstname, account_lastname, account_lastpwd_change, account_status)";
$sql .= "values (".$defaultgroupid.", 'Default', 'g', '".md5($passwd)."', 'Default', 'Group', ".time().", 'A')";
$phpgw_setup->db->query($sql);
$admingroupid = mt_rand (100, 600000);
$sql = "insert into phpgw_accounts";
$sql .= "(account_id, account_lid, account_type, account_pwd, account_firstname, account_lastname, account_lastpwd_change, account_status)";
$sql .= "values (".$admingroupid.", 'Admins', 'g', '".md5($passwd)."', 'Admin', 'Group', ".time().", 'A')";
$phpgw_setup->db->query($sql);
$defaultprefs = 'a:5:{s:6:"common";a:1:{s:0:"";s:2:"en";}s:11:"addressbook";a:1:{s:0:"";s:4:"True";}i:8;a:1:{s:0:"";s:13:"workdaystarts";}i:15;a:1:{s:0:"";s:11:"workdayends";}s:6:"Monday";a:1:{s:0:"";s:13:"weekdaystarts";}}';
$accountid = mt_rand (100, 600000);
$sql = "insert into phpgw_accounts";
$sql .= "(account_id, account_lid, account_type, account_pwd, account_firstname, account_lastname, account_lastpwd_change, account_status, account_expires)";
$sql .= "values (".$accountid.", 'demo', 'u', '81dc9bdb52d04dc20036dbd8313ed055', 'Demo', 'Account', ".time().", 'A','-1')";
$phpgw_setup->db->query($sql);
$phpgw_setup->db->query("insert into phpgw_preferences (preference_owner, preference_value) values ('4', '$defaultprefs')");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('phpgw_group', '".$defaultgroupid."', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('phpgw_group', '".$admingroupid."', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('admin', 'run', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('addressbook', 'run', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('filemanager', 'run', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('calendar', 'run', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('email', 'run', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('notes', 'run', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('nntp', 'run', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('todo', 'run', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('transy', 'run', $accountid, 1)");
$phpgw_setup->db->query("insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights) values('manual', 'run', $accountid, 1)");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('aa','Afar','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ab','Abkhazian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('af','Afrikaans','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('am','Amharic','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ar','Arabic','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('as','Assamese','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ay','Aymara','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('az','Azerbaijani','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ba','Bashkir','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('be','Byelorussian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('bg','Bulgarian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('bh','Bihari','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('bi','Bislama','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('bn','Bengali / Bangla','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('bo','Tibetan','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('br','Breton','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ca','Catalan','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('co','Corsican','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('cs','Czech','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('cy','Welsh','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('da','Danish','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('de','German','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('dz','Bhutani','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('el','Greek','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('en','English / American','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('eo','Esperanto','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('es','Spanish','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('et','Estonian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('eu','Basque','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('fa','Persian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('fi','Finnish','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('fj','Fiji','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('fo','Faeroese','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('fr','French','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('fy','Frisian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ga','Irish','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('gd','Gaelic / Scots Gaelic','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('gl','Galician','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('gn','Guarani','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('gu','Gujarati','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ha','Hausa','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('hi','Hindi','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('hr','Croatian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('hu','Hungarian','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('hy','Armenian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ia','Interlingua','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ie','Interlingue','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ik','Inupiak','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('in','Indonesian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('is','Icelandic','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('it','Italian','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('iw','Hebrew','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ja','Japanese','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ji','Yiddish','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('jw','Javanese','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ka','Georgian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('kk','Kazakh','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('kl','Greenlandic','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('km','Cambodian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('kn','Kannada','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ko','Korean','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ks','Kashmiri','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ku','Kurdish','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ky','Kirghiz','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('la','Latin','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ln','Lingala','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('lo','Laothian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('lt','Lithuanian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('lv','Latvian / Lettish','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('mg','Malagasy','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('mi','Maori','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('mk','Macedonian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ml','Malayalam','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('mn','Mongolian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('mo','Moldavian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('mr','Marathi','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ms','Malay','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('mt','Maltese','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('my','Burmese','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('na','Nauru','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ne','Nepali','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('nl','Dutch','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('no','Norwegian','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('oc','Occitan','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('om','Oromo / Afan','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('or','Oriya','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('pa','Punjabi','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('pl','Polish','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ps','Pashto / Pushto','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('pt','Portuguese','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('qu','Quechua','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('rm','Rhaeto-Romance','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('rn','Kirundi','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ro','Romanian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ru','Russian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('rw','Kinyarwanda','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sa','Sanskrit','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sd','Sindhi','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sg','Sangro','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sh','Serbo-Croatian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('si','Singhalese','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sk','Slovak','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sl','Slovenian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sm','Samoan','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sn','Shona','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('so','Somali','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sq','Albanian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sr','Serbian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ss','Siswati','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('st','Sesotho','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('su','Sudanese','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sv','Swedish','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('sw','Swahili','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ta','Tamil','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('te','Tegulu','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('tg','Tajik','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('th','Thai','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ti','Tigrinya','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('tk','Turkmen','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('tl','Tagalog','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('tn','Setswana','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('to','Tonga','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('tr','Turkish','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ts','Tsonga','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('tt','Tatar','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('tw','Twi','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('uk','Ukrainian','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('ur','Urdu','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('uz','Uzbek','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('vi','Vietnamese','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('vo','Volapuk','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('wo','Wolof','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('xh','Xhosa','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('yo','Yoruba','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('zh','Chinese','No')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('zt','Chinese(Taiwan)','Yes')");
@$phpgw_setup->db->query("INSERT INTO languages (lang_id, lang_name, available) values ('zu','Zulu','No')");
?>

View File

@ -1,52 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$d1 = strtolower(substr($phpgw_info["server"]["server_root"],0,3));
if($d1 == "htt" || $d1 == "ftp" ) {
echo "Failed attempt to break in via an old Security Hole!<br>\n";
exit;
} unset($d1);
function update_version_table($tableschanged = True){
global $phpgw_info, $phpgw_setup;
if ($tableschanged == True){$phpgw_info["setup"]["tableschanged"] = True;}
$phpgw_setup->db->query("update phpgw_applications set app_version='".$phpgw_info["setup"]["currentver"]["phpgwapi"]."' where (app_name='admin' or app_name='filemanager' or app_name='addressbook' or app_name='todo' or app_name='calendar' or app_name='email' or app_name='nntp' or app_name='cron_apps' or app_name='notes')");
}
if ($phpgw_info["setup"]["currentver"]["phpgwapi"] == "drop"){
include("./sql/".$phpgw_domain[$ConfigDomain]["db_type"]."_droptables.inc.php");
}
if ($phpgw_info["setup"]["currentver"]["phpgwapi"] == "new") {
include("./sql/".$phpgw_domain[$ConfigDomain]["db_type"]."_newtables.inc.php");
include("./sql/common_default_records.inc.php");
$included = True;
include(PHPGW_SERVER_ROOT . "/setup/lang.php");
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "oldversion";
}
if ($phpgw_info["setup"]["currentver"]["phpgwapi"] == "oldversion") {
$phpgw_info["setup"]["currentver"]["phpgwapi"] = $phpgw_info["setup"]["oldver"]["phpgwapi"];
if ($phpgw_info["setup"]["currentver"]["phpgwapi"] == "7122000" || $phpgw_info["setup"]["currentver"]["phpgwapi"] == "8032000" || $phpgw_info["setup"]["currentver"]["phpgwapi"] == "8072000" || $phpgw_info["setup"]["currentver"]["phpgwapi"] == "8212000" || $phpgw_info["setup"]["currentver"]["phpgwapi"] == "9052000" || $phpgw_info["setup"]["currentver"]["phpgwapi"] == "9072000") {
include("./sql/".$phpgw_domain[$ConfigDomain]["db_type"]."_upgrade_prebeta.inc.php");
}
include("./sql/".$phpgw_domain[$ConfigDomain]["db_type"]."_upgrade_beta.inc.php");
}
/* Not yet implemented
if (!$phpgw_info["setup"]["tableschanged"] == True){
echo " <tr bgcolor=\"e6e6e6\">\n";
echo " <td>No table changes were needed. The script only updated your version setting.</td>\n";
echo " </tr>\n";
}
*/
?>

View File

@ -1,54 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$reserved_directorys = array(
'phpgwapi' => True,
'doc' => True,
'setup' => True,
'.' => True,
'..' => True,
'CVS' => True,
'CVSROOT' => True,
'files' => True
);
$i = 30;
$dh = opendir(PHPGW_SERVER_ROOT);
while ($dir = readdir($dh))
{
if (! $reserved_directorys[$dir] && is_dir(PHPGW_SERVER_ROOT . SEP . $dir))
{
if (is_file(PHPGW_SERVER_ROOT . SEP . $dir . SEP . 'setup' . SEP . 'tables_new.inc.php'))
{
$new_schema[] = $dir;
}
if (is_file(PHPGW_SERVER_ROOT . SEP . $dir . SEP . 'setup' . SEP . 'setup.inc.php'))
{
include(PHPGW_SERVER_ROOT . SEP . $dir . SEP . 'setup' . SEP . 'setup.inc.php');
}
else
{
$setup_info[$dir] = array('name' => $dir, 'app_order' => '99', 'version' => '0.0.0');
}
}
}
while ($app = each($setup_info))
{
$phpgw_setup->db->query("insert into phpgw_applications (app_name, app_title, app_enabled, app_order,"
. " app_tables, app_version) values ('" . $app[0] . "', '" . $app[1]["name"]
. "',1," . $app[1]['app_order'] . ", '" . $app[1]['app_tables'] . "', '"
. $app[1]['version'] . "')");
}
?>

View File

@ -1,57 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or");at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_setup->db->query("DROP TABLE phpgw_config");
$phpgw_setup->db->query("DROP TABLE phpgw_applications");
$phpgw_setup->db->query("DROP TABLE phpgw_accounts");
$phpgw_setup->db->query("DROP TABLE phpgw_preferences");
$phpgw_setup->db->query("DROP TABLE phpgw_sessions");
$phpgw_setup->db->query("DROP TABLE phpgw_app_sessions");
$phpgw_setup->db->query("DROP TABLE phpgw_acl");
$phpgw_setup->db->query("DROP TABLE phpgw_hooks");
$phpgw_setup->db->query("DROP TABLE phpgw_access_log");
$phpgw_setup->db->query("DROP TABLE phpgw_categories");
$phpgw_setup->db->query("DROP TABLE profiles");
$phpgw_setup->db->query("DROP TABLE phpgw_addressbook");
$phpgw_setup->db->query("DROP TABLE phpgw_addressbook_extra");
$phpgw_setup->db->query("DROP TABLE phpgw_todo");
@$phpgw_setup->db->query("DROP TABLE phpgw_cal");
@$phpgw_setup->db->query("DROP TABLE phpgw_cal_repeats");
@$phpgw_setup->db->query("DROP TABLE phpgw_cal_user");
$phpgw_setup->db->query("DROP TABLE newsgroups");
$phpgw_setup->db->query("DROP TABLE news_msg");
$phpgw_setup->db->query("DROP TABLE lang");
$phpgw_setup->db->query("DROP TABLE languages");
$phpgw_setup->db->query("DROP TABLE customers");
$phpgw_setup->db->query("DROP TABLE notes");
$phpgw_setup->db->query("DROP TABLE phpgw_notes");
$phpgw_setup->db->query("DROP TABLE phpgw_nextid");
$phpgw_setup->db->query("DROP TABLE phpgw_cal");
$phpgw_setup->db->query("DROP TABLE phpgw_cal_user");
$phpgw_setup->db->query("DROP TABLE phpgw_cal_repeats");
$phpgw_setup->db->query("DROP TABLE phpgw_cal_holidays");
@$phpgw_setup->db->query("DROP TABLE calendar_entry");
@$phpgw_setup->db->query("DROP TABLE calendar_entry_user");
@$phpgw_setup->db->query("DROP TABLE calendar_entry_repeats");
/* Legacy tables */
$phpgw_setup->db->query("DROP TABLE config");
$phpgw_setup->db->query("DROP TABLE applications");
$phpgw_setup->db->query("DROP TABLE groups");
$phpgw_setup->db->query("DROP TABLE accounts");
$phpgw_setup->db->query("DROP TABLE preferences");
$phpgw_setup->db->query("DROP TABLE addressbook");
$phpgw_setup->db->query("DROP TABLE todo");
?>

View File

@ -1,361 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
// NOTE: Please use spaces to seperate the field names. It makes copy and pasting easier.
$sql = "CREATE TABLE phpgw_config (
config_app varchar(50),
config_name varchar(255) NOT NULL,
config_value varchar(100),
UNIQUE config_name (config_name)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_applications (
app_name varchar(25) NOT NULL,
app_title varchar(50),
app_enabled int,
app_order int,
app_tables varchar(255),
app_version varchar(20) NOT NULL default '0.0',
UNIQUE app_name (app_name)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_accounts (
account_id int(11) DEFAULT '0' NOT NULL auto_increment,
account_lid varchar(25) NOT NULL,
account_pwd varchar(32) NOT NULL,
account_firstname varchar(50),
account_lastname varchar(50),
account_lastlogin int(11),
account_lastloginfrom varchar(255),
account_lastpwd_change int(11),
account_status enum('A','L'),
account_expires int,
account_type char(1),
PRIMARY KEY (account_id),
UNIQUE account_lid (account_lid)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_preferences (
preference_owner int,
preference_value text
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_sessions (
session_id varchar(255) NOT NULL,
session_lid varchar(255),
session_ip varchar(255),
session_logintime int(11),
session_dla int(11),
session_action varchar(255),
session_flags char(2),
UNIQUE sessionid (session_id)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_acl (
acl_appname varchar(50),
acl_location varchar(255),
acl_account int,
acl_rights int
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_app_sessions (
sessionid varchar(255) NOT NULL,
loginid varchar(20),
location varchar(255),
app varchar(20),
content longtext,
session_dla int
)";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_access_log (
sessionid varchar(255),
loginid varchar(30),
ip varchar(30),
li int,
lo varchar(255)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_addressbook (
id int(8) NOT NULL auto_increment,
lid varchar(32),
tid char(1),
owner int(8),
access char(7),
cat_id varchar(32),
fn varchar(64),
n_family varchar(64),
n_given varchar(64),
n_middle varchar(64),
n_prefix varchar(64),
n_suffix varchar(64),
sound varchar(64),
bday varchar(32),
note text,
tz varchar(8),
geo varchar(32),
url varchar(128),
pubkey text,
org_name varchar(64),
org_unit varchar(64),
title varchar(64),
adr_one_street varchar(64),
adr_one_locality varchar(64),
adr_one_region varchar(64),
adr_one_postalcode varchar(64),
adr_one_countryname varchar(64),
adr_one_type varchar(32),
label text,
adr_two_street varchar(64),
adr_two_locality varchar(64),
adr_two_region varchar(64),
adr_two_postalcode varchar(64),
adr_two_countryname varchar(64),
adr_two_type varchar(32),
tel_work varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_home varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_voice varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_fax varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_msg varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_cell varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_pager varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_bbs varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_modem varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_car varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_isdn varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_video varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_prefer varchar(32),
email varchar(64),
email_type varchar(32) DEFAULT 'INTERNET' NOT NULL,
email_home varchar(64),
email_home_type varchar(32) DEFAULT 'INTERNET' NOT NULL,
PRIMARY KEY (id),
UNIQUE id (id)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_addressbook_extra (
contact_id int(11),
contact_owner int(11),
contact_name varchar(255),
contact_value text
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE customers (
company_id int(10) unsigned NOT NULL auto_increment,
company_name varchar(255),
website varchar(80),
ftpsite varchar(80),
industry_type varchar(50),
status varchar(30),
software varchar(40),
lastjobnum int(10) unsigned,
lastjobfinished date,
busrelationship varchar(30),
notes text,
PRIMARY KEY (company_id)
);";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_todo (
todo_id int(11) DEFAULT '0' NOT NULL auto_increment,
todo_id_parent int(11) DEFAULT '0' NOT NULL,
todo_owner varchar(25),
todo_access varchar(10),
todo_cat int(11),
todo_des text,
todo_pri int(11),
todo_status int(11),
todo_datecreated int(11),
todo_startdate int(11),
todo_enddate int(11),
PRIMARY KEY (todo_id)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_cal (
cal_id int(11) DEFAULT '0' NOT NULL auto_increment,
owner int(11) DEFAULT '0' NOT NULL,
category int(11) DEFAULT '0' NOT NULL ,
groups varchar(255),
datetime int(11),
mdatetime int(11),
edatetime int(11),
priority int(11) DEFAULT '2' NOT NULL,
cal_type varchar(10),
is_public int DEFAULT '1' NOT NULL,
title varchar(80) NOT NULL,
description text,
PRIMARY KEY (cal_id)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_cal_repeats (
cal_id int(11) DEFAULT '0' NOT NULL,
recur_type int DEFAULT '0' NOT NULL,
recur_use_end int DEFAULT '0',
recur_enddate int(11) DEFAULT '0',
recur_interval int(11) DEFAULT '1',
recur_data int
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_cal_user (
cal_id int(11) DEFAULT '0' NOT NULL,
cal_login int(11) DEFAULT '0' NOT NULL,
cal_status char(1) DEFAULT 'A',
PRIMARY KEY (cal_id, cal_login)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_cal_holidays (
hol_id int(11) NOT NULL auto_increment,
locale char(2) NOT NULL,
name varchar(50) NOT NULL,
mday int DEFAULT '0' NOT NULL,
month_num int DEFAULT '0' NOT NULL,
occurence int DEFAULT '0' NOT NULL,
dow int DEFAULT '0' NOT NULL,
observance_rule int DEFAULT '0' NOT NULL,
PRIMARY KEY (hol_id)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE newsgroups (
con int(11) NOT NULL auto_increment,
name varchar(255) NOT NULL,
messagecount int(11) NOT NULL,
lastmessage int(11) NOT NULL,
active char DEFAULT 'N' NOT NULL,
lastread int(11),
PRIMARY KEY (con),
UNIQUE name (name)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE news_msg (
con int(11) NOT NULL,
msg int(11) NOT NULL,
uid varchar(255) DEFAULT '',
udate int(11) DEFAULT 0,
path varchar(255) DEFAULT '',
fromadd varchar(255) DEFAULT '',
toadd varchar(255) DEFAULT '',
ccadd varchar(255) DEFAULT '',
bccadd varchar(255) DEFAULT '',
reply_to varchar(255) DEFAULT '',
sender varchar(255) DEFAULT '',
return_path varchar(255) DEFAULT '',
subject varchar(255) DEFAULT '',
message_id varchar(255) DEFAULT '',
reference varchar(255) DEFAULT '',
in_reply_to varchar(255) DEFAULT '',
follow_up_to varchar(255) DEFAULT '',
nntp_posting_host varchar(255) DEFAULT '',
nntp_posting_date varchar(255) DEFAULT '',
x_complaints_to varchar(255) DEFAULT '',
x_trace varchar(255) DEFAULT '',
x_abuse_info varchar(255) DEFAULT '',
x_mailer varchar(255) DEFAULT '',
organization varchar(255) DEFAULT '',
content_type varchar(255) DEFAULT '',
content_description varchar(255) DEFAULT '',
content_transfer_encoding varchar(255) DEFAULT '',
mime_version varchar(255) DEFAULT '',
msgsize int(11) DEFAULT 0,
msglines int(11) DEFAULT 0,
body longtext NOT NULL,
primary key(con,msg)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE lang (
message_id varchar(150) DEFAULT '' NOT NULL,
app_name varchar(100) DEFAULT 'common' NOT NULL,
lang varchar(5) DEFAULT '' NOT NULL,
content text NOT NULL,
PRIMARY KEY (message_id,app_name,lang)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_categories (
cat_id int(9) DEFAULT '0' NOT NULL auto_increment,
cat_main int(9) DEFAULT '0' NOT NULL,
cat_parent int(9) DEFAULT '0' NOT NULL,
cat_level int(3) DEFAULT '0' NOT NULL,
cat_owner int(11) DEFAULT '0' NOT NULL,
cat_access varchar(7),
cat_appname varchar(50) NOT NULL,
cat_name varchar(150) NOT NULL,
cat_description varchar(255) NOT NULL,
cat_data text,
PRIMARY KEY (cat_id)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE languages (
lang_id varchar(2) NOT NULL,
lang_name varchar(50) NOT NULL,
available char(3) NOT NULL DEFAULT 'No',
PRIMARY KEY (lang_id)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_notes (
note_id int(20) NOT NULL auto_increment,
note_owner int(11),
note_access varchar(7),
note_date int(11),
note_category int(9),
note_content text,
PRIMARY KEY (note_id)
)";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_hooks (
hook_id int not null auto_increment,
hook_appname varchar(255),
hook_location varchar(255),
hook_filename varchar(255),
primary key hook_id (hook_id)
);";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_nextid (
appname varchar(25) NOT NULL,
id int(8),
UNIQUE (appname)
)";
$phpgw_setup->db->query($sql);
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.13.002';
$phpgw_info['setup']['oldver']['phpgwapi'] = $phpgw_info['setup']['currentver']['phpgwapi'];
update_version_table();
// $phpgw_setup->update_version_table();
?>

File diff suppressed because it is too large Load Diff

View File

@ -1,172 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$test[] = "7122000";
function upgrade7122000(){
global $phpgw_info, $phpgw_setup;
echo "Upgrading from 7122000 is not yet ready.<br> You can do this manually if you choose, otherwise dump your tables and start over.<br>\n";
$phpgw_info["setup"]["prebeta"] = True;
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "8032000";
}
$test[] = "8032000";
function upgrade8032000(){
global $phpgw_info, $phpgw_setup;
echo "Upgrading from 8032000 is not yet ready.<br> You can do this manually if you choose, otherwise dump your tables and start over.<br>\n";
$phpgw_info["setup"]["prebeta"] = True;
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "8072000";
}
$test[] = "8072000";
function upgrade8072000(){
global $phpgw_info, $phpgw_setup;
$sql = "CREATE TABLE applications ("
."app_name varchar(25) NOT NULL,"
."app_title varchar(50),"
."app_enabled int,"
."UNIQUE app_name (app_name)"
.")";
$phpgw_setup->db->query($sql);
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('admin', 'Administration', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('tts', 'Trouble Ticket System', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('inv', 'Inventory', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('chat', 'Chat', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('headlines', 'Headlines', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('filemanager', 'File manager', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('ftp', 'FTP', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('addressbook', 'Address Book', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('todo', 'ToDo List', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('calendar', 'Calendar', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('email', 'Email', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('nntp', 'NNTP', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('bookmarks', 'Bookmarks', 0)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('cron_apps', 'cron_apps', 0)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('napster', 'Napster', 0)");
$phpgw_info["setup"]["prebeta"] = True;
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "8212000";
}
$test[] = "8212000";
function upgrade8212000(){
global $phpgw_info, $phpgw_setup;
$phpgw_setup->db->query("alter table chat_channel change name name varchar(10) not null");
$phpgw_setup->db->query("alter table chat_messages change channel channel char(20) not null");
$phpgw_setup->db->query("alter table chat_messages change loginid loginid varchar(20) not null");
$phpgw_setup->db->query("alter table chat_currentin change loginid loginid varchar(25) not null");
$phpgw_setup->db->query("alter table chat_currentin change channel channel char(20)");
$phpgw_setup->db->query("alter table chat_privatechat change user1 user1 varchar(25) not null");
$phpgw_setup->db->query("alter table chat_privatechat change user2 user2 varchar(25) not null");
$phpgw_info["setup"]["prebeta"] = True;
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "9052000";
}
$test[] = "9052000";
function upgrade9052000(){
global $phpgw_info, $phpgw_setup;
echo "Upgrading from 9052000 is not available.<br> I dont believe there were any changes, so this should be fine.<br>\n";
$phpgw_info["setup"]["prebeta"] = True;
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "9072000";
}
$test[] = "9072000";
function upgrade9072000(){
global $phpgw_info, $phpgw_setup;
$phpgw_setup->db->query("alter table accounts change con account_id int(11) DEFAULT '0' NOT NULL auto_increment");
$phpgw_setup->db->query("alter table accounts change loginid account_lid varchar(25) NOT NULL");
$phpgw_setup->db->query("alter table accounts change passwd account_pwd varchar(32) NOT NULL");
$phpgw_setup->db->query("alter table accounts change firstname account_firstname varchar(50)");
$phpgw_setup->db->query("alter table accounts change lastname account_lastname varchar(50)");
$phpgw_setup->db->query("alter table accounts change permissions account_permissions text");
$phpgw_setup->db->query("alter table accounts change groups account_groups varchar(30)");
$phpgw_setup->db->query("alter table accounts change lastlogin account_lastlogin int(11)");
$phpgw_setup->db->query("alter table accounts change lastloginfrom account_lastloginfrom varchar(255)");
$phpgw_setup->db->query("alter table accounts change lastpasswd_change account_lastpwd_change int(11)");
$phpgw_setup->db->query("alter table accounts change status account_status enum('A','L') DEFAULT 'A' NOT NULL");
$phpgw_setup->db->query("alter table applications add app_order int");
$phpgw_setup->db->query("alter table applications add app_tables varchar(255)");
$phpgw_setup->db->query("alter table applications add app_version varchar(20) not null default '0.0'");
$phpgw_setup->db->query("alter table preferences change owner preference_owner varchar(20)");
$phpgw_setup->db->query("alter table preferences change name preference_name varchar(50)");
$phpgw_setup->db->query("alter table preferences change value preference_value varchar(50)");
$phpgw_setup->db->query("alter table preferences add preference_appname varchar(50) default ''");
$phpgw_setup->db->query("alter table sessions change sessionid session_id varchar(255) NOT NULL");
$phpgw_setup->db->query("alter table sessions change loginid session_lid varchar(20)");
$phpgw_setup->db->query("alter table sessions change passwd session_pwd varchar(255)");
$phpgw_setup->db->query("alter table sessions change ip session_ip varchar(255)");
$phpgw_setup->db->query("alter table sessions change logintime session_logintime int(11)");
$phpgw_setup->db->query("alter table sessions change dla session_dla int(11)");
$phpgw_setup->db->query("alter table todo change con todo_id int(11)");
$phpgw_setup->db->query("alter table todo change owner todo_owner varchar(25)");
$phpgw_setup->db->query("alter table todo change access todo_access varchar(255)");
$phpgw_setup->db->query("alter table todo change des todo_des text");
$phpgw_setup->db->query("alter table todo change pri todo_pri int(11)");
$phpgw_setup->db->query("alter table todo change status todo_status int(11)");
$phpgw_setup->db->query("alter table todo change datecreated todo_datecreated int(11)");
$phpgw_setup->db->query("alter table todo change datedue todo_datedue int(11)");
// The addressbook section is missing.
$phpgw_setup->db->query("update applications set app_order=1,app_tables=NULL where app_name='admin'");
$phpgw_setup->db->query("update applications set app_order=2,app_tables=NULL where app_name='tts'");
$phpgw_setup->db->query("update applications set app_order=3,app_tables=NULL where app_name='inv'");
$phpgw_setup->db->query("update applications set app_order=4,app_tables=NULL where app_name='chat'");
$phpgw_setup->db->query("update applications set app_order=5,app_tables='news_sites,news_headlines,users_headlines' where app_name='headlines'");
$phpgw_setup->db->query("update applications set app_order=6,app_tables=NULL where app_name='filemanager'");
$phpgw_setup->db->query("update applications set app_order=7,app_tables='addressbook' where app_name='addressbook'");
$phpgw_setup->db->query("update applications set app_order=8,app_tables='todo' where app_name='todo'");
$phpgw_setup->db->query("update applications set app_order=9,app_tables='webcal_entry,webcal_entry_users,webcal_entry_groups,webcal_repeats' where app_name='calendar'");
$phpgw_setup->db->query("update applications set app_order=10,app_tables=NULL where app_name='email'");
$phpgw_setup->db->query("update applications set app_order=11,app_tables='newsgroups,users_newsgroups' where app_name='nntp'");
$phpgw_setup->db->query("update applications set app_order=0,app_tables=NULL where app_name='cron_apps'");
$sql = "CREATE TABLE config ("
."config_name varchar(25) NOT NULL,"
."config_value varchar(100),"
."UNIQUE config_name (config_name)"
.")";
$phpgw_setup->db->query($sql);
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('template_set', 'default')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('temp_dir', '/path/to/tmp')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('files_dir', '/path/to/dir/phpgroupware/files')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('encryptkey', 'change this phrase 2 something else'");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('site_title', 'phpGroupWare')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('hostname', 'local.machine.name')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('webserver_url', 'http://www.domain.com/phpgroupware')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('auth_type', 'sql')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('ldap_host', 'localhost')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('ldap_context', 'o=phpGroupWare')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('usecookies', 'True')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('mail_server', 'localhost')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('mail_server_type', 'imap')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('imap_server_type', 'Cyrus')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('mail_suffix', 'yourdomain.com')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('mail_login_type', 'standard')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('smtp_server', 'localhost')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('smtp_port', '25')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_server', 'yournewsserver.com')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_port', '119')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_sender', 'complaints@yourserver.com')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_organization', 'phpGroupWare')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_admin', 'admin@yourserver.com')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_login_username', '')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_login_password', '')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('default_ftp_server', 'localhost')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('httpproxy_server', '')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('httpproxy_port', '')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('showpoweredbyon', 'bottom')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('checkfornewversion', 'False')");
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "0.9.1";
}
?>

View File

@ -1,61 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or");at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
// !! NOTE !! This should ONLY contain the current tables and sequences. Do NOT remove older tables
// That are no longer being used. People might have tables matching the same names in there installs.
$phpgw_setup->db->query("DROP TABLE phpgw_config");
$phpgw_setup->db->query("DROP TABLE phpgw_applications");
$phpgw_setup->db->query("DROP TABLE phpgw_accounts");
$phpgw_setup->db->query("drop sequence phpgw_accounts_account_id_seq");
$phpgw_setup->db->query("DROP TABLE phpgw_preferences");
$phpgw_setup->db->query("DROP TABLE phpgw_sessions");
$phpgw_setup->db->query("DROP TABLE phpgw_app_sessions");
$phpgw_setup->db->query("DROP TABLE phpgw_acl");
$phpgw_setup->db->query("DROP TABLE phpgw_access_log");
$phpgw_setup->db->query("DROP TABLE phpgw_categories");
$phpgw_setup->db->query("drop sequence phpgw_categories_cat_id_seq");
$phpgw_setup->db->query("DROP TABLE phpgw_hooks");
$phpgw_setup->db->query("drop sequence phpgw_hooks_hook_id_seq");
$phpgw_setup->db->query("DROP TABLE phpgw_addressbook");
$phpgw_setup->db->query("DROP TABLE phpgw_addressbook_extra");
$phpgw_setup->db->query("drop sequence phpgw_addressbook_id_seq");
$phpgw_setup->db->query("DROP TABLE phpgw_cal_user");
$phpgw_setup->db->query("DROP TABLE phpgw_cal_repeats");
$phpgw_setup->db->query("DROP TABLE phpgw_cal_holidays");
$phpgw_setup->db->query("drop sequence phpgw_cal_holidays_hol_id_seq");
$phpgw_setup->db->query("drop sequence phpgw_cal_cal_id_seq");
$phpgw_setup->db->query("DROP TABLE phpgw_nextid");
$phpgw_setup->db->query("DROP TABLE phpgw_todo");
$phpgw_setup->db->query("DROP sequence phpgw_todo_todo_id_seq");
$phpgw_setup->db->query("DROP TABLE phpgw_cal");
$phpgw_setup->db->query("drop sequence newsgroups_con_seq");
$phpgw_setup->db->query("DROP TABLE newsgroups");
$phpgw_setup->db->query("DROP TABLE lang");
$phpgw_setup->db->query("drop sequence news_msg_con_seq");
$phpgw_setup->db->query("DROP TABLE news_msg");
$phpgw_setup->db->query("DROP TABLE languages");
$phpgw_setup->db->query("DROP TABLE phpgw_notes");
$phpgw_setup->db->query("DROP sequence phpgw_notes_note_id_seq");
?>

View File

@ -1,329 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
// NOTE: Please use spaces to seperate the field names. It makes copy and pasting easier.
$sql = "CREATE TABLE phpgw_config (
config_app varchar(50),
config_name varchar(255) NOT NULL UNIQUE,
config_value varchar(100) NOT NULL
)";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_applications (
app_name varchar(25) NOT NULL,
app_title varchar(50),
app_enabled int,
app_order int,
app_tables varchar(255),
app_version varchar(20) NOT NULL default '0.0',
unique(app_name)
)";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_accounts (
account_id serial,
account_lid varchar(25) NOT NULL,
account_pwd char(32) NOT NULL,
account_firstname varchar(50),
account_lastname varchar(50),
account_lastlogin int,
account_lastloginfrom varchar(255),
account_lastpwd_change int,
account_status char(1),
account_expires int,
account_type char(1),
unique(account_lid)
)";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_preferences (
preference_owner int,
preference_value text
)";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_sessions (
session_id varchar(255),
session_lid varchar(255),
session_ip varchar(255),
session_logintime int,
session_dla int,
session_action varchar(255),
session_flags char(2),
unique(session_id)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_acl (
acl_appname varchar(50),
acl_location varchar(255),
acl_account int,
acl_rights int
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_app_sessions (
sessionid varchar(255) NOT NULL,
loginid varchar(20),
location varchar(255),
app varchar(20),
content text,
session_dla int
)";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_access_log (
sessionid varchar(255),
loginid varchar(30),
ip varchar(30),
li int,
lo varchar(255)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_addressbook(
id serial,
lid varchar(32),
tid varchar(1),
owner int,
access char(7),
cat_id varchar(32),
fn varchar(64),
n_family varchar(64),
n_given varchar(64),
n_middle varchar(64),
n_prefix varchar(64),
n_suffix varchar(64),
sound varchar(64),
bday varchar(32),
note text,
tz varchar(8),
geo varchar(32),
url varchar(128),
pubkey text,
org_name varchar(64),
org_unit varchar(64),
title varchar(64),
adr_one_street varchar(64),
adr_one_locality varchar(64),
adr_one_region varchar(64),
adr_one_postalcode varchar(64),
adr_one_countryname varchar(64),
adr_one_type varchar(32),
label text,
adr_two_street varchar(64),
adr_two_locality varchar(64),
adr_two_region varchar(64),
adr_two_postalcode varchar(64),
adr_two_countryname varchar(64),
adr_two_type varchar(32),
tel_work varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_home varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_voice varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_fax varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_msg varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_cell varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_pager varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_bbs varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_modem varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_car varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_isdn varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_video varchar(40) DEFAULT '+1 (000) 000-0000' NOT NULL,
tel_prefer varchar(32),
email varchar(64),
email_type varchar(32) DEFAULT 'INTERNET',
email_home varchar(64),
email_home_type varchar(32) DEFAULT 'INTERNET',
primary key (id)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_addressbook_extra (
contact_id int,
contact_owner int,
contact_name varchar(255),
contact_value text
)";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_todo (
todo_id serial,
todo_id_parent int,
todo_owner varchar(25),
todo_access varchar(10),
todo_cat int,
todo_des text,
todo_pri int,
todo_status int,
todo_datecreated int,
todo_startdate int,
todo_enddate int
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_cal (
cal_id serial,
owner int DEFAULT 0 NOT NULL,
category int DEFAULT 0 NOT NULL,
groups varchar(255),
datetime int4,
mdatetime int4,
edatetime int4,
priority int DEFAULT 2 NOT NULL,
cal_type varchar(10),
is_public int DEFAULT 1 NOT NULL,
title varchar(80) NOT NULL,
description text
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_cal_user (
cal_id int DEFAULT 0 NOT NULL,
cal_login int DEFAULT 0 NOT NULL,
cal_status char(1) DEFAULT 'A'
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_cal_repeats (
cal_id int DEFAULT 0 NOT NULL,
recur_type int DEFAULT 0 NOT NULL,
recur_use_end int DEFAULT 0,
recur_enddate int4 DEFAULT 0,
recur_interval int DEFAULT 1,
recur_data int
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_cal_holidays (
hol_id serial,
locale char(2) NOT NULL,
name varchar(50) NOT NULL,
mday int DEFAULT 0,
month_num int DEFAULT 0,
occurence int DEFAULT 0,
dow int DEFAULT 0,
observance_rule int DEFAULT 0
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE newsgroups (
con serial,
name varchar(255) NOT NULL,
messagecount int,
lastmessage int,
active char DEFAULT 'N' NOT NULL,
lastread int
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE news_msg (
con serial,
msg int NOT NULL,
uid varchar(255) DEFAULT '',
udate int DEFAULT 0,
path varchar(255) DEFAULT '',
fromadd varchar(255) DEFAULT '',
toadd varchar(255) DEFAULT '',
ccadd varchar(255) DEFAULT '',
bccadd varchar(255) DEFAULT '',
reply_to varchar(255) DEFAULT '',
sender varchar(255) DEFAULT '',
return_path varchar(255) DEFAULT '',
subject varchar(255) DEFAULT '',
message_id varchar(255) DEFAULT '',
reference varchar(255) DEFAULT '',
in_reply_to varchar(255) DEFAULT '',
follow_up_to varchar(255) DEFAULT '',
nntp_posting_host varchar(255) DEFAULT '',
nntp_posting_date varchar(255) DEFAULT '',
x_complaints_to varchar(255) DEFAULT '',
x_trace varchar(255) DEFAULT '',
x_abuse_info varchar(255) DEFAULT '',
x_mailer varchar(255) DEFAULT '',
organization varchar(255) DEFAULT '',
content_type varchar(255) DEFAULT '',
content_description varchar(255) DEFAULT '',
content_transfer_encoding varchar(255) DEFAULT '',
mime_version varchar(255) DEFAULT '',
msgsize int DEFAULT 0,
msglines int DEFAULT 0,
body text NOT NULL
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE lang (
message_id varchar(150) DEFAULT '' NOT NULL,
app_name varchar(100) DEFAULT 'common' NOT NULL,
lang varchar(5) DEFAULT '' NOT NULL,
content text NOT NULL,
unique(message_id,app_name,lang)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_categories (
cat_id serial,
cat_main int,
cat_parent int DEFAULT 0,
cat_level int DEFAULT 0,
cat_owner int,
cat_access varchar(7),
cat_appname varchar(50) NOT NULL,
cat_name varchar(150) NOT NULL,
cat_description varchar(255) NOT NULL,
cat_data text
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE languages (
lang_id varchar(2) NOT NULL,
lang_name varchar(50) NOT NULL,
available varchar(3) NOT NULL DEFAULT 'No'
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_notes (
note_id serial,
note_owner int,
note_access varchar(7),
note_date int,
note_category int,
note_content text
)";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_hooks (
hook_id serial,
hook_appname varchar(255),
hook_location varchar(255),
hook_filename varchar(255)
)";
$phpgw_setup->db->query($sql);
$sql = "create table phpgw_nextid (
appname varchar(25),
id int
)";
$phpgw_setup->db->query($sql);
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.13.002';
$phpgw_info['setup']['oldver']['phpgwapi'] = $phpgw_info['setup']['currentver']['phpgwapi'];
update_version_table();
?>

File diff suppressed because it is too large Load Diff

View File

@ -1,162 +0,0 @@
<?php
/**************************************************************************\
* phpGroupWare - Setup *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$test[] = "7122000";
function upgrade7122000(){
global $phpgw_info, $phpgw_setup;
echo "Upgrading from 7122000 is not yet ready.<br> You can do this manually if you choose, otherwise dump your tables and start over.<br>\n";
$phpgw_info["setup"]["prebeta"] = True;
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "8032000";
}
$test[] = "8032000";
function upgrade8032000(){
global $phpgw_info, $phpgw_setup;
echo "Upgrading from 8032000 is not yet ready.<br> You can do this manually if you choose, otherwise dump your tables and start over.<br>\n";
$phpgw_info["setup"]["prebeta"] = True;
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "8072000";
}
$test[] = "8072000";
function upgrade8072000(){
global $phpgw_info, $phpgw_setup;
$sql = "CREATE TABLE applications ("
."app_name varchar(25) NOT NULL,"
."app_title varchar(50),"
."app_enabled int,"
."UNIQUE app_name (app_name)"
.")";
$phpgw_setup->db->query($sql);
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('admin', 'Administration', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('tts', 'Trouble Ticket System', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('inv', 'Inventory', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('chat', 'Chat', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('headlines', 'Headlines', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('filemanager', 'File manager', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('ftp', 'FTP', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('addressbook', 'Address Book', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('todo', 'ToDo List', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('calendar', 'Calendar', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('email', 'Email', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('nntp', 'NNTP', 1)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('bookmarks', 'Bookmarks', 0)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('cron_apps', 'cron_apps', 0)");
$phpgw_setup->db->query("insert into applications (app_name, app_title, app_enabled) values ('napster', 'Napster', 0)");
$phpgw_info["setup"]["prebeta"] = True;
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "8212000";
}
$test[] = "8212000";
function upgrade8212000(){
global $phpgw_info, $phpgw_setup;
$phpgw_setup->db->query("alter table chat_channel change name name varchar(10) not null");
$phpgw_setup->db->query("alter table chat_messages change channel channel char(20) not null");
$phpgw_setup->db->query("alter table chat_messages change loginid loginid varchar(20) not null");
$phpgw_setup->db->query("alter table chat_currentin change loginid loginid varchar(25) not null");
$phpgw_setup->db->query("alter table chat_currentin change channel channel char(20)");
$phpgw_setup->db->query("alter table chat_privatechat change user1 user1 varchar(25) not null");
$phpgw_setup->db->query("alter table chat_privatechat change user2 user2 varchar(25) not null");
$phpgw_info["setup"]["prebeta"] = True;
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "9052000";
}
$test[] = "9052000";
function upgrade9052000(){
global $phpgw_info, $phpgw_setup;
echo "Upgrading from 9052000 is not available.<br> I dont believe there were any changes, so this should be fine.<br>\n";
$phpgw_info["setup"]["prebeta"] = True;
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "9072000";
}
$test[] = "9072000";
function upgrade9072000(){
global $phpgw_info, $phpgw_setup;
$phpgw_setup->db->query("alter table accounts change con account_id int(11) DEFAULT '0' NOT NULL auto_increment");
$phpgw_setup->db->query("alter table accounts change loginid account_lid varchar(25) NOT NULL");
$phpgw_setup->db->query("alter table accounts change passwd account_pwd varchar(32) NOT NULL");
$phpgw_setup->db->query("alter table accounts change firstname account_firstname varchar(50)");
$phpgw_setup->db->query("alter table accounts change lastname account_lastname varchar(50)");
$phpgw_setup->db->query("alter table accounts change permissions account_permissions text");
$phpgw_setup->db->query("alter table accounts change groups account_groups varchar(30)");
$phpgw_setup->db->query("alter table accounts change lastlogin account_lastlogin int(11)");
$phpgw_setup->db->query("alter table accounts change lastloginfrom account_lastloginfrom varchar(255)");
$phpgw_setup->db->query("alter table accounts change lastpasswd_change account_lastpwd_change int(11)");
$phpgw_setup->db->query("alter table accounts change status account_status enum('A','L') DEFAULT 'A' NOT NULL");
$phpgw_setup->db->query("alter table applications add app_order int");
$phpgw_setup->db->query("alter table applications add app_tables varchar(255)");
$phpgw_setup->db->query("alter table applications add app_version varchar(20) not null default '0.0'");
$phpgw_setup->db->query("alter table preferences change owner preference_owner varchar(20)");
$phpgw_setup->db->query("alter table preferences change name preference_name varchar(50)");
$phpgw_setup->db->query("alter table preferences change value preference_value varchar(50)");
$phpgw_setup->db->query("alter table preferences add preference_appname varchar(50) default ''");
$phpgw_setup->db->query("alter table sessions change sessionid session_id varchar(255) NOT NULL");
$phpgw_setup->db->query("alter table sessions change loginid session_lid varchar(20)");
$phpgw_setup->db->query("alter table sessions change passwd session_pwd varchar(255)");
$phpgw_setup->db->query("alter table sessions change ip session_ip varchar(255)");
$phpgw_setup->db->query("alter table sessions change logintime session_logintime int(11)");
$phpgw_setup->db->query("alter table sessions change dla session_dla int(11)");
$phpgw_setup->db->query("update applications set app_order=1,app_tables=NULL where app_name='admin'");
$phpgw_setup->db->query("update applications set app_order=2,app_tables=NULL where app_name='tts'");
$phpgw_setup->db->query("update applications set app_order=3,app_tables=NULL where app_name='inv'");
$phpgw_setup->db->query("update applications set app_order=4,app_tables=NULL where app_name='chat'");
$phpgw_setup->db->query("update applications set app_order=5,app_tables='news_sites,news_headlines,users_headlines' where app_name='headlines'");
$phpgw_setup->db->query("update applications set app_order=6,app_tables=NULL where app_name='filemanager'");
$phpgw_setup->db->query("update applications set app_order=7,app_tables='addressbook' where app_name='addressbook'");
$phpgw_setup->db->query("update applications set app_order=8,app_tables='todo' where app_name='todo'");
$phpgw_setup->db->query("update applications set app_order=9,app_tables='webcal_entry,webcal_entry_users,webcal_entry_groups,webcal_repeats' where app_name='calendar'");
$phpgw_setup->db->query("update applications set app_order=10,app_tables=NULL where app_name='email'");
$phpgw_setup->db->query("update applications set app_order=11,app_tables='newsgroups,users_newsgroups' where app_name='nntp'");
$phpgw_setup->db->query("update applications set app_order=0,app_tables=NULL where app_name='cron_apps'");
$sql = "CREATE TABLE config ("
."config_name varchar(25) NOT NULL,"
."config_value varchar(100),"
."UNIQUE config_name (config_name)"
.")";
$phpgw_setup->db->query($sql);
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('template_set', 'default')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('temp_dir', '/path/to/tmp')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('files_dir', '/path/to/dir/phpgroupware/files')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('encryptkey', 'change this phrase 2 something else'");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('site_title', 'phpGroupWare')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('hostname', 'local.machine.name')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('webserver_url', '/phpgroupware')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('auth_type', 'sql')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('ldap_host', 'localhost')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('ldap_context', 'o=phpGroupWare')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('usecookies', 'True')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('mail_server', 'localhost')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('mail_server_type', 'imap')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('imap_server_type', 'Cyrus')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('mail_suffix', 'yourdomain.com')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('mail_login_type', 'standard')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('smtp_server', 'localhost')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('smtp_port', '25')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_server', 'yournewsserver.com')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_port', '119')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_sender', 'complaints@yourserver.com')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_organization', 'phpGroupWare')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_admin', 'admin@yourserver.com')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_login_username', '')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('nntp_login_password', '')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('default_ftp_server', 'localhost')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('httpproxy_server', '')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('httpproxy_port', '')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('showpoweredbyon', 'bottom')");
$phpgw_setup->db->query("insert into config (config_name, config_value) values ('checkfornewversion', 'False')");
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "0.9.1";
}
?>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,13 +0,0 @@
<?php
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
include("../header.inc.php");
include("./inc/functions.inc.php");
$ConfigDomain = "phpgroupware.org";
loaddb();
// $currentver = "drop";
$currentver = "new";
$phpgw_setup->manage_tables();
$phpgw_setup->execute_script("create_tables");
?>