Show spam aliases #
This commit is contained in:
24
data/web/rc/plugins/hide_blockquote/composer.json
Normal file
24
data/web/rc/plugins/hide_blockquote/composer.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "roundcube/hide_blockquote",
|
||||
"type": "roundcube-plugin",
|
||||
"description": "This allows to hide long blocks of cited text in messages.",
|
||||
"license": "GPLv3+",
|
||||
"version": "1.0",
|
||||
"authors": [
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
63
data/web/rc/plugins/hide_blockquote/hide_blockquote.js
Normal file
63
data/web/rc/plugins/hide_blockquote/hide_blockquote.js
Normal file
@@ -0,0 +1,63 @@
|
||||
/**
|
||||
* Hide Blockquotes plugin script
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2012-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.
|
||||
*/
|
||||
|
||||
if (window.rcmail)
|
||||
rcmail.addEventListener('init', function() { hide_blockquote(); });
|
||||
|
||||
function hide_blockquote()
|
||||
{
|
||||
var limit = rcmail.env.blockquote_limit;
|
||||
|
||||
if (limit <= 0)
|
||||
return;
|
||||
|
||||
$('div.message-part div.pre > blockquote', $('#messagebody')).each(function() {
|
||||
var div, link, q = $(this),
|
||||
text = $.trim(q.text()),
|
||||
res = text.split(/\n/);
|
||||
|
||||
if (res.length <= limit) {
|
||||
// there can be also a block with very long wrapped line
|
||||
// assume line height = 15px
|
||||
if (q.height() <= limit * 15)
|
||||
return;
|
||||
}
|
||||
|
||||
div = $('<blockquote class="blockquote-header">')
|
||||
.css({'white-space': 'nowrap', overflow: 'hidden', position: 'relative'})
|
||||
.text(res[0]);
|
||||
|
||||
link = $('<span class="blockquote-link"></span>')
|
||||
.css({position: 'absolute', 'z-Index': 2})
|
||||
.text(rcmail.get_label('hide_blockquote.show'))
|
||||
.data('parent', div)
|
||||
.click(function() {
|
||||
var t = $(this), parent = t.data('parent'), visible = parent.is(':visible');
|
||||
|
||||
t.text(rcmail.get_label(visible ? 'hide' : 'show', 'hide_blockquote'))
|
||||
.detach().appendTo(visible ? q : parent);
|
||||
|
||||
parent[visible ? 'hide' : 'show']();
|
||||
q[visible ? 'show' : 'hide']();
|
||||
});
|
||||
|
||||
link.appendTo(div);
|
||||
|
||||
// Modify blockquote
|
||||
q.hide().css({position: 'relative'}).before(div);
|
||||
});
|
||||
}
|
19
data/web/rc/plugins/hide_blockquote/hide_blockquote.min.js
vendored
Normal file
19
data/web/rc/plugins/hide_blockquote/hide_blockquote.min.js
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* Hide Blockquotes plugin script
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2012-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(){hide_blockquote()});
|
||||
function hide_blockquote(){var b=rcmail.env.blockquote_limit;0>=b||$("div.message-part div.pre > blockquote",$("#messagebody")).each(function(){var a,c=$(this);a=$.trim(c.text()).split(/\n/);a.length<=b&&c.height()<=15*b||(a=$('<blockquote class="blockquote-header">').css({"white-space":"nowrap",overflow:"hidden",position:"relative"}).text(a[0]),$('<span class="blockquote-link"></span>').css({position:"absolute","z-Index":2}).text(rcmail.get_label("hide_blockquote.show")).data("parent",a).click(function(){var a=
|
||||
$(this),b=a.data("parent"),d=b.is(":visible");a.text(rcmail.get_label(d?"hide":"show","hide_blockquote")).detach().appendTo(d?c:b);b[d?"hide":"show"]();c[d?"show":"hide"]()}).appendTo(a),c.hide().css({position:"relative"}).before(a))})};
|
77
data/web/rc/plugins/hide_blockquote/hide_blockquote.php
Normal file
77
data/web/rc/plugins/hide_blockquote/hide_blockquote.php
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Quotation block hidding
|
||||
*
|
||||
* Plugin that adds a possibility to hide long blocks of cited text in messages.
|
||||
*
|
||||
* Configuration:
|
||||
* // Minimum number of citation lines. Longer citation blocks will be hidden.
|
||||
* // 0 - no limit (no hidding).
|
||||
* $config['hide_blockquote_limit'] = 0;
|
||||
*
|
||||
* @license GNU GPLv3+
|
||||
* @author Aleksander Machniak <alec@alec.pl>
|
||||
*/
|
||||
class hide_blockquote extends rcube_plugin
|
||||
{
|
||||
public $task = 'mail|settings';
|
||||
|
||||
function init()
|
||||
{
|
||||
$rcmail = rcmail::get_instance();
|
||||
|
||||
if ($rcmail->task == 'mail'
|
||||
&& ($rcmail->action == 'preview' || $rcmail->action == 'show')
|
||||
&& ($limit = $rcmail->config->get('hide_blockquote_limit'))
|
||||
) {
|
||||
// include styles
|
||||
$this->include_stylesheet($this->local_skin_path() . "/style.css");
|
||||
|
||||
// Script and localization
|
||||
$this->include_script('hide_blockquote.js');
|
||||
$this->add_texts('localization', true);
|
||||
|
||||
// set env variable for client
|
||||
$rcmail->output->set_env('blockquote_limit', $limit);
|
||||
}
|
||||
else if ($rcmail->task == 'settings') {
|
||||
$dont_override = $rcmail->config->get('dont_override', array());
|
||||
if (!in_array('hide_blockquote_limit', $dont_override)) {
|
||||
$this->add_hook('preferences_list', array($this, 'prefs_table'));
|
||||
$this->add_hook('preferences_save', array($this, 'save_prefs'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function prefs_table($args)
|
||||
{
|
||||
if ($args['section'] != 'mailview') {
|
||||
return $args;
|
||||
}
|
||||
|
||||
$this->add_texts('localization');
|
||||
|
||||
$rcmail = rcmail::get_instance();
|
||||
$limit = (int) $rcmail->config->get('hide_blockquote_limit');
|
||||
$field_id = 'hide_blockquote_limit';
|
||||
$input = new html_inputfield(array('name' => '_'.$field_id, 'id' => $field_id, 'size' => 5));
|
||||
|
||||
$args['blocks']['main']['options']['hide_blockquote_limit'] = array(
|
||||
'title' => $this->gettext('quotelimit'),
|
||||
'content' => $input->show($limit ?: '')
|
||||
);
|
||||
|
||||
return $args;
|
||||
}
|
||||
|
||||
function save_prefs($args)
|
||||
{
|
||||
if ($args['section'] == 'mailview') {
|
||||
$args['prefs']['hide_blockquote_limit'] = (int) rcube_utils::get_input_value('_hide_blockquote_limit', rcube_utils::INPUT_POST);
|
||||
}
|
||||
|
||||
return $args;
|
||||
}
|
||||
|
||||
}
|
21
data/web/rc/plugins/hide_blockquote/localization/ar_SA.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/ar_SA.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'إخفاء';
|
||||
$labels['show'] = 'إظهار';
|
||||
$labels['quotelimit'] = 'اخف الاقتباس اذا كان عدد الاسطر اكبر من ';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/ast.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/ast.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Anubrir';
|
||||
$labels['show'] = 'Amosar';
|
||||
$labels['quotelimit'] = 'Anubrir la citación cuando la cuenta de llinies seya mayor de';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/az_AZ.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/az_AZ.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Gizlət';
|
||||
$labels['show'] = 'Göstər';
|
||||
$labels['quotelimit'] = 'Sayğac xətti çoxdursa sitatı gizlə';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/be_BE.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/be_BE.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Схаваць';
|
||||
$labels['show'] = 'Паказаць';
|
||||
$labels['quotelimit'] = 'Хаваць цытаванне, калі колькасць радкоў пераўзыходзіць';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/bg_BG.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/bg_BG.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Скрий';
|
||||
$labels['show'] = 'Покажи';
|
||||
$labels['quotelimit'] = 'Скрива цитатите когато броя редове е по-голям от';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/br.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/br.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Kuzhat';
|
||||
$labels['show'] = 'Diskouez';
|
||||
$labels['quotelimit'] = 'Kuzhat ar meneg pa\'z\'eo re uhel niver a linennnoù eus';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/bs_BA.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/bs_BA.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Sakrij';
|
||||
$labels['show'] = 'Prikaži';
|
||||
$labels['quotelimit'] = 'Sakrij citate kada je broj linija veći od';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/ca_ES.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/ca_ES.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Amaga';
|
||||
$labels['show'] = 'Mostra';
|
||||
$labels['quotelimit'] = 'Amaga la cita quan el nombre de línies sigui més gran de';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/cs_CZ.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/cs_CZ.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Skrýt';
|
||||
$labels['show'] = 'Zobrazit';
|
||||
$labels['quotelimit'] = 'Skrýt citaci pokud je počet řádků větší než';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/cy_GB.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/cy_GB.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Cuddio';
|
||||
$labels['show'] = 'Dangos';
|
||||
$labels['quotelimit'] = 'Cuddio dyfynniad pan mae\'r nifer o linellau yn fwy na';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/da_DK.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/da_DK.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Skjul';
|
||||
$labels['show'] = 'Vis';
|
||||
$labels['quotelimit'] = 'Skjul citat når antallet af linjer er højere end';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/de_CH.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/de_CH.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'ausblenden';
|
||||
$labels['show'] = 'einblenden';
|
||||
$labels['quotelimit'] = 'Zitate verbergen ab einer Zeilenlänge von';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/de_DE.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/de_DE.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'ausblenden';
|
||||
$labels['show'] = 'einblenden';
|
||||
$labels['quotelimit'] = 'Zitate verbergen ab einer Zeilenlänge von';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/el_GR.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/el_GR.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Αποκρυψη';
|
||||
$labels['show'] = 'Εμφάνιση';
|
||||
$labels['quotelimit'] = 'Απόκρυψη παραπομπων όταν ο αριθμός γραμμών είναι μεγαλύτερος από';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/en_CA.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/en_CA.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Hide';
|
||||
$labels['show'] = 'Show';
|
||||
$labels['quotelimit'] = 'Hide citation when lines count is greater than';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/en_GB.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/en_GB.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Hide';
|
||||
$labels['show'] = 'Show';
|
||||
$labels['quotelimit'] = 'Hide citation when lines count is greater than';
|
||||
?>
|
24
data/web/rc/plugins/hide_blockquote/localization/en_US.inc
Normal file
24
data/web/rc/plugins/hide_blockquote/localization/en_US.inc
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
|
||||
$labels = array();
|
||||
$labels['hide'] = 'Hide';
|
||||
$labels['show'] = 'Show';
|
||||
$labels['quotelimit'] = 'Hide citation when lines count is greater than';
|
||||
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/eo.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/eo.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Kaŝi';
|
||||
$labels['show'] = 'Montri';
|
||||
$labels['quotelimit'] = 'Kaŝi citaĵon kiam la nombro de linioj estas pligranda ol';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/es_419.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/es_419.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Ocultar';
|
||||
$labels['show'] = 'Mostrar';
|
||||
$labels['quotelimit'] = 'Ocultar la cita cuando el número de lineas sea mayor a ';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/es_AR.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/es_AR.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Ocultar';
|
||||
$labels['show'] = 'Mostrar';
|
||||
$labels['quotelimit'] = 'Ocultar el mail citado cuando el número de líneas sea mayor que';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/es_ES.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/es_ES.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Ocultar';
|
||||
$labels['show'] = 'Mostrar';
|
||||
$labels['quotelimit'] = 'Ocultar la cita cuando el número de lineas es mayor que';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/et_EE.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/et_EE.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Peida';
|
||||
$labels['show'] = 'Näita';
|
||||
$labels['quotelimit'] = 'Peida tsitaat kui ridade arv on suurem kui';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/eu_ES.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/eu_ES.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Ezkutatu';
|
||||
$labels['show'] = 'Erakutsi';
|
||||
$labels['quotelimit'] = 'Ezkutatu aipamena lerroen kopurua hau baino handiagoa denean';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/fa_IR.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/fa_IR.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'مخفی کردن';
|
||||
$labels['show'] = 'نشان دادن';
|
||||
$labels['quotelimit'] = 'پنهان کردن نقلقول وقتی تعداد خطوط بیشتر است از';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/fi_FI.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/fi_FI.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Piilota';
|
||||
$labels['show'] = 'Näytä';
|
||||
$labels['quotelimit'] = 'Piilota lainaus rivejä ollessa enemmän kuin';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/fo_FO.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/fo_FO.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Goym';
|
||||
$labels['show'] = 'Vís';
|
||||
$labels['quotelimit'] = 'Goym stevning tá ið tað eru meiri reglur enn';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/fr_FR.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/fr_FR.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Masquer';
|
||||
$labels['show'] = 'Montrer';
|
||||
$labels['quotelimit'] = 'Masquer la citation quand le nombre de lignes est supérieur à';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/gl_ES.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/gl_ES.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Agochar';
|
||||
$labels['show'] = 'Amosar';
|
||||
$labels['quotelimit'] = 'Agochar mencións cando haxa demasiadas liñas';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/he_IL.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/he_IL.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'הסתר';
|
||||
$labels['show'] = 'הצג';
|
||||
$labels['quotelimit'] = 'הסתר ציטוט כאשר מספר השורות גדול מ-';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/hr_HR.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/hr_HR.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Sakrij';
|
||||
$labels['show'] = 'Pokaži';
|
||||
$labels['quotelimit'] = 'Sakrij citat ako broj linija prelazi';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/hu_HU.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/hu_HU.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Elrejtés';
|
||||
$labels['show'] = 'Megjelenítés';
|
||||
$labels['quotelimit'] = 'Idézet elrejtése ha a sorok száma több mint';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/hy_AM.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/hy_AM.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Թաքցնել';
|
||||
$labels['show'] = 'Ցուցադրել';
|
||||
$labels['quotelimit'] = 'Թաքցնել ցիտումը երբ տողերի քանակը գերազանցում է';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/ia.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/ia.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Celar';
|
||||
$labels['show'] = 'Monstrar';
|
||||
$labels['quotelimit'] = 'Celar le citation quando le numero de lineas es superior a';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/id_ID.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/id_ID.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Sembunyi';
|
||||
$labels['show'] = 'Tampil';
|
||||
$labels['quotelimit'] = 'Sembunyikan kutipan ketika jumlah baris lebih besar dari';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/is_IS.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/is_IS.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Fela';
|
||||
$labels['show'] = 'Birta';
|
||||
$labels['quotelimit'] = 'Fela tilvitnun þegar fjöldi lína er meiri en';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/it_IT.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/it_IT.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Nascondi';
|
||||
$labels['show'] = 'Mostra';
|
||||
$labels['quotelimit'] = 'Nascondi la citazione quando il numero di righe è maggiore di';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/ja_JP.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/ja_JP.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = '隠す';
|
||||
$labels['show'] = '表示';
|
||||
$labels['quotelimit'] = '次の行数より多い引用を非表示';
|
||||
?>
|
19
data/web/rc/plugins/hide_blockquote/localization/ka_GE.inc
Normal file
19
data/web/rc/plugins/hide_blockquote/localization/ka_GE.inc
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['show'] = 'ჩვენება';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/km_KH.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/km_KH.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'លាក់';
|
||||
$labels['show'] = 'បង្ហាញ';
|
||||
$labels['quotelimit'] = 'លាក់អត្ថបទសម្រង់ពេលចំនួនជួរធំជាង';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/ko_KR.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/ko_KR.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = '숨기기';
|
||||
$labels['show'] = '표시';
|
||||
$labels['quotelimit'] = '행 개수가 다음보다 많을 때 인용구를 숨김:';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/ku.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/ku.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Veşêre';
|
||||
$labels['show'] = 'Nîşan bide';
|
||||
$labels['quotelimit'] = 'Jêgirtinê bigire dema ku hejmara rêzan zêdetir be ji';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/lb_LU.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/lb_LU.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Verstoppen';
|
||||
$labels['show'] = 'Weisen';
|
||||
$labels['quotelimit'] = 'Zitat verstoppe wann d\'Zeilenunzuel méi grouss ass ewéi';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/lt_LT.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/lt_LT.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Paslėpti';
|
||||
$labels['show'] = 'Parodyti';
|
||||
$labels['quotelimit'] = 'Paslėpti citatą, kai joje eilučių daugiau negu';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/lv_LV.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/lv_LV.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Slēpt';
|
||||
$labels['show'] = 'Rādīt';
|
||||
$labels['quotelimit'] = 'Slēpt citātu kad līniju skaits ir lielāks kā';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/ml_IN.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/ml_IN.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'മറയ്ക്കുക';
|
||||
$labels['show'] = 'പ്രദർശിപ്പിക്കുക';
|
||||
$labels['quotelimit'] = 'ഇതിലും കൂടുതലാണ് വരികളുടെ എണ്ണമെങ്കിൽ അവലംബം മറയ്ക്കുക';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/mn_MN.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/mn_MN.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Нуух';
|
||||
$labels['show'] = 'Харах';
|
||||
$labels['quotelimit'] = 'Хэрвээ мөрийн тоо дараахаас их бол ишлэлийг харуулахгүй:';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/nb_NO.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/nb_NO.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Skjul';
|
||||
$labels['show'] = 'Vis';
|
||||
$labels['quotelimit'] = 'Skjul sitat når antall linjer er flere enn';
|
||||
?>
|
20
data/web/rc/plugins/hide_blockquote/localization/nl_BE.inc
Normal file
20
data/web/rc/plugins/hide_blockquote/localization/nl_BE.inc
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Verberg';
|
||||
$labels['show'] = 'Weergeven';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/nl_NL.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/nl_NL.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Verbergen';
|
||||
$labels['show'] = 'Tonen';
|
||||
$labels['quotelimit'] = 'Verberg citaat wanneer aantal regels groter is dan';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/nn_NO.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/nn_NO.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Gøym';
|
||||
$labels['show'] = 'Vis';
|
||||
$labels['quotelimit'] = 'Gøym sitat når talet på linjer er større enn';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/pl_PL.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/pl_PL.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Ukryj';
|
||||
$labels['show'] = 'Pokaż';
|
||||
$labels['quotelimit'] = 'Ukryj blok cytatu gdy liczba linii jest większa od';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/pt_BR.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/pt_BR.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Ocultar';
|
||||
$labels['show'] = 'Exibir';
|
||||
$labels['quotelimit'] = 'Ocultar a citação quando o número de linhas for maior do que';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/pt_PT.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/pt_PT.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Ocultar';
|
||||
$labels['show'] = 'Mostrar';
|
||||
$labels['quotelimit'] = 'Ocultar citação quando o número de linhas for maior que';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/ro_RO.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/ro_RO.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Ascunde';
|
||||
$labels['show'] = 'Afișează';
|
||||
$labels['quotelimit'] = 'Ascunde citațiile dacă numărul de linii este mai mare ca';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/ru_RU.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/ru_RU.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Скрыть';
|
||||
$labels['show'] = 'Показать';
|
||||
$labels['quotelimit'] = 'Скрыть цитату, если число строк более чем';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/sk_SK.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/sk_SK.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Skryť';
|
||||
$labels['show'] = 'Zobraziť';
|
||||
$labels['quotelimit'] = 'Skryť citovaný text, ak je počet riadkov väčší než';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/sl_SI.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/sl_SI.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Skrij';
|
||||
$labels['show'] = 'Prikaži';
|
||||
$labels['quotelimit'] = 'Skrij citiran tekst, ko je število vrstic večje od';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/sq_AL.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/sq_AL.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Fshihe';
|
||||
$labels['show'] = 'Shfaqe';
|
||||
$labels['quotelimit'] = 'Fshihe citimin kur numri i rreshtave është më i madh se';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/sr_CS.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/sr_CS.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Сакриј';
|
||||
$labels['show'] = 'Прикажи';
|
||||
$labels['quotelimit'] = 'Сакриј цитат када је број редова већи од';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/sv_SE.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/sv_SE.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Dölj';
|
||||
$labels['show'] = 'Visa';
|
||||
$labels['quotelimit'] = 'Dölj citat när antalet rader överstiger';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/tr_TR.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/tr_TR.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Gizle';
|
||||
$labels['show'] = 'Görüntüle';
|
||||
$labels['quotelimit'] = 'Satır sayısı şundan fazla ise alıntılar gizlensin:';
|
||||
?>
|
20
data/web/rc/plugins/hide_blockquote/localization/tzl.inc
Normal file
20
data/web/rc/plugins/hide_blockquote/localization/tzl.inc
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Ascunçarh';
|
||||
$labels['show'] = 'Mostrarh';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/uk_UA.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/uk_UA.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Приховати';
|
||||
$labels['show'] = 'Показати';
|
||||
$labels['quotelimit'] = 'Приховати цитування, коли кількість рядків більша, ніж ';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/vi_VN.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/vi_VN.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = 'Ẩn';
|
||||
$labels['show'] = 'Hiển thị';
|
||||
$labels['quotelimit'] = 'Ẩn trích dẫn khi tổng số dòng lớn hơn';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/zh_CN.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/zh_CN.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = '隐藏';
|
||||
$labels['show'] = '显示';
|
||||
$labels['quotelimit'] = '隐藏引用当行数大于';
|
||||
?>
|
21
data/web/rc/plugins/hide_blockquote/localization/zh_TW.inc
Normal file
21
data/web/rc/plugins/hide_blockquote/localization/zh_TW.inc
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/hide_blockquote/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
|
||||
| Copyright (C) 2012-2013, 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-hide_blockquote/
|
||||
*/
|
||||
$labels['hide'] = '隱藏';
|
||||
$labels['show'] = '顯示';
|
||||
$labels['quotelimit'] = '隱藏引文當行數大於';
|
||||
?>
|
31
data/web/rc/plugins/hide_blockquote/skins/larry/style.css
Normal file
31
data/web/rc/plugins/hide_blockquote/skins/larry/style.css
Normal file
@@ -0,0 +1,31 @@
|
||||
span.blockquote-link {
|
||||
font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
|
||||
top: 0;
|
||||
cursor: pointer;
|
||||
right: 5px;
|
||||
height: 14px;
|
||||
min-width: 40px;
|
||||
padding: 0 8px;
|
||||
font-size: 10px;
|
||||
font-weight: bold;
|
||||
color: #a8a8a8;
|
||||
line-height: 14px;
|
||||
text-decoration: none;
|
||||
text-shadow: 0px 1px 1px #fff;
|
||||
text-align: center;
|
||||
border: 1px solid #e8e8e8;
|
||||
border-top: none;
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
background: #f8f8f8;
|
||||
background: -moz-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#e8e8e8));
|
||||
background: -o-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%);
|
||||
background: -ms-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%);
|
||||
background: linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%);
|
||||
}
|
||||
|
||||
blockquote.blockquote-header {
|
||||
text-overflow: ellipsis !important;
|
||||
padding-right: 60px !important;
|
||||
}
|
1
data/web/rc/plugins/hide_blockquote/skins/larry/style.min.css
vendored
Normal file
1
data/web/rc/plugins/hide_blockquote/skins/larry/style.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
span.blockquote-link{font-family:"Lucida Grande",Verdana,Arial,Helvetica,sans-serif;top:0;cursor:pointer;right:5px;height:14px;min-width:40px;padding:0 8px;font-size:10px;font-weight:bold;color:#a8a8a8;line-height:14px;text-decoration:none;text-shadow:0 1px 1px #fff;text-align:center;border:1px solid #e8e8e8;border-top:0;border-bottom-right-radius:6px;border-bottom-left-radius:6px;background:#f8f8f8;background:-moz-linear-gradient(top,#f8f8f8 0,#e8e8e8 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f8f8f8),color-stop(100%,#e8e8e8));background:-o-linear-gradient(top,#f8f8f8 0,#e8e8e8 100%);background:-ms-linear-gradient(top,#f8f8f8 0,#e8e8e8 100%);background:linear-gradient(top,#f8f8f8 0,#e8e8e8 100%)}blockquote.blockquote-header{text-overflow:ellipsis !important;padding-right:60px !important}
|
23
data/web/rc/plugins/hide_blockquote/tests/HideBlockquote.php
Normal file
23
data/web/rc/plugins/hide_blockquote/tests/HideBlockquote.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
class HideBlockquote_Plugin extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
function setUp()
|
||||
{
|
||||
include_once __DIR__ . '/../hide_blockquote.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* Plugin object construction test
|
||||
*/
|
||||
function test_constructor()
|
||||
{
|
||||
$rcube = rcube::get_instance();
|
||||
$plugin = new hide_blockquote($rcube->api);
|
||||
|
||||
$this->assertInstanceOf('hide_blockquote', $plugin);
|
||||
$this->assertInstanceOf('rcube_plugin', $plugin);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user