Show spam aliases #
This commit is contained in:
34
data/web/rc/plugins/zipdownload/README
Normal file
34
data/web/rc/plugins/zipdownload/README
Normal file
@@ -0,0 +1,34 @@
|
||||
Roundcube Webmail ZipDownload
|
||||
=============================
|
||||
This plugin adds an option to download all attachments to a message in one zip
|
||||
file, when a message has multiple attachments. The plugin also allows the
|
||||
download of a selection of messages in 1 zip file.
|
||||
|
||||
Requirements
|
||||
============
|
||||
* php_zip extension (including ZipArchive class)
|
||||
Either install it via PECL or for PHP >= 5.2 compile with --enable-zip option
|
||||
|
||||
License
|
||||
=======
|
||||
This plugin is released under the GNU General Public License Version 3
|
||||
or later (http://www.gnu.org/licenses/gpl.html).
|
||||
|
||||
Even if skins might contain some programming work, they are not considered
|
||||
as a linked part of the plugin and therefore skins DO NOT fall under the
|
||||
provisions of the GPL license. See the README file located in the core skins
|
||||
folder for details on the skin license.
|
||||
|
||||
Install
|
||||
=======
|
||||
* Place this plugin folder into plugins directory of Roundcube
|
||||
* Add zipdownload to $config['plugins'] in your Roundcube config
|
||||
|
||||
NB: When downloading the plugin from GitHub you will need to create a
|
||||
directory called zipdownload and place the files in there, ignoring the
|
||||
root directory in the downloaded archive
|
||||
|
||||
Config
|
||||
======
|
||||
The default config file is plugins/zipdownload/config.inc.php.dist
|
||||
Rename this to plugins/zipdownload/config.inc.php
|
30
data/web/rc/plugins/zipdownload/composer.json
Normal file
30
data/web/rc/plugins/zipdownload/composer.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "roundcube/zipdownload",
|
||||
"type": "roundcube-plugin",
|
||||
"description": "Adds an option to download all attachments to a message in one zip file, when a message has multiple attachments. Also allows the download of a selection of messages in one zip file. Supports mbox and maildir format.",
|
||||
"license": "GPLv3+",
|
||||
"version": "3.2",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Thomas Bruederli",
|
||||
"email": "roundcube@gmail.com",
|
||||
"role": "Lead"
|
||||
},
|
||||
{
|
||||
"name": "Aleksander Machniak",
|
||||
"email": "alec@alec.pl",
|
||||
"role": "Lead"
|
||||
}
|
||||
],
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "http://plugins.roundcube.net"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.3.0",
|
||||
"roundcube/plugin-installer": ">=0.1.3",
|
||||
"ext-zip": "*"
|
||||
}
|
||||
}
|
18
data/web/rc/plugins/zipdownload/config.inc.php.dist
Normal file
18
data/web/rc/plugins/zipdownload/config.inc.php.dist
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* ZipDownload configuration file
|
||||
*/
|
||||
|
||||
// Zip attachments
|
||||
// Only show the link when there are more than this many attachments
|
||||
// -1 to prevent downloading of attachments as zip
|
||||
$config['zipdownload_attachments'] = 1;
|
||||
|
||||
// Zip selection of messages
|
||||
$config['zipdownload_selection'] = false;
|
||||
|
||||
// Charset to use for filenames inside the zip
|
||||
$config['zipdownload_charset'] = 'ISO-8859-1';
|
||||
|
||||
?>
|
18
data/web/rc/plugins/zipdownload/localization/ar.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/ar.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'تنزيل كل المرفقات';
|
18
data/web/rc/plugins/zipdownload/localization/ar_SA.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/ar_SA.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'تحميل جميع المرفقات';
|
22
data/web/rc/plugins/zipdownload/localization/ast.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/ast.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Descargar tolos axuntos';
|
||||
$labels['download'] = 'Descargar...';
|
||||
$labels['downloadmbox'] = 'Formatu Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Formatu Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Fonte (.eml)';
|
18
data/web/rc/plugins/zipdownload/localization/az_AZ.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/az_AZ.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Bütün qoşmaları endir';
|
22
data/web/rc/plugins/zipdownload/localization/be_BE.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/be_BE.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Спампаваць усе далучэнні';
|
||||
$labels['download'] = 'Сцягнуць...';
|
||||
$labels['downloadmbox'] = 'Фармат mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Фармат maildir (.zip)';
|
||||
$labels['downloademl'] = 'Выточны файл (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/bg_BG.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/bg_BG.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Изтегляне на всички прикачени файлове';
|
||||
$labels['download'] = 'Изтегляне...';
|
||||
$labels['downloadmbox'] = 'Mbox формат (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir формат (.zip)';
|
||||
$labels['downloademl'] = 'Outlook формат (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/br.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/br.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Pellgargañ an holl stagadennoù';
|
||||
$labels['download'] = 'Pellgargañ…';
|
||||
$labels['downloadmbox'] = 'Mentrezh Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Mentrezh Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Tarzh (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/bs_BA.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/bs_BA.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Preuzmi sve priloge';
|
||||
$labels['download'] = 'Preuzmi...';
|
||||
$labels['downloadmbox'] = 'Mbox format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir format (.zip)';
|
||||
$labels['downloademl'] = 'Izvorno (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/ca_ES.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/ca_ES.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Descarrega tots els adjunts';
|
||||
$labels['download'] = 'Descarrega...';
|
||||
$labels['downloadmbox'] = 'Format mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Format maildir (.zip)';
|
||||
$labels['downloademl'] = 'Codi font (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/cs_CZ.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/cs_CZ.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Stáhnout všechny přílohy';
|
||||
$labels['download'] = 'Stáhnout...';
|
||||
$labels['downloadmbox'] = 'Formát mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Formát maildir (.zip)';
|
||||
$labels['downloademl'] = 'Zdroj (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/cy_GB.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/cy_GB.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Lawrlwytho\'r holl atodiadau';
|
||||
$labels['download'] = 'Lawrlwytho...';
|
||||
$labels['downloadmbox'] = 'Fformat mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Fformat maildir (.zip)';
|
||||
$labels['downloademl'] = 'Ffynhonnell (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/da_DK.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/da_DK.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Download alle som .zip-fil';
|
||||
$labels['download'] = 'Download...';
|
||||
$labels['downloadmbox'] = 'Mbox format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir format (.zip)';
|
||||
$labels['downloademl'] = 'Kilde (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/de_CH.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/de_CH.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Alle Anhänge herunterladen';
|
||||
$labels['download'] = 'Download...';
|
||||
$labels['downloadmbox'] = 'Mbox Format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir Format (.zip)';
|
||||
$labels['downloademl'] = 'Source (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/de_DE.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/de_DE.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Alle Anhänge herunterladen';
|
||||
$labels['download'] = 'Herunterladen...';
|
||||
$labels['downloadmbox'] = 'Mbox-Format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir-Format (.zip)';
|
||||
$labels['downloademl'] = 'Quelltext (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/el_GR.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/el_GR.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Λήψη όλων των συνημμένων';
|
||||
$labels['download'] = 'Λήψη...';
|
||||
$labels['downloadmbox'] = 'Μορφή mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Μορφή maildir (.zip)';
|
||||
$labels['downloademl'] = 'Πηγή (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/en_CA.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/en_CA.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Download all attachments';
|
||||
$labels['download'] = 'Download...';
|
||||
$labels['downloadmbox'] = 'Mbox format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir format (.zip)';
|
||||
$labels['downloademl'] = 'Source (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/en_GB.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/en_GB.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Download all attachments';
|
||||
$labels['download'] = 'Download...';
|
||||
$labels['downloadmbox'] = 'Mbox format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir format (.zip)';
|
||||
$labels['downloademl'] = 'Source (.eml)';
|
24
data/web/rc/plugins/zipdownload/localization/en_US.inc
Normal file
24
data/web/rc/plugins/zipdownload/localization/en_US.inc
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
|
||||
$labels = array();
|
||||
$labels['downloadall'] = 'Download all attachments';
|
||||
$labels['download'] = 'Download...';
|
||||
$labels['downloadmbox'] = 'Mbox format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir format (.zip)';
|
||||
$labels['downloademl'] = 'Source (.eml)';
|
18
data/web/rc/plugins/zipdownload/localization/eo.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/eo.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Elŝuti ĉiujn kunsendaĵojn';
|
22
data/web/rc/plugins/zipdownload/localization/es_419.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/es_419.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Descargar todos los archivos adjuntos';
|
||||
$labels['download'] = 'Descargando...';
|
||||
$labels['downloadmbox'] = 'Formato mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Formato maildir (.zip)';
|
||||
$labels['downloademl'] = 'Fuente (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/es_AR.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/es_AR.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Descargar Todo';
|
||||
$labels['download'] = 'Descargar...';
|
||||
$labels['downloadmbox'] = 'Formato Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Formato Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Original (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/es_ES.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/es_ES.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Descargar todos los adjuntos';
|
||||
$labels['download'] = 'Descargar...';
|
||||
$labels['downloadmbox'] = 'Formato mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Formato maildir (.zip)';
|
||||
$labels['downloademl'] = 'Fuente (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/et_EE.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/et_EE.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Laadi alla kõik manused';
|
||||
$labels['download'] = 'lae arvutisse';
|
||||
$labels['downloadmbox'] = 'Mbox vorming (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir vorming (.zip)';
|
||||
$labels['downloademl'] = 'Lähtetekst (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/eu_ES.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/eu_ES.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Deskargatu eranskin guztiak';
|
||||
$labels['download'] = 'Deskargatu...';
|
||||
$labels['downloadmbox'] = 'Mbox formatua (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir formatua (.zip)';
|
||||
$labels['downloademl'] = 'Iturburua (.eml)';
|
18
data/web/rc/plugins/zipdownload/localization/fa_AF.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/fa_AF.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'بارگزاری همه ضمیمه ها';
|
22
data/web/rc/plugins/zipdownload/localization/fa_IR.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/fa_IR.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'بارگیری همه پیوستها';
|
||||
$labels['download'] = 'بارگیری';
|
||||
$labels['downloadmbox'] = 'قالب Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'قالب Maildir (.zip)';
|
||||
$labels['downloademl'] = 'منبع (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/fi_FI.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/fi_FI.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Lataa kaikki liitteet';
|
||||
$labels['download'] = 'Lataa...';
|
||||
$labels['downloadmbox'] = 'Mbox-muoto (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir-muoto (.zip)';
|
||||
$labels['downloademl'] = 'Lähde (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/fo_FO.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/fo_FO.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Heinta allar viðheftingar';
|
||||
$labels['download'] = 'Heinta...';
|
||||
$labels['downloadmbox'] = 'Mbox týpa (.zip)';
|
||||
$labels['downloadmaildir'] = 'Teldupost mappu format (.zip)';
|
||||
$labels['downloademl'] = 'Kelda (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/fr_FR.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/fr_FR.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Télécharger toutes les pièces jointes';
|
||||
$labels['download'] = 'Télécharger...';
|
||||
$labels['downloadmbox'] = 'Format mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Format maildir (.zip)';
|
||||
$labels['downloademl'] = 'Source (.eml)';
|
18
data/web/rc/plugins/zipdownload/localization/fy_NL.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/fy_NL.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloademl'] = 'Boarne (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/gl_ES.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/gl_ES.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Descargar todos os adxuntos';
|
||||
$labels['download'] = 'Descargar';
|
||||
$labels['downloadmbox'] = 'En formato mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'En formato maildir (.zip)';
|
||||
$labels['downloademl'] = 'Código fonte (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/he_IL.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/he_IL.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'להוריד את כל הצרופות';
|
||||
$labels['download'] = 'מוריד כעת...';
|
||||
$labels['downloadmbox'] = 'פורמט Mbox ‏(zip.)';
|
||||
$labels['downloadmaildir'] = 'פורמט Maildir ‏(zip.)';
|
||||
$labels['downloademl'] = 'מקור (eml.)';
|
18
data/web/rc/plugins/zipdownload/localization/hr_HR.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/hr_HR.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Preuzmi sve privitke';
|
22
data/web/rc/plugins/zipdownload/localization/hu_HU.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/hu_HU.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Összes csatolmány letöltése';
|
||||
$labels['download'] = 'Letöltés...';
|
||||
$labels['downloadmbox'] = 'Mbox formátum (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir formátum (.zip)';
|
||||
$labels['downloademl'] = 'Forrás (.eml)';
|
18
data/web/rc/plugins/zipdownload/localization/hy_AM.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/hy_AM.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Ներբեռնել բոլո կցված նիշքերը';
|
22
data/web/rc/plugins/zipdownload/localization/ia.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/ia.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Discargar tote le attachamentos';
|
||||
$labels['download'] = 'Discargar...';
|
||||
$labels['downloadmbox'] = 'Formato Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Formato Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Fonte (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/id_ID.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/id_ID.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Unduh semua lampiran';
|
||||
$labels['download'] = 'Unduh...';
|
||||
$labels['downloadmbox'] = 'Format Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Format Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Sumber (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/is_IS.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/is_IS.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Niðurhala öllum viðhengjum';
|
||||
$labels['download'] = 'Hlaða niður...';
|
||||
$labels['downloadmbox'] = 'Mbox snið (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir snið (.zip)';
|
||||
$labels['downloademl'] = 'Upprunalegt (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/it_IT.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/it_IT.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Scarica tutti gli allegati';
|
||||
$labels['download'] = 'Scaricare...';
|
||||
$labels['downloadmbox'] = 'Formato mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Formato maildir (.zip)';
|
||||
$labels['downloademl'] = 'Sorgente (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/ja_JP.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/ja_JP.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'すべての添付ファイルをダウンロード';
|
||||
$labels['download'] = 'ダウンロード...';
|
||||
$labels['downloadmbox'] = 'mbox形式(.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir形式(.zip)';
|
||||
$labels['downloademl'] = 'ソース(.eml)';
|
18
data/web/rc/plugins/zipdownload/localization/km_KH.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/km_KH.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'ទាញយកឯកសារភ្ជាប់ទាំងអស់';
|
22
data/web/rc/plugins/zipdownload/localization/ko_KR.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/ko_KR.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = '모든 첨부파일을 다운로드';
|
||||
$labels['download'] = '다운로드...';
|
||||
$labels['downloadmbox'] = 'Mbox 형식(.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir 형식(.zip)';
|
||||
$labels['downloademl'] = '소스(.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/ku.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/ku.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Hemû pêvekan daxîne';
|
||||
$labels['download'] = 'Daxîne...';
|
||||
$labels['downloadmbox'] = 'Mbox format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir format (.zip)';
|
||||
$labels['downloademl'] = 'Çavkanî (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/ku_IQ.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/ku_IQ.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'داگرتنی هەموو هاوپێچەکان';
|
||||
$labels['download'] = 'داگرتن...';
|
||||
$labels['downloadmbox'] = 'Mbox format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir format (.zip)';
|
||||
$labels['downloademl'] = 'Source (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/lb_LU.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/lb_LU.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'All d\'Unhäng eroflueden';
|
||||
$labels['download'] = 'Eroflueden...';
|
||||
$labels['downloadmbox'] = 'Mbox-Format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir-Format (.zip)';
|
||||
$labels['downloademl'] = 'Source (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/lt_LT.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/lt_LT.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Atsisiųsti visus priedus';
|
||||
$labels['download'] = 'Parsisiųsti...';
|
||||
$labels['downloadmbox'] = 'Mbox formatas (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir formatas (.zip)';
|
||||
$labels['downloademl'] = 'Kodas (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/lv_LV.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/lv_LV.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Lejupielādēt visus pielikumus';
|
||||
$labels['download'] = 'Lejupielādē...';
|
||||
$labels['downloadmbox'] = 'Mbox formāts(.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir formāts (.zip)';
|
||||
$labels['downloademl'] = 'Izejas avots (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/ml_IN.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/ml_IN.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'എല്ലാ അറ്റാച്ച്മെന്റുകളും ഡൗൺലോഡ് ചെയ്യുക';
|
||||
$labels['download'] = 'ഡൗൺലോഡ്...';
|
||||
$labels['downloadmbox'] = 'എംബോക്സ് രീതി (.zip)';
|
||||
$labels['downloadmaildir'] = 'മെയിൽഡിർ രീതി (.zip)';
|
||||
$labels['downloademl'] = 'സ്രോതസ്സ് (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/mn_MN.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/mn_MN.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Бүх хавсралтыг татах';
|
||||
$labels['download'] = 'Татаж авах...';
|
||||
$labels['downloadmbox'] = 'Хайрцагны формат (.zip)';
|
||||
$labels['downloadmaildir'] = 'Мэйлийн хавтасны формат (.zip)';
|
||||
$labels['downloademl'] = 'Эх код (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/nb_NO.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/nb_NO.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Last ned alle vedlegg';
|
||||
$labels['download'] = 'Nedlaste...';
|
||||
$labels['downloadmbox'] = 'Mbox format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir format (.zip)';
|
||||
$labels['downloademl'] = 'Kildekode (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/nl_NL.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/nl_NL.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Alle bijlagen downloaden';
|
||||
$labels['download'] = 'Download...';
|
||||
$labels['downloadmbox'] = 'Mbox-formaat (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir-formaat (.zip)';
|
||||
$labels['downloademl'] = 'Bron (.eml)';
|
18
data/web/rc/plugins/zipdownload/localization/nn_NO.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/nn_NO.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Last ned alle vedlegg';
|
22
data/web/rc/plugins/zipdownload/localization/pl_PL.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/pl_PL.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Pobierz wszystkie jako ZIP';
|
||||
$labels['download'] = 'Pobierz...';
|
||||
$labels['downloadmbox'] = 'Format mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Format maildir (.zip)';
|
||||
$labels['downloademl'] = 'Źródło wiadomości (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/pt_BR.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/pt_BR.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Baixar todos os anexos';
|
||||
$labels['download'] = 'Baixar...';
|
||||
$labels['downloadmbox'] = 'Formato mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Formato maildir (.zip)';
|
||||
$labels['downloademl'] = 'Original (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/pt_PT.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/pt_PT.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Transferir todos os anexos';
|
||||
$labels['download'] = 'Transferir...';
|
||||
$labels['downloadmbox'] = 'Formato Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Formato Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Original (.eml)';
|
18
data/web/rc/plugins/zipdownload/localization/ro_RO.inc
Normal file
18
data/web/rc/plugins/zipdownload/localization/ro_RO.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Descarcă toate atașamentele';
|
22
data/web/rc/plugins/zipdownload/localization/ru_RU.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/ru_RU.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Загрузить все вложения';
|
||||
$labels['download'] = 'Загрузка...';
|
||||
$labels['downloadmbox'] = 'Формат Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Формат Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Исходный формат (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/sk_SK.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/sk_SK.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Stiahnuť všetky prílohy';
|
||||
$labels['download'] = 'Stiahnuť...';
|
||||
$labels['downloadmbox'] = 'Formát Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Formát Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Zdroj (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/sl_SI.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/sl_SI.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Prenesi vse priponke';
|
||||
$labels['download'] = 'Prenesi...';
|
||||
$labels['downloadmbox'] = 'Mbox format (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir format (.zip)';
|
||||
$labels['downloademl'] = 'Vir (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/sq_AL.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/sq_AL.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Shkarkoji krejt bashkëngjitjet';
|
||||
$labels['download'] = 'Shkarkoni…';
|
||||
$labels['downloadmbox'] = 'Në format Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Në format Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Burim (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/sr_CS.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/sr_CS.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Преузми све прилоге';
|
||||
$labels['download'] = 'Преузимање...';
|
||||
$labels['downloadmbox'] = 'Mbox формат (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir формат (.zip)';
|
||||
$labels['downloademl'] = 'Изворно (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/sv_SE.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/sv_SE.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Ladda ner alla bifogade filer';
|
||||
$labels['download'] = 'Hämta...';
|
||||
$labels['downloadmbox'] = 'Format Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Format Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Källkod (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/tr_TR.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/tr_TR.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Tüm ek dosyaları indir';
|
||||
$labels['download'] = 'İndir...';
|
||||
$labels['downloadmbox'] = 'Mbox biçimi (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir biçimi (.zip)';
|
||||
$labels['downloademl'] = 'Kaynak (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/uk_UA.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/uk_UA.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Завантажити всі вкладення';
|
||||
$labels['download'] = 'Завантаження…';
|
||||
$labels['downloadmbox'] = 'Формат Mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Формат Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Джерело (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/vi_VN.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/vi_VN.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = 'Tải tất cả tệp tin đính kèm';
|
||||
$labels['download'] = 'Tải xuống...';
|
||||
$labels['downloadmbox'] = 'Định dạng mbox (.zip)';
|
||||
$labels['downloadmaildir'] = 'Định dạng Maildir (.zip)';
|
||||
$labels['downloademl'] = 'Mã nguồn (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/zh_CN.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/zh_CN.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = '下载全部附件';
|
||||
$labels['download'] = '下载...';
|
||||
$labels['downloadmbox'] = 'Mbox 格式 (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir 格式 (.zip)';
|
||||
$labels['downloademl'] = '源代码 (.eml)';
|
22
data/web/rc/plugins/zipdownload/localization/zh_TW.inc
Normal file
22
data/web/rc/plugins/zipdownload/localization/zh_TW.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/zipdownload/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Zipdownload plugin |
|
||||
| Copyright (C) 2012-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/
|
||||
*/
|
||||
$labels['downloadall'] = '下載所有附件';
|
||||
$labels['download'] = '下載...';
|
||||
$labels['downloadmbox'] = 'Mbox 格式 (.zip)';
|
||||
$labels['downloadmaildir'] = 'Maildir 格式 (.zip)';
|
||||
$labels['downloademl'] = '原始格式 (.eml)';
|
BIN
data/web/rc/plugins/zipdownload/skins/classic/zip.png
Normal file
BIN
data/web/rc/plugins/zipdownload/skins/classic/zip.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 546 B |
@@ -0,0 +1,8 @@
|
||||
/* Roundcube Zipdownload plugin styles for classic skin */
|
||||
|
||||
a.zipdownload {
|
||||
display: inline-block;
|
||||
padding: 0 0 2px 20px;
|
||||
background: url(zip.png) 0 1px no-repeat;
|
||||
font-style: italic;
|
||||
}
|
1
data/web/rc/plugins/zipdownload/skins/classic/zipdownload.min.css
vendored
Normal file
1
data/web/rc/plugins/zipdownload/skins/classic/zipdownload.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
a.zipdownload{display:inline-block;padding:0 0 2px 20px;background:url(zip.png) 0 1px no-repeat;font-style:italic}
|
14
data/web/rc/plugins/zipdownload/skins/larry/zipdownload.css
Normal file
14
data/web/rc/plugins/zipdownload/skins/larry/zipdownload.css
Normal file
@@ -0,0 +1,14 @@
|
||||
/* Roundcube Zipdownload plugin styles for skin "Larry" */
|
||||
|
||||
a.zipdownload {
|
||||
display: inline-block;
|
||||
margin-top: .5em;
|
||||
padding: 3px 5px 4px 5px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 800px) {
|
||||
a.zipdownload {
|
||||
margin-top: .15em;
|
||||
margin-bottom: .2em;
|
||||
}
|
||||
}
|
1
data/web/rc/plugins/zipdownload/skins/larry/zipdownload.min.css
vendored
Normal file
1
data/web/rc/plugins/zipdownload/skins/larry/zipdownload.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
a.zipdownload{display:inline-block;margin-top:.5em;padding:3px 5px 4px 5px}@media screen and (max-width:800px){a.zipdownload{margin-top:.15em;margin-bottom:.2em}}
|
23
data/web/rc/plugins/zipdownload/tests/Zipdownload.php
Normal file
23
data/web/rc/plugins/zipdownload/tests/Zipdownload.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
class Zipdownload_Plugin extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
function setUp()
|
||||
{
|
||||
include_once __DIR__ . '/../zipdownload.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* Plugin object construction test
|
||||
*/
|
||||
function test_constructor()
|
||||
{
|
||||
$rcube = rcube::get_instance();
|
||||
$plugin = new zipdownload($rcube->api);
|
||||
|
||||
$this->assertInstanceOf('zipdownload', $plugin);
|
||||
$this->assertInstanceOf('rcube_plugin', $plugin);
|
||||
}
|
||||
}
|
||||
|
99
data/web/rc/plugins/zipdownload/zipdownload.js
Normal file
99
data/web/rc/plugins/zipdownload/zipdownload.js
Normal file
@@ -0,0 +1,99 @@
|
||||
/**
|
||||
* ZipDownload plugin script
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2013-2014, The Roundcube Dev Team
|
||||
*
|
||||
* The JavaScript code in this page 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 3 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*/
|
||||
|
||||
window.rcmail && rcmail.addEventListener('init', function(evt) {
|
||||
// register additional actions
|
||||
rcmail.register_command('download-eml', function() { rcmail_zipdownload('eml'); });
|
||||
rcmail.register_command('download-mbox', function() { rcmail_zipdownload('mbox'); });
|
||||
rcmail.register_command('download-maildir', function() { rcmail_zipdownload('maildir'); });
|
||||
|
||||
// commands status
|
||||
rcmail.message_list && rcmail.message_list.addEventListener('select', function(list) {
|
||||
var selected = list.get_selection().length;
|
||||
|
||||
rcmail.enable_command('download', selected > 0);
|
||||
rcmail.enable_command('download-eml', selected == 1);
|
||||
rcmail.enable_command('download-mbox', 'download-maildir', selected > 1);
|
||||
});
|
||||
|
||||
// hook before default download action
|
||||
rcmail.addEventListener('beforedownload', rcmail_zipdownload_menu);
|
||||
|
||||
// find and modify default download link/button
|
||||
$.each(rcmail.buttons['download'] || [], function() {
|
||||
var link = $('#' + this.id),
|
||||
span = $('span', link);
|
||||
|
||||
if (!span.length) {
|
||||
span = $('<span>');
|
||||
link.html('').append(span);
|
||||
}
|
||||
|
||||
span.text(rcmail.get_label('zipdownload.download'));
|
||||
rcmail.env.download_link = link;
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
function rcmail_zipdownload(mode)
|
||||
{
|
||||
// default .eml download of single message
|
||||
if (mode == 'eml') {
|
||||
var uid = rcmail.get_single_uid();
|
||||
rcmail.goto_url('viewsource', rcmail.params_from_uid(uid, {_save: 1}), false, true);
|
||||
return;
|
||||
}
|
||||
|
||||
// multi-message download, use hidden form to POST selection
|
||||
if (rcmail.message_list && rcmail.message_list.get_selection().length > 1) {
|
||||
var inputs = [], form = $('#zipdownload-form'),
|
||||
post = rcmail.selection_post_data();
|
||||
|
||||
post._mode = mode;
|
||||
post._token = rcmail.env.request_token;
|
||||
|
||||
$.each(post, function(k, v) {
|
||||
if (typeof v == 'object' && v.length > 1) {
|
||||
for (var j=0; j < v.length; j++)
|
||||
inputs.push($('<input>').attr({type: 'hidden', name: k+'[]', value: v[j]}));
|
||||
}
|
||||
else {
|
||||
inputs.push($('<input>').attr({type: 'hidden', name: k, value: v}));
|
||||
}
|
||||
});
|
||||
|
||||
if (!form.length)
|
||||
form = $('<form>').attr({
|
||||
style: 'display: none',
|
||||
method: 'POST',
|
||||
action: '?_task=mail&_action=plugin.zipdownload.messages'
|
||||
})
|
||||
.appendTo('body');
|
||||
|
||||
form.html('').append(inputs).submit();
|
||||
}
|
||||
}
|
||||
|
||||
// display download options menu
|
||||
function rcmail_zipdownload_menu(e)
|
||||
{
|
||||
// show (sub)menu for download selection
|
||||
rcmail.command('menu-open', 'zipdownload-menu', e && e.target ? e.target : rcmail.env.download_link, e);
|
||||
|
||||
// abort default download action
|
||||
return false;
|
||||
}
|
20
data/web/rc/plugins/zipdownload/zipdownload.min.js
vendored
Normal file
20
data/web/rc/plugins/zipdownload/zipdownload.min.js
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* ZipDownload plugin script
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2013-2014, The Roundcube Dev Team
|
||||
*
|
||||
* The JavaScript code in this page 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 3 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*/
|
||||
window.rcmail&&rcmail.addEventListener("init",function(a){rcmail.register_command("download-eml",function(){rcmail_zipdownload("eml")});rcmail.register_command("download-mbox",function(){rcmail_zipdownload("mbox")});rcmail.register_command("download-maildir",function(){rcmail_zipdownload("maildir")});rcmail.message_list&&rcmail.message_list.addEventListener("select",function(b){b=b.get_selection().length;rcmail.enable_command("download",0<b);rcmail.enable_command("download-eml",1==b);rcmail.enable_command("download-mbox",
|
||||
"download-maildir",1<b)});rcmail.addEventListener("beforedownload",rcmail_zipdownload_menu);$.each(rcmail.buttons.download||[],function(){var b=$("#"+this.id),a=$("span",b);a.length||(a=$("<span>"),b.html("").append(a));a.text(rcmail.get_label("zipdownload.download"));rcmail.env.download_link=b})});
|
||||
function rcmail_zipdownload(a){if("eml"==a)a=rcmail.get_single_uid(),rcmail.goto_url("viewsource",rcmail.params_from_uid(a,{_save:1}),!1,!0);else if(rcmail.message_list&&1<rcmail.message_list.get_selection().length){var b=[],c=$("#zipdownload-form"),e=rcmail.selection_post_data();e._mode=a;e._token=rcmail.env.request_token;$.each(e,function(a,d){if("object"==typeof d&&1<d.length)for(var c=0;c<d.length;c++)b.push($("<input>").attr({type:"hidden",name:a+"[]",value:d[c]}));else b.push($("<input>").attr({type:"hidden",
|
||||
name:a,value:d}))});c.length||(c=$("<form>").attr({style:"display: none",method:"POST",action:"?_task=mail&_action=plugin.zipdownload.messages"}).appendTo("body"));c.html("").append(b).submit()}}function rcmail_zipdownload_menu(a){rcmail.command("menu-open","zipdownload-menu",a&&a.target?a.target:rcmail.env.download_link,a);return!1};
|
362
data/web/rc/plugins/zipdownload/zipdownload.php
Normal file
362
data/web/rc/plugins/zipdownload/zipdownload.php
Normal file
@@ -0,0 +1,362 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* ZipDownload
|
||||
*
|
||||
* Plugin to allow the download of all message attachments in one zip file
|
||||
* and also download of many messages in one go.
|
||||
*
|
||||
* @requires php_zip extension (including ZipArchive class)
|
||||
*
|
||||
* @author Philip Weir
|
||||
* @author Thomas Bruderli
|
||||
* @author Aleksander Machniak
|
||||
*/
|
||||
class zipdownload extends rcube_plugin
|
||||
{
|
||||
public $task = 'mail';
|
||||
|
||||
private $charset = 'ASCII';
|
||||
|
||||
// RFC4155: mbox date format
|
||||
const MBOX_DATE_FORMAT = 'D M d H:i:s Y';
|
||||
|
||||
/**
|
||||
* Plugin initialization
|
||||
*/
|
||||
public function init()
|
||||
{
|
||||
// check requirements first
|
||||
if (!class_exists('ZipArchive', false)) {
|
||||
rcmail::raise_error(array(
|
||||
'code' => 520,
|
||||
'file' => __FILE__,
|
||||
'line' => __LINE__,
|
||||
'message' => "php_zip extension is required for the zipdownload plugin"), true, false);
|
||||
return;
|
||||
}
|
||||
|
||||
$rcmail = rcmail::get_instance();
|
||||
|
||||
$this->load_config();
|
||||
$this->charset = $rcmail->config->get('zipdownload_charset', RCUBE_CHARSET);
|
||||
$this->add_texts('localization');
|
||||
|
||||
if ($rcmail->config->get('zipdownload_attachments', 1) > -1 && ($rcmail->action == 'show' || $rcmail->action == 'preview')) {
|
||||
$this->add_hook('template_object_messageattachments', array($this, 'attachment_ziplink'));
|
||||
}
|
||||
|
||||
$this->register_action('plugin.zipdownload.attachments', array($this, 'download_attachments'));
|
||||
$this->register_action('plugin.zipdownload.messages', array($this, 'download_messages'));
|
||||
|
||||
if (!$rcmail->action && $rcmail->config->get('zipdownload_selection')) {
|
||||
$this->download_menu();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Place a link/button after attachments listing to trigger download
|
||||
*/
|
||||
public function attachment_ziplink($p)
|
||||
{
|
||||
$rcmail = rcmail::get_instance();
|
||||
|
||||
// only show the link if there is more than the configured number of attachments
|
||||
if (substr_count($p['content'], '<li') > $rcmail->config->get('zipdownload_attachments', 1)) {
|
||||
$href = $rcmail->url(array(
|
||||
'_action' => 'plugin.zipdownload.attachments',
|
||||
'_mbox' => $rcmail->output->env['mailbox'],
|
||||
'_uid' => $rcmail->output->env['uid'],
|
||||
), false, false, true);
|
||||
|
||||
$link = html::a(array('href' => $href, 'class' => 'button zipdownload'),
|
||||
rcube::Q($this->gettext('downloadall'))
|
||||
);
|
||||
|
||||
// append link to attachments list, slightly different in some skins
|
||||
switch (rcmail::get_instance()->config->get('skin')) {
|
||||
case 'classic':
|
||||
$p['content'] = str_replace('</ul>', html::tag('li', array('class' => 'zipdownload'), $link) . '</ul>', $p['content']);
|
||||
break;
|
||||
|
||||
default:
|
||||
$p['content'] .= $link;
|
||||
break;
|
||||
}
|
||||
|
||||
$this->include_stylesheet($this->local_skin_path() . '/zipdownload.css');
|
||||
}
|
||||
|
||||
return $p;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds download options menu to the page
|
||||
*/
|
||||
public function download_menu()
|
||||
{
|
||||
$this->include_script('zipdownload.js');
|
||||
$this->add_label('download');
|
||||
|
||||
$rcmail = rcmail::get_instance();
|
||||
$menu = array();
|
||||
$ul_attr = array('role' => 'menu', 'aria-labelledby' => 'aria-label-zipdownloadmenu');
|
||||
if ($rcmail->config->get('skin') != 'classic') {
|
||||
$ul_attr['class'] = 'toolbarmenu';
|
||||
}
|
||||
|
||||
foreach (array('eml', 'mbox', 'maildir') as $type) {
|
||||
$menu[] = html::tag('li', null, $rcmail->output->button(array(
|
||||
'command' => "download-$type",
|
||||
'label' => "zipdownload.download$type",
|
||||
'classact' => 'active',
|
||||
)));
|
||||
}
|
||||
|
||||
$rcmail->output->add_footer(html::div(array('id' => 'zipdownload-menu', 'class' => 'popupmenu', 'aria-hidden' => 'true'),
|
||||
html::tag('h2', array('class' => 'voice', 'id' => 'aria-label-zipdownloadmenu'), "Message Download Options Menu") .
|
||||
html::tag('ul', $ul_attr, implode('', $menu))));
|
||||
}
|
||||
|
||||
/**
|
||||
* Handler for attachment download action
|
||||
*/
|
||||
public function download_attachments()
|
||||
{
|
||||
$rcmail = rcmail::get_instance();
|
||||
|
||||
// require CSRF protected request
|
||||
$rcmail->request_security_check(rcube_utils::INPUT_GET);
|
||||
|
||||
$imap = $rcmail->get_storage();
|
||||
$temp_dir = $rcmail->config->get('temp_dir');
|
||||
$tmpfname = tempnam($temp_dir, 'zipdownload');
|
||||
$tempfiles = array($tmpfname);
|
||||
$message = new rcube_message(rcube_utils::get_input_value('_uid', rcube_utils::INPUT_GET));
|
||||
|
||||
// open zip file
|
||||
$zip = new ZipArchive();
|
||||
$zip->open($tmpfname, ZIPARCHIVE::OVERWRITE);
|
||||
|
||||
foreach ($message->attachments as $part) {
|
||||
$pid = $part->mime_id;
|
||||
$part = $message->mime_parts[$pid];
|
||||
$filename = $part->filename;
|
||||
|
||||
if ($filename === null || $filename === '') {
|
||||
$ext = (array) rcube_mime::get_mime_extensions($part->mimetype);
|
||||
$ext = array_shift($ext);
|
||||
$filename = $rcmail->gettext('messagepart') . ' ' . $pid;
|
||||
if ($ext) {
|
||||
$filename .= '.' . $ext;
|
||||
}
|
||||
}
|
||||
|
||||
$disp_name = $this->_convert_filename($filename);
|
||||
$tmpfn = tempnam($temp_dir, 'zipattach');
|
||||
$tmpfp = fopen($tmpfn, 'w');
|
||||
$tempfiles[] = $tmpfn;
|
||||
|
||||
$message->get_part_body($part->mime_id, false, 0, $tmpfp);
|
||||
$zip->addFile($tmpfn, $disp_name);
|
||||
fclose($tmpfp);
|
||||
}
|
||||
|
||||
$zip->close();
|
||||
|
||||
$filename = ($this->_filename_from_subject($message->subject) ?: 'attachments') . '.zip';
|
||||
|
||||
$this->_deliver_zipfile($tmpfname, $filename);
|
||||
|
||||
// delete temporary files from disk
|
||||
foreach ($tempfiles as $tmpfn) {
|
||||
unlink($tmpfn);
|
||||
}
|
||||
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handler for message download action
|
||||
*/
|
||||
public function download_messages()
|
||||
{
|
||||
$rcmail = rcmail::get_instance();
|
||||
|
||||
if ($rcmail->config->get('zipdownload_selection') && !empty($_POST['_uid'])) {
|
||||
$messageset = rcmail::get_uids();
|
||||
if (sizeof($messageset)) {
|
||||
$this->_download_messages($messageset);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper method to packs all the given messages into a zip archive
|
||||
*
|
||||
* @param array List of message UIDs to download
|
||||
*/
|
||||
private function _download_messages($messageset)
|
||||
{
|
||||
$rcmail = rcmail::get_instance();
|
||||
$imap = $rcmail->get_storage();
|
||||
$mode = rcube_utils::get_input_value('_mode', rcube_utils::INPUT_POST);
|
||||
$temp_dir = $rcmail->config->get('temp_dir');
|
||||
$tmpfname = tempnam($temp_dir, 'zipdownload');
|
||||
$tempfiles = array($tmpfname);
|
||||
$folders = count($messageset) > 1;
|
||||
|
||||
// @TODO: file size limit
|
||||
|
||||
// open zip file
|
||||
$zip = new ZipArchive();
|
||||
$zip->open($tmpfname, ZIPARCHIVE::OVERWRITE);
|
||||
|
||||
if ($mode == 'mbox') {
|
||||
$tmpfp = fopen($tmpfname . '.mbox', 'w');
|
||||
}
|
||||
|
||||
foreach ($messageset as $mbox => $uids) {
|
||||
$imap->set_folder($mbox);
|
||||
$path = $folders ? str_replace($imap->get_hierarchy_delimiter(), '/', $mbox) . '/' : '';
|
||||
|
||||
if ($uids === '*') {
|
||||
$index = $imap->index($mbox, null, null, true);
|
||||
$uids = $index->get();
|
||||
}
|
||||
|
||||
foreach ($uids as $uid) {
|
||||
$headers = $imap->get_message_headers($uid);
|
||||
|
||||
if ($mode == 'mbox') {
|
||||
// Sender address
|
||||
$from = rcube_mime::decode_address_list($headers->from, null, true, $headers->charset, true);
|
||||
$from = array_shift($from);
|
||||
$from = preg_replace('/\s/', '-', $from);
|
||||
|
||||
// Received (internal) date
|
||||
$date = rcube_utils::anytodatetime($headers->internaldate);
|
||||
if ($date) {
|
||||
$date->setTimezone(new DateTimeZone('UTC'));
|
||||
$date = $date->format(self::MBOX_DATE_FORMAT);
|
||||
}
|
||||
|
||||
// Mbox format header (RFC4155)
|
||||
$header = sprintf("From %s %s\r\n",
|
||||
$from ?: 'MAILER-DAEMON',
|
||||
$date ?: ''
|
||||
);
|
||||
|
||||
fwrite($tmpfp, $header);
|
||||
|
||||
// Use stream filter to quote "From " in the message body
|
||||
stream_filter_register('mbox_filter', 'zipdownload_mbox_filter');
|
||||
$filter = stream_filter_append($tmpfp, 'mbox_filter');
|
||||
$imap->get_raw_body($uid, $tmpfp);
|
||||
stream_filter_remove($filter);
|
||||
fwrite($tmpfp, "\r\n");
|
||||
}
|
||||
else { // maildir
|
||||
$subject = rcube_mime::decode_header($headers->subject, $headers->charset);
|
||||
$subject = $this->_filename_from_subject(mb_substr($subject, 0, 16));
|
||||
$subject = $this->_convert_filename($subject);
|
||||
|
||||
$disp_name = $path . $uid . ($subject ? " $subject" : '') . '.eml';
|
||||
|
||||
$tmpfn = tempnam($temp_dir, 'zipmessage');
|
||||
$tmpfp = fopen($tmpfn, 'w');
|
||||
$imap->get_raw_body($uid, $tmpfp);
|
||||
$tempfiles[] = $tmpfn;
|
||||
fclose($tmpfp);
|
||||
$zip->addFile($tmpfn, $disp_name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$filename = $folders ? 'messages' : $imap->get_folder();
|
||||
|
||||
if ($mode == 'mbox') {
|
||||
$tempfiles[] = $tmpfname . '.mbox';
|
||||
fclose($tmpfp);
|
||||
$zip->addFile($tmpfname . '.mbox', $filename . '.mbox');
|
||||
}
|
||||
|
||||
$zip->close();
|
||||
|
||||
$this->_deliver_zipfile($tmpfname, $filename . '.zip');
|
||||
|
||||
// delete temporary files from disk
|
||||
foreach ($tempfiles as $tmpfn) {
|
||||
unlink($tmpfn);
|
||||
}
|
||||
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper method to send the zip archive to the browser
|
||||
*/
|
||||
private function _deliver_zipfile($tmpfname, $filename)
|
||||
{
|
||||
$browser = new rcube_browser;
|
||||
$rcmail = rcmail::get_instance();
|
||||
|
||||
$rcmail->output->nocacheing_headers();
|
||||
|
||||
if ($browser->ie)
|
||||
$filename = rawurlencode($filename);
|
||||
else
|
||||
$filename = addcslashes($filename, '"');
|
||||
|
||||
// send download headers
|
||||
header("Content-Type: application/octet-stream");
|
||||
if ($browser->ie) {
|
||||
header("Content-Type: application/force-download");
|
||||
}
|
||||
|
||||
// don't kill the connection if download takes more than 30 sec.
|
||||
@set_time_limit(0);
|
||||
header("Content-Disposition: attachment; filename=\"". $filename ."\"");
|
||||
header("Content-length: " . filesize($tmpfname));
|
||||
readfile($tmpfname);
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to convert filenames to the configured charset
|
||||
*/
|
||||
private function _convert_filename($str)
|
||||
{
|
||||
$str = strtr($str, array(':' => '', '/' => '-'));
|
||||
|
||||
return rcube_charset::convert($str, RCUBE_CHARSET, $this->charset);
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to convert message subject into filename
|
||||
*/
|
||||
private function _filename_from_subject($str)
|
||||
{
|
||||
$str = preg_replace('/[\t\n\r\0\x0B]+\s*/', ' ', $str);
|
||||
|
||||
return trim($str, " ./_");
|
||||
}
|
||||
}
|
||||
|
||||
class zipdownload_mbox_filter extends php_user_filter
|
||||
{
|
||||
function filter($in, $out, &$consumed, $closing)
|
||||
{
|
||||
while ($bucket = stream_bucket_make_writeable($in)) {
|
||||
// messages are read line by line
|
||||
if (preg_match('/^>*From /', $bucket->data)) {
|
||||
$bucket->data = '>' . $bucket->data;
|
||||
$bucket->datalen += 1;
|
||||
}
|
||||
|
||||
$consumed += $bucket->datalen;
|
||||
stream_bucket_append($out, $bucket);
|
||||
}
|
||||
|
||||
return PSFS_PASS_ON;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user