Show spam aliases #
This commit is contained in:
64
data/web/rc/plugins/archive/archive.js
Normal file
64
data/web/rc/plugins/archive/archive.js
Normal file
@@ -0,0 +1,64 @@
|
||||
/**
|
||||
* Archive plugin script
|
||||
* @version 3.0
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2012-2016, 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 rcmail_archive(prop)
|
||||
{
|
||||
if (rcmail_is_archive())
|
||||
return;
|
||||
|
||||
var post_data = rcmail.selection_post_data();
|
||||
|
||||
// exit if selection is empty
|
||||
if (!post_data._uid)
|
||||
return;
|
||||
|
||||
rcmail.show_contentframe(false);
|
||||
|
||||
// Disable message command buttons until a message is selected
|
||||
rcmail.enable_command(rcmail.env.message_commands, false);
|
||||
rcmail.enable_command('plugin.archive', false);
|
||||
|
||||
// let the server sort the messages to the according subfolders
|
||||
rcmail.with_selected_messages('move', post_data, null, 'plugin.move2archive');
|
||||
}
|
||||
|
||||
function rcmail_is_archive()
|
||||
{
|
||||
// check if current folder is an archive folder or one of its children
|
||||
return rcmail.env.mailbox == rcmail.env.archive_folder
|
||||
|| rcmail.env.mailbox.startsWith(rcmail.env.archive_folder + rcmail.env.delimiter);
|
||||
}
|
||||
|
||||
// callback for app-onload event
|
||||
if (window.rcmail) {
|
||||
rcmail.addEventListener('init', function(evt) {
|
||||
// register command (directly enable in message view mode)
|
||||
rcmail.register_command('plugin.archive', rcmail_archive, rcmail.env.uid && !rcmail_is_archive());
|
||||
|
||||
// add event-listener to message list
|
||||
if (rcmail.message_list)
|
||||
rcmail.message_list.addEventListener('select', function(list) {
|
||||
rcmail.enable_command('plugin.archive', list.get_selection().length > 0 && !rcmail_is_archive());
|
||||
});
|
||||
|
||||
// set css style for archive folder
|
||||
var li;
|
||||
if (rcmail.env.archive_folder && (li = rcmail.get_folder_li(rcmail.env.archive_folder, '', true)))
|
||||
$(li).addClass('archive');
|
||||
});
|
||||
}
|
19
data/web/rc/plugins/archive/archive.min.js
vendored
Normal file
19
data/web/rc/plugins/archive/archive.min.js
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* Archive plugin script
|
||||
* @version 3.0
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2012-2016, 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 rcmail_archive(a){rcmail_is_archive()||(a=rcmail.selection_post_data(),a._uid&&(rcmail.show_contentframe(!1),rcmail.enable_command(rcmail.env.message_commands,!1),rcmail.enable_command("plugin.archive",!1),rcmail.with_selected_messages("move",a,null,"plugin.move2archive")))}function rcmail_is_archive(){return rcmail.env.mailbox==rcmail.env.archive_folder||rcmail.env.mailbox.startsWith(rcmail.env.archive_folder+rcmail.env.delimiter)}
|
||||
window.rcmail&&rcmail.addEventListener("init",function(a){rcmail.register_command("plugin.archive",rcmail_archive,rcmail.env.uid&&!rcmail_is_archive());rcmail.message_list&&rcmail.message_list.addEventListener("select",function(a){rcmail.enable_command("plugin.archive",0<a.get_selection().length&&!rcmail_is_archive())});var b;rcmail.env.archive_folder&&(b=rcmail.get_folder_li(rcmail.env.archive_folder,"",!0))&&$(b).addClass("archive")});
|
453
data/web/rc/plugins/archive/archive.php
Normal file
453
data/web/rc/plugins/archive/archive.php
Normal file
@@ -0,0 +1,453 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Archive
|
||||
*
|
||||
* Plugin that adds a new button to the mailbox toolbar
|
||||
* to move messages to a (user selectable) archive folder.
|
||||
*
|
||||
* @version 3.0
|
||||
* @license GNU GPLv3+
|
||||
* @author Andre Rodier, Thomas Bruederli, Aleksander Machniak
|
||||
*/
|
||||
class archive extends rcube_plugin
|
||||
{
|
||||
public $task = 'settings|mail';
|
||||
|
||||
|
||||
function init()
|
||||
{
|
||||
$rcmail = rcmail::get_instance();
|
||||
|
||||
// register special folder type
|
||||
rcube_storage::$folder_types[] = 'archive';
|
||||
|
||||
if ($rcmail->task == 'mail' && ($rcmail->action == '' || $rcmail->action == 'show')
|
||||
&& ($archive_folder = $rcmail->config->get('archive_mbox'))
|
||||
) {
|
||||
$skin_path = $this->local_skin_path();
|
||||
if (is_file($this->home . "/$skin_path/archive.css")) {
|
||||
$this->include_stylesheet("$skin_path/archive.css");
|
||||
}
|
||||
|
||||
$this->include_script('archive.js');
|
||||
$this->add_texts('localization', true);
|
||||
$this->add_button(
|
||||
array(
|
||||
'type' => 'link',
|
||||
'label' => 'buttontext',
|
||||
'command' => 'plugin.archive',
|
||||
'class' => 'button buttonPas archive disabled',
|
||||
'classact' => 'button archive',
|
||||
'width' => 32,
|
||||
'height' => 32,
|
||||
'title' => 'buttontitle',
|
||||
'domain' => $this->ID,
|
||||
),
|
||||
'toolbar');
|
||||
|
||||
// register hook to localize the archive folder
|
||||
$this->add_hook('render_mailboxlist', array($this, 'render_mailboxlist'));
|
||||
|
||||
// set env variables for client
|
||||
$rcmail->output->set_env('archive_folder', $archive_folder);
|
||||
$rcmail->output->set_env('archive_type', $rcmail->config->get('archive_type',''));
|
||||
}
|
||||
else if ($rcmail->task == 'mail') {
|
||||
// handler for ajax request
|
||||
$this->register_action('plugin.move2archive', array($this, 'move_messages'));
|
||||
}
|
||||
else if ($rcmail->task == 'settings') {
|
||||
$this->add_hook('preferences_list', array($this, 'prefs_table'));
|
||||
$this->add_hook('preferences_save', array($this, 'save_prefs'));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Hook to give the archive folder a localized name in the mailbox list
|
||||
*/
|
||||
function render_mailboxlist($p)
|
||||
{
|
||||
$rcmail = rcmail::get_instance();
|
||||
$archive_folder = $rcmail->config->get('archive_mbox');
|
||||
$show_real_name = $rcmail->config->get('show_real_foldernames');
|
||||
|
||||
// set localized name for the configured archive folder
|
||||
if ($archive_folder && !$show_real_name) {
|
||||
if (isset($p['list'][$archive_folder])) {
|
||||
$p['list'][$archive_folder]['name'] = $this->gettext('archivefolder');
|
||||
}
|
||||
else {
|
||||
// search in subfolders
|
||||
$this->_mod_folder_name($p['list'], $archive_folder, $this->gettext('archivefolder'));
|
||||
}
|
||||
}
|
||||
|
||||
return $p;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper method to find the archive folder in the mailbox tree
|
||||
*/
|
||||
private function _mod_folder_name(&$list, $folder, $new_name)
|
||||
{
|
||||
foreach ($list as $idx => $item) {
|
||||
if ($item['id'] == $folder) {
|
||||
$list[$idx]['name'] = $new_name;
|
||||
return true;
|
||||
}
|
||||
else if (!empty($item['folders'])) {
|
||||
if ($this->_mod_folder_name($list[$idx]['folders'], $folder, $new_name)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Plugin action to move the submitted list of messages to the archive subfolders
|
||||
* according to the user settings and their headers.
|
||||
*/
|
||||
function move_messages()
|
||||
{
|
||||
$rcmail = rcmail::get_instance();
|
||||
|
||||
// only process ajax requests
|
||||
if (!$rcmail->output->ajax_call) {
|
||||
return;
|
||||
}
|
||||
|
||||
$this->add_texts('localization');
|
||||
|
||||
$storage = $rcmail->get_storage();
|
||||
$delimiter = $storage->get_hierarchy_delimiter();
|
||||
$read_on_move = (bool) $rcmail->config->get('read_on_archive');
|
||||
$archive_type = $rcmail->config->get('archive_type', '');
|
||||
$archive_folder = $rcmail->config->get('archive_mbox');
|
||||
$archive_prefix = $archive_folder . $delimiter;
|
||||
$current_mbox = rcube_utils::get_input_value('_mbox', rcube_utils::INPUT_POST);
|
||||
$search_request = rcube_utils::get_input_value('_search', rcube_utils::INPUT_GPC);
|
||||
$uids = rcube_utils::get_input_value('_uid', rcube_utils::INPUT_POST);
|
||||
|
||||
// count messages before changing anything
|
||||
if ($_POST['_from'] != 'show') {
|
||||
$threading = (bool) $storage->get_threading();
|
||||
$old_count = $storage->count(null, $threading ? 'THREADS' : 'ALL');
|
||||
$old_pages = ceil($old_count / $storage->get_pagesize());
|
||||
}
|
||||
|
||||
$count = 0;
|
||||
|
||||
// this way response handler for 'move' action will be executed
|
||||
$rcmail->action = 'move';
|
||||
$this->result = array(
|
||||
'reload' => false,
|
||||
'error' => false,
|
||||
'sources' => array(),
|
||||
'destinations' => array(),
|
||||
);
|
||||
|
||||
foreach (rcmail::get_uids(null, null, $multifolder) as $mbox => $uids) {
|
||||
if (!$archive_folder || strpos($mbox, $archive_prefix) === 0) {
|
||||
$count = count($uids);
|
||||
continue;
|
||||
}
|
||||
else if (!$archive_type || $archive_type == 'folder') {
|
||||
$folder = $archive_folder;
|
||||
|
||||
if ($archive_type == 'folder') {
|
||||
// compose full folder path
|
||||
$folder .= $delimiter . $mbox;
|
||||
|
||||
// create archive subfolder if it doesn't yet exist
|
||||
$this->subfolder_worker($folder);
|
||||
}
|
||||
|
||||
$count += $this->move_messages_worker($uids, $mbox, $folder, $read_on_move);
|
||||
}
|
||||
else {
|
||||
if ($uids == '*') {
|
||||
$index = $storage->index(null, rcmail_sort_column(), rcmail_sort_order());
|
||||
$uids = $index->get();
|
||||
}
|
||||
|
||||
$messages = $storage->fetch_headers($mbox, $uids);
|
||||
$execute = array();
|
||||
|
||||
foreach ($messages as $message) {
|
||||
$subfolder = null;
|
||||
switch ($archive_type) {
|
||||
case 'year':
|
||||
$subfolder = $rcmail->format_date($message->timestamp, 'Y');
|
||||
break;
|
||||
|
||||
case 'month':
|
||||
$subfolder = $rcmail->format_date($message->timestamp, 'Y')
|
||||
. $delimiter . $rcmail->format_date($message->timestamp, 'm');
|
||||
break;
|
||||
|
||||
case 'sender':
|
||||
$from = $message->get('from');
|
||||
preg_match('/[\b<](.+@.+)[\b>]/i', $from, $m);
|
||||
$subfolder = $m[1] ?: $this->gettext('unkownsender');
|
||||
|
||||
// replace reserved characters in folder name
|
||||
$repl = $delimiter == '-' ? '_' : '-';
|
||||
$replacements[$delimiter] = $repl;
|
||||
$replacements['.'] = $repl; // some IMAP server do not allow . characters
|
||||
$subfolder = strtr($subfolder, $replacements);
|
||||
break;
|
||||
}
|
||||
|
||||
// compose full folder path
|
||||
$folder = $archive_folder . ($subfolder ? $delimiter . $subfolder : '');
|
||||
|
||||
$execute[$folder][] = $message->uid;
|
||||
}
|
||||
|
||||
foreach ($execute as $folder => $uids) {
|
||||
// create archive subfolder if it doesn't yet exist
|
||||
$this->subfolder_worker($folder);
|
||||
|
||||
$count += $this->move_messages_worker($uids, $mbox, $folder, $read_on_move);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->result['error']) {
|
||||
if ($_POST['_from'] != 'show') {
|
||||
$rcmail->output->command('list_mailbox');
|
||||
}
|
||||
|
||||
$rcmail->output->show_message($this->gettext('archiveerror'), 'warning');
|
||||
$rcmail->output->send();
|
||||
}
|
||||
|
||||
if (!empty($_POST['_refresh'])) {
|
||||
// FIXME: send updated message rows instead of reloading the entire list
|
||||
$rcmail->output->command('refresh_list');
|
||||
}
|
||||
else {
|
||||
$addrows = true;
|
||||
}
|
||||
|
||||
// refresh saved search set after moving some messages
|
||||
if ($search_request && $rcmail->storage->get_search_set()) {
|
||||
$_SESSION['search'] = $rcmail->storage->refresh_search();
|
||||
}
|
||||
|
||||
if ($_POST['_from'] == 'show') {
|
||||
if ($next = rcube_utils::get_input_value('_next_uid', rcube_utils::INPUT_GPC)) {
|
||||
$rcmail->output->command('show_message', $next);
|
||||
}
|
||||
else {
|
||||
$rcmail->output->command('command', 'list');
|
||||
}
|
||||
|
||||
$rcmail->output->send();
|
||||
}
|
||||
|
||||
$mbox = $storage->get_folder();
|
||||
$msg_count = $storage->count(null, $threading ? 'THREADS' : 'ALL');
|
||||
$exists = $storage->count($mbox, 'EXISTS', true);
|
||||
$page_size = $storage->get_pagesize();
|
||||
$page = $storage->get_page();
|
||||
$pages = ceil($msg_count / $page_size);
|
||||
$nextpage_count = $old_count - $page_size * $page;
|
||||
$remaining = $msg_count - $page_size * ($page - 1);
|
||||
|
||||
// jump back one page (user removed the whole last page)
|
||||
if ($page > 1 && $remaining == 0) {
|
||||
$page -= 1;
|
||||
$storage->set_page($page);
|
||||
$_SESSION['page'] = $page;
|
||||
$jump_back = true;
|
||||
}
|
||||
|
||||
// update message count display
|
||||
$rcmail->output->set_env('messagecount', $msg_count);
|
||||
$rcmail->output->set_env('current_page', $page);
|
||||
$rcmail->output->set_env('pagecount', $pages);
|
||||
$rcmail->output->set_env('exists', $exists);
|
||||
|
||||
// update mailboxlist
|
||||
$unseen_count = $msg_count ? $storage->count($mbox, 'UNSEEN') : 0;
|
||||
$old_unseen = rcmail_get_unseen_count($mbox);
|
||||
$quota_root = $multifolder ? $this->result['sources'][0] : 'INBOX';
|
||||
|
||||
if ($old_unseen != $unseen_count) {
|
||||
$rcmail->output->command('set_unread_count', $mbox, $unseen_count, ($mbox == 'INBOX'));
|
||||
rcmail_set_unseen_count($mbox, $unseen_count);
|
||||
}
|
||||
|
||||
$rcmail->output->command('set_quota', $rcmail->quota_content(null, $quota_root));
|
||||
$rcmail->output->command('set_rowcount', rcmail_get_messagecount_text($msg_count), $mbox);
|
||||
|
||||
if ($threading) {
|
||||
$count = rcube_utils::get_input_value('_count', rcube_utils::INPUT_POST);
|
||||
}
|
||||
|
||||
// add new rows from next page (if any)
|
||||
if ($addrows && $count && $uids != '*' && ($jump_back || $nextpage_count > 0)) {
|
||||
$a_headers = $storage->list_messages($mbox, null,
|
||||
rcmail_sort_column(), rcmail_sort_order(), $jump_back ? null : $count);
|
||||
|
||||
rcmail_js_message_list($a_headers, false);
|
||||
}
|
||||
|
||||
if ($this->result['reload']) {
|
||||
$rcmail->output->show_message($this->gettext('archivedreload'), 'confirmation');
|
||||
}
|
||||
else {
|
||||
$rcmail->output->show_message($this->gettext('archived'), 'confirmation');
|
||||
|
||||
if (!$read_on_move) {
|
||||
foreach ($this->result['destinations'] as $folder) {
|
||||
rcmail_send_unread_count($folder, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// send response
|
||||
$rcmail->output->send();
|
||||
}
|
||||
|
||||
/**
|
||||
* Move messages from one folder to another and mark as read if needed
|
||||
*/
|
||||
private function move_messages_worker($uids, $from_mbox, $to_mbox, $read_on_move)
|
||||
{
|
||||
$storage = rcmail::get_instance()->get_storage();
|
||||
|
||||
if ($read_on_move) {
|
||||
// don't flush cache (4th argument)
|
||||
$storage->set_flag($uids, 'SEEN', $from_mbox, true);
|
||||
}
|
||||
|
||||
// move message to target folder
|
||||
if ($storage->move_message($uids, $to_mbox, $from_mbox)) {
|
||||
if (!in_array($from_mbox, $this->result['sources'])) {
|
||||
$this->result['sources'][] = $from_mbox;
|
||||
}
|
||||
if (!in_array($to_mbox, $this->result['destinations'])) {
|
||||
$this->result['destinations'][] = $to_mbox;
|
||||
}
|
||||
|
||||
return count($uids);
|
||||
}
|
||||
|
||||
$this->result['error'] = true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create archive subfolder if it doesn't yet exist
|
||||
*/
|
||||
private function subfolder_worker($folder)
|
||||
{
|
||||
$storage = rcmail::get_instance()->get_storage();
|
||||
$delimiter = $storage->get_hierarchy_delimiter();
|
||||
|
||||
if ($this->folders === null) {
|
||||
$this->folders = $storage->list_folders('', $archive_folder . '*', 'mail', null, true);
|
||||
}
|
||||
|
||||
if (!in_array($folder, $this->folders)) {
|
||||
$path = explode($delimiter, $folder);
|
||||
|
||||
// we'll create all folders in the path
|
||||
for ($i=0; $i<count($path); $i++) {
|
||||
$_folder = implode($delimiter, array_slice($path, 0, $i+1));
|
||||
if (!in_array($_folder, $this->folders)) {
|
||||
if ($storage->create_folder($_folder, true)) {
|
||||
$this->result['reload'] = true;
|
||||
$this->folders[] = $_folder;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Hook to inject plugin-specific user settings
|
||||
*/
|
||||
function prefs_table($args)
|
||||
{
|
||||
global $CURR_SECTION;
|
||||
|
||||
$this->add_texts('localization');
|
||||
|
||||
$rcmail = rcmail::get_instance();
|
||||
$dont_override = $rcmail->config->get('dont_override', array());
|
||||
|
||||
if ($args['section'] == 'folders' && !in_array('archive_mbox', $dont_override)) {
|
||||
$mbox = $rcmail->config->get('archive_mbox');
|
||||
$type = $rcmail->config->get('archive_type');
|
||||
|
||||
// load folders list when needed
|
||||
if ($CURR_SECTION) {
|
||||
$select = $rcmail->folder_selector(array(
|
||||
'noselection' => '---',
|
||||
'realnames' => true,
|
||||
'maxlength' => 30,
|
||||
'folder_filter' => 'mail',
|
||||
'folder_rights' => 'w',
|
||||
'onchange' => "if ($(this).val() == 'INBOX') $(this).val('')",
|
||||
));
|
||||
}
|
||||
else {
|
||||
$select = new html_select();
|
||||
}
|
||||
|
||||
$args['blocks']['main']['options']['archive_mbox'] = array(
|
||||
'title' => $this->gettext('archivefolder'),
|
||||
'content' => $select->show($mbox, array('name' => "_archive_mbox"))
|
||||
);
|
||||
|
||||
// add option for structuring the archive folder
|
||||
$archive_type = new html_select(array('name' => '_archive_type', 'id' => 'ff_archive_type'));
|
||||
$archive_type->add($this->gettext('none'), '');
|
||||
$archive_type->add($this->gettext('archivetypeyear'), 'year');
|
||||
$archive_type->add($this->gettext('archivetypemonth'), 'month');
|
||||
$archive_type->add($this->gettext('archivetypesender'), 'sender');
|
||||
$archive_type->add($this->gettext('archivetypefolder'), 'folder');
|
||||
|
||||
$args['blocks']['archive'] = array(
|
||||
'name' => rcube::Q($this->gettext('settingstitle')),
|
||||
'options' => array('archive_type' => array(
|
||||
'title' => $this->gettext('archivetype'),
|
||||
'content' => $archive_type->show($type)
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
else if ($args['section'] == 'server' && !in_array('read_on_archive', $dont_override)) {
|
||||
$chbox = new html_checkbox(array('name' => '_read_on_archive', 'id' => 'ff_read_on_archive', 'value' => 1));
|
||||
$args['blocks']['main']['options']['read_on_archive'] = array(
|
||||
'title' => $this->gettext('readonarchive'),
|
||||
'content' => $chbox->show($rcmail->config->get('read_on_archive') ? 1 : 0)
|
||||
);
|
||||
}
|
||||
|
||||
return $args;
|
||||
}
|
||||
|
||||
/**
|
||||
* Hook to save plugin-specific user settings
|
||||
*/
|
||||
function save_prefs($args)
|
||||
{
|
||||
$rcmail = rcmail::get_instance();
|
||||
$dont_override = $rcmail->config->get('dont_override', array());
|
||||
|
||||
if ($args['section'] == 'folders' && !in_array('archive_mbox', $dont_override)) {
|
||||
$args['prefs']['archive_type'] = rcube_utils::get_input_value('_archive_type', rcube_utils::INPUT_POST);
|
||||
}
|
||||
else if ($args['section'] == 'server' && !in_array('read_on_archive', $dont_override)) {
|
||||
$args['prefs']['read_on_archive'] = (bool) rcube_utils::get_input_value('_read_on_archive', rcube_utils::INPUT_POST);
|
||||
}
|
||||
|
||||
return $args;
|
||||
}
|
||||
}
|
29
data/web/rc/plugins/archive/composer.json
Normal file
29
data/web/rc/plugins/archive/composer.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "roundcube/archive",
|
||||
"type": "roundcube-plugin",
|
||||
"description": "This adds a button to move the selected messages to an archive folder. The folder (and the optional structure of subfolders) can be selected in the settings panel.",
|
||||
"license": "GPLv3+",
|
||||
"version": "3.0",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Thomas Bruederli",
|
||||
"email": "roundcube@gmail.com",
|
||||
"role": "Lead"
|
||||
},
|
||||
{
|
||||
"name": "Aleksander Machniak",
|
||||
"email": "alec@alec.pl",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "http://plugins.roundcube.net"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.3.0",
|
||||
"roundcube/plugin-installer": ">=0.1.3"
|
||||
}
|
||||
}
|
31
data/web/rc/plugins/archive/localization/ar_SA.inc
Normal file
31
data/web/rc/plugins/archive/localization/ar_SA.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'الأرشيف';
|
||||
$labels['buttontitle'] = 'أرشف هذه الرسالة';
|
||||
$labels['archived'] = 'أُرشفت بنجاح';
|
||||
$labels['archivedreload'] = 'ارشفت بنجاح. اعد تحميل الصفحه لاضهار الملف المؤرشف';
|
||||
$labels['archiveerror'] = 'بعض الرسائل لايمكن ارشفتها';
|
||||
$labels['archivefolder'] = 'الأرشيف';
|
||||
$labels['settingstitle'] = 'الأرشيف';
|
||||
$labels['archivetype'] = 'تقسيم الأرشيف ب';
|
||||
$labels['archivetypeyear'] = 'السنة (مثال. الارشيف/2012)';
|
||||
$labels['archivetypemonth'] = 'الشهر (مثال. الارشيف/2012/06)';
|
||||
$labels['archivetypefolder'] = 'المجلد الاصلي';
|
||||
$labels['archivetypesender'] = 'ايميل المرسل';
|
||||
$labels['unkownsender'] = 'مجهول';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/ast.inc
Normal file
31
data/web/rc/plugins/archive/localization/ast.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archivu';
|
||||
$labels['buttontitle'] = 'Archivar esti mensaxe';
|
||||
$labels['archived'] = 'Archiváu con ésitu';
|
||||
$labels['archivedreload'] = 'Archiváu con ésitu. Recarga la páxina pa ver les nueves carpetes d\'archivos.';
|
||||
$labels['archiveerror'] = 'Nun pudieron archivase dalgunos mensaxes';
|
||||
$labels['archivefolder'] = 'Archivu';
|
||||
$labels['settingstitle'] = 'Archivu';
|
||||
$labels['archivetype'] = 'Dividir l\'archivu por';
|
||||
$labels['archivetypeyear'] = 'Añu (p.ex. Archivu/2012)';
|
||||
$labels['archivetypemonth'] = 'Mes (p.ex. Archivu/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Carpeta orixinal';
|
||||
$labels['archivetypesender'] = 'Corréu-e del remitente';
|
||||
$labels['unkownsender'] = 'desconocíu';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/az_AZ.inc
Normal file
31
data/web/rc/plugins/archive/localization/az_AZ.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arxiv';
|
||||
$labels['buttontitle'] = 'Mesajı arxivə göndər';
|
||||
$labels['archived'] = 'Arxivə göndərildi';
|
||||
$labels['archivedreload'] = 'Müvəffəqiyyətlə arxivləşdirildi. Yeni arxiv qovluqlarını görmək üçün səhifəni yeniləyin.';
|
||||
$labels['archiveerror'] = 'Bəzi məktublar arxivləşdirilə bilinmirlər';
|
||||
$labels['archivefolder'] = 'Arxiv';
|
||||
$labels['settingstitle'] = 'Arxiv';
|
||||
$labels['archivetype'] = 'Arxivi böl: ';
|
||||
$labels['archivetypeyear'] = 'İl (məs. Arxiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Ay (məs. Arxiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Orijinal qovluq';
|
||||
$labels['archivetypesender'] = 'Göndərənin E-Poçtu';
|
||||
$labels['unkownsender'] = 'naməlum';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/be_BE.inc
Normal file
31
data/web/rc/plugins/archive/localization/be_BE.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Архіў';
|
||||
$labels['buttontitle'] = 'Перанесці ў архіў';
|
||||
$labels['archived'] = 'Перанесена ў архіў';
|
||||
$labels['archivedreload'] = 'Перанесена ў архіў. Перагрузіце старонку, каб пабачыць новыя архіўныя папкі.';
|
||||
$labels['archiveerror'] = 'Некаторыя паведамленні не могуць быць перанесены ў архіў';
|
||||
$labels['archivefolder'] = 'Архіў';
|
||||
$labels['settingstitle'] = 'Архіў';
|
||||
$labels['archivetype'] = 'Раздзяліць архіў паводле';
|
||||
$labels['archivetypeyear'] = 'года (прыкладам, Архіў/2012)';
|
||||
$labels['archivetypemonth'] = 'месяца (прыкладам, Архіў/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Выточная папка';
|
||||
$labels['archivetypesender'] = 'Эл. пошта адпраўніка';
|
||||
$labels['unkownsender'] = 'невядомы';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/bg_BG.inc
Normal file
32
data/web/rc/plugins/archive/localization/bg_BG.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Архивирай';
|
||||
$labels['buttontitle'] = 'Архивиране на писмото';
|
||||
$labels['archived'] = 'Архивирането премина успешно';
|
||||
$labels['archivedreload'] = 'Успешно архивирано. Презаредете страницата за да видите архивираните папки.';
|
||||
$labels['archiveerror'] = 'Някои писма не бяха архивирани';
|
||||
$labels['archivefolder'] = 'Архивирай';
|
||||
$labels['settingstitle'] = 'Архив';
|
||||
$labels['archivetype'] = 'Раздели архива по';
|
||||
$labels['archivetypeyear'] = 'Година (пр. Архив/2012)';
|
||||
$labels['archivetypemonth'] = 'Месец (пр. Архив/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Оригинална папка';
|
||||
$labels['archivetypesender'] = 'E-mail адрес на подател';
|
||||
$labels['unkownsender'] = 'неизвестно';
|
||||
$labels['readonarchive'] = 'Маркирай писмото като прочетено в архива';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/br.inc
Normal file
31
data/web/rc/plugins/archive/localization/br.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Diell';
|
||||
$labels['buttontitle'] = 'Diellaouiñ ar gemennadenn-mañ';
|
||||
$labels['archived'] = 'Diellaouet gant berzh';
|
||||
$labels['archivedreload'] = 'Diellaouet gant berzh. Adkargit ar bajenn da welet an teuliad dielloù nevez.';
|
||||
$labels['archiveerror'] = 'Ul lodenn eus ar c\'hemennadennoù n\'hallont ket bezañ diellaouet';
|
||||
$labels['archivefolder'] = 'Diell';
|
||||
$labels['settingstitle'] = 'Diell';
|
||||
$labels['archivetype'] = 'Rannañ an diell dre';
|
||||
$labels['archivetypeyear'] = 'Bloaz (sk: Diell/2012)';
|
||||
$labels['archivetypemonth'] = 'Miz (sk: Diell/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Teuliad orin';
|
||||
$labels['archivetypesender'] = 'Postel ar c\'haser';
|
||||
$labels['unkownsender'] = 'dianav';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/bs_BA.inc
Normal file
31
data/web/rc/plugins/archive/localization/bs_BA.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arhiva';
|
||||
$labels['buttontitle'] = 'Arhiviraj ovu poruku';
|
||||
$labels['archived'] = 'Arhiviranje uspješno';
|
||||
$labels['archivedreload'] = 'Uspješno arhivirano. Ponovo učitajte stranicu da biste vidjeli nove foldere za arhiviranje.';
|
||||
$labels['archiveerror'] = 'Neke poruke nisu mogle biti arhivirane';
|
||||
$labels['archivefolder'] = 'Arhiva';
|
||||
$labels['settingstitle'] = 'Arhiva';
|
||||
$labels['archivetype'] = 'Podijeli arhivu po';
|
||||
$labels['archivetypeyear'] = 'Godinama (npr. Arhiva/2012)';
|
||||
$labels['archivetypemonth'] = 'Mjesecima (npr Arhiva/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Originalni folder';
|
||||
$labels['archivetypesender'] = 'Email pošiljaoca';
|
||||
$labels['unkownsender'] = 'nepoznato';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/ca_ES.inc
Normal file
31
data/web/rc/plugins/archive/localization/ca_ES.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arxiva';
|
||||
$labels['buttontitle'] = 'Arxiva aquest missatge';
|
||||
$labels['archived'] = 'Arxivat correctament';
|
||||
$labels['archivedreload'] = 'Arxivat correctament. Recarregueu la pàgina per veure les noves carpetes de l\'arxiu.';
|
||||
$labels['archiveerror'] = 'Alguns missatges no s\'han pogut arxivar';
|
||||
$labels['archivefolder'] = 'Arxiu';
|
||||
$labels['settingstitle'] = 'Arxiu';
|
||||
$labels['archivetype'] = 'Divideix arxiu per';
|
||||
$labels['archivetypeyear'] = 'Any (p.ex. Arxiu/2012)';
|
||||
$labels['archivetypemonth'] = 'Mes (p.ex. Arxiu/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Carpeta original';
|
||||
$labels['archivetypesender'] = 'Adreça del remitent';
|
||||
$labels['unkownsender'] = 'desconegut';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/cs_CZ.inc
Normal file
31
data/web/rc/plugins/archive/localization/cs_CZ.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archiv';
|
||||
$labels['buttontitle'] = 'Archivovat zprávu';
|
||||
$labels['archived'] = 'Úspěšně vloženo do archivu';
|
||||
$labels['archivedreload'] = 'Úspěšně archivovány. Obnovte stránku, abyste uviděli nové složky v archivu.';
|
||||
$labels['archiveerror'] = 'Některé zprávy nelze archivovat';
|
||||
$labels['archivefolder'] = 'Archiv';
|
||||
$labels['settingstitle'] = 'Archiv';
|
||||
$labels['archivetype'] = 'Rozdělit archiv podle';
|
||||
$labels['archivetypeyear'] = 'Rok (např. Archiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Měsíc (např. Archiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Původní složka';
|
||||
$labels['archivetypesender'] = 'E-mail odesílatele';
|
||||
$labels['unkownsender'] = 'neznámý';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/cy_GB.inc
Normal file
32
data/web/rc/plugins/archive/localization/cy_GB.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archif';
|
||||
$labels['buttontitle'] = 'Archifo\'r neges hwn';
|
||||
$labels['archived'] = 'Archifwyd yn llwyddiannus';
|
||||
$labels['archivedreload'] = 'Archifwyd yn llwyddiannus. Ail-lwythwch y dudalen i weld ffolderi archif newydd.';
|
||||
$labels['archiveerror'] = 'Nid oedd yn bosib archifo rhai negeseuon';
|
||||
$labels['archivefolder'] = 'Archif';
|
||||
$labels['settingstitle'] = 'Archif';
|
||||
$labels['archivetype'] = 'Rhannu archif gyda';
|
||||
$labels['archivetypeyear'] = 'Blwyddyn (e.g. Archif/2012)';
|
||||
$labels['archivetypemonth'] = 'Mis (e.g. Archif/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Ffolder gwreiddiol';
|
||||
$labels['archivetypesender'] = 'Ebost anfonwr';
|
||||
$labels['unkownsender'] = 'anhysbys';
|
||||
$labels['readonarchive'] = 'Nodi\'r neges fel darllenwyd ar archif';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/da_DK.inc
Normal file
32
data/web/rc/plugins/archive/localization/da_DK.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arkiv';
|
||||
$labels['buttontitle'] = 'Arkivér denne besked';
|
||||
$labels['archived'] = 'Succesfuldt arkiveret.';
|
||||
$labels['archivedreload'] = 'Arkivering lykkedes. Genindlæs siden for at se den nye arkiv mappe.';
|
||||
$labels['archiveerror'] = 'Nogle meddelelser kunne ikke arkiveres';
|
||||
$labels['archivefolder'] = 'Arkiv';
|
||||
$labels['settingstitle'] = 'Arkiver';
|
||||
$labels['archivetype'] = 'Del arkiv med';
|
||||
$labels['archivetypeyear'] = 'År (f.eks. Arkiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Måned (f.eks. Arkiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Original mappe';
|
||||
$labels['archivetypesender'] = 'Afsenders email';
|
||||
$labels['unkownsender'] = 'ukendt';
|
||||
$labels['readonarchive'] = 'Marker denne meddelelse som læst i arkivet';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/de_CH.inc
Normal file
32
data/web/rc/plugins/archive/localization/de_CH.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archiv';
|
||||
$labels['buttontitle'] = 'Nachricht(en) archivieren';
|
||||
$labels['archived'] = 'Nachricht(en) erfolgreich archiviert';
|
||||
$labels['archivedreload'] = 'Nachrichten wurden archiviert. Laden Sie die Seite neu, um die neuen Archivordner zu sehen.';
|
||||
$labels['archiveerror'] = 'Einige Nachrichten konnten nicht archiviert werden';
|
||||
$labels['archivefolder'] = 'Archiv';
|
||||
$labels['settingstitle'] = 'Archiv';
|
||||
$labels['archivetype'] = 'Erstelle Unterordner nach';
|
||||
$labels['archivetypeyear'] = 'Jahr (z.B. Archiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Monat (z.B. Archiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Originalordner';
|
||||
$labels['archivetypesender'] = 'Absender';
|
||||
$labels['unkownsender'] = 'unbekannt';
|
||||
$labels['readonarchive'] = 'Nachrichten beim Archivieren als gelesen markieren';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/de_DE.inc
Normal file
32
data/web/rc/plugins/archive/localization/de_DE.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archiv';
|
||||
$labels['buttontitle'] = 'Nachricht archivieren';
|
||||
$labels['archived'] = 'Nachricht erfolgreich archiviert';
|
||||
$labels['archivedreload'] = 'Erfolgreich archiviert. Bitte die Seite aktualisieren, um die neuen Archivordner zu sehen.';
|
||||
$labels['archiveerror'] = 'Einige Nachrichten konnten nicht archiviert werden';
|
||||
$labels['archivefolder'] = 'Archiv';
|
||||
$labels['settingstitle'] = 'Archiv';
|
||||
$labels['archivetype'] = 'Archiv aufteilen nach';
|
||||
$labels['archivetypeyear'] = 'Jahr (z.B. Archiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Monat (z.B. Archiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Originalordner';
|
||||
$labels['archivetypesender'] = 'Absender-E-Mail';
|
||||
$labels['unkownsender'] = 'unbekannt';
|
||||
$labels['readonarchive'] = 'Nachricht im Archiv als gelesen markieren';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/el_GR.inc
Normal file
31
data/web/rc/plugins/archive/localization/el_GR.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Αρχειοθέτηση';
|
||||
$labels['buttontitle'] = 'Αρχειοθέτηση μηνύματος';
|
||||
$labels['archived'] = 'Αρχειοθετήθηκε με επιτυχία';
|
||||
$labels['archivedreload'] = 'Επιτυχής αρχειοθέτηση. Ανανεώστε την σελίδα για να δείτε τους νέους φακέλους αρχειοθέτησης. ';
|
||||
$labels['archiveerror'] = 'Ορισμένα μηνύματα δεν ήταν δυνατό να αρχειοθετηθούν. ';
|
||||
$labels['archivefolder'] = 'Αρχειοθέτηση';
|
||||
$labels['settingstitle'] = 'Αρχειοθέτηση';
|
||||
$labels['archivetype'] = 'Τμηματοποίηση αρχείου με βάση';
|
||||
$labels['archivetypeyear'] = 'Έτος (π.χ. Αρχείο/2012)';
|
||||
$labels['archivetypemonth'] = 'Μήνα (π.χ. Αρχείο/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Αρχικός φάκελος';
|
||||
$labels['archivetypesender'] = 'Αποστολέας email';
|
||||
$labels['unkownsender'] = 'άγνωστο';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/en_CA.inc
Normal file
31
data/web/rc/plugins/archive/localization/en_CA.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archive';
|
||||
$labels['buttontitle'] = 'Archive this message';
|
||||
$labels['archived'] = 'Successfully archived';
|
||||
$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.';
|
||||
$labels['archiveerror'] = 'Some messages could not be archived';
|
||||
$labels['archivefolder'] = 'Archive';
|
||||
$labels['settingstitle'] = 'Archive';
|
||||
$labels['archivetype'] = 'Divide archive by';
|
||||
$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)';
|
||||
$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Original folder';
|
||||
$labels['archivetypesender'] = 'Sender email';
|
||||
$labels['unkownsender'] = 'unknown';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/en_GB.inc
Normal file
31
data/web/rc/plugins/archive/localization/en_GB.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archive';
|
||||
$labels['buttontitle'] = 'Archive this message';
|
||||
$labels['archived'] = 'Successfully archived';
|
||||
$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.';
|
||||
$labels['archiveerror'] = 'Some messages could not be archived';
|
||||
$labels['archivefolder'] = 'Archive';
|
||||
$labels['settingstitle'] = 'Archive';
|
||||
$labels['archivetype'] = 'Divide archive by';
|
||||
$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)';
|
||||
$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Original folder';
|
||||
$labels['archivetypesender'] = 'Sender email';
|
||||
$labels['unkownsender'] = 'unknown';
|
||||
?>
|
35
data/web/rc/plugins/archive/localization/en_US.inc
Normal file
35
data/web/rc/plugins/archive/localization/en_US.inc
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
|
||||
$labels = array();
|
||||
$labels['buttontext'] = 'Archive';
|
||||
$labels['buttontitle'] = 'Archive this message';
|
||||
$labels['archived'] = 'Successfully archived';
|
||||
$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.';
|
||||
$labels['archiveerror'] = 'Some messages could not be archived';
|
||||
$labels['archivefolder'] = 'Archive';
|
||||
$labels['settingstitle'] = 'Archive';
|
||||
$labels['archivetype'] = 'Divide archive by';
|
||||
$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)';
|
||||
$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Original folder';
|
||||
$labels['archivetypesender'] = 'Sender email';
|
||||
$labels['unkownsender'] = 'unknown';
|
||||
$labels['readonarchive'] = 'Mark the message as read on archive';
|
||||
|
||||
?>
|
22
data/web/rc/plugins/archive/localization/eo.inc
Normal file
22
data/web/rc/plugins/archive/localization/eo.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arkivigi';
|
||||
$labels['buttontitle'] = 'Arkivigi ĉi tiun mesaĝon';
|
||||
$labels['archived'] = 'Sukcese arkivigita';
|
||||
$labels['archivefolder'] = 'Arkivo';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/es_419.inc
Normal file
31
data/web/rc/plugins/archive/localization/es_419.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archivar';
|
||||
$labels['buttontitle'] = 'Archivar este mensaje';
|
||||
$labels['archived'] = 'Archivado exitosamente';
|
||||
$labels['archivedreload'] = 'Archivado exitosamente. Recarga esta página para ver las nuevas carpetas';
|
||||
$labels['archiveerror'] = 'Algunos mensajes no pudieron ser archivados';
|
||||
$labels['archivefolder'] = 'Archivar';
|
||||
$labels['settingstitle'] = 'Archivar';
|
||||
$labels['archivetype'] = 'Dividir archivo por';
|
||||
$labels['archivetypeyear'] = 'Año (ej. Archivo/2012)';
|
||||
$labels['archivetypemonth'] = 'Mes (ej. Archivo/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Carpeta original';
|
||||
$labels['archivetypesender'] = 'Remitente de correo electrónico';
|
||||
$labels['unkownsender'] = 'desconocido';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/es_AR.inc
Normal file
31
data/web/rc/plugins/archive/localization/es_AR.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archivo';
|
||||
$labels['buttontitle'] = 'Archivar este mensaje';
|
||||
$labels['archived'] = 'Mensaje Archivado';
|
||||
$labels['archivedreload'] = 'Archivado satisfactoriamente. Recarga la página para ver las nuevas capetas archivadas.';
|
||||
$labels['archiveerror'] = 'Algunos mensajes no pudieron archivarse';
|
||||
$labels['archivefolder'] = 'Archivo';
|
||||
$labels['settingstitle'] = 'Archivo';
|
||||
$labels['archivetype'] = 'Separar archivo por';
|
||||
$labels['archivetypeyear'] = 'Año (ej. Archivo/2012)';
|
||||
$labels['archivetypemonth'] = 'Mes (ej. Archivo/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Carpeta original';
|
||||
$labels['archivetypesender'] = 'Remitente del correo';
|
||||
$labels['unkownsender'] = 'desconocido';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/es_ES.inc
Normal file
32
data/web/rc/plugins/archive/localization/es_ES.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archivo';
|
||||
$labels['buttontitle'] = 'Archivar este mensaje';
|
||||
$labels['archived'] = 'Archivado correctamente';
|
||||
$labels['archivedreload'] = 'Archivado correctamente. Recargue la página para ver las nuevas carpetas de archivo.';
|
||||
$labels['archiveerror'] = 'No se pudo archivar algunos mensajes';
|
||||
$labels['archivefolder'] = 'Archivo';
|
||||
$labels['settingstitle'] = 'Archivo';
|
||||
$labels['archivetype'] = 'Dividir el archivo por';
|
||||
$labels['archivetypeyear'] = 'Año (p.ej. Archivo/2012)';
|
||||
$labels['archivetypemonth'] = 'Mes (p.ej. Archivo/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Bandeja original';
|
||||
$labels['archivetypesender'] = 'Correo electrónico del remitente';
|
||||
$labels['unkownsender'] = 'desconocido';
|
||||
$labels['readonarchive'] = 'Marcar el mensaje como leído al archivar';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/et_EE.inc
Normal file
31
data/web/rc/plugins/archive/localization/et_EE.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arhiveeri';
|
||||
$labels['buttontitle'] = 'Arhiveeri see kiri';
|
||||
$labels['archived'] = 'Edukalt arhiveeritud';
|
||||
$labels['archivedreload'] = 'Arhiveerimine õnnestus. Uute arhiivi kaustada nägemiseks laadi leht uuesti.';
|
||||
$labels['archiveerror'] = 'Mõnda kirja ei õnnestusnud arhiveerida';
|
||||
$labels['archivefolder'] = 'Arhiiv';
|
||||
$labels['settingstitle'] = 'Arhiiv';
|
||||
$labels['archivetype'] = 'Jaga arhiiv';
|
||||
$labels['archivetypeyear'] = 'Aasta (nt. Arhiiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Kuu (nt. Arhiiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Esialgne kaust';
|
||||
$labels['archivetypesender'] = 'Saatja e-post';
|
||||
$labels['unkownsender'] = 'teadmata';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/eu_ES.inc
Normal file
31
data/web/rc/plugins/archive/localization/eu_ES.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Gorde';
|
||||
$labels['buttontitle'] = 'Gorde mezu hau';
|
||||
$labels['archived'] = 'Ongi gorde da';
|
||||
$labels['archivedreload'] = 'Ongi gorde da. Freskatu orria fitxategi-karpeta berria ikusteko.';
|
||||
$labels['archiveerror'] = 'Mezu batzuk ezin dira gorde.';
|
||||
$labels['archivefolder'] = 'Gorde';
|
||||
$labels['settingstitle'] = 'Gorde';
|
||||
$labels['archivetype'] = 'Banatu honen arabera';
|
||||
$labels['archivetypeyear'] = 'Urtea (e.b. Archive/2012)';
|
||||
$labels['archivetypemonth'] = 'Hilabete (e.b. Archive/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Jatorrizko karpeta';
|
||||
$labels['archivetypesender'] = 'Bidaltzailearen helbidea';
|
||||
$labels['unkownsender'] = 'ezezaguna';
|
||||
?>
|
26
data/web/rc/plugins/archive/localization/fa_AF.inc
Normal file
26
data/web/rc/plugins/archive/localization/fa_AF.inc
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'ارشیو';
|
||||
$labels['buttontitle'] = 'ارشیو این پیام';
|
||||
$labels['archived'] = 'با موفقیت ارشیو شد';
|
||||
$labels['archivefolder'] = 'ارشیو';
|
||||
$labels['settingstitle'] = 'ارشیو';
|
||||
$labels['archivetypefolder'] = 'پوشه اصلی';
|
||||
$labels['archivetypesender'] = 'ایمیل فرستنده';
|
||||
$labels['unkownsender'] = 'نا شناس';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/fa_IR.inc
Normal file
31
data/web/rc/plugins/archive/localization/fa_IR.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'بایگانی';
|
||||
$labels['buttontitle'] = 'بایگانی این پیغام';
|
||||
$labels['archived'] = 'با موفقیت بایگانی شد';
|
||||
$labels['archivedreload'] = 'با کامیابی بایگانی شد. برای دیدن پوشههای بایگانی جدید صفحه را مجددا بارگذاری نمایید.';
|
||||
$labels['archiveerror'] = 'برخی از پیغامها بایگانی نشدند.';
|
||||
$labels['archivefolder'] = 'بایگانی';
|
||||
$labels['settingstitle'] = 'بایگانی';
|
||||
$labels['archivetype'] = 'تقسیم بایگانی با';
|
||||
$labels['archivetypeyear'] = 'سال (به عنوان مثال بایگانی/۲۰۱۲)';
|
||||
$labels['archivetypemonth'] = 'ماه (به عنوان مثال بایگانی/۲۰۱۲/۰۶)';
|
||||
$labels['archivetypefolder'] = 'پوشه اصلی';
|
||||
$labels['archivetypesender'] = 'رایانامه فرستنده';
|
||||
$labels['unkownsender'] = 'ناشناخته';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/fi_FI.inc
Normal file
32
data/web/rc/plugins/archive/localization/fi_FI.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arkistoi';
|
||||
$labels['buttontitle'] = 'Arkistoi viesti';
|
||||
$labels['archived'] = 'Arkistoitu onnistuneesti';
|
||||
$labels['archivedreload'] = 'Arkistointi onnistui. Päivitä sivu nähdäksesi uudet arkistokansiot.';
|
||||
$labels['archiveerror'] = 'Joidenkin viestien arkistointi epäonnistui';
|
||||
$labels['archivefolder'] = 'Arkistoi';
|
||||
$labels['settingstitle'] = 'Arkistoi';
|
||||
$labels['archivetype'] = 'Jaa arkisto';
|
||||
$labels['archivetypeyear'] = 'Vuodella (esim. Arkisto/2012)';
|
||||
$labels['archivetypemonth'] = 'Kuukaudella (esim. Arkisto/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Alkuperäinen kansio';
|
||||
$labels['archivetypesender'] = 'Lähettäjän osoite';
|
||||
$labels['unkownsender'] = 'tuntematon';
|
||||
$labels['readonarchive'] = 'Merkitse viesti luetuksi arkistoon';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/fo_FO.inc
Normal file
31
data/web/rc/plugins/archive/localization/fo_FO.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Goym í skjalasavni';
|
||||
$labels['buttontitle'] = 'Goym hetta boð í skjalasavni';
|
||||
$labels['archived'] = 'Goymt í skjalasavn';
|
||||
$labels['archivedreload'] = 'Goymt í skjalasavn. Les inn aftur síðu fyri at síggja nýggjar mappur';
|
||||
$labels['archiveerror'] = 'Onkur boð kundu ikki leggjast í skjalagoymslu';
|
||||
$labels['archivefolder'] = 'Goym í skjalasavni';
|
||||
$labels['settingstitle'] = 'Goym í skjalasavni';
|
||||
$labels['archivetype'] = 'Deil skjalagoymslu við';
|
||||
$labels['archivetypeyear'] = 'Ár (t.d. Skjalagoymsla/2012)';
|
||||
$labels['archivetypemonth'] = 'Mánar(t.d. Skjalahgoymsla/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Uppruna mappa';
|
||||
$labels['archivetypesender'] = 'Sendara teldupostur';
|
||||
$labels['unkownsender'] = 'ókent';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/fr_FR.inc
Normal file
32
data/web/rc/plugins/archive/localization/fr_FR.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archiver';
|
||||
$labels['buttontitle'] = 'Archiver ce courriel';
|
||||
$labels['archived'] = 'Archivé avec succès';
|
||||
$labels['archivedreload'] = 'Archivé avec succès. Recharger la page pour voir les nouveaux dossiers d\'archives.';
|
||||
$labels['archiveerror'] = 'Certains courriels n\'ont pas pu être archivés.';
|
||||
$labels['archivefolder'] = 'Archiver';
|
||||
$labels['settingstitle'] = 'Archiver';
|
||||
$labels['archivetype'] = 'Diviser l\'archive par';
|
||||
$labels['archivetypeyear'] = 'Année (ex. Archives/2012)';
|
||||
$labels['archivetypemonth'] = 'Mois (ex. Archives/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Dossier original';
|
||||
$labels['archivetypesender'] = 'Courriel de l\'expéditeur';
|
||||
$labels['unkownsender'] = 'inconnu';
|
||||
$labels['readonarchive'] = 'Marquer le courriel comme lu lors de l\'archivage';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/gl_ES.inc
Normal file
31
data/web/rc/plugins/archive/localization/gl_ES.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arquivo';
|
||||
$labels['buttontitle'] = 'Arquivar esta mensaxe';
|
||||
$labels['archived'] = 'Aquivouse a mensaxe';
|
||||
$labels['archivedreload'] = 'Arquivado correctamente. Recargua a páxina para ver os novos cartafoles de arquivado.';
|
||||
$labels['archiveerror'] = 'Non se puideron arquivar algunhas mensaxes';
|
||||
$labels['archivefolder'] = 'Arquivo';
|
||||
$labels['settingstitle'] = 'Arquivar';
|
||||
$labels['archivetype'] = 'Dividir o arquivo por';
|
||||
$labels['archivetypeyear'] = 'Ano (p.ex. Arquivo/2012)';
|
||||
$labels['archivetypemonth'] = 'Mes (p.ex. Arquivo/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Cartafol orixe';
|
||||
$labels['archivetypesender'] = 'Enderezo da persoa remitente';
|
||||
$labels['unkownsender'] = 'descoñecido';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/he_IL.inc
Normal file
32
data/web/rc/plugins/archive/localization/he_IL.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'ארכיון';
|
||||
$labels['buttontitle'] = 'משלוח ההודעה לארכיב';
|
||||
$labels['archived'] = 'עדכון הארכיון הצליח';
|
||||
$labels['archivedreload'] = 'נשמר בהצלחה בארכיב. יש לרענו את הדף כדי לראות את התיקיות החדשות בארכיב.';
|
||||
$labels['archiveerror'] = 'לא ניתן היה להעביר לארכיב חלק מההודעות';
|
||||
$labels['archivefolder'] = 'ארכיון';
|
||||
$labels['settingstitle'] = 'ארכיב';
|
||||
$labels['archivetype'] = 'לחלק את הארכיב על ידי';
|
||||
$labels['archivetypeyear'] = 'שנה ( לדוגמה, ארכיב/2012/96 )';
|
||||
$labels['archivetypemonth'] = 'חודש ( לדוגמה, ארכיב/2012/96 )';
|
||||
$labels['archivetypefolder'] = 'תיקיה מקורית';
|
||||
$labels['archivetypesender'] = 'שולח ההודעה';
|
||||
$labels['unkownsender'] = 'לא ידוע';
|
||||
$labels['readonarchive'] = 'יש לסמן את ההודעה בארכיב כאילו נקראה';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/hr_HR.inc
Normal file
31
data/web/rc/plugins/archive/localization/hr_HR.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arhiva';
|
||||
$labels['buttontitle'] = 'Arhiviraj poruku';
|
||||
$labels['archived'] = 'Uspješno arhivirano';
|
||||
$labels['archivedreload'] = 'Uspješno arhivirano. Osvježite stranicu kako biste vidjeli nove arhivske mape.';
|
||||
$labels['archiveerror'] = 'Neke poruke nije bilo moguće arhivirati';
|
||||
$labels['archivefolder'] = 'Arhiva';
|
||||
$labels['settingstitle'] = 'Arhiva';
|
||||
$labels['archivetype'] = 'Podijeli arhivu po';
|
||||
$labels['archivetypeyear'] = 'Godina (npr. Arhiva/2012)';
|
||||
$labels['archivetypemonth'] = 'Mjesec (e.g. Arhiva/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Izvorna mapa';
|
||||
$labels['archivetypesender'] = 'E-mail adresa pošiljatelja';
|
||||
$labels['unkownsender'] = 'nepoznato';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/hu_HU.inc
Normal file
32
data/web/rc/plugins/archive/localization/hu_HU.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archiválás';
|
||||
$labels['buttontitle'] = 'Üzenet archiválása';
|
||||
$labels['archived'] = 'Sikeres archiválás';
|
||||
$labels['archivedreload'] = 'Az arhiválás sikeres. Frissitsd az oldalt, hogy lásd a létrejött arhivum mappákat.';
|
||||
$labels['archiveerror'] = 'Néhány üzenetet nem sikerült arhiválni';
|
||||
$labels['archivefolder'] = 'Archiválás';
|
||||
$labels['settingstitle'] = 'Archiválás';
|
||||
$labels['archivetype'] = 'Arhívum tovább bontása a következő szerint';
|
||||
$labels['archivetypeyear'] = 'Év ( pl Arhívum/2012)';
|
||||
$labels['archivetypemonth'] = 'Honap ( pl Arhívum/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Eredeti mappa';
|
||||
$labels['archivetypesender'] = 'Feladó';
|
||||
$labels['unkownsender'] = 'ismeretlen';
|
||||
$labels['readonarchive'] = 'Üzenet olvasottként jelölése arhiváláskor';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/hy_AM.inc
Normal file
31
data/web/rc/plugins/archive/localization/hy_AM.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Արխիվ';
|
||||
$labels['buttontitle'] = 'Արխիվացնել այս հաղորդագրությունը';
|
||||
$labels['archived'] = 'Բարեհաջող արխիվացվեց';
|
||||
$labels['archivedreload'] = 'Բարեհաջող արխիվացվեց: Վերբեռնեք էջը նոր արխիվացված պանակները տեսնելու համար:';
|
||||
$labels['archiveerror'] = 'Որոշ հաղորդագրություններ հնարավոր չէ արխիվացնել';
|
||||
$labels['archivefolder'] = 'Արխիվ';
|
||||
$labels['settingstitle'] = 'Արխիվ';
|
||||
$labels['archivetype'] = 'Բաժանել արխիվը';
|
||||
$labels['archivetypeyear'] = 'Տարեթիվ (օր.՝ Արխիվ/2012)';
|
||||
$labels['archivetypemonth'] = 'Ամսաթիվ (օր.՝ Արխիվ/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Առաջին պանակը';
|
||||
$labels['archivetypesender'] = 'Ուղարկողի էլ-փոստը';
|
||||
$labels['unkownsender'] = 'անհայտ';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/ia.inc
Normal file
31
data/web/rc/plugins/archive/localization/ia.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archivar';
|
||||
$labels['buttontitle'] = 'Archivar iste message';
|
||||
$labels['archived'] = 'Archivate con successo';
|
||||
$labels['archivedreload'] = 'Archivate con successo. Recarga le pagina pro vider le nove dossieres de archivo.';
|
||||
$labels['archiveerror'] = 'Alcun messages non poteva esser archivate';
|
||||
$labels['archivefolder'] = 'Archivo';
|
||||
$labels['settingstitle'] = 'Archivo';
|
||||
$labels['archivetype'] = 'Divider le archivo per';
|
||||
$labels['archivetypeyear'] = 'Anno (p.ex. Archivo/2012)';
|
||||
$labels['archivetypemonth'] = 'Mense (p.ex. Archivo/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Dossier original';
|
||||
$labels['archivetypesender'] = 'E-mail del expeditor';
|
||||
$labels['unkownsender'] = 'incognite';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/id_ID.inc
Normal file
32
data/web/rc/plugins/archive/localization/id_ID.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arsip';
|
||||
$labels['buttontitle'] = 'Arsipkan pesan ini';
|
||||
$labels['archived'] = 'Berhasil mengarsipkan';
|
||||
$labels['archivedreload'] = 'Berhasil diarsipkan. Reload halaman untuk melihat folder arsip baru.';
|
||||
$labels['archiveerror'] = 'Beberapa pesan tidak dapat diarsipkan';
|
||||
$labels['archivefolder'] = 'Arsip';
|
||||
$labels['settingstitle'] = 'Arsip';
|
||||
$labels['archivetype'] = 'Pisah arsip berdasarkan';
|
||||
$labels['archivetypeyear'] = 'Tahun (contoh: Arsip/2012)';
|
||||
$labels['archivetypemonth'] = 'Bulan (contoh: Arsip/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Folder asli';
|
||||
$labels['archivetypesender'] = 'Email pengirim';
|
||||
$labels['unkownsender'] = 'Tidak dikenal';
|
||||
$labels['readonarchive'] = 'Tandai pesan telah dibaca di arsip';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/it_IT.inc
Normal file
32
data/web/rc/plugins/archive/localization/it_IT.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archivio';
|
||||
$labels['buttontitle'] = 'Archivia questo messaggio';
|
||||
$labels['archived'] = 'Archiviato correttamente';
|
||||
$labels['archivedreload'] = 'Archiviata con successo. Ricarica la pagina per visualizzare le nuove cartelle.';
|
||||
$labels['archiveerror'] = 'Alcuni messaggi non possono essere archiviati';
|
||||
$labels['archivefolder'] = 'Archivio';
|
||||
$labels['settingstitle'] = 'Archivio';
|
||||
$labels['archivetype'] = 'Dividi archivio per';
|
||||
$labels['archivetypeyear'] = 'Anno (es. Archivio/2012)';
|
||||
$labels['archivetypemonth'] = 'Mese (es. Archivio/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Cartella di origine';
|
||||
$labels['archivetypesender'] = 'Mittente email';
|
||||
$labels['unkownsender'] = 'sconosciuto';
|
||||
$labels['readonarchive'] = 'Segna i messaggi in archivio come letti';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/ja_JP.inc
Normal file
32
data/web/rc/plugins/archive/localization/ja_JP.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'アーカイブ';
|
||||
$labels['buttontitle'] = 'このメッセージをアーカイブ';
|
||||
$labels['archived'] = 'アーカイブしました。';
|
||||
$labels['archivedreload'] = 'アーカイブしました。ページを再読み込みすると、新しいアーカイブのフォルダーを表示します。';
|
||||
$labels['archiveerror'] = 'アーカイブできないメッセージがありました';
|
||||
$labels['archivefolder'] = 'アーカイブ';
|
||||
$labels['settingstitle'] = 'アーカイブ';
|
||||
$labels['archivetype'] = 'アーカイブを分割: ';
|
||||
$labels['archivetypeyear'] = '年 (例: アーカイブ/2012)';
|
||||
$labels['archivetypemonth'] = '月 (e.g. アーカイブ/2012/06)';
|
||||
$labels['archivetypefolder'] = '元のフォルダー';
|
||||
$labels['archivetypesender'] = '電子メールの送信者';
|
||||
$labels['unkownsender'] = '不明';
|
||||
$labels['readonarchive'] = 'アーカイブでメッセージを既読に設定';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/km_KH.inc
Normal file
31
data/web/rc/plugins/archive/localization/km_KH.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'ប័ណ្ណសារ';
|
||||
$labels['buttontitle'] = 'ធ្វើសារនេះជាបណ្ណសារ';
|
||||
$labels['archived'] = 'ធ្វើជាបណ្ណសារបានសម្រេច';
|
||||
$labels['archivedreload'] = 'ធ្វើជាបណ្ណសារបានសម្រេច។ ផ្ទុកទំព័រឡើងវិញ ដើម្បីមើលថតបណ្ណសារថ្មី។';
|
||||
$labels['archiveerror'] = 'សារខ្លះមិនអាចត្រូវបានធ្វើជាបណ្ណសារទេ';
|
||||
$labels['archivefolder'] = 'ប័ណ្ណសារ';
|
||||
$labels['settingstitle'] = 'បណ្ណសារ';
|
||||
$labels['archivetype'] = 'ចែកបណ្ណសារតាម';
|
||||
$labels['archivetypeyear'] = 'ឆ្នាំ (ឧទា. បណ្ណសារ/2012)';
|
||||
$labels['archivetypemonth'] = 'ខែ (ឧទា. បណ្ណសារ/2012/06)';
|
||||
$labels['archivetypefolder'] = 'ថតដើម';
|
||||
$labels['archivetypesender'] = 'អ្នកផ្ញើអ៊ីមែល';
|
||||
$labels['unkownsender'] = 'មិនស្គាល់';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/ko_KR.inc
Normal file
32
data/web/rc/plugins/archive/localization/ko_KR.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = '보관';
|
||||
$labels['buttontitle'] = '이 메시지를 보관함에 저장';
|
||||
$labels['archived'] = '성공적으로 보관함';
|
||||
$labels['archivedreload'] = '성공적으로 보관되었습니다. 페이지를 다시 불러와서 새로운 보관함 폴더를 확인하세요.';
|
||||
$labels['archiveerror'] = '일부 메시지가 보관되지 않음';
|
||||
$labels['archivefolder'] = '보관';
|
||||
$labels['settingstitle'] = '보관';
|
||||
$labels['archivetype'] = '보관된 메시지 정리 기준';
|
||||
$labels['archivetypeyear'] = '연도 (예: 보관/2012)';
|
||||
$labels['archivetypemonth'] = '월 (예: 보관/2012/06)';
|
||||
$labels['archivetypefolder'] = '원본 폴더';
|
||||
$labels['archivetypesender'] = '발송자 이메일';
|
||||
$labels['unkownsender'] = '알 수 없음';
|
||||
$labels['readonarchive'] = '편지 보관함에서 메시지를 읽음으로 표시';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/ku.inc
Normal file
31
data/web/rc/plugins/archive/localization/ku.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arşîv';
|
||||
$labels['buttontitle'] = 'vê peyamê arşîv bike';
|
||||
$labels['archived'] = 'Bi serkeftin hat arşîvkirin';
|
||||
$labels['archivedreload'] = 'Bi serkeftin hat arşîvkirin. Rûpelê dîsa bar bike da dosyeyên arşîvê yên nû bibînî.';
|
||||
$labels['archiveerror'] = 'Hin peyam nehatin arşîvkirin.';
|
||||
$labels['archivefolder'] = 'Arşîv';
|
||||
$labels['settingstitle'] = 'Arşîv';
|
||||
$labels['archivetype'] = 'Arşîvê dabeşîne';
|
||||
$labels['archivetypeyear'] = 'Sal (wek Arşîv/2012)';
|
||||
$labels['archivetypemonth'] = 'Meh (wek Arşîv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Dosyeya resen';
|
||||
$labels['archivetypesender'] = 'Emaila şandyar';
|
||||
$labels['unkownsender'] = 'nenas';
|
||||
?>
|
22
data/web/rc/plugins/archive/localization/ku_IQ.inc
Normal file
22
data/web/rc/plugins/archive/localization/ku_IQ.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'ئەرشیف';
|
||||
$labels['archivefolder'] = 'ئەرشیف';
|
||||
$labels['settingstitle'] = 'ئەرشیف';
|
||||
$labels['unkownsender'] = 'نەناسراو';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/lb_LU.inc
Normal file
31
data/web/rc/plugins/archive/localization/lb_LU.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archivéieren';
|
||||
$labels['buttontitle'] = 'Dëse Message archivéieren';
|
||||
$labels['archived'] = 'Erfollegräich archivéiert';
|
||||
$labels['archivedreload'] = 'Erfollegräich archivéiert. Lued d\'Säit nei fir déi neisten Archiv-Dossieren ze gesinn.';
|
||||
$labels['archiveerror'] = 'Verschidde Messagë konnten net archivéiert ginn';
|
||||
$labels['archivefolder'] = 'Archiv';
|
||||
$labels['settingstitle'] = 'Archiv';
|
||||
$labels['archivetype'] = 'Archiv dividéieren duerch';
|
||||
$labels['archivetypeyear'] = 'Joer (z.B. Archiv/2013)';
|
||||
$labels['archivetypemonth'] = 'Mount (z.B. Archiv/2013/06)';
|
||||
$labels['archivetypefolder'] = 'Original-Dossier';
|
||||
$labels['archivetypesender'] = 'Sender-E-Mail';
|
||||
$labels['unkownsender'] = 'onbekannt';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/lt_LT.inc
Normal file
31
data/web/rc/plugins/archive/localization/lt_LT.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archyvuoti';
|
||||
$labels['buttontitle'] = 'Perkelti šį laišką į archyvą';
|
||||
$labels['archived'] = 'Laiškas sėkmingai perkeltas į archyvą';
|
||||
$labels['archivedreload'] = 'Sėkmingai perkelta į archyvą. Iš naujo įkelkite puslapį, kad pamatytumėt pasikeitimus.';
|
||||
$labels['archiveerror'] = 'Į archyvą nepavyko perkelti keleto laiškų.';
|
||||
$labels['archivefolder'] = 'Archyvuoti';
|
||||
$labels['settingstitle'] = 'Archyvuoti';
|
||||
$labels['archivetype'] = 'Padalinti archyvą pagal';
|
||||
$labels['archivetypeyear'] = 'Metai (pvz. Archyvas/2012)';
|
||||
$labels['archivetypemonth'] = 'Mėnesis (pvz. Archyvas/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Tikrasis aplankas';
|
||||
$labels['archivetypesender'] = 'Siuntėjo el. pašto adresas';
|
||||
$labels['unkownsender'] = 'nežinomas';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/lv_LV.inc
Normal file
31
data/web/rc/plugins/archive/localization/lv_LV.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arhīvs';
|
||||
$labels['buttontitle'] = 'Arhivēt šo vēstuli';
|
||||
$labels['archived'] = 'Vēstule veiksmīgi arhivēta';
|
||||
$labels['archivedreload'] = 'Arhīvs veiksmīgi izveidots. Lai redzētu jaunās arhīva mapes, pārlādējiet lapu.';
|
||||
$labels['archiveerror'] = 'Dažas vēstules nebija iespējams arhivēt';
|
||||
$labels['archivefolder'] = 'Arhīvs';
|
||||
$labels['settingstitle'] = 'Arhīvs';
|
||||
$labels['archivetype'] = 'Sadalīt arhīvu pa';
|
||||
$labels['archivetypeyear'] = 'Gadiem (piem. Arhīvs/2012)';
|
||||
$labels['archivetypemonth'] = 'Mēnešiem (piem. Arhīvs/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Sākotnējā mape';
|
||||
$labels['archivetypesender'] = 'Sūtītāja e-pasts';
|
||||
$labels['unkownsender'] = 'nezināms';
|
||||
?>
|
22
data/web/rc/plugins/archive/localization/ml_IN.inc
Normal file
22
data/web/rc/plugins/archive/localization/ml_IN.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'ശേഖരം';
|
||||
$labels['buttontitle'] = 'ഈ മെസ്സേജ് ശേഖരിക്കുക';
|
||||
$labels['archived'] = 'വിജയകരമായി ശേഖരിച്ചു';
|
||||
$labels['archivefolder'] = 'ശേഖരം';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/mn_MN.inc
Normal file
31
data/web/rc/plugins/archive/localization/mn_MN.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Архив';
|
||||
$labels['buttontitle'] = 'Энэ зурвасыг архивлах';
|
||||
$labels['archived'] = 'Амжилттай архивлагдлаа';
|
||||
$labels['archivedreload'] = 'Амжилттай архивлагдлаа. Хуудсыг дахин дуудаж шинэ үүссэн архив хавтсыг харна уу.';
|
||||
$labels['archiveerror'] = 'Зарим зурвас архивлагдаж чадахгүй';
|
||||
$labels['archivefolder'] = 'Архив';
|
||||
$labels['settingstitle'] = 'Архив';
|
||||
$labels['archivetype'] = 'Архивыг дараахаар ялга: ';
|
||||
$labels['archivetypeyear'] = 'Он (жиш: Архив/2012)';
|
||||
$labels['archivetypemonth'] = 'Сар (жиш: Архив/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Жинхэнэ хавтас';
|
||||
$labels['archivetypesender'] = 'Илгээгчийн мэйл хаяг';
|
||||
$labels['unkownsender'] = 'мэдэгдэхгүй';
|
||||
?>
|
22
data/web/rc/plugins/archive/localization/mr_IN.inc
Normal file
22
data/web/rc/plugins/archive/localization/mr_IN.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'जतन केलेला';
|
||||
$labels['buttontitle'] = 'हा संदेश जतन करा';
|
||||
$labels['archived'] = 'यशस्वीरीत्या जतन केला';
|
||||
$labels['archivefolder'] = 'जतन केलेला';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/nb_NO.inc
Normal file
31
data/web/rc/plugins/archive/localization/nb_NO.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arkiv';
|
||||
$labels['buttontitle'] = 'Arkiver meldingen';
|
||||
$labels['archived'] = 'Arkivert';
|
||||
$labels['archivedreload'] = 'Arkivering vellykket. Last inn siden på nytt for å se de nye arkivmappene.';
|
||||
$labels['archiveerror'] = 'Noen meldinger kunne ikke arkiveres';
|
||||
$labels['archivefolder'] = 'Arkiv';
|
||||
$labels['settingstitle'] = 'Arkiv';
|
||||
$labels['archivetype'] = 'Del arkiv etter';
|
||||
$labels['archivetypeyear'] = 'År (f.eks. Arkiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Måned (f.eks. Arkiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Opprinnelig mappe';
|
||||
$labels['archivetypesender'] = 'Avsender';
|
||||
$labels['unkownsender'] = 'ukjent';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/nl_NL.inc
Normal file
31
data/web/rc/plugins/archive/localization/nl_NL.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archief';
|
||||
$labels['buttontitle'] = 'Archiveer dit bericht';
|
||||
$labels['archived'] = 'Succesvol gearchiveerd';
|
||||
$labels['archivedreload'] = 'Succesvol gearchiveerd. Herlaad de pagina om de nieuwe archiefmappen te bekijken.';
|
||||
$labels['archiveerror'] = 'Sommige berichten kunnen niet gearchiveerd worden';
|
||||
$labels['archivefolder'] = 'Archief';
|
||||
$labels['settingstitle'] = 'Archiveren';
|
||||
$labels['archivetype'] = 'Archief opdelen in';
|
||||
$labels['archivetypeyear'] = 'Jaar (bijv. Archief/2012)';
|
||||
$labels['archivetypemonth'] = 'Maand (bijv. Archief/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Originele map';
|
||||
$labels['archivetypesender'] = 'Afzender e-mail';
|
||||
$labels['unkownsender'] = 'onbekend';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/nn_NO.inc
Normal file
31
data/web/rc/plugins/archive/localization/nn_NO.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arkiver';
|
||||
$labels['buttontitle'] = 'Arkiver meldinga';
|
||||
$labels['archived'] = 'Arkivert';
|
||||
$labels['archivedreload'] = 'Arkivering vellukka. Last inn sida på nytt for å sjå dei nye arkivmappene.';
|
||||
$labels['archiveerror'] = 'Nokre meldingar kunne ikkje arkiverast';
|
||||
$labels['archivefolder'] = 'Arkiver';
|
||||
$labels['settingstitle'] = 'Arkiv';
|
||||
$labels['archivetype'] = 'Del arkiv etter';
|
||||
$labels['archivetypeyear'] = 'År (f.eks. Arkiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Månad (f.eks. Arkiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Opprinneleg mappe';
|
||||
$labels['archivetypesender'] = 'Avsendar';
|
||||
$labels['unkownsender'] = 'ukjent';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/pl_PL.inc
Normal file
32
data/web/rc/plugins/archive/localization/pl_PL.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archiwum';
|
||||
$labels['buttontitle'] = 'Przenieś do archiwum';
|
||||
$labels['archived'] = 'Pomyślnie zarchiwizowano';
|
||||
$labels['archivedreload'] = 'Pomyślnie zarchiwizowano. Odśwież stronę aby zobaczyć nowe foldery.';
|
||||
$labels['archiveerror'] = 'Nie można zarchiwizować niektórych wiadomości';
|
||||
$labels['archivefolder'] = 'Archiwum';
|
||||
$labels['settingstitle'] = 'Archiwum';
|
||||
$labels['archivetype'] = 'Podziel archiwum wg';
|
||||
$labels['archivetypeyear'] = 'Roku (np. Archiwum/2012)';
|
||||
$labels['archivetypemonth'] = 'Miesiąca (np. Archiwum/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Oryginalny folder';
|
||||
$labels['archivetypesender'] = 'E-mail nadawcy';
|
||||
$labels['unkownsender'] = 'nieznany';
|
||||
$labels['readonarchive'] = 'Podczas archiwizowania oznacz wiadomość jako przeczytaną';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/pt_BR.inc
Normal file
32
data/web/rc/plugins/archive/localization/pt_BR.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arquivo';
|
||||
$labels['buttontitle'] = 'Arquivar esta mensagem';
|
||||
$labels['archived'] = 'Arquivada com sucesso';
|
||||
$labels['archivedreload'] = 'Arquivado com sucesso. Recarregue a página para ver as novas pastas de arquivo.';
|
||||
$labels['archiveerror'] = 'Algumas mensagens não puderam ser arquivadas';
|
||||
$labels['archivefolder'] = 'Arquivo';
|
||||
$labels['settingstitle'] = 'Arquivo';
|
||||
$labels['archivetype'] = 'Dividir arquivo por';
|
||||
$labels['archivetypeyear'] = 'Ano (isto é, Arquivo/2012)';
|
||||
$labels['archivetypemonth'] = 'Mês (isto é, Arquivo/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Pasta original';
|
||||
$labels['archivetypesender'] = 'E-mail do remetente';
|
||||
$labels['unkownsender'] = 'desconhecido';
|
||||
$labels['readonarchive'] = 'Marcar a mensagem como lida ao arquivar';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/pt_PT.inc
Normal file
32
data/web/rc/plugins/archive/localization/pt_PT.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arquivo';
|
||||
$labels['buttontitle'] = 'Arquivar esta mensagem';
|
||||
$labels['archived'] = 'Arquivada com sucesso';
|
||||
$labels['archivedreload'] = 'Arquivado com sucesso. Recarregue a página para ver as novas pastas de arquivo.';
|
||||
$labels['archiveerror'] = 'Algumas mensagens não puderam ser arquivadas';
|
||||
$labels['archivefolder'] = 'Arquivo';
|
||||
$labels['settingstitle'] = 'Arquivo';
|
||||
$labels['archivetype'] = 'Dividir arquivo por';
|
||||
$labels['archivetypeyear'] = 'Ano (ex. Arquivo/2012)';
|
||||
$labels['archivetypemonth'] = 'Mês (ex. Arquivo/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Pasta original';
|
||||
$labels['archivetypesender'] = 'E-mail do remetente';
|
||||
$labels['unkownsender'] = 'desconhecido';
|
||||
$labels['readonarchive'] = 'Marcar a mensagem como lida ao arquivar';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/ro_RO.inc
Normal file
31
data/web/rc/plugins/archive/localization/ro_RO.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arhivă';
|
||||
$labels['buttontitle'] = 'Arhivează mesajul.';
|
||||
$labels['archived'] = 'Arhivare reuşită.';
|
||||
$labels['archivedreload'] = 'Arhivat cu succes. Reîncărcați pagina pentru a vedea noul dosar de arhivare.';
|
||||
$labels['archiveerror'] = 'Unele mesaje nu au putut fi arhivate';
|
||||
$labels['archivefolder'] = 'Arhivă';
|
||||
$labels['settingstitle'] = 'Arhivă';
|
||||
$labels['archivetype'] = 'Împarte arhiva pe';
|
||||
$labels['archivetypeyear'] = 'Ani (ex. Arhiva/2013)';
|
||||
$labels['archivetypemonth'] = 'Luni (ex. Arhiva/2013/06)';
|
||||
$labels['archivetypefolder'] = 'Dosar original';
|
||||
$labels['archivetypesender'] = 'E-mail expeditor';
|
||||
$labels['unkownsender'] = 'necunoscut';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/ru_RU.inc
Normal file
32
data/web/rc/plugins/archive/localization/ru_RU.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Архив';
|
||||
$labels['buttontitle'] = 'Переместить выбранное в архив';
|
||||
$labels['archived'] = 'Перенесено в Архив';
|
||||
$labels['archivedreload'] = 'Успешно заархивировано. Обновите страницу, чтобы увидеть новые папки архива.';
|
||||
$labels['archiveerror'] = 'Некоторые сообщения не могут быть заархивированы';
|
||||
$labels['archivefolder'] = 'Архив';
|
||||
$labels['settingstitle'] = 'Архив';
|
||||
$labels['archivetype'] = 'Разделить архив по';
|
||||
$labels['archivetypeyear'] = 'Год (например, Архив/2012)';
|
||||
$labels['archivetypemonth'] = 'Месяц (например, Архив/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Исходная папка';
|
||||
$labels['archivetypesender'] = 'Адрес отправителя';
|
||||
$labels['unkownsender'] = 'неизвестно';
|
||||
$labels['readonarchive'] = 'Помечать как прочитанное при архивировании';
|
||||
?>
|
22
data/web/rc/plugins/archive/localization/si_LK.inc
Normal file
22
data/web/rc/plugins/archive/localization/si_LK.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'සංරක්ෂණය';
|
||||
$labels['buttontitle'] = 'මෙම පණිවිඩය සංරක්ෂණය කරන්න';
|
||||
$labels['archived'] = 'සංරක්ෂණය සාර්ථකයි';
|
||||
$labels['archivefolder'] = 'සංරක්ෂණය';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/sk_SK.inc
Normal file
32
data/web/rc/plugins/archive/localization/sk_SK.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Archivovať';
|
||||
$labels['buttontitle'] = 'Archivovať túto správu';
|
||||
$labels['archived'] = 'Úspešne uložené do archívu';
|
||||
$labels['archivedreload'] = 'Archivovanie bolo úspešne dokončené. Ak si chcete prezrieť nové archívne priečinky, obnovte stránku.';
|
||||
$labels['archiveerror'] = 'Niektoré správy nebolo možné archivovať';
|
||||
$labels['archivefolder'] = 'Archivovať';
|
||||
$labels['settingstitle'] = 'Archív';
|
||||
$labels['archivetype'] = 'Rozdeliť archív po';
|
||||
$labels['archivetypeyear'] = 'rokoch (napríklad Archív/2012)';
|
||||
$labels['archivetypemonth'] = 'mesiacoch (napríklad Archív/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Pôvodný priečinok';
|
||||
$labels['archivetypesender'] = 'E-mailová adresa odosielateľa';
|
||||
$labels['unkownsender'] = 'neznámy';
|
||||
$labels['readonarchive'] = 'Pri archivovaní označiť správu ako prečítanú';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/sl_SI.inc
Normal file
32
data/web/rc/plugins/archive/localization/sl_SI.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arhiv';
|
||||
$labels['buttontitle'] = 'Arhiviraj to sporočilo';
|
||||
$labels['archived'] = 'Sporočilo je bilo uspešno arhivirano';
|
||||
$labels['archivedreload'] = 'Uspešno shranjeno v arhiv. Za pregled map v Arhivu ponovno naložite stran.';
|
||||
$labels['archiveerror'] = 'Nekaterih sporočil ni bilo mogoče arhivirati';
|
||||
$labels['archivefolder'] = 'Arhiv';
|
||||
$labels['settingstitle'] = 'Arhiv';
|
||||
$labels['archivetype'] = 'Razdeli arhiv glede na';
|
||||
$labels['archivetypeyear'] = 'Leto (npr. Arhiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Mesec (npr. Arhiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Izvorna mapa';
|
||||
$labels['archivetypesender'] = 'Naslov pošiljatelja';
|
||||
$labels['unkownsender'] = 'neznan';
|
||||
$labels['readonarchive'] = 'Ob arhiviranju označi sporočilo kot prebrano';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/sq_AL.inc
Normal file
32
data/web/rc/plugins/archive/localization/sq_AL.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arkivoje';
|
||||
$labels['buttontitle'] = 'Arkivoje këtë mesazh';
|
||||
$labels['archived'] = 'U arkivua me sukses';
|
||||
$labels['archivedreload'] = 'U arkivua me sukses. Ringarkoni faqen që të shihni dosjet e reja arkiv.';
|
||||
$labels['archiveerror'] = 'Ca nga mesazhet s’u arkivuan dot';
|
||||
$labels['archivefolder'] = 'Arkivoje';
|
||||
$labels['settingstitle'] = 'Arkivoje';
|
||||
$labels['archivetype'] = 'Ndaje arkivin sipas';
|
||||
$labels['archivetypeyear'] = 'Vit (p.sh. Arkiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Muaj (p.sh. Arkiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Dosje origjinale';
|
||||
$labels['archivetypesender'] = 'Email dërguesi';
|
||||
$labels['unkownsender'] = 'e panjohur';
|
||||
$labels['readonarchive'] = 'I vini shenjë si të lexuar mesazhit në arkiv';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/sr_CS.inc
Normal file
31
data/web/rc/plugins/archive/localization/sr_CS.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Архивирај';
|
||||
$labels['buttontitle'] = 'Архивирај ову поруку';
|
||||
$labels['archived'] = 'Успешно архивирано';
|
||||
$labels['archivedreload'] = 'Успешно архивирано. Поново учитајте страну да видите нове архивиране фасцикле.';
|
||||
$labels['archiveerror'] = 'Неке поруке се нису могле архивирати';
|
||||
$labels['archivefolder'] = 'Архива';
|
||||
$labels['settingstitle'] = 'Архивирање';
|
||||
$labels['archivetype'] = 'Разврстај архиве по';
|
||||
$labels['archivetypeyear'] = 'години (нпр. Архива/2015)';
|
||||
$labels['archivetypemonth'] = 'месецу (нпр. Архива/2015/03)';
|
||||
$labels['archivetypefolder'] = 'изворној фасцикли';
|
||||
$labels['archivetypesender'] = 'адреси пошиљаоца';
|
||||
$labels['unkownsender'] = 'непознат';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/sv_SE.inc
Normal file
32
data/web/rc/plugins/archive/localization/sv_SE.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arkivera';
|
||||
$labels['buttontitle'] = 'Arkivera meddelande';
|
||||
$labels['archived'] = 'Meddelandet är arkiverat';
|
||||
$labels['archivedreload'] = 'Meddelandet är arkiverat. Ladda om sidan för att se de nya arkivkatalogerna.';
|
||||
$labels['archiveerror'] = 'Några meddelanden kunde inte arkiveras';
|
||||
$labels['archivefolder'] = 'Arkiv';
|
||||
$labels['settingstitle'] = 'Arkiv';
|
||||
$labels['archivetype'] = 'Uppdelning av arkiv';
|
||||
$labels['archivetypeyear'] = 'År (ex. Arkiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Månad (ex. Arkiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Ursprunglig katalog';
|
||||
$labels['archivetypesender'] = 'Avsändaradress';
|
||||
$labels['unkownsender'] = 'Okänd';
|
||||
$labels['readonarchive'] = 'Märk meddelande som läst vid arkivering';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/tr_TR.inc
Normal file
32
data/web/rc/plugins/archive/localization/tr_TR.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Arşivle';
|
||||
$labels['buttontitle'] = 'Bu iletiyi arşivle';
|
||||
$labels['archived'] = 'Arşivlendi.';
|
||||
$labels['archivedreload'] = 'Arşivlendi. Yeni arşiv klasörlerini görmek için sayfayı yenileyin.';
|
||||
$labels['archiveerror'] = 'Bazı iletiler arşivlenemedi';
|
||||
$labels['archivefolder'] = 'Arşiv';
|
||||
$labels['settingstitle'] = 'Arşiv';
|
||||
$labels['archivetype'] = 'Arşivleme şuna göre yapılsın';
|
||||
$labels['archivetypeyear'] = 'Yıl (Arşiv/2012)';
|
||||
$labels['archivetypemonth'] = 'Ay (Arşiv/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Özgün dosya';
|
||||
$labels['archivetypesender'] = 'Gönderici adresi';
|
||||
$labels['unkownsender'] = 'bilinmeyen';
|
||||
$labels['readonarchive'] = 'Arşivdeki ileti okunmuş olarak işaretlensin';
|
||||
?>
|
19
data/web/rc/plugins/archive/localization/tzl.inc
Normal file
19
data/web/rc/plugins/archive/localization/tzl.inc
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['unkownsender'] = 'inschì';
|
||||
?>
|
32
data/web/rc/plugins/archive/localization/uk_UA.inc
Normal file
32
data/web/rc/plugins/archive/localization/uk_UA.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Архів';
|
||||
$labels['buttontitle'] = 'Архівувати це повідомлення';
|
||||
$labels['archived'] = 'Перенесено в архів';
|
||||
$labels['archivedreload'] = 'Успішно заархівовано. Перезавантажте сторінку, щоб побачити нові теки з архівами.';
|
||||
$labels['archiveerror'] = 'Деякі повідомлення не вдалося заархівувати';
|
||||
$labels['archivefolder'] = 'Архів';
|
||||
$labels['settingstitle'] = 'Архів';
|
||||
$labels['archivetype'] = 'Розділити архів по';
|
||||
$labels['archivetypeyear'] = 'Рік (наприклад Архів/2012)';
|
||||
$labels['archivetypemonth'] = 'Місяць (наприклад Архів/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Оригінальна тека';
|
||||
$labels['archivetypesender'] = 'Відправник email';
|
||||
$labels['unkownsender'] = 'невідомо';
|
||||
$labels['readonarchive'] = 'Позначити повідомлення як прочитане по архіву';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/vi_VN.inc
Normal file
31
data/web/rc/plugins/archive/localization/vi_VN.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = 'Lưu trữ';
|
||||
$labels['buttontitle'] = 'Lưu lại bức thư này';
|
||||
$labels['archived'] = 'Lưu lại thành công';
|
||||
$labels['archivedreload'] = 'Đã lưu thành công. Tải lại trang này để thấy các thư mục lưu trữ mới.';
|
||||
$labels['archiveerror'] = 'Một số thư không thể lưu lại được';
|
||||
$labels['archivefolder'] = 'Lưu trữ';
|
||||
$labels['settingstitle'] = 'Lưu trữ';
|
||||
$labels['archivetype'] = 'Chia bộ lưu trữ bởi';
|
||||
$labels['archivetypeyear'] = 'Năm (ví dụ: Lưu trữ/2012)';
|
||||
$labels['archivetypemonth'] = 'Tháng (ví dụ: Lưu trữ/2012/06)';
|
||||
$labels['archivetypefolder'] = 'Thư mục nguyên gốc';
|
||||
$labels['archivetypesender'] = 'Địa chỉ thư điện tử của người gửi';
|
||||
$labels['unkownsender'] = 'Không rõ';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/zh_CN.inc
Normal file
31
data/web/rc/plugins/archive/localization/zh_CN.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = '存档';
|
||||
$labels['buttontitle'] = '存档该信息';
|
||||
$labels['archived'] = '存档成功';
|
||||
$labels['archivedreload'] = '存档成功。请刷新本页以查看新的存档文件夹。';
|
||||
$labels['archiveerror'] = '部分信息无法存档';
|
||||
$labels['archivefolder'] = '存档';
|
||||
$labels['settingstitle'] = '存档';
|
||||
$labels['archivetype'] = '分类存档按';
|
||||
$labels['archivetypeyear'] = '年(例如 存档/2012)';
|
||||
$labels['archivetypemonth'] = '月(例如 存档/2012/06)';
|
||||
$labels['archivetypefolder'] = '原始文件夹';
|
||||
$labels['archivetypesender'] = '发件人邮件';
|
||||
$labels['unkownsender'] = '未知';
|
||||
?>
|
31
data/web/rc/plugins/archive/localization/zh_TW.inc
Normal file
31
data/web/rc/plugins/archive/localization/zh_TW.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| plugins/archive/localization/<lang>.inc |
|
||||
| |
|
||||
| Localization file of the Roundcube Webmail Archive plugin |
|
||||
| Copyright (C) 2016, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/
|
||||
*/
|
||||
$labels['buttontext'] = '封存';
|
||||
$labels['buttontitle'] = '封存此信件';
|
||||
$labels['archived'] = '已成功封存';
|
||||
$labels['archivedreload'] = '封存動作完成.重新載入頁面瀏覽新的封存資料夾';
|
||||
$labels['archiveerror'] = '部分資訊無法完成封存';
|
||||
$labels['archivefolder'] = '封存';
|
||||
$labels['settingstitle'] = '封存';
|
||||
$labels['archivetype'] = '封存檔案切割方式';
|
||||
$labels['archivetypeyear'] = '年分(例如: 封存/2012)';
|
||||
$labels['archivetypemonth'] = '月份(例如: 封存/2012/06)';
|
||||
$labels['archivetypefolder'] = '原始資料夾';
|
||||
$labels['archivetypesender'] = '寄件者電子信箱';
|
||||
$labels['unkownsender'] = '未知';
|
||||
?>
|
10
data/web/rc/plugins/archive/skins/classic/archive.css
Normal file
10
data/web/rc/plugins/archive/skins/classic/archive.css
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
#messagetoolbar a.button.archive {
|
||||
text-indent: -5000px;
|
||||
background: url(archive_act.png) 0 0 no-repeat;
|
||||
}
|
||||
|
||||
#mailboxlist li.mailbox.archive > a {
|
||||
background-image: url(foldericon.png);
|
||||
background-position: 5px 1px;
|
||||
}
|
1
data/web/rc/plugins/archive/skins/classic/archive.min.css
vendored
Normal file
1
data/web/rc/plugins/archive/skins/classic/archive.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
#messagetoolbar a.button.archive{text-indent:-5000px;background:url(archive_act.png) 0 0 no-repeat}#mailboxlist li.mailbox.archive>a{background-image:url(foldericon.png);background-position:5px 1px}
|
BIN
data/web/rc/plugins/archive/skins/classic/archive_act.png
Normal file
BIN
data/web/rc/plugins/archive/skins/classic/archive_act.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
BIN
data/web/rc/plugins/archive/skins/classic/archive_pas.png
Normal file
BIN
data/web/rc/plugins/archive/skins/classic/archive_pas.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 977 B |
BIN
data/web/rc/plugins/archive/skins/classic/foldericon.png
Normal file
BIN
data/web/rc/plugins/archive/skins/classic/foldericon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.2 KiB |
0
data/web/rc/plugins/archive/skins/larry/.gitignore
vendored
Normal file
0
data/web/rc/plugins/archive/skins/larry/.gitignore
vendored
Normal file
23
data/web/rc/plugins/archive/tests/Archive.php
Normal file
23
data/web/rc/plugins/archive/tests/Archive.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
class Archive_Plugin extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
function setUp()
|
||||
{
|
||||
include_once __DIR__ . '/../archive.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* Plugin object construction test
|
||||
*/
|
||||
function test_constructor()
|
||||
{
|
||||
$rcube = rcube::get_instance();
|
||||
$plugin = new archive($rcube->api);
|
||||
|
||||
$this->assertInstanceOf('archive', $plugin);
|
||||
$this->assertInstanceOf('rcube_plugin', $plugin);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user