- s/RoundCube/Roundcube/

release-0.6
alecpl 14 years ago
parent 6465a92a38
commit e019f2d0f2

@ -1,4 +1,4 @@
CHANGELOG RoundCube Webmail
CHANGELOG Roundcube Webmail
===========================
- Prevent from saving a non-existing skin path in user prefs (#1486936)

@ -1,7 +1,7 @@
INTRODUCTION
============
This file describes the basic steps to install RoundCube Webmail on your
This file describes the basic steps to install Roundcube Webmail on your
web server. For additional information, please also consult the project's
wiki page at http://trac.roundcube.net/wiki
@ -42,7 +42,7 @@ INSTALLATION
are writable by the webserver
- /temp
- /logs
3. Create a new database and a database user for RoundCube (see DATABASE SETUP)
3. Create a new database and a database user for Roundcube (see DATABASE SETUP)
4. Point your browser to http://url-to-roundcube/installer/
5. Follow the instructions of the install script (or see MANUAL CONFIGURATION)
6. After creating and testing the configuration, remove the installer directory

@ -1,4 +1,4 @@
-- RoundCube Webmail update script for MSSQL databases
-- Roundcube Webmail update script for MSSQL databases
-- Updates from version 0.3.1

@ -1,4 +1,4 @@
-- RoundCube Webmail initial database structure
-- Roundcube Webmail initial database structure
/*!40014 SET FOREIGN_KEY_CHECKS=0 */;

@ -1,4 +1,4 @@
-- RoundCube Webmail update script for MySQL databases
-- Roundcube Webmail update script for MySQL databases
-- Updates from version 0.1-stable

@ -1,4 +1,4 @@
-- RoundCube Webmail initial database structure
-- Roundcube Webmail initial database structure
--
-- Sequence "user_ids"

@ -1,4 +1,4 @@
-- RoundCube Webmail update script for Postgres databases
-- Roundcube Webmail update script for Postgres databases
-- Updates from version 0.1-stable to 0.1.1
CREATE INDEX cache_user_id_idx ON cache (user_id, cache_key);

@ -1,4 +1,4 @@
-- RoundCube Webmail initial database structure
-- Roundcube Webmail initial database structure
--
-- Table structure for table `cache`

@ -1,4 +1,4 @@
-- RoundCube Webmail update script for SQLite databases
-- Roundcube Webmail update script for SQLite databases
-- Updates from version 0.1-stable to 0.1.1
DROP TABLE messages;

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| bin/cleandb.sh |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| bin/decrypt.sh |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| bin/dumpschema.sh |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -124,12 +124,12 @@ if ($RCI->configured) {
if ($success) {
echo "This instance of RoundCube is up-to-date.\n";
echo "This instance of Roundcube is up-to-date.\n";
echo "Have fun!\n";
}
}
else {
echo "This instance of RoundCube is not yet configured!\n";
echo "This instance of Roundcube is not yet configured!\n";
echo "Open http://url-to-roundcube/installer/ in your browser and follow the instuctions.\n";
}

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| Configuration file for database access |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| Main configuration file |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
@ -105,11 +105,11 @@ $rcmail_config['smtp_server'] = '';
// SMTP port (default is 25; 465 for SSL)
$rcmail_config['smtp_port'] = 25;
// SMTP username (if required) if you use %u as the username RoundCube
// SMTP username (if required) if you use %u as the username Roundcube
// will use the current username for login
$rcmail_config['smtp_user'] = '';
// SMTP password (if required) if you use %p as the password RoundCube
// SMTP password (if required) if you use %p as the password Roundcube
// will use the current user's password for login
$rcmail_config['smtp_pass'] = '';
@ -154,7 +154,7 @@ $rcmail_config['message_cache_lifetime'] = '10d';
// set the port for the ssl connection as value of this option if it differs from the default 443
$rcmail_config['force_https'] = false;
// automatically create a new RoundCube user when log-in the first time.
// automatically create a new Roundcube user when log-in the first time.
// a new user will be created once the IMAP login succeeds.
// set to false if only registered users can use this service
$rcmail_config['auto_create_user'] = true;
@ -225,11 +225,11 @@ $rcmail_config['product_name'] = 'Roundcube Webmail';
$rcmail_config['include_host_config'] = false;
// path to a text file which will be added to each sent message
// paths are relative to the RoundCube root folder
// paths are relative to the Roundcube root folder
$rcmail_config['generic_message_footer'] = '';
// path to a text file which will be added to each sent HTML message
// paths are relative to the RoundCube root folder
// paths are relative to the Roundcube root folder
$rcmail_config['generic_message_footer_html'] = '';
// add a received header to outgoing mails containing the creators IP and hostname

@ -1,10 +1,10 @@
<?php
/*
+-------------------------------------------------------------------------+
| RoundCube Webmail IMAP Client |
| Roundcube Webmail IMAP Client |
| Version 0.4-20100807 |
| |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| |
| This program is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License version 2 |
@ -146,7 +146,7 @@ $request_check_whitelist = array('login'=>1, 'spell'=>1);
// check client X-header to verify request origin
if ($OUTPUT->ajax_call) {
if (!$RCMAIL->config->get('devel_mode') && rc_request_header('X-RoundCube-Request') != $RCMAIL->get_request_token() && !empty($RCMAIL->user->ID)) {
if (!$RCMAIL->config->get('devel_mode') && rc_request_header('X-Roundcube-Request') != $RCMAIL->get_request_token() && !empty($RCMAIL->user->ID)) {
header('HTTP/1.1 404 Not Found');
die("Invalid Request");
}
@ -169,8 +169,8 @@ if (empty($RCMAIL->user->ID)) {
if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) {
$OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"),
html::tag('h2', array('style' => "margin-top:0.2em"), "Installer script is still accessible") .
html::p(null, "The install script of your RoundCube installation is still stored in its default location!") .
html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the RoundCube directory because .
html::p(null, "The install script of your Roundcube installation is still stored in its default location!") .
html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the Roundcube directory because .
these files may expose sensitive configuration data like server passwords and encryption keys
to the public. Make sure you cannot access the <a href=\"./installer/\">installer script</a> from your browser.")
)

@ -75,7 +75,7 @@ if (version_compare(PHP_VERSION, MIN_PHP_VERSION, '>=')) {
?>
<h3>Checking PHP extensions</h3>
<p class="hint">The following modules/extensions are <em>required</em> to run RoundCube:</p>
<p class="hint">The following modules/extensions are <em>required</em> to run Roundcube:</p>
<?php
// get extensions location
@ -154,7 +154,7 @@ foreach ($required_libs as $classname => $file) {
?>
<h3>Checking php.ini/.htaccess settings</h3>
<p class="hint">The following settings are <em>required</em> to run RoundCube:</p>
<p class="hint">The following settings are <em>required</em> to run Roundcube:</p>
<?php
@ -205,7 +205,7 @@ foreach ($optional_checks as $var => $val) {
<?php
if ($RCI->failures) {
echo '<p class="warning">Sorry but your webserver does not meet the requirements for RoundCube!<br />
echo '<p class="warning">Sorry but your webserver does not meet the requirements for Roundcube!<br />
Please install the missing modules or fix the php.ini settings according to the above check results.<br />
Hint: only checks showing <span class="fail">NOT OK</span> need to be fixed.</p>';
}

@ -24,7 +24,7 @@ $_SESSION['allowinstaller'] = true;
if (!empty($_POST['submit'])) {
echo '<p class="notice">Copy or download the following configurations and save them in two files';
echo ' (names above the text box) within the <tt>'.RCMAIL_CONFIG_DIR.'</tt> directory of your RoundCube installation.<br/>';
echo ' (names above the text box) within the <tt>'.RCMAIL_CONFIG_DIR.'</tt> directory of your Roundcube installation.<br/>';
echo ' Make sure that there are no characters outside the <tt>&lt;?php ?&gt;</tt> brackets when saving the files.</p>';
$textbox = new html_textarea(array('rows' => 16, 'cols' => 60, 'class' => "configfile"));
@ -343,12 +343,12 @@ $check_autocreate = new html_checkbox(array('name' => '_auto_create_user', 'id'
echo $check_autocreate->show(intval($RCI->getprop('auto_create_user')), array('value' => 1));
?>
<label for="cfgautocreate">Automatically create a new RoundCube user when log-in the first time</label><br />
<label for="cfgautocreate">Automatically create a new Roundcube user when log-in the first time</label><br />
<p class="hint">A user is authenticated by the IMAP server but it requires a local record to store settings
and contacts. With this option enabled a new user record will automatically be created once the IMAP login succeeds.</p>
<p class="hint">If this option is disabled, the login only succeeds if there's a matching user-record in the local RoundCube database
<p class="hint">If this option is disabled, the login only succeeds if there's a matching user-record in the local Roundcube database
what means that you have to create those records manually or disable this option after the first login.</p>
</dd>

@ -58,7 +58,7 @@ if ($RCI->configured && empty($_REQUEST['_step'])) {
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>RoundCube Webmail Installer</title>
<title>Roundcube Webmail Installer</title>
<meta name="Robots" content="noindex,nofollow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="styles.css" />
@ -69,7 +69,7 @@ if ($RCI->configured && empty($_REQUEST['_step'])) {
<div id="banner">
<div id="header">
<div class="banner-logo"><a href="http://www.roundcube.net"><img src="images/banner_logo.gif" width="200" height="56" border="0" alt="RoundCube Webmal Project" /></a></div>
<div class="banner-logo"><a href="http://www.roundcube.net"><img src="images/banner_logo.gif" width="200" height="56" border="0" alt="Roundcube Webmal Project" /></a></div>
<div class="banner-right"><img src="images/banner_right.gif" width="10" height="56" alt="" /></div>
</div>
<div id="topnav">
@ -92,7 +92,7 @@ if ($RCI->configured && empty($_REQUEST['_step'])) {
?>
<h1>RoundCube Webmail Installer</h1>
<h1>Roundcube Webmail Installer</h1>
<ol id="progress">
<?php
@ -120,7 +120,7 @@ else {
</div>
<div id="footer">
Installer by the RoundCube Dev Team. Copyright &copy; 2008 - Published under the GNU Public License;&nbsp;
Installer by the Roundcube Dev Team. Copyright &copy; 2008 - Published under the GNU Public License;&nbsp;
Icons by <a href="http://famfamfam.com">famfamfam</a>
</div>
</body>

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| rcube_install.php |
| |
| This file is part of the RoundCube Webmail package |
| Copyright (C) 2008-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail package |
| Copyright (C) 2008-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU Public License |
+-----------------------------------------------------------------------+
@ -15,10 +15,10 @@
/**
* Class to control the installation process of the RoundCube Webmail package
* Class to control the installation process of the Roundcube Webmail package
*
* @category Install
* @package RoundCube
* @package Roundcube
* @author Thomas Bruederli
*/
class rcube_install
@ -327,7 +327,7 @@ class rcube_install
/**
* Compare the local database schema with the reference schema
* required for this version of RoundCube
* required for this version of Roundcube
*
* @param boolean True if the schema schould be updated
* @return boolean True if the schema is up-to-date, false if not or an error occured
@ -366,7 +366,7 @@ class rcube_install
/**
* Compare the local database schema with the reference schema
* required for this version of RoundCube
* required for this version of Roundcube
*
* @param boolean True if the schema schould be updated
* @return boolean True if the schema is up-to-date, false if not or an error occured
@ -624,7 +624,7 @@ class rcube_install
}
/**
* Handler for RoundCube errors
* Handler for Roundcube errors
*/
function raise_error($p)
{

@ -88,7 +88,7 @@ if ($RCI->configured && ($messages = $RCI->check_config())) {
?>
<h3>Check if directories are writable</h3>
<p>RoundCube may need to write/save files into these directories</p>
<p>Roundcube may need to write/save files into these directories</p>
<?php
if ($RCI->configured) {
@ -255,10 +255,10 @@ if (isset($_POST['sendmail'])) {
$headers = array(
'From' => trim($_POST['_from']),
'To' => trim($_POST['_to']),
'Subject' => 'Test message from RoundCube',
'Subject' => 'Test message from Roundcube',
);
$body = 'This is a test to confirm that RoundCube can send email.';
$body = 'This is a test to confirm that Roundcube can send email.';
$smtp_response = array();
// send mail using configured SMTP server

@ -1,10 +1,10 @@
<?php
/*
+-------------------------------------------------------------------------+
| RoundCube Webmail IMAP Client |
| Roundcube Webmail IMAP Client |
| Version 0.3-20090702 |
| |
| Copyright (C) 2005-2009, RoundCube Dev. - Switzerland |
| Copyright (C) 2005-2009, Roundcube Dev. - Switzerland |
| |
| This program is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License version 2 |

@ -1,8 +1,8 @@
<form action="index.php" methond="get">
<input type="hidden" name="_step" value="1" />
<p>Welcome to the interactive install script for the RoundCube Webmail package</p>
<p>First let's check your local environment and find out if everything RoundCube needs is available.</p>
<p>Welcome to the interactive install script for the Roundcube Webmail package</p>
<p>First let's check your local environment and find out if everything Roundcube needs is available.</p>
<p>The basic requirements are:</p>
<ul>

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/html.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev, - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev, - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/iniset.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2008-2009, RoundCube Dev, - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2008-2009, Roundcube Dev, - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/main.inc |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2009, RoundCube Dev, - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2009, Roundcube Dev, - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |
@ -20,7 +20,7 @@
*/
/**
* RoundCube Webmail common functions
* Roundcube Webmail common functions
*
* @package Core
* @author Thomas Bruederli <roundcube@gmail.com>

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcmail.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2008-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2008-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |
@ -21,7 +21,7 @@
/**
* Application class of RoundCube Webmail
* Application class of Roundcube Webmail
* implemented as singleton
*
* @package Core
@ -1172,7 +1172,7 @@ class rcmail
}
/**
* Build a valid URL to this instance of RoundCube
* Build a valid URL to this instance of Roundcube
*
* @param mixed Either a string with the action or url parameters as key-value pairs
* @return string Valid application URL

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_addressbook.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2006-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2006-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_browser.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2007-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2007-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_config.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2008-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2008-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |
@ -20,7 +20,7 @@
*/
/**
* Configuration class for RoundCube
* Configuration class for Roundcube
*
* @package Core
*/

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_contacts.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2006-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2006-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_html_page.php |
| |
| This file is part of the RoundCube PHP suite |
| Copyright (C) 2005-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube PHP suite |
| Copyright (C) 2005-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| CONTENTS: |
@ -149,7 +149,7 @@ class rcube_html_page
// set default page title
if (empty($this->title)) {
$this->title = 'RoundCube Mail';
$this->title = 'Roundcube Mail';
}
// replace specialchars in content

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_imap.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_imap_generic.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_json_output.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2008-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2008-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -3,8 +3,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_ldap.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2006-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2006-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_mdb2.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_message.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2008-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2008-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_mime_struct.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_plugin.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2008-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2008-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_plugin_api.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2008-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2008-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_result_set.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2006-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2006-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |
@ -21,7 +21,7 @@
/**
* RoundCube result set class.
* Roundcube result set class.
* Representing an address directory result set.
*
* @package Addressbook

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_session.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| rcube_shared.inc |
| |
| This file is part of the RoundCube PHP suite |
| Copyright (C) 2005-2007, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube PHP suite |
| Copyright (C) 2005-2007, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| CONTENTS: |
@ -21,7 +21,7 @@
/**
* RoundCube shared functions
* Roundcube shared functions
*
* @package Core
*/

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_smtp.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_sqlite.inc |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_string_replacer.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_template.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2006-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2006-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |
@ -687,7 +687,7 @@ class rcube_template extends rcube_html_page
$content = call_user_func($handler, $attrib);
}
else if ($object == 'productname') {
$name = !empty($this->config['product_name']) ? $this->config['product_name'] : 'RoundCube Webmail';
$name = !empty($this->config['product_name']) ? $this->config['product_name'] : 'Roundcube Webmail';
$content = Q($name);
}
else if ($object == 'version') {

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_user.inc |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| program/include/rcube_vcard.php |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2008-2009, RoundCube Dev. - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2008-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |

@ -1,9 +1,9 @@
/*
+-----------------------------------------------------------------------+
| RoundCube Webmail Client Script |
| Roundcube Webmail Client Script |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev, - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev, - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
@ -56,7 +56,7 @@ function rcube_webmail()
$.ajaxSetup({
cache:false,
error:function(request, status, err){ ref.http_error(request, status, err); },
beforeSend:function(xmlhttp){ xmlhttp.setRequestHeader('X-RoundCube-Request', ref.env.request_token); }
beforeSend:function(xmlhttp){ xmlhttp.setRequestHeader('X-Roundcube-Request', ref.env.request_token); }
});
// set environment variable(s)

@ -1,9 +1,9 @@
/*
+-----------------------------------------------------------------------+
| RoundCube common js library |
| Roundcube common js library |
| |
| This file is part of the RoundCube web development suite |
| Copyright (C) 2005-2007, RoundCube Dev, - Switzerland |
| This file is part of the Roundcube web development suite |
| Copyright (C) 2005-2007, Roundcube Dev, - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
@ -365,7 +365,7 @@ triggerEvent: function(evt, e)
/**
* RoundCube generic layer (floating box) class
* Roundcube generic layer (floating box) class
*
* @constructor
*/

@ -1,9 +1,9 @@
/*
+-----------------------------------------------------------------------+
| RoundCube editor js library |
| Roundcube editor js library |
| |
| This file is part of the RoundCube web development suite |
| Copyright (C) 2006, RoundCube Dev, - Switzerland |
| This file is part of the Roundcube web development suite |
| Copyright (C) 2006, Roundcube Dev, - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -1,9 +1,9 @@
/*
+-----------------------------------------------------------------------+
| RoundCube List Widget |
| Roundcube List Widget |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2006-2009, RoundCube Dev, - Switzerland |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2006-2009, Roundcube Dev, - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
@ -18,7 +18,7 @@
/**
* RoundCube List Widget class
* Roundcube List Widget class
* @contructor
*/
function rcube_list_widget(list, p)

@ -35,7 +35,7 @@ Note:
*/
// Charset maps
// Adapted to fit RoundCube
// Adapted to fit Roundcube
define("UTF8_MAP_DIR", "program/lib/encoding");
//Error constants

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/ar_SA/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/ar_SA/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/ast/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/ast/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2008, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2008, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/az_AZ/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/az_AZ/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/bg/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/bg/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/bn_BD/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2008, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2008, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/bn_BD/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2008, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2008, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/bzg/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2007, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2007, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/bzg/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2007, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2007, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/bs_BA/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/bs_BA/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/ca_ES/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/ca_ES/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/cs_CZ/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/cs_CZ/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/cy_GB/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2008-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2008-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/cy_GB/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2008-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2008-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/da_DK/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/da_DK/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/de_CH/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/de_CH/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/de_DE/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/de_DE/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/el/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -3,8 +3,8 @@
+-----------------------------------------------------------------------+
| language/el/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/en_GB/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/en_GB/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/en_US/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/en_US/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/eo/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/eo/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/es_AR/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/es_ES/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/es_ES/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2008, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2008, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/es_ES/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2008, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2008, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/et_EE/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -5,8 +5,8 @@
+-----------------------------------------------------------------------+
| language/et_EE/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/eu_ES/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/eu_ES/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/fa/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/fa/messages.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| language/fi_FI/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005-2010, RoundCube Dev. - Switzerland |
| Language file of the Roundcube Webmail client |
| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save