Import Ruty

This commit is contained in:
2024-03-11 00:59:31 +01:00
parent f49a790b88
commit ccafd8c5b6
614 changed files with 33221 additions and 0 deletions
@@ -0,0 +1,24 @@
{
"name": "roundcube/hide_blockquote",
"type": "roundcube-plugin",
"description": "This allows to hide long blocks of cited text in messages.",
"license": "GPL-3.0-or-later",
"version": "1.0",
"authors": [
{
"name": "Aleksander Machniak",
"email": "alec@alec.pl",
"role": "Lead"
}
],
"repositories": [
{
"type": "composer",
"url": "https://plugins.roundcube.net"
}
],
"require": {
"php": ">=7.3.0",
"roundcube/plugin-installer": ">=0.1.3"
}
}
@@ -0,0 +1,69 @@
/**
* Hide Blockquotes plugin script
*
* @licstart The following is the entire license notice for the
* JavaScript code in this file.
*
* Copyright (c) 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 res, text, div, link, q = $(this);
// Add new-line character before each blockquote
// This fixes counting lines of text, it also prevents
// from merging lines from different quoting level
$('blockquote').before(document.createTextNode("\n"));
text = q.text().trim();
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).toggleClass('collapsed');
parent[visible ? 'hide' : 'show']();
q[visible ? 'show' : 'hide']();
});
link.appendTo(div);
// Modify blockquote
q.hide().css({position: 'relative'}).before(div);
});
}
@@ -0,0 +1,17 @@
/**
* Hide Blockquotes plugin script
*
* @licstart The following is the entire license notice for the
* JavaScript code in this file.
*
* Copyright (c) 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.
*/
function hide_blockquote(){var t=rcmail.env.blockquote_limit;t<=0||$("div.message-part div.pre > blockquote",$("#messagebody")).each(function(){var e,i=$(this);$("blockquote").before(document.createTextNode("\n")),(e=i.text().trim().split(/\n/)).length<=t&&i.height()<=15*t||(e=$('<blockquote class="blockquote-header">').css({"white-space":"nowrap",overflow:"hidden",position:"relative"}).text(e[0]),$('<span class="blockquote-link"></span>').css({position:"absolute","z-Index":2}).text(rcmail.get_label("hide_blockquote.show")).data("parent",e).click(function(){var e=$(this),t=e.data("parent"),o=t.is(":visible");e.text(rcmail.get_label(o?"hide":"show","hide_blockquote")).detach().appendTo(o?i:t).toggleClass("collapsed"),t[o?"hide":"show"](),i[o?"show":"hide"]()}).appendTo(e),i.hide().css({position:"relative"}).before(e))})}window.rcmail&&rcmail.addEventListener("init",function(){hide_blockquote()});
@@ -0,0 +1,98 @@
<?php
/**
* Quotation block hiding
*
* 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 hiding).
* $config['hide_blockquote_limit'] = 0;
*
* @license GNU GPLv3+
* @author Aleksander Machniak <alec@alec.pl>
*/
class hide_blockquote extends rcube_plugin
{
public $task = 'mail|settings';
/**
* Plugin initialization
*/
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', []);
if (!in_array('hide_blockquote_limit', $dont_override)) {
$this->add_hook('preferences_list', [$this, 'prefs_table']);
$this->add_hook('preferences_save', [$this, 'prefs_save']);
}
}
}
/**
* Hook to inject plugin-specific user settings
*
* @param array $args Hook arguments
*
* @return array Modified hook arguments
*/
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([
'name' => '_' . $field_id,
'id' => $field_id,
'size' => 5,
'class' => 'form-control'
]);
$args['blocks']['main']['options']['hide_blockquote_limit'] = [
'title' => html::label($field_id, $this->gettext('quotelimit')),
'content' => $input->show($limit ?: '')
];
return $args;
}
/**
* Hook to save plugin-specific user settings
*
* @param array $args Hook arguments
*
* @return array Modified hook arguments
*/
function prefs_save($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;
}
}
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'إخفاء الإقتباس إذا كان عدد الأسطر أكبر مِن';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'اخف الاقتباس اذا كان عدد الاسطر اكبر من ';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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ə';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Хаваць цытаванне, калі колькасць радкоў пераўзыходзіць';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Скрива цитатите когато броя редове е по-голям от';
@@ -0,0 +1,17 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'দেখানো';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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ž';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Απόκρυψη παραπομπων όταν ο αριθμός γραμμών είναι μεγαλύτερος από';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,20 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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 = [];
$labels['hide'] = 'Hide';
$labels['show'] = 'Show';
$labels['quotelimit'] = 'Hide citation when lines count is greater than';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -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 cuando el número de líneas es mayor de';
?>
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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 ';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,17 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'نمایش';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'پنهان کردن نقل‌قول وقتی تعداد خطوط بیشتر است از';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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 à';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Ferstopje';
$labels['show'] = 'Fertoane';
$labels['quotelimit'] = 'Sitaasje ferstopje at rigel telling grutter is as';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Folaigh';
$labels['show'] = 'Taispeáin';
$labels['quotelimit'] = 'Folaigh an lua nuair a bhíonn líon na línte níos mó ná';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'הסתר ציטוט כאשר מספר השורות גדול מ-';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Թաքցնել ցիտումը երբ տողերի քանակը գերազանցում է';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = '次の行数より多い引用を非表示';
@@ -0,0 +1,17 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'ჩვენება';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'លាក់​អត្ថបទ​សម្រង់​ពេល​ចំនួន​ជួរ​ធំ​ជាង';
@@ -0,0 +1,17 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'ತೋರಿಸು';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = '행 개수가 다음보다 많을 때 인용구를 숨김:';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'بەڵگەهێنانەوە بشارەوە کاتێک ژمارەی هێڵەکان گەورەتربوون لە';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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ā';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Скриј цитат кога бројот на линии е поголем од';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'ഇതിലും കൂടുതലാണ് വരികളുടെ എണ്ണമെങ്കിൽ അവലംബം മറയ്ക്കുക';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Хэрвээ мөрийн тоо дараахаас их бол ишлэлийг харуулахгүй:';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
$labels['quotelimit'] = 'Verberg citaat wanneer het aantal regels groter is dan';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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 que';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Скрыть цитату, если число строк более чем';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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ž';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Сакриј цитат када је број редова већи од';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'ซ่อนการอ้างอิงเมื่อการนับบรรทัดมีค่ามากกว่า';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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:';
@@ -0,0 +1,18 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'قۇر سانى چوڭ بولغاندا نەقىلنى يۇشۇرۇش';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Приховати цитування, коли кількість рядків більша, ніж ';
@@ -0,0 +1,17 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'دیکھایں';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = 'Berkitish';
$labels['show'] = 'Korsatish';
$labels['quotelimit'] = 'Qatorlar soni koproq bolsa, sarlavhani yashirish';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = '隐藏引用当行数大于';
@@ -0,0 +1,19 @@
<?php
/*
+-----------------------------------------------------------------------+
| Localization file of the Roundcube Webmail Hide-Blockquote plugin |
| |
| Copyright (C) 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'] = '當行數大於此數目,就隱藏引文:';