Import Ruty
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "roundcube/emoticons",
|
||||
"type": "roundcube-plugin",
|
||||
"description": "Plugin that adds emoticons support.",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"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": "https://plugins.roundcube.net"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=7.3.0",
|
||||
"roundcube/plugin-installer": ">=0.1.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
// Enable emoticons in plain text messages preview
|
||||
$config['emoticons_display'] = false;
|
||||
|
||||
// Enable emoticons in compose editor (HTML)
|
||||
$config['emoticons_compose'] = true;
|
||||
@@ -0,0 +1,167 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Emoticons.
|
||||
*
|
||||
* Plugin to replace emoticons in plain text message body with real emoji.
|
||||
* Also it enables emoticons in HTML compose editor. Both features are optional.
|
||||
*
|
||||
* @license GNU GPLv3+
|
||||
* @author Thomas Bruederli
|
||||
* @author Aleksander Machniak
|
||||
* @website https://roundcube.net
|
||||
*/
|
||||
class emoticons extends rcube_plugin
|
||||
{
|
||||
public $task = 'mail|settings|utils';
|
||||
|
||||
|
||||
/**
|
||||
* Plugin initialization.
|
||||
*/
|
||||
function init()
|
||||
{
|
||||
$rcube = rcube::get_instance();
|
||||
|
||||
$this->add_hook('message_part_after', [$this, 'message_part_after']);
|
||||
$this->add_hook('html_editor', [$this, 'html_editor']);
|
||||
|
||||
if ($rcube->task == 'settings') {
|
||||
$this->add_hook('preferences_list', [$this, 'preferences_list']);
|
||||
$this->add_hook('preferences_save', [$this, 'preferences_save']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 'message_part_after' hook handler to replace common
|
||||
* plain text emoticons with emoji
|
||||
*/
|
||||
function message_part_after($args)
|
||||
{
|
||||
if ($args['type'] == 'plain') {
|
||||
$this->load_config();
|
||||
|
||||
$rcube = rcube::get_instance();
|
||||
if (!$rcube->config->get('emoticons_display', false)) {
|
||||
return $args;
|
||||
}
|
||||
|
||||
$args['body'] = self::text2icons($args['body']);
|
||||
}
|
||||
|
||||
return $args;
|
||||
}
|
||||
|
||||
/**
|
||||
* 'html_editor' hook handler, where we enable emoticons in TinyMCE
|
||||
*/
|
||||
function html_editor($args)
|
||||
{
|
||||
$rcube = rcube::get_instance();
|
||||
|
||||
$this->load_config();
|
||||
|
||||
if ($rcube->config->get('emoticons_compose', true)) {
|
||||
$args['extra_plugins'][] = 'emoticons';
|
||||
$args['extra_buttons'][] = 'emoticons';
|
||||
}
|
||||
|
||||
return $args;
|
||||
}
|
||||
|
||||
/**
|
||||
* 'preferences_list' hook handler
|
||||
*/
|
||||
function preferences_list($args)
|
||||
{
|
||||
$rcube = rcube::get_instance();
|
||||
$dont_override = $rcube->config->get('dont_override', []);
|
||||
|
||||
if ($args['section'] == 'mailview' && !in_array('emoticons_display', $dont_override)) {
|
||||
$this->load_config();
|
||||
$this->add_texts('localization');
|
||||
|
||||
$field_id = 'emoticons_display';
|
||||
$checkbox = new html_checkbox(['name' => '_' . $field_id, 'id' => $field_id, 'value' => 1]);
|
||||
|
||||
$args['blocks']['main']['options']['emoticons_display'] = [
|
||||
'title' => html::label($field_id, $this->gettext('emoticonsdisplay')),
|
||||
'content' => $checkbox->show(intval($rcube->config->get('emoticons_display', false)))
|
||||
];
|
||||
}
|
||||
else if ($args['section'] == 'compose' && !in_array('emoticons_compose', $dont_override)) {
|
||||
$this->load_config();
|
||||
$this->add_texts('localization');
|
||||
|
||||
$field_id = 'emoticons_compose';
|
||||
$checkbox = new html_checkbox(['name' => '_' . $field_id, 'id' => $field_id, 'value' => 1]);
|
||||
|
||||
$args['blocks']['main']['options']['emoticons_compose'] = [
|
||||
'title' => html::label($field_id, $this->gettext('emoticonscompose')),
|
||||
'content' => $checkbox->show(intval($rcube->config->get('emoticons_compose', true)))
|
||||
];
|
||||
}
|
||||
|
||||
return $args;
|
||||
}
|
||||
|
||||
/**
|
||||
* 'preferences_save' hook handler
|
||||
*/
|
||||
function preferences_save($args)
|
||||
{
|
||||
if ($args['section'] == 'mailview') {
|
||||
$args['prefs']['emoticons_display'] = (bool) rcube_utils::get_input_value('_emoticons_display', rcube_utils::INPUT_POST);
|
||||
}
|
||||
else if ($args['section'] == 'compose') {
|
||||
$args['prefs']['emoticons_compose'] = (bool) rcube_utils::get_input_value('_emoticons_compose', rcube_utils::INPUT_POST);
|
||||
}
|
||||
|
||||
return $args;
|
||||
}
|
||||
|
||||
/**
|
||||
* Replace common plain text emoticons with emoji
|
||||
*
|
||||
* @param string $text Text
|
||||
*
|
||||
* @return string Converted text
|
||||
*/
|
||||
protected static function text2icons($text)
|
||||
{
|
||||
// This is a lookbehind assertion which will exclude html entities
|
||||
// E.g. situation when ";)" in "")" shouldn't be replaced by the icon
|
||||
// It's so long because of assertion format restrictions
|
||||
$entity = '(?<!&'
|
||||
. '[a-zA-Z0-9]{2}' . '|' . '#[0-9]{2}' . '|'
|
||||
. '[a-zA-Z0-9]{3}' . '|' . '#[0-9]{3}' . '|'
|
||||
. '[a-zA-Z0-9]{4}' . '|' . '#[0-9]{4}' . '|'
|
||||
. '[a-zA-Z0-9]{5}' . '|'
|
||||
. '[a-zA-Z0-9]{6}' . '|'
|
||||
. '[a-zA-Z0-9]{7}'
|
||||
. ')';
|
||||
|
||||
// map of emoticon replacements
|
||||
$map = [
|
||||
'/(?<!mailto):-?D/' => self::ico_tag('1f603', ':D' ), // laugh
|
||||
'/:-?\(/' => self::ico_tag('1f626', ':(' ), // frown
|
||||
'/'.$entity.';-?\)/' => self::ico_tag('1f609', ';)' ), // wink
|
||||
'/8-?\)/' => self::ico_tag('1f60e', '8)' ), // cool
|
||||
'/(?<!mailto):-?O/i' => self::ico_tag('1f62e', ':O' ), // surprised
|
||||
'/(?<!mailto):-?P/i' => self::ico_tag('1f61b', ':P' ), // tongue out
|
||||
'/(?<!mailto):-?@/i' => self::ico_tag('1f631', ':-@' ), // yell
|
||||
'/O:-?\)/i' => self::ico_tag('1f607', 'O:-)' ), // innocent
|
||||
'/(?<!O):-?\)/' => self::ico_tag('1f60a', ':-)' ), // smile
|
||||
'/(?<!mailto):-?\$/' => self::ico_tag('1f633', ':-$' ), // embarrassed
|
||||
'/(?<!mailto):-?\*/i' => self::ico_tag('1f48b', ':-*' ), // kiss
|
||||
'/(?<!mailto):-?S/i' => self::ico_tag('1f615', ':-S' ), // undecided
|
||||
];
|
||||
|
||||
return preg_replace(array_keys($map), array_values($map), $text);
|
||||
}
|
||||
|
||||
protected static function ico_tag($ico, $title)
|
||||
{
|
||||
return html::span(['title' => $title], "&#x{$ico};");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'عرض الأوجه المبتسمة كنص مجرّد في الرسائل';
|
||||
$labels['emoticonscompose'] = 'تشغيل الأوجه المبتسمة';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'عرض الرموز في رسائل نصية عادية';
|
||||
$labels['emoticonscompose'] = 'تفعيل الرموز';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Показвай емотикони в съобщения с обикновен текст';
|
||||
$labels['emoticonscompose'] = 'Разреши емотикони';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Skrammañ fromlunioù er c\'hemennadennoù testenn blaen';
|
||||
$labels['emoticonscompose'] = 'Gweredekaat ar fromlunioù';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Mostra les emoticones en els missatge en text net';
|
||||
$labels['emoticonscompose'] = 'Activa les emoticones';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Zobrazit smajlíky v textovém formátu';
|
||||
$labels['emoticonscompose'] = 'Povolit smajlíky';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Dangos gwenogluniau mewn fformat testun plaen';
|
||||
$labels['emoticonscompose'] = 'Galluogi gwenogluniau';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Vis humørikoner i ren tekst beskeder';
|
||||
$labels['emoticonscompose'] = 'Aktivér humørikoner';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Emoticons in Klartext-Nachrichten anzeigen';
|
||||
$labels['emoticonscompose'] = 'Emoticons aktivieren';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Emoticons in Klartextnachrichten anzeigen';
|
||||
$labels['emoticonscompose'] = 'Emoticons aktivieren';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Εμφάνιση emoticons σε μηνύματα απλού κειμένου ';
|
||||
$labels['emoticonscompose'] = 'Ενεργοποίηση emoticons';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Display emoticons in plain text messages';
|
||||
$labels['emoticonscompose'] = 'Enable emoticons';
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels = [];
|
||||
$labels['emoticonsdisplay'] = 'Display emoticons in plain text messages';
|
||||
$labels['emoticonscompose'] = 'Enable emoticons';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Mostrar emoticones en mensajes de texto plano';
|
||||
$labels['emoticonscompose'] = 'Habilitar emoticones';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Mostrar emoticonos en mensajes de texto simple';
|
||||
$labels['emoticonscompose'] = 'Activar emoticonos';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Näita lihttekst kirjas emotikone';
|
||||
$labels['emoticonscompose'] = 'Luba emotikonid';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Erakutsi sentikurrak testu lauan dauden mezuetan';
|
||||
$labels['emoticonscompose'] = 'Gaitu sentikurrak';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Näytä hymiöt "pelkkä teksti"-viesteissä';
|
||||
$labels['emoticonscompose'] = 'Käytä hymiöitä';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Vís "emoticons" í reinum tekst boðum';
|
||||
$labels['emoticonscompose'] = 'Tendra "emoticons"';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Afficher les frimousses dans les messages texte en clair';
|
||||
$labels['emoticonscompose'] = 'Activer les frimousses';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Lit emoticons yn gewoane tekst sjen';
|
||||
$labels['emoticonscompose'] = 'Emoticons ynskeakelje';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Taispeáin straoiseoga i dteachtaireachtaí le gnáth-théacs';
|
||||
$labels['emoticonscompose'] = 'Cumasaigh straoiseoga';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'הצגה של פרצופונים בהודעות של טקסט פשוט';
|
||||
$labels['emoticonscompose'] = 'הפעל פרצופונים';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Prikaži emotikone u tekstualnim porukama';
|
||||
$labels['emoticonscompose'] = 'Omogući emotikone';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Hangulatjelek megjelenítése sima szöveges üzenetekben';
|
||||
$labels['emoticonscompose'] = 'Hangulatjelek engedélyezése';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Monstrar emoticones in messages a texto simple';
|
||||
$labels['emoticonscompose'] = 'Activar emoticones';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Tampilkan emoticon dalam pesan teks polos';
|
||||
$labels['emoticonscompose'] = 'Fungsikan emoticon';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Birta tjáningartákn í skilaboðum með hreinum texta';
|
||||
$labels['emoticonscompose'] = 'Virkja tjáningartákn';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Mostra emoticons nei messaggi di testo';
|
||||
$labels['emoticonscompose'] = 'Abilita emoticons';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'テキスト形式のメッセージで絵文字を表示します。';
|
||||
$labels['emoticonscompose'] = '絵文字を有効';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = '일반 텍스트 메시지에서 이모티콘 표시';
|
||||
$labels['emoticonscompose'] = '이모티콘 활성화';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'وێنۆچکەی هەستەکان لە دەقی نامەکاندا پیشانبدە';
|
||||
$labels['emoticonscompose'] = 'وێنۆچکەی هەستەکان چالاک بکە';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Rodyti jaustukus grynojo teksto laiškuose';
|
||||
$labels['emoticonscompose'] = 'Įgalinti jaustukus';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Parastā teksta ziņojumos rādīt emocijas';
|
||||
$labels['emoticonscompose'] = 'Rādīt emocijas';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Прикажување на емотикони во обични текст пораки ';
|
||||
$labels['emoticonscompose'] = 'Овозможи прикажување на емотиконите';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Vis emojier i ren tekst meldinger';
|
||||
$labels['emoticonscompose'] = 'Aktiver emoji';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Geef emoticons weer in tekst zonder opmaak';
|
||||
$labels['emoticonscompose'] = 'Activeer emoticons';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Emoticons weergeven in tekst zonder opmaak';
|
||||
$labels['emoticonscompose'] = 'Emoticons inschakelen';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Wyświetlaj emotikony w wiadomościach tekstowych';
|
||||
$labels['emoticonscompose'] = 'Włącz emotikony';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Exibir emoticons em mensagens de texto simples';
|
||||
$labels['emoticonscompose'] = 'Habilitar emoticons';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Mostrar ícones expressivos em mensagens de texto simples';
|
||||
$labels['emoticonscompose'] = 'Activar ícones expressivos';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Afișați emoticoane în mesaje text simplu';
|
||||
$labels['emoticonscompose'] = 'Activați emoticoane';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Показывать смайлики в чисто текстовых сообщениях';
|
||||
$labels['emoticonscompose'] = 'Включить смайлики';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Zobrazovať emotikony v čisto textových správach';
|
||||
$labels['emoticonscompose'] = 'Zapnúť emotikony';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Prikaži čustvenčke v tekstovnem načinu';
|
||||
$labels['emoticonscompose'] = 'Omogoči čustvenčke';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Shfaqi emotikonet në mesazhe tekst të thjeshtë';
|
||||
$labels['emoticonscompose'] = 'Aktivizoni emotikonet';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Прикажи емотиконе у обичним текстуалним порукама';
|
||||
$labels['emoticonscompose'] = 'Укључи емотиконе';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Visa emoji-symboler i textmeddelanden';
|
||||
$labels['emoticonscompose'] = 'Aktivera emoji-symboler';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Düz metin iletilerinde duygu ifadeleri görüntülensin';
|
||||
$labels['emoticonscompose'] = 'Duygu ifadeleri kullanılsın';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'ئاددىي تېكىست خېتىدە چىراي-ئىپادىلىرىنى كۆرسىتىش';
|
||||
$labels['emoticonscompose'] = 'چىراي-ئىپادىلىرىنى بار قىلىش';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Показувати смайлики у повідомленнях з простим текстом';
|
||||
$labels['emoticonscompose'] = 'Увімкнути смайлики';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = 'Matnli xabarlarda smayliklar tasvirlansinmi?';
|
||||
$labels['emoticonscompose'] = 'Smayliklarni faollashtirish';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = '显示纯文本消息的表情';
|
||||
$labels['emoticonscompose'] = '启用表情';
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Localization file of the Roundcube Webmail Emoticons plugin |
|
||||
| |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
|
||||
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-emoticons/
|
||||
*/
|
||||
|
||||
$labels['emoticonsdisplay'] = '在純文字郵件顯示表情符號';
|
||||
$labels['emoticonscompose'] = '啟用表情符號';
|
||||
Reference in New Issue
Block a user