diff options
Diffstat (limited to 'plugins/hide_blockquote')
66 files changed, 1501 insertions, 0 deletions
diff --git a/plugins/hide_blockquote/composer.json b/plugins/hide_blockquote/composer.json new file mode 100644 index 000000000..5af75fe7e --- /dev/null +++ b/plugins/hide_blockquote/composer.json @@ -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" +    } +} diff --git a/plugins/hide_blockquote/hide_blockquote.js b/plugins/hide_blockquote/hide_blockquote.js new file mode 100644 index 000000000..964cc07a3 --- /dev/null +++ b/plugins/hide_blockquote/hide_blockquote.js @@ -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.gettext('hide_blockquote.show')) +      .data('parent', div) +      .click(function() { +        var t = $(this), parent = t.data('parent'), visible = parent.is(':visible'); + +        t.text(rcmail.gettext(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); +  }); +} diff --git a/plugins/hide_blockquote/hide_blockquote.php b/plugins/hide_blockquote/hide_blockquote.php new file mode 100644 index 000000000..2ad5dd8ac --- /dev/null +++ b/plugins/hide_blockquote/hide_blockquote.php @@ -0,0 +1,78 @@ +<?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; + * + * @version @package_version@ + * @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 ? $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; +    } + +} diff --git a/plugins/hide_blockquote/localization/ar_SA.inc b/plugins/hide_blockquote/localization/ar_SA.inc new file mode 100644 index 000000000..9c80c477f --- /dev/null +++ b/plugins/hide_blockquote/localization/ar_SA.inc @@ -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'] = 'اخف الاقتباس اذا كان عدد الاسطر اكبر من '; +?> diff --git a/plugins/hide_blockquote/localization/ast.inc b/plugins/hide_blockquote/localization/ast.inc new file mode 100644 index 000000000..f2f17c492 --- /dev/null +++ b/plugins/hide_blockquote/localization/ast.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/az_AZ.inc b/plugins/hide_blockquote/localization/az_AZ.inc new file mode 100644 index 000000000..6fdd4410b --- /dev/null +++ b/plugins/hide_blockquote/localization/az_AZ.inc @@ -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ə'; +?> diff --git a/plugins/hide_blockquote/localization/be_BE.inc b/plugins/hide_blockquote/localization/be_BE.inc new file mode 100644 index 000000000..28248adf0 --- /dev/null +++ b/plugins/hide_blockquote/localization/be_BE.inc @@ -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'] = 'Хаваць цытаванне, калі колькасць радкоў пераўзыходзіць'; +?> diff --git a/plugins/hide_blockquote/localization/bg_BG.inc b/plugins/hide_blockquote/localization/bg_BG.inc new file mode 100644 index 000000000..ec64513a8 --- /dev/null +++ b/plugins/hide_blockquote/localization/bg_BG.inc @@ -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'] = 'Скрива цитатите когато броя редове е по-голям от'; +?> diff --git a/plugins/hide_blockquote/localization/br.inc b/plugins/hide_blockquote/localization/br.inc new file mode 100644 index 000000000..8eb5dd2db --- /dev/null +++ b/plugins/hide_blockquote/localization/br.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/bs_BA.inc b/plugins/hide_blockquote/localization/bs_BA.inc new file mode 100644 index 000000000..9602440d9 --- /dev/null +++ b/plugins/hide_blockquote/localization/bs_BA.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/ca_ES.inc b/plugins/hide_blockquote/localization/ca_ES.inc new file mode 100644 index 000000000..d0698f2ce --- /dev/null +++ b/plugins/hide_blockquote/localization/ca_ES.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/cs_CZ.inc b/plugins/hide_blockquote/localization/cs_CZ.inc new file mode 100644 index 000000000..766662e12 --- /dev/null +++ b/plugins/hide_blockquote/localization/cs_CZ.inc @@ -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ž'; +?> diff --git a/plugins/hide_blockquote/localization/cy_GB.inc b/plugins/hide_blockquote/localization/cy_GB.inc new file mode 100644 index 000000000..d60890cd8 --- /dev/null +++ b/plugins/hide_blockquote/localization/cy_GB.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/da_DK.inc b/plugins/hide_blockquote/localization/da_DK.inc new file mode 100644 index 000000000..3691e5438 --- /dev/null +++ b/plugins/hide_blockquote/localization/da_DK.inc @@ -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 antallet af linjer er højere end'; +?> diff --git a/plugins/hide_blockquote/localization/de_CH.inc b/plugins/hide_blockquote/localization/de_CH.inc new file mode 100644 index 000000000..506412560 --- /dev/null +++ b/plugins/hide_blockquote/localization/de_CH.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/de_DE.inc b/plugins/hide_blockquote/localization/de_DE.inc new file mode 100644 index 000000000..506412560 --- /dev/null +++ b/plugins/hide_blockquote/localization/de_DE.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/el_GR.inc b/plugins/hide_blockquote/localization/el_GR.inc new file mode 100644 index 000000000..c2fa45703 --- /dev/null +++ b/plugins/hide_blockquote/localization/el_GR.inc @@ -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'] = 'Απόκρυψη παραπομπων όταν ο αριθμός γραμμών είναι μεγαλύτερος από'; +?> diff --git a/plugins/hide_blockquote/localization/en_CA.inc b/plugins/hide_blockquote/localization/en_CA.inc new file mode 100644 index 000000000..0256e712a --- /dev/null +++ b/plugins/hide_blockquote/localization/en_CA.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/en_GB.inc b/plugins/hide_blockquote/localization/en_GB.inc new file mode 100644 index 000000000..0256e712a --- /dev/null +++ b/plugins/hide_blockquote/localization/en_GB.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/en_US.inc b/plugins/hide_blockquote/localization/en_US.inc new file mode 100644 index 000000000..90dd28955 --- /dev/null +++ b/plugins/hide_blockquote/localization/en_US.inc @@ -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'; + +?> diff --git a/plugins/hide_blockquote/localization/eo.inc b/plugins/hide_blockquote/localization/eo.inc new file mode 100644 index 000000000..9c09c97fc --- /dev/null +++ b/plugins/hide_blockquote/localization/eo.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/es_419.inc b/plugins/hide_blockquote/localization/es_419.inc new file mode 100644 index 000000000..8a6f06cd8 --- /dev/null +++ b/plugins/hide_blockquote/localization/es_419.inc @@ -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 '; +?> diff --git a/plugins/hide_blockquote/localization/es_AR.inc b/plugins/hide_blockquote/localization/es_AR.inc new file mode 100644 index 000000000..5046eaf69 --- /dev/null +++ b/plugins/hide_blockquote/localization/es_AR.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/es_ES.inc b/plugins/hide_blockquote/localization/es_ES.inc new file mode 100644 index 000000000..c602650e6 --- /dev/null +++ b/plugins/hide_blockquote/localization/es_ES.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/et_EE.inc b/plugins/hide_blockquote/localization/et_EE.inc new file mode 100644 index 000000000..8213946c3 --- /dev/null +++ b/plugins/hide_blockquote/localization/et_EE.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/eu_ES.inc b/plugins/hide_blockquote/localization/eu_ES.inc new file mode 100644 index 000000000..f7adf6e00 --- /dev/null +++ b/plugins/hide_blockquote/localization/eu_ES.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/fa_IR.inc b/plugins/hide_blockquote/localization/fa_IR.inc new file mode 100644 index 000000000..b4fcc1596 --- /dev/null +++ b/plugins/hide_blockquote/localization/fa_IR.inc @@ -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'] = 'مخفی کردن نقلقول وقتی تعداد خطوط بیشتر است از'; +?> diff --git a/plugins/hide_blockquote/localization/fi_FI.inc b/plugins/hide_blockquote/localization/fi_FI.inc new file mode 100644 index 000000000..afec57462 --- /dev/null +++ b/plugins/hide_blockquote/localization/fi_FI.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/fo_FO.inc b/plugins/hide_blockquote/localization/fo_FO.inc new file mode 100644 index 000000000..fe962f65b --- /dev/null +++ b/plugins/hide_blockquote/localization/fo_FO.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/fr_FR.inc b/plugins/hide_blockquote/localization/fr_FR.inc new file mode 100644 index 000000000..0e1171152 --- /dev/null +++ b/plugins/hide_blockquote/localization/fr_FR.inc @@ -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 à'; +?> diff --git a/plugins/hide_blockquote/localization/gl_ES.inc b/plugins/hide_blockquote/localization/gl_ES.inc new file mode 100644 index 000000000..f945a50e3 --- /dev/null +++ b/plugins/hide_blockquote/localization/gl_ES.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/he_IL.inc b/plugins/hide_blockquote/localization/he_IL.inc new file mode 100644 index 000000000..2e353909b --- /dev/null +++ b/plugins/hide_blockquote/localization/he_IL.inc @@ -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'] = 'הסתר ציטוט כאשר מספר השורות גדול מ-'; +?> diff --git a/plugins/hide_blockquote/localization/hr_HR.inc b/plugins/hide_blockquote/localization/hr_HR.inc new file mode 100644 index 000000000..d5cc4f3b5 --- /dev/null +++ b/plugins/hide_blockquote/localization/hr_HR.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/hu_HU.inc b/plugins/hide_blockquote/localization/hu_HU.inc new file mode 100644 index 000000000..97abb9f35 --- /dev/null +++ b/plugins/hide_blockquote/localization/hu_HU.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/hy_AM.inc b/plugins/hide_blockquote/localization/hy_AM.inc new file mode 100644 index 000000000..b1808e400 --- /dev/null +++ b/plugins/hide_blockquote/localization/hy_AM.inc @@ -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'] = 'Թաքցնել ցիտումը երբ տողերի քանակը գերազանցում է'; +?> diff --git a/plugins/hide_blockquote/localization/ia.inc b/plugins/hide_blockquote/localization/ia.inc new file mode 100644 index 000000000..0d7795cea --- /dev/null +++ b/plugins/hide_blockquote/localization/ia.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/id_ID.inc b/plugins/hide_blockquote/localization/id_ID.inc new file mode 100644 index 000000000..da6534968 --- /dev/null +++ b/plugins/hide_blockquote/localization/id_ID.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/it_IT.inc b/plugins/hide_blockquote/localization/it_IT.inc new file mode 100644 index 000000000..a24353020 --- /dev/null +++ b/plugins/hide_blockquote/localization/it_IT.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/ja_JP.inc b/plugins/hide_blockquote/localization/ja_JP.inc new file mode 100644 index 000000000..4bf36ae13 --- /dev/null +++ b/plugins/hide_blockquote/localization/ja_JP.inc @@ -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'] = '次の行数より多い引用を非表示'; +?> diff --git a/plugins/hide_blockquote/localization/km_KH.inc b/plugins/hide_blockquote/localization/km_KH.inc new file mode 100644 index 000000000..466468d77 --- /dev/null +++ b/plugins/hide_blockquote/localization/km_KH.inc @@ -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'] = 'លាក់អត្ថបទសម្រង់ពេលចំនួនជួរធំជាង'; +?> diff --git a/plugins/hide_blockquote/localization/ko_KR.inc b/plugins/hide_blockquote/localization/ko_KR.inc new file mode 100644 index 000000000..f1e5b1b10 --- /dev/null +++ b/plugins/hide_blockquote/localization/ko_KR.inc @@ -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'] = '행 개수가 다음보다 많을 때 인용구를 숨김:'; +?> diff --git a/plugins/hide_blockquote/localization/ku.inc b/plugins/hide_blockquote/localization/ku.inc new file mode 100644 index 000000000..e0a015166 --- /dev/null +++ b/plugins/hide_blockquote/localization/ku.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/lb_LU.inc b/plugins/hide_blockquote/localization/lb_LU.inc new file mode 100644 index 000000000..8f5a07df9 --- /dev/null +++ b/plugins/hide_blockquote/localization/lb_LU.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/lt_LT.inc b/plugins/hide_blockquote/localization/lt_LT.inc new file mode 100644 index 000000000..9b560de14 --- /dev/null +++ b/plugins/hide_blockquote/localization/lt_LT.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/lv_LV.inc b/plugins/hide_blockquote/localization/lv_LV.inc new file mode 100644 index 000000000..162deda8b --- /dev/null +++ b/plugins/hide_blockquote/localization/lv_LV.inc @@ -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ā'; +?> diff --git a/plugins/hide_blockquote/localization/ml_IN.inc b/plugins/hide_blockquote/localization/ml_IN.inc new file mode 100644 index 000000000..5e2b55288 --- /dev/null +++ b/plugins/hide_blockquote/localization/ml_IN.inc @@ -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'] = 'ഇതിലും കൂടുതലാണ് വരികളുടെ എണ്ണമെങ്കിൽ അവലംബം മറയ്ക്കുക'; +?> diff --git a/plugins/hide_blockquote/localization/nb_NO.inc b/plugins/hide_blockquote/localization/nb_NO.inc new file mode 100644 index 000000000..fb2027620 --- /dev/null +++ b/plugins/hide_blockquote/localization/nb_NO.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/nl_NL.inc b/plugins/hide_blockquote/localization/nl_NL.inc new file mode 100644 index 000000000..104f4782c --- /dev/null +++ b/plugins/hide_blockquote/localization/nl_NL.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/nn_NO.inc b/plugins/hide_blockquote/localization/nn_NO.inc new file mode 100644 index 000000000..4bc583a51 --- /dev/null +++ b/plugins/hide_blockquote/localization/nn_NO.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/pl_PL.inc b/plugins/hide_blockquote/localization/pl_PL.inc new file mode 100644 index 000000000..cdd1f8f8a --- /dev/null +++ b/plugins/hide_blockquote/localization/pl_PL.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/pt_BR.inc b/plugins/hide_blockquote/localization/pt_BR.inc new file mode 100644 index 000000000..b303c06f3 --- /dev/null +++ b/plugins/hide_blockquote/localization/pt_BR.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/pt_PT.inc b/plugins/hide_blockquote/localization/pt_PT.inc new file mode 100644 index 000000000..34693784c --- /dev/null +++ b/plugins/hide_blockquote/localization/pt_PT.inc @@ -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 numero de linhas for maior que'; +?> diff --git a/plugins/hide_blockquote/localization/ro_RO.inc b/plugins/hide_blockquote/localization/ro_RO.inc new file mode 100644 index 000000000..978b84a90 --- /dev/null +++ b/plugins/hide_blockquote/localization/ro_RO.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/ru_RU.inc b/plugins/hide_blockquote/localization/ru_RU.inc new file mode 100644 index 000000000..1e6b26c16 --- /dev/null +++ b/plugins/hide_blockquote/localization/ru_RU.inc @@ -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'] = 'Скрыть цитату, если число строк более чем'; +?> diff --git a/plugins/hide_blockquote/localization/sk_SK.inc b/plugins/hide_blockquote/localization/sk_SK.inc new file mode 100644 index 000000000..c5fe73f9a --- /dev/null +++ b/plugins/hide_blockquote/localization/sk_SK.inc @@ -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ž'; +?> diff --git a/plugins/hide_blockquote/localization/sl_SI.inc b/plugins/hide_blockquote/localization/sl_SI.inc new file mode 100644 index 000000000..1728f40e7 --- /dev/null +++ b/plugins/hide_blockquote/localization/sl_SI.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/sq_AL.inc b/plugins/hide_blockquote/localization/sq_AL.inc new file mode 100644 index 000000000..253fcd09d --- /dev/null +++ b/plugins/hide_blockquote/localization/sq_AL.inc @@ -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'] = 'Fsheh'; +$labels['show'] = 'Shfaq'; +?> diff --git a/plugins/hide_blockquote/localization/sr_CS.inc b/plugins/hide_blockquote/localization/sr_CS.inc new file mode 100644 index 000000000..c96c4322d --- /dev/null +++ b/plugins/hide_blockquote/localization/sr_CS.inc @@ -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'] = 'Сакриј цитат када је број редова већи од'; +?> diff --git a/plugins/hide_blockquote/localization/sv_SE.inc b/plugins/hide_blockquote/localization/sv_SE.inc new file mode 100644 index 000000000..9d021d923 --- /dev/null +++ b/plugins/hide_blockquote/localization/sv_SE.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/tr_TR.inc b/plugins/hide_blockquote/localization/tr_TR.inc new file mode 100644 index 000000000..b9ac529cf --- /dev/null +++ b/plugins/hide_blockquote/localization/tr_TR.inc @@ -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öster'; +$labels['quotelimit'] = 'Satır sayısı şu satır sayısından fazla ise alıntıları gizle:'; +?> diff --git a/plugins/hide_blockquote/localization/uk_UA.inc b/plugins/hide_blockquote/localization/uk_UA.inc new file mode 100644 index 000000000..a8dd54144 --- /dev/null +++ b/plugins/hide_blockquote/localization/uk_UA.inc @@ -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'] = 'Приховати'; +$labels['show'] = 'Показати'; +?> diff --git a/plugins/hide_blockquote/localization/vi_VN.inc b/plugins/hide_blockquote/localization/vi_VN.inc new file mode 100644 index 000000000..a0235117d --- /dev/null +++ b/plugins/hide_blockquote/localization/vi_VN.inc @@ -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'; +?> diff --git a/plugins/hide_blockquote/localization/zh_CN.inc b/plugins/hide_blockquote/localization/zh_CN.inc new file mode 100644 index 000000000..6701f2d7c --- /dev/null +++ b/plugins/hide_blockquote/localization/zh_CN.inc @@ -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'] = '隐藏引用当行数大于'; +?> diff --git a/plugins/hide_blockquote/localization/zh_TW.inc b/plugins/hide_blockquote/localization/zh_TW.inc new file mode 100644 index 000000000..0fcca729a --- /dev/null +++ b/plugins/hide_blockquote/localization/zh_TW.inc @@ -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'] = '隱藏引文當行數大於'; +?> diff --git a/plugins/hide_blockquote/skins/larry/style.css b/plugins/hide_blockquote/skins/larry/style.css new file mode 100644 index 000000000..198172f92 --- /dev/null +++ b/plugins/hide_blockquote/skins/larry/style.css @@ -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; +}
\ No newline at end of file diff --git a/plugins/hide_blockquote/tests/HideBlockquote.php b/plugins/hide_blockquote/tests/HideBlockquote.php new file mode 100644 index 000000000..90e209459 --- /dev/null +++ b/plugins/hide_blockquote/tests/HideBlockquote.php @@ -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); +    } +} +  | 
