mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-04-21 12:59:25 +00:00
Show spam aliases #
This commit is contained in:
32
data/web/rc/program/include/clisetup.php
Normal file
32
data/web/rc/program/include/clisetup.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/include/clisetup.php |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2010-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Setup the command line environment and provide some utitlity |
|
||||
| functions. |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
if (php_sapi_name() != 'cli') {
|
||||
die('Not on the "shell" (php-cli).');
|
||||
}
|
||||
|
||||
require_once INSTALL_PATH . 'program/include/iniset.php';
|
||||
|
||||
// Unset max. execution time limit, set to 120 seconds in iniset.php
|
||||
@set_time_limit(0);
|
||||
|
||||
$rcmail = rcmail::get_instance();
|
||||
$rcmail->output = new rcmail_output_cli();
|
||||
82
data/web/rc/program/include/iniset.php
Normal file
82
data/web/rc/program/include/iniset.php
Normal file
@@ -0,0 +1,82 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/include/iniset.php |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2008-2015, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Setup the application environment required to process |
|
||||
| any request. |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Till Klampaeckel <till@php.net> |
|
||||
| Thomas Bruederli <roundcube@gmail.com> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
// application constants
|
||||
define('RCMAIL_VERSION', '1.3-beta');
|
||||
define('RCMAIL_START', microtime(true));
|
||||
|
||||
if (!defined('INSTALL_PATH')) {
|
||||
define('INSTALL_PATH', dirname($_SERVER['SCRIPT_FILENAME']).'/');
|
||||
}
|
||||
|
||||
if (!defined('RCMAIL_CONFIG_DIR')) {
|
||||
define('RCMAIL_CONFIG_DIR', INSTALL_PATH . 'config');
|
||||
}
|
||||
|
||||
if (!defined('RCUBE_LOCALIZATION_DIR')) {
|
||||
define('RCUBE_LOCALIZATION_DIR', INSTALL_PATH . 'program/localization/');
|
||||
}
|
||||
|
||||
define('RCUBE_INSTALL_PATH', INSTALL_PATH);
|
||||
define('RCUBE_CONFIG_DIR', RCMAIL_CONFIG_DIR.'/');
|
||||
|
||||
|
||||
// RC include folders MUST be included FIRST to avoid other
|
||||
// possible not compatible libraries (i.e PEAR) to be included
|
||||
// instead the ones provided by RC
|
||||
$include_path = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR;
|
||||
$include_path.= ini_get('include_path');
|
||||
|
||||
if (set_include_path($include_path) === false) {
|
||||
die("Fatal error: ini_set/set_include_path does not work.");
|
||||
}
|
||||
|
||||
// increase maximum execution time for php scripts
|
||||
// (does not work in safe mode)
|
||||
@set_time_limit(120);
|
||||
|
||||
// include composer autoloader (if available)
|
||||
if (@file_exists(INSTALL_PATH . 'vendor/autoload.php')) {
|
||||
require INSTALL_PATH . 'vendor/autoload.php';
|
||||
}
|
||||
|
||||
// include Roundcube Framework
|
||||
require_once 'Roundcube/bootstrap.php';
|
||||
|
||||
// register autoloader for rcmail app classes
|
||||
spl_autoload_register('rcmail_autoload');
|
||||
|
||||
/**
|
||||
* PHP5 autoloader routine for dynamic class loading
|
||||
*/
|
||||
function rcmail_autoload($classname)
|
||||
{
|
||||
if (strpos($classname, 'rcmail') === 0) {
|
||||
$filepath = INSTALL_PATH . "program/include/$classname.php";
|
||||
if (is_readable($filepath)) {
|
||||
include_once $filepath;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
2524
data/web/rc/program/include/rcmail.php
Normal file
2524
data/web/rc/program/include/rcmail.php
Normal file
File diff suppressed because it is too large
Load Diff
48
data/web/rc/program/include/rcmail_html_page.php
Normal file
48
data/web/rc/program/include/rcmail_html_page.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/include/rcmail_html_page.php |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2006-2013, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Render a simple HTML page with the given contents |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
* Class to create an empty HTML page with some default styles
|
||||
*
|
||||
* @package Webmail
|
||||
* @subpackage View
|
||||
*/
|
||||
class rcmail_html_page extends rcmail_output_html
|
||||
{
|
||||
public function write($contents = '')
|
||||
{
|
||||
self::reset(true);
|
||||
|
||||
// load embed.css from skin folder (if exists)
|
||||
if ($embed_css = $this->get_skin_file('/embed.css')) {
|
||||
$this->include_css($embed_css);
|
||||
}
|
||||
else { // set default styles for warning blocks inside the attachment part frame
|
||||
$this->add_header(html::tag('style', array('type' => 'text/css'),
|
||||
".rcmail-inline-message { font-family: sans-serif; border:2px solid #ffdf0e;"
|
||||
. "background:#fef893; padding:0.6em 1em; margin-bottom:0.6em }\n" .
|
||||
".rcmail-inline-buttons { margin-bottom:0 }"
|
||||
));
|
||||
}
|
||||
|
||||
parent::write($contents);
|
||||
}
|
||||
}
|
||||
835
data/web/rc/program/include/rcmail_install.php
Normal file
835
data/web/rc/program/include/rcmail_install.php
Normal file
@@ -0,0 +1,835 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| rcmail_install.php |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail package |
|
||||
| Copyright (C) 2008-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. |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
* Class to control the installation process of the Roundcube Webmail package
|
||||
*
|
||||
* @category Install
|
||||
* @package Roundcube
|
||||
* @author Thomas Bruederli
|
||||
*/
|
||||
class rcmail_install
|
||||
{
|
||||
public $step;
|
||||
public $last_error;
|
||||
public $is_post = false;
|
||||
public $failures = 0;
|
||||
public $config = array();
|
||||
public $configured = false;
|
||||
public $legacy_config = false;
|
||||
public $email_pattern = '([a-z0-9][a-z0-9\-\.\+\_]*@[a-z0-9]([a-z0-9\-][.]?)*[a-z0-9])';
|
||||
public $bool_config_props = array();
|
||||
|
||||
public $local_config = array('db_dsnw', 'default_host', 'support_url', 'des_key', 'plugins');
|
||||
public $obsolete_config = array('db_backend', 'db_max_length', 'double_auth', 'preview_pane');
|
||||
public $replaced_config = array(
|
||||
'skin_path' => 'skin',
|
||||
'locale_string' => 'language',
|
||||
'multiple_identities' => 'identities_level',
|
||||
'addrbook_show_images' => 'show_images',
|
||||
'imap_root' => 'imap_ns_personal',
|
||||
'pagesize' => 'mail_pagesize',
|
||||
'top_posting' => 'reply_mode',
|
||||
'keep_alive' => 'refresh_interval',
|
||||
'min_keep_alive' => 'min_refresh_interval',
|
||||
);
|
||||
|
||||
// list of supported database drivers
|
||||
public $supported_dbs = array(
|
||||
'MySQL' => 'pdo_mysql',
|
||||
'PostgreSQL' => 'pdo_pgsql',
|
||||
'SQLite' => 'pdo_sqlite',
|
||||
'SQLite (v2)' => 'pdo_sqlite2',
|
||||
'SQL Server (SQLSRV)' => 'pdo_sqlsrv',
|
||||
'SQL Server (DBLIB)' => 'pdo_dblib',
|
||||
'Oracle' => 'oci8',
|
||||
);
|
||||
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->step = intval($_REQUEST['_step']);
|
||||
$this->is_post = $_SERVER['REQUEST_METHOD'] == 'POST';
|
||||
}
|
||||
|
||||
/**
|
||||
* Singleton getter
|
||||
*/
|
||||
public static function get_instance()
|
||||
{
|
||||
static $inst;
|
||||
|
||||
if (!$inst) {
|
||||
$inst = new rcmail_install();
|
||||
}
|
||||
|
||||
return $inst;
|
||||
}
|
||||
|
||||
/**
|
||||
* Read the local config files and store properties
|
||||
*/
|
||||
public function load_config()
|
||||
{
|
||||
// defaults
|
||||
if ($config = $this->load_config_file(RCUBE_CONFIG_DIR . 'defaults.inc.php')) {
|
||||
$this->config = (array) $config;
|
||||
$this->defaults = $this->config;
|
||||
}
|
||||
|
||||
$config = null;
|
||||
|
||||
// config
|
||||
if ($config = $this->load_config_file(RCUBE_CONFIG_DIR . 'config.inc.php')) {
|
||||
$this->config = array_merge($this->config, $config);
|
||||
}
|
||||
else {
|
||||
if ($config = $this->load_config_file(RCUBE_CONFIG_DIR . 'main.inc.php')) {
|
||||
$this->config = array_merge($this->config, $config);
|
||||
$this->legacy_config = true;
|
||||
}
|
||||
|
||||
if ($config = $this->load_config_file(RCUBE_CONFIG_DIR . 'db.inc.php')) {
|
||||
$this->config = array_merge($this->config, $config);
|
||||
$this->legacy_config = true;
|
||||
}
|
||||
}
|
||||
|
||||
$this->configured = !empty($config);
|
||||
}
|
||||
|
||||
/**
|
||||
* Read the default config file and store properties
|
||||
*
|
||||
* @param string $file File name with path
|
||||
*/
|
||||
public function load_config_file($file)
|
||||
{
|
||||
if (!is_readable($file)) {
|
||||
return;
|
||||
}
|
||||
|
||||
include $file;
|
||||
|
||||
// read comments from config file
|
||||
if (function_exists('token_get_all')) {
|
||||
$tokens = token_get_all(file_get_contents($file));
|
||||
$in_config = false;
|
||||
$buffer = '';
|
||||
|
||||
for ($i = 0; $i < count($tokens); $i++) {
|
||||
$token = $tokens[$i];
|
||||
if ($token[0] == T_VARIABLE && ($token[1] == '$config' || $token[1] == '$rcmail_config')) {
|
||||
$in_config = true;
|
||||
if ($buffer && $tokens[$i+1] == '[' && $tokens[$i+2][0] == T_CONSTANT_ENCAPSED_STRING) {
|
||||
$propname = trim($tokens[$i+2][1], "'\"");
|
||||
$this->comments[$propname] = $buffer;
|
||||
$buffer = '';
|
||||
$i += 3;
|
||||
}
|
||||
}
|
||||
else if ($in_config && $token[0] == T_COMMENT) {
|
||||
$buffer .= strtr($token[1], array('\n' => "\n"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// deprecated name of config variable
|
||||
if (is_array($rcmail_config)) {
|
||||
return $rcmail_config;
|
||||
}
|
||||
|
||||
return $config;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for a certain config property
|
||||
*
|
||||
* @param string $name Property name
|
||||
* @param string $default Default value
|
||||
*
|
||||
* @return string The property value
|
||||
*/
|
||||
public function getprop($name, $default = '')
|
||||
{
|
||||
$value = $this->config[$name];
|
||||
|
||||
if ($name == 'des_key' && !$this->configured && !isset($_REQUEST["_$name"])) {
|
||||
$value = rcube_utils::random_bytes(24);
|
||||
}
|
||||
|
||||
return $value !== null && $value !== '' ? $value : $default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create configuration file that contains parameters
|
||||
* that differ from default values.
|
||||
*
|
||||
* @return string The complete config file content
|
||||
*/
|
||||
public function create_config()
|
||||
{
|
||||
$config = array();
|
||||
|
||||
foreach ($this->config as $prop => $default) {
|
||||
$is_default = !isset($_POST["_$prop"]);
|
||||
$value = !$is_default || $this->bool_config_props[$prop] ? $_POST["_$prop"] : $default;
|
||||
|
||||
// always disable installer
|
||||
if ($prop == 'enable_installer') {
|
||||
$value = false;
|
||||
}
|
||||
|
||||
// reset useragent to default (keeps version up-to-date)
|
||||
if ($prop == 'useragent' && stripos($value, 'Roundcube Webmail/') !== false) {
|
||||
$value = $this->defaults[$prop];
|
||||
}
|
||||
|
||||
// generate new encryption key, never use the default value
|
||||
if ($prop == 'des_key' && $value == $this->defaults[$prop]) {
|
||||
$value = rcube_utils::random_bytes(24);
|
||||
}
|
||||
|
||||
// convert some form data
|
||||
if ($prop == 'debug_level' && !$is_default) {
|
||||
if (is_array($value)) {
|
||||
$val = 0;
|
||||
foreach ($value as $dbgval) {
|
||||
$val += intval($dbgval);
|
||||
}
|
||||
$value = $val;
|
||||
}
|
||||
}
|
||||
else if ($prop == 'db_dsnw' && !empty($_POST['_dbtype'])) {
|
||||
if ($_POST['_dbtype'] == 'sqlite') {
|
||||
$value = sprintf('%s://%s?mode=0646', $_POST['_dbtype'],
|
||||
$_POST['_dbname']{0} == '/' ? '/' . $_POST['_dbname'] : $_POST['_dbname']);
|
||||
}
|
||||
else if ($_POST['_dbtype']) {
|
||||
$value = sprintf('%s://%s:%s@%s/%s', $_POST['_dbtype'],
|
||||
rawurlencode($_POST['_dbuser']), rawurlencode($_POST['_dbpass']), $_POST['_dbhost'], $_POST['_dbname']);
|
||||
}
|
||||
}
|
||||
else if ($prop == 'smtp_auth_type' && $value == '0') {
|
||||
$value = '';
|
||||
}
|
||||
else if ($prop == 'default_host' && is_array($value)) {
|
||||
$value = self::_clean_array($value);
|
||||
if (count($value) <= 1) {
|
||||
$value = $value[0];
|
||||
}
|
||||
}
|
||||
else if ($prop == 'mail_pagesize' || $prop == 'addressbook_pagesize') {
|
||||
$value = max(2, intval($value));
|
||||
}
|
||||
else if ($prop == 'smtp_user' && !empty($_POST['_smtp_user_u'])) {
|
||||
$value = '%u';
|
||||
}
|
||||
else if ($prop == 'smtp_pass' && !empty($_POST['_smtp_user_u'])) {
|
||||
$value = '%p';
|
||||
}
|
||||
else if (is_bool($default)) {
|
||||
$value = (bool) $value;
|
||||
}
|
||||
else if (is_numeric($value)) {
|
||||
$value = intval($value);
|
||||
}
|
||||
else if ($prop == 'plugins' && !empty($_POST['submit'])) {
|
||||
$value = array();
|
||||
foreach (array_keys($_POST) as $key) {
|
||||
if (preg_match('/^_plugins_*/', $key)) {
|
||||
array_push($value, $_POST[$key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// skip this property
|
||||
if ($value == $this->defaults[$prop]
|
||||
&& (!in_array($prop, $this->local_config)
|
||||
|| in_array($prop, array_merge($this->obsolete_config, array_keys($this->replaced_config)))
|
||||
|| preg_match('/^db_(table|sequence)_/', $prop)
|
||||
)
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// save change
|
||||
$this->config[$prop] = $value;
|
||||
$config[$prop] = $value;
|
||||
}
|
||||
|
||||
$out = "<?php\n\n";
|
||||
$out .= "/* Local configuration for Roundcube Webmail */\n\n";
|
||||
|
||||
foreach ($config as $prop => $value) {
|
||||
// copy option descriptions from existing config or defaults.inc.php
|
||||
$out .= $this->comments[$prop];
|
||||
$out .= "\$config['$prop'] = " . self::_dump_var($value, $prop) . ";\n\n";
|
||||
}
|
||||
|
||||
return $out;
|
||||
}
|
||||
|
||||
/**
|
||||
* save generated config file in RCUBE_CONFIG_DIR
|
||||
*
|
||||
* @return boolean True if the file was saved successfully, false if not
|
||||
*/
|
||||
public function save_configfile($config)
|
||||
{
|
||||
if (is_writable(RCUBE_CONFIG_DIR)) {
|
||||
return file_put_contents(RCUBE_CONFIG_DIR . 'config.inc.php', $config);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check the current configuration for missing properties
|
||||
* and deprecated or obsolete settings
|
||||
*
|
||||
* @return array List with problems detected
|
||||
*/
|
||||
public function check_config()
|
||||
{
|
||||
$this->load_config();
|
||||
|
||||
if (!$this->configured) {
|
||||
return;
|
||||
}
|
||||
|
||||
$out = $seen = array();
|
||||
|
||||
// iterate over the current configuration
|
||||
foreach (array_keys($this->config) as $prop) {
|
||||
if ($replacement = $this->replaced_config[$prop]) {
|
||||
$out['replaced'][] = array('prop' => $prop, 'replacement' => $replacement);
|
||||
$seen[$replacement] = true;
|
||||
}
|
||||
else if (!$seen[$prop] && in_array($prop, $this->obsolete_config)) {
|
||||
$out['obsolete'][] = array('prop' => $prop);
|
||||
$seen[$prop] = true;
|
||||
}
|
||||
}
|
||||
|
||||
// the old default mime_magic reference is obsolete
|
||||
if ($this->config['mime_magic'] == '/usr/share/misc/magic') {
|
||||
$out['obsolete'][] = array(
|
||||
'prop' => 'mime_magic',
|
||||
'explain' => "Set value to null in order to use system default"
|
||||
);
|
||||
}
|
||||
|
||||
// check config dependencies and contradictions
|
||||
if ($this->config['enable_spellcheck'] && $this->config['spellcheck_engine'] == 'pspell') {
|
||||
if (!extension_loaded('pspell')) {
|
||||
$out['dependencies'][] = array(
|
||||
'prop' => 'spellcheck_engine',
|
||||
'explain' => "This requires the <tt>pspell</tt> extension which could not be loaded."
|
||||
);
|
||||
}
|
||||
else if (!empty($this->config['spellcheck_languages'])) {
|
||||
foreach ($this->config['spellcheck_languages'] as $lang => $descr) {
|
||||
if (!@pspell_new($lang)) {
|
||||
$out['dependencies'][] = array(
|
||||
'prop' => 'spellcheck_languages',
|
||||
'explain' => "You are missing pspell support for language $lang ($descr)"
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->config['log_driver'] == 'syslog') {
|
||||
if (!function_exists('openlog')) {
|
||||
$out['dependencies'][] = array(
|
||||
'prop' => 'log_driver',
|
||||
'explain' => "This requires the <tt>syslog</tt> extension which could not be loaded."
|
||||
);
|
||||
}
|
||||
|
||||
if (empty($this->config['syslog_id'])) {
|
||||
$out['dependencies'][] = array(
|
||||
'prop' => 'syslog_id',
|
||||
'explain' => "Using <tt>syslog</tt> for logging requires a syslog ID to be configured"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// check ldap_public sources having global_search enabled
|
||||
if (is_array($this->config['ldap_public']) && !is_array($this->config['autocomplete_addressbooks'])) {
|
||||
foreach ($this->config['ldap_public'] as $ldap_public) {
|
||||
if ($ldap_public['global_search']) {
|
||||
$out['replaced'][] = array(
|
||||
'prop' => 'ldap_public::global_search',
|
||||
'replacement' => 'autocomplete_addressbooks'
|
||||
);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $out;
|
||||
}
|
||||
|
||||
/**
|
||||
* Merge the current configuration with the defaults
|
||||
* and copy replaced values to the new options.
|
||||
*/
|
||||
public function merge_config()
|
||||
{
|
||||
$current = $this->config;
|
||||
$this->config = array();
|
||||
|
||||
foreach ($this->replaced_config as $prop => $replacement) {
|
||||
if (isset($current[$prop])) {
|
||||
if ($prop == 'skin_path') {
|
||||
$this->config[$replacement] = preg_replace('#skins/(\w+)/?$#', '\\1', $current[$prop]);
|
||||
}
|
||||
else if ($prop == 'multiple_identities') {
|
||||
$this->config[$replacement] = $current[$prop] ? 2 : 0;
|
||||
}
|
||||
else {
|
||||
$this->config[$replacement] = $current[$prop];
|
||||
}
|
||||
}
|
||||
|
||||
unset($current[$prop]);
|
||||
}
|
||||
|
||||
foreach ($this->obsolete_config as $prop) {
|
||||
unset($current[$prop]);
|
||||
}
|
||||
|
||||
// add all ldap_public sources having global_search enabled to autocomplete_addressbooks
|
||||
if (is_array($current['ldap_public'])) {
|
||||
foreach ($current['ldap_public'] as $key => $ldap_public) {
|
||||
if ($ldap_public['global_search']) {
|
||||
$this->config['autocomplete_addressbooks'][] = $key;
|
||||
unset($current['ldap_public'][$key]['global_search']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$this->config = array_merge($this->config, $current);
|
||||
|
||||
foreach (array_keys((array) $current['ldap_public']) as $key) {
|
||||
$this->config['ldap_public'][$key] = $current['ldap_public'][$key];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Compare the local database schema with the reference schema
|
||||
* required for this version of Roundcube
|
||||
*
|
||||
* @param rcube_db $db Database object
|
||||
*
|
||||
* @return boolean True if the schema is up-to-date, false if not or an error occurred
|
||||
*/
|
||||
public function db_schema_check($db)
|
||||
{
|
||||
if (!$this->configured) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// read reference schema from mysql.initial.sql
|
||||
$db_schema = $this->db_read_schema(INSTALL_PATH . 'SQL/mysql.initial.sql');
|
||||
$errors = array();
|
||||
|
||||
// check list of tables
|
||||
$existing_tables = $db->list_tables();
|
||||
|
||||
foreach ($db_schema as $table => $cols) {
|
||||
$table = $this->config['db_prefix'] . $table;
|
||||
|
||||
if (!in_array($table, $existing_tables)) {
|
||||
$errors[] = "Missing table '".$table."'";
|
||||
}
|
||||
else { // compare cols
|
||||
$db_cols = $db->list_cols($table);
|
||||
$diff = array_diff(array_keys($cols), $db_cols);
|
||||
|
||||
if (!empty($diff)) {
|
||||
$errors[] = "Missing columns in table '$table': " . join(',', $diff);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return !empty($errors) ? $errors : false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Utility function to read database schema from an .sql file
|
||||
*/
|
||||
private function db_read_schema($schemafile)
|
||||
{
|
||||
$lines = file($schemafile);
|
||||
$table_block = false;
|
||||
$schema = array();
|
||||
$keywords = array('PRIMARY','KEY','INDEX','UNIQUE','CONSTRAINT','REFERENCES','FOREIGN');
|
||||
|
||||
foreach ($lines as $line) {
|
||||
if (preg_match('/^\s*create table `?([a-z0-9_]+)`?/i', $line, $m)) {
|
||||
$table_block = $m[1];
|
||||
}
|
||||
else if ($table_block && preg_match('/^\s*`?([a-z0-9_-]+)`?\s+([a-z]+)/', $line, $m)) {
|
||||
$col = $m[1];
|
||||
if (!in_array(strtoupper($col), $keywords)) {
|
||||
$schema[$table_block][$col] = $m[2];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $schema;
|
||||
}
|
||||
|
||||
/**
|
||||
* Try to detect some file's mimetypes to test the correct behavior of fileinfo
|
||||
*/
|
||||
public function check_mime_detection()
|
||||
{
|
||||
$errors = array();
|
||||
$files = array(
|
||||
'skins/larry/images/roundcube_logo.png' => 'image/png',
|
||||
'program/resources/blank.tiff' => 'image/tiff',
|
||||
'program/resources/blocked.gif' => 'image/gif',
|
||||
'skins/larry/README' => 'text/plain',
|
||||
);
|
||||
|
||||
foreach ($files as $path => $expected) {
|
||||
$mimetype = rcube_mime::file_content_type(INSTALL_PATH . $path, basename($path));
|
||||
if ($mimetype != $expected) {
|
||||
$errors[] = array($path, $mimetype, $expected);
|
||||
}
|
||||
}
|
||||
|
||||
return $errors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check the correct configuration of the 'mime_types' mapping option
|
||||
*/
|
||||
public function check_mime_extensions()
|
||||
{
|
||||
$errors = array();
|
||||
$types = array(
|
||||
'application/zip' => 'zip',
|
||||
'text/css' => 'css',
|
||||
'application/pdf' => 'pdf',
|
||||
'image/gif' => 'gif',
|
||||
'image/svg+xml' => 'svg',
|
||||
);
|
||||
|
||||
foreach ($types as $mimetype => $expected) {
|
||||
$ext = rcube_mime::get_mime_extensions($mimetype);
|
||||
if (!in_array($expected, (array) $ext)) {
|
||||
$errors[] = array($mimetype, $ext, $expected);
|
||||
}
|
||||
}
|
||||
|
||||
return $errors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for the last error message
|
||||
*
|
||||
* @return string Error message or null if none exists
|
||||
*/
|
||||
public function get_error()
|
||||
{
|
||||
return $this->last_error['message'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a list with all imap hosts configured
|
||||
*
|
||||
* @return array Clean list with imap hosts
|
||||
*/
|
||||
public function get_hostlist()
|
||||
{
|
||||
$default_hosts = (array) $this->getprop('default_host');
|
||||
$out = array();
|
||||
|
||||
foreach ($default_hosts as $key => $name) {
|
||||
if (!empty($name)) {
|
||||
$out[] = rcube_utils::parse_host(is_numeric($key) ? $name : $key);
|
||||
}
|
||||
}
|
||||
|
||||
return $out;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a HTML dropdown to select a previous version of Roundcube
|
||||
*/
|
||||
public function versions_select($attrib = array())
|
||||
{
|
||||
$select = new html_select($attrib);
|
||||
$select->add(array(
|
||||
'0.1-stable', '0.1.1',
|
||||
'0.2-alpha', '0.2-beta', '0.2-stable',
|
||||
'0.3-stable', '0.3.1',
|
||||
'0.4-beta', '0.4.2',
|
||||
'0.5-beta', '0.5', '0.5.1', '0.5.2', '0.5.3', '0.5.4',
|
||||
'0.6-beta', '0.6',
|
||||
'0.7-beta', '0.7', '0.7.1', '0.7.2', '0.7.3', '0.7.4',
|
||||
'0.8-beta', '0.8-rc', '0.8.0', '0.8.1', '0.8.2', '0.8.3', '0.8.4', '0.8.5', '0.8.6',
|
||||
'0.9-beta', '0.9-rc', '0.9-rc2',
|
||||
// Note: Do not add newer versions here
|
||||
));
|
||||
|
||||
return $select;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a list with available subfolders of the skin directory
|
||||
*/
|
||||
public function list_skins()
|
||||
{
|
||||
$skins = array();
|
||||
$skindir = INSTALL_PATH . 'skins/';
|
||||
|
||||
foreach (glob($skindir . '*') as $path) {
|
||||
if (is_dir($path) && is_readable($path)) {
|
||||
$skins[] = substr($path, strlen($skindir));
|
||||
}
|
||||
}
|
||||
|
||||
return $skins;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a list with available subfolders of the plugins directory
|
||||
* (with their associated description in composer.json)
|
||||
*/
|
||||
public function list_plugins()
|
||||
{
|
||||
$plugins = array();
|
||||
$plugin_dir = INSTALL_PATH . 'plugins/';
|
||||
|
||||
foreach (glob($plugin_dir . '*') as $path) {
|
||||
if (!is_dir($path)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (is_readable($path . '/composer.json')) {
|
||||
$file_json = json_decode(file_get_contents($path . '/composer.json'));
|
||||
$plugin_desc = $file_json->description ?: 'N/A';
|
||||
}
|
||||
else {
|
||||
$plugin_desc = 'N/A';
|
||||
}
|
||||
|
||||
$name = substr($path, strlen($plugin_dir));
|
||||
$plugins[] = array(
|
||||
'name' => $name,
|
||||
'desc' => $plugin_desc,
|
||||
'enabled' => in_array($name, (array) $this->config['plugins'])
|
||||
);
|
||||
}
|
||||
|
||||
return $plugins;
|
||||
}
|
||||
|
||||
/**
|
||||
* Display OK status
|
||||
*
|
||||
* @param string $name Test name
|
||||
* @param string $message Confirm message
|
||||
*/
|
||||
public function pass($name, $message = '')
|
||||
{
|
||||
echo rcube::Q($name) . ': <span class="success">OK</span>';
|
||||
$this->_showhint($message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Display an error status and increase failure count
|
||||
*
|
||||
* @param string $name Test name
|
||||
* @param string $message Error message
|
||||
* @param string $url URL for details
|
||||
* @param bool $optional Do not count this failure
|
||||
*/
|
||||
public function fail($name, $message = '', $url = '', $optional=false)
|
||||
{
|
||||
if (!$optional) {
|
||||
$this->failures++;
|
||||
}
|
||||
|
||||
echo rcube::Q($name) . ': <span class="fail">NOT OK</span>';
|
||||
$this->_showhint($message, $url);
|
||||
}
|
||||
|
||||
/**
|
||||
* Display an error status for optional settings/features
|
||||
*
|
||||
* @param string $name Test name
|
||||
* @param string $message Error message
|
||||
* @param string $url URL for details
|
||||
*/
|
||||
public function optfail($name, $message = '', $url = '')
|
||||
{
|
||||
echo rcube::Q($name) . ': <span class="na">NOT OK</span>';
|
||||
$this->_showhint($message, $url);
|
||||
}
|
||||
|
||||
/**
|
||||
* Display warning status
|
||||
*
|
||||
* @param string $name Test name
|
||||
* @param string $message Warning message
|
||||
* @param string $url URL for details
|
||||
*/
|
||||
public function na($name, $message = '', $url = '')
|
||||
{
|
||||
echo rcube::Q($name) . ': <span class="na">NOT AVAILABLE</span>';
|
||||
$this->_showhint($message, $url);
|
||||
}
|
||||
|
||||
private function _showhint($message, $url = '')
|
||||
{
|
||||
$hint = rcube::Q($message);
|
||||
|
||||
if ($url) {
|
||||
$hint .= ($hint ? '; ' : '') . 'See <a href="' . rcube::Q($url) . '" target="_blank">' . rcube::Q($url) . '</a>';
|
||||
}
|
||||
|
||||
if ($hint) {
|
||||
echo '<span class="indent">(' . $hint . ')</span>';
|
||||
}
|
||||
}
|
||||
|
||||
private static function _clean_array($arr)
|
||||
{
|
||||
$out = array();
|
||||
|
||||
foreach (array_unique($arr) as $k => $val) {
|
||||
if (!empty($val)) {
|
||||
if (is_numeric($k)) {
|
||||
$out[] = $val;
|
||||
}
|
||||
else {
|
||||
$out[$k] = $val;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $out;
|
||||
}
|
||||
|
||||
private static function _dump_var($var, $name=null)
|
||||
{
|
||||
// special values
|
||||
switch ($name) {
|
||||
case 'syslog_facility':
|
||||
$list = array(32 => 'LOG_AUTH', 80 => 'LOG_AUTHPRIV', 72 => ' LOG_CRON',
|
||||
24 => 'LOG_DAEMON', 0 => 'LOG_KERN', 128 => 'LOG_LOCAL0',
|
||||
136 => 'LOG_LOCAL1', 144 => 'LOG_LOCAL2', 152 => 'LOG_LOCAL3',
|
||||
160 => 'LOG_LOCAL4', 168 => 'LOG_LOCAL5', 176 => 'LOG_LOCAL6',
|
||||
184 => 'LOG_LOCAL7', 48 => 'LOG_LPR', 16 => 'LOG_MAIL',
|
||||
56 => 'LOG_NEWS', 40 => 'LOG_SYSLOG', 8 => 'LOG_USER', 64 => 'LOG_UUCP'
|
||||
);
|
||||
|
||||
if ($val = $list[$var]) {
|
||||
return $val;
|
||||
}
|
||||
break;
|
||||
/*
|
||||
// RCMAIL_VERSION is undefined here
|
||||
case 'useragent':
|
||||
if (preg_match('|^(.*)/('.preg_quote(RCMAIL_VERSION, '|').')$|i', $var, $m)) {
|
||||
return '"' . addcslashes($var, '"') . '/" . RCMAIL_VERSION';
|
||||
}
|
||||
break;
|
||||
*/
|
||||
}
|
||||
|
||||
if (is_array($var)) {
|
||||
if (empty($var)) {
|
||||
return 'array()';
|
||||
}
|
||||
else { // check if all keys are numeric
|
||||
$isnum = true;
|
||||
foreach (array_keys($var) as $key) {
|
||||
if (!is_numeric($key)) {
|
||||
$isnum = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ($isnum) {
|
||||
return 'array(' . join(', ', array_map(array('rcmail_install', '_dump_var'), $var)) . ')';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return var_export($var, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize the database with the according schema
|
||||
*
|
||||
* @param rcube_db $db Database connection
|
||||
*
|
||||
* @return boolen True on success, False on error
|
||||
*/
|
||||
public function init_db($db)
|
||||
{
|
||||
$engine = $db->db_provider;
|
||||
|
||||
// read schema file from /SQL/*
|
||||
$fname = INSTALL_PATH . "SQL/$engine.initial.sql";
|
||||
if ($sql = @file_get_contents($fname)) {
|
||||
$db->set_option('table_prefix', $this->config['db_prefix']);
|
||||
$db->exec_script($sql);
|
||||
}
|
||||
else {
|
||||
$this->fail('DB Schema', "Cannot read the schema file: $fname");
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($err = $this->get_error()) {
|
||||
$this->fail('DB Schema', "Error creating database schema: $err");
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Update database schema
|
||||
*
|
||||
* @param string $version Version to update from
|
||||
*
|
||||
* @return boolen True on success, False on error
|
||||
*/
|
||||
public function update_db($version)
|
||||
{
|
||||
return rcmail_utils::db_update(INSTALL_PATH . 'SQL',
|
||||
'roundcube', $version, array('quiet' => true));
|
||||
}
|
||||
|
||||
/**
|
||||
* Handler for Roundcube errors
|
||||
*/
|
||||
public function raise_error($p)
|
||||
{
|
||||
$this->last_error = $p;
|
||||
}
|
||||
}
|
||||
118
data/web/rc/program/include/rcmail_output.php
Normal file
118
data/web/rc/program/include/rcmail_output.php
Normal file
@@ -0,0 +1,118 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/include/rcmail_output.php |
|
||||
| |
|
||||
| This file is part of the Roundcube PHP suite |
|
||||
| Copyright (C) 2005-2012 The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| CONTENTS: |
|
||||
| Abstract class for output generation |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
| Author: Aleksander Machniak <alec@alec.pl> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
* Class for output generation
|
||||
*
|
||||
* @package Webmail
|
||||
* @subpackage View
|
||||
*/
|
||||
abstract class rcmail_output extends rcube_output
|
||||
{
|
||||
const JS_OBJECT_NAME = 'rcmail';
|
||||
const BLANK_GIF = 'R0lGODlhDwAPAIAAAMDAwAAAACH5BAEAAAAALAAAAAAPAA8AQAINhI+py+0Po5y02otnAQA7';
|
||||
|
||||
public $type = 'html';
|
||||
public $ajax_call = false;
|
||||
public $framed = false;
|
||||
|
||||
protected $pagetitle = '';
|
||||
protected $object_handlers = array();
|
||||
protected $devel_mode = false;
|
||||
|
||||
|
||||
/**
|
||||
* Object constructor
|
||||
*/
|
||||
public function __construct($task = null, $framed = false)
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
$this->devel_mode = (bool) $this->config->get('devel_mode');
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for page title
|
||||
*
|
||||
* @param string $title Page title
|
||||
*/
|
||||
public function set_pagetitle($title)
|
||||
{
|
||||
$this->pagetitle = $title;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for the current skin path property
|
||||
*/
|
||||
public function get_skin_path()
|
||||
{
|
||||
return $this->config->get('skin_path');
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all stored env variables and commands
|
||||
*/
|
||||
public function reset()
|
||||
{
|
||||
parent::reset();
|
||||
|
||||
$this->object_handlers = array();
|
||||
$this->pagetitle = '';
|
||||
}
|
||||
|
||||
/**
|
||||
* Call a client method
|
||||
*
|
||||
* @param string Method to call
|
||||
* @param ... Additional arguments
|
||||
*/
|
||||
abstract function command();
|
||||
|
||||
/**
|
||||
* Add a localized label to the client environment
|
||||
*/
|
||||
abstract function add_label();
|
||||
|
||||
/**
|
||||
* Register a template object handler
|
||||
*
|
||||
* @param string $name Object name
|
||||
* @param string $func Function name to call
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function add_handler($name, $func)
|
||||
{
|
||||
$this->object_handlers[$name] = $func;
|
||||
}
|
||||
|
||||
/**
|
||||
* Register a list of template object handlers
|
||||
*
|
||||
* @param array $handlers Hash array with object=>handler pairs
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function add_handlers($handlers)
|
||||
{
|
||||
$this->object_handlers = array_merge($this->object_handlers, $handlers);
|
||||
}
|
||||
}
|
||||
88
data/web/rc/program/include/rcmail_output_cli.php
Normal file
88
data/web/rc/program/include/rcmail_output_cli.php
Normal file
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/include/rcmail_output_cli.php |
|
||||
| |
|
||||
| This file is part of the Roundcube PHP suite |
|
||||
| Copyright (C) 2005-2014 The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| CONTENTS: |
|
||||
| Abstract class for output generation |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
* Class for output generation
|
||||
*
|
||||
* @package Webmail
|
||||
* @subpackage View
|
||||
*/
|
||||
class rcmail_output_cli extends rcmail_output
|
||||
{
|
||||
public $type = 'cli';
|
||||
|
||||
/**
|
||||
* Object constructor
|
||||
*/
|
||||
public function __construct($task = null, $framed = false)
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Call a client method
|
||||
*
|
||||
* @see rcube_output::command()
|
||||
*/
|
||||
function command()
|
||||
{
|
||||
// NOP
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a localized label to the client environment
|
||||
*/
|
||||
function add_label()
|
||||
{
|
||||
// NOP
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke display_message command
|
||||
*
|
||||
* @see rcube_output::show_message()
|
||||
*/
|
||||
function show_message($message, $type = 'notice', $vars = null, $override = true, $timeout = 0)
|
||||
{
|
||||
if ($this->app->text_exists($message)) {
|
||||
$message = $this->app->gettext(array('name' => $message, 'vars' => $vars));
|
||||
}
|
||||
|
||||
printf("[%s] %s\n", strtoupper($type), $message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Redirect to a certain url.
|
||||
*
|
||||
* @see rcube_output::redirect()
|
||||
*/
|
||||
function redirect($p = array(), $delay = 1)
|
||||
{
|
||||
// NOP
|
||||
}
|
||||
|
||||
/**
|
||||
* Send output to the client.
|
||||
*/
|
||||
function send()
|
||||
{
|
||||
// NOP
|
||||
}
|
||||
}
|
||||
2119
data/web/rc/program/include/rcmail_output_html.php
Normal file
2119
data/web/rc/program/include/rcmail_output_html.php
Normal file
File diff suppressed because it is too large
Load Diff
260
data/web/rc/program/include/rcmail_output_json.php
Normal file
260
data/web/rc/program/include/rcmail_output_json.php
Normal file
@@ -0,0 +1,260 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/include/rcmail_output_json.php |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2008-2012, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Class to handle JSON (AJAX) output |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
| Author: Aleksander Machniak <alec@alec.pl> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
* View class to produce JSON responses
|
||||
*
|
||||
* @package Webmail
|
||||
* @subpackage View
|
||||
*/
|
||||
class rcmail_output_json extends rcmail_output
|
||||
{
|
||||
protected $texts = array();
|
||||
protected $commands = array();
|
||||
protected $callbacks = array();
|
||||
protected $message = null;
|
||||
|
||||
public $type = 'js';
|
||||
public $ajax_call = true;
|
||||
|
||||
|
||||
/**
|
||||
* Issue command to set page title
|
||||
*
|
||||
* @param string $title New page title
|
||||
*/
|
||||
public function set_pagetitle($title)
|
||||
{
|
||||
if ($this->config->get('devel_mode') && !empty($_SESSION['username'])) {
|
||||
$name = $_SESSION['username'];
|
||||
}
|
||||
else {
|
||||
$name = $this->config->get('product_name');
|
||||
}
|
||||
|
||||
$this->command('set_pagetitle', empty($name) ? $title : $name . ' :: ' . $title);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register a template object handler
|
||||
*
|
||||
* @param string $obj Object name
|
||||
* @param string $func Function name to call
|
||||
*/
|
||||
public function add_handler($obj, $func)
|
||||
{
|
||||
// ignore
|
||||
}
|
||||
|
||||
/**
|
||||
* Register a list of template object handlers
|
||||
*
|
||||
* @param array $arr Hash array with object=>handler pairs
|
||||
*/
|
||||
public function add_handlers($arr)
|
||||
{
|
||||
// ignore
|
||||
}
|
||||
|
||||
/**
|
||||
* Call a client method
|
||||
*
|
||||
* @param string Method to call
|
||||
* @param ... Additional arguments
|
||||
*/
|
||||
public function command()
|
||||
{
|
||||
$cmd = func_get_args();
|
||||
|
||||
if (strpos($cmd[0], 'plugin.') === 0) {
|
||||
$this->callbacks[] = $cmd;
|
||||
}
|
||||
else {
|
||||
$this->commands[] = $cmd;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a localized label to the client environment
|
||||
*/
|
||||
public function add_label()
|
||||
{
|
||||
$args = func_get_args();
|
||||
if (count($args) == 1 && is_array($args[0])) {
|
||||
$args = $args[0];
|
||||
}
|
||||
|
||||
foreach ($args as $name) {
|
||||
$this->texts[$name] = $this->app->gettext($name);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke display_message command
|
||||
*
|
||||
* @param string $message Message to display
|
||||
* @param string $type Message type [notice|confirm|error]
|
||||
* @param array $vars Key-value pairs to be replaced in localized text
|
||||
* @param boolean $override Override last set message
|
||||
* @param int $timeout Message displaying time in seconds
|
||||
*
|
||||
* @uses self::command()
|
||||
*/
|
||||
public function show_message($message, $type='notice', $vars=null, $override=true, $timeout=0)
|
||||
{
|
||||
if ($override || !$this->message) {
|
||||
if ($this->app->text_exists($message)) {
|
||||
if (!empty($vars)) {
|
||||
$vars = array_map(array('rcmail', 'Q'), $vars);
|
||||
}
|
||||
$msgtext = $this->app->gettext(array('name' => $message, 'vars' => $vars));
|
||||
}
|
||||
else
|
||||
$msgtext = $message;
|
||||
|
||||
$this->message = $message;
|
||||
$this->command('display_message', $msgtext, $type, $timeout * 1000);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all stored env variables and commands
|
||||
*/
|
||||
public function reset()
|
||||
{
|
||||
parent::reset();
|
||||
$this->texts = array();
|
||||
$this->commands = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Redirect to a certain url
|
||||
*
|
||||
* @param mixed $p Either a string with the action or url parameters as key-value pairs
|
||||
* @param int $delay Delay in seconds
|
||||
*
|
||||
* @see rcmail::url()
|
||||
*/
|
||||
public function redirect($p = array(), $delay = 1)
|
||||
{
|
||||
$location = $this->app->url($p);
|
||||
$this->remote_response(sprintf("window.setTimeout(function(){ %s.redirect('%s',true); }, %d);",
|
||||
self::JS_OBJECT_NAME, $location, $delay));
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Send an AJAX response to the client.
|
||||
*/
|
||||
public function send()
|
||||
{
|
||||
$this->remote_response();
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Show error page and terminate script execution
|
||||
*
|
||||
* @param int $code Error code
|
||||
* @param string $message Error message
|
||||
*/
|
||||
public function raise_error($code, $message)
|
||||
{
|
||||
if ($code == 403) {
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
die("Invalid Request");
|
||||
}
|
||||
|
||||
$this->show_message("Application Error ($code): $message", 'error');
|
||||
$this->remote_response();
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Send an AJAX response with executable JS code
|
||||
*
|
||||
* @param string $add Additional JS code
|
||||
*/
|
||||
protected function remote_response($add = '')
|
||||
{
|
||||
static $s_header_sent = false;
|
||||
|
||||
if (!$s_header_sent) {
|
||||
$s_header_sent = true;
|
||||
$this->nocacheing_headers();
|
||||
header('Content-Type: text/plain; charset=' . $this->get_charset());
|
||||
}
|
||||
|
||||
// unset default env vars
|
||||
unset($this->env['task'], $this->env['action'], $this->env['comm_path']);
|
||||
|
||||
$rcmail = rcmail::get_instance();
|
||||
$response['action'] = $rcmail->action;
|
||||
|
||||
if ($unlock = rcube_utils::get_input_value('_unlock', rcube_utils::INPUT_GPC)) {
|
||||
$response['unlock'] = $unlock;
|
||||
}
|
||||
|
||||
if (!empty($this->env))
|
||||
$response['env'] = $this->env;
|
||||
|
||||
if (!empty($this->texts))
|
||||
$response['texts'] = $this->texts;
|
||||
|
||||
// send function calls
|
||||
$response['exec'] = $this->get_js_commands() . $add;
|
||||
|
||||
if (!empty($this->callbacks))
|
||||
$response['callbacks'] = $this->callbacks;
|
||||
|
||||
// trigger generic hook where plugins can put additional content to the response
|
||||
$hook = $this->app->plugins->exec_hook("render_response", array('response' => $response));
|
||||
|
||||
// save some memory
|
||||
$response = $hook['response'];
|
||||
unset($hook['response']);
|
||||
|
||||
echo self::json_serialize($response, $this->devel_mode);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return executable javascript code for all registered commands
|
||||
*/
|
||||
protected function get_js_commands()
|
||||
{
|
||||
$out = '';
|
||||
|
||||
foreach ($this->commands as $i => $args) {
|
||||
$method = array_shift($args);
|
||||
foreach ($args as $i => $arg) {
|
||||
$args[$i] = self::json_serialize($arg, $this->devel_mode);
|
||||
}
|
||||
|
||||
$out .= sprintf(
|
||||
"this.%s(%s);\n",
|
||||
preg_replace('/^parent\./', '', $method),
|
||||
implode(',', $args)
|
||||
);
|
||||
}
|
||||
|
||||
return $out;
|
||||
}
|
||||
}
|
||||
64
data/web/rc/program/include/rcmail_string_replacer.php
Normal file
64
data/web/rc/program/include/rcmail_string_replacer.php
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/include/rcmail_string_replacer.php |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2012-2013, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Turn URLs and email addresses into clickable links |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
* Helper class for turning URLs and email addresses in plaintext content
|
||||
* into clickable links.
|
||||
*
|
||||
* @package Webmail
|
||||
* @subpackage Utils
|
||||
*/
|
||||
class rcmail_string_replacer extends rcube_string_replacer
|
||||
{
|
||||
/**
|
||||
* Callback function used to build mailto: links around e-mail strings
|
||||
*
|
||||
* This also adds an onclick-handler to open the Rouncube compose message screen on such links
|
||||
*
|
||||
* @param array $matches Matches result from preg_replace_callback
|
||||
*
|
||||
* @return int Index of saved string value
|
||||
* @see rcube_string_replacer::mailto_callback()
|
||||
*/
|
||||
public function mailto_callback($matches)
|
||||
{
|
||||
$href = $matches[1];
|
||||
$suffix = $this->parse_url_brackets($href);
|
||||
$email = $href;
|
||||
|
||||
if (strpos($email, '?')) {
|
||||
list($email,) = explode('?', $email);
|
||||
}
|
||||
|
||||
// skip invalid emails
|
||||
if (!rcube_utils::check_email($email, false)) {
|
||||
return $matches[1];
|
||||
}
|
||||
|
||||
$i = $this->add(html::a(array(
|
||||
'href' => 'mailto:' . $href,
|
||||
'onclick' => "return ".rcmail_output::JS_OBJECT_NAME.".command('compose','".rcube::JQ($href)."',this)",
|
||||
),
|
||||
rcube::Q($href)) . $suffix);
|
||||
|
||||
return $i >= 0 ? $this->get_replacement($i) : '';
|
||||
}
|
||||
}
|
||||
372
data/web/rc/program/include/rcmail_utils.php
Normal file
372
data/web/rc/program/include/rcmail_utils.php
Normal file
@@ -0,0 +1,372 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/include/rcmail_utils.php |
|
||||
| |
|
||||
| This file is part of the Roundcube PHP suite |
|
||||
| Copyright (C) 2005-2015 The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| CONTENTS: |
|
||||
| Roundcube utilities |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
| Author: Aleksander Machniak <alec@alec.pl> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
* Roundcube utilities
|
||||
*
|
||||
* @package Webmail
|
||||
* @subpackage Utils
|
||||
*/
|
||||
class rcmail_utils
|
||||
{
|
||||
public static $db;
|
||||
|
||||
/**
|
||||
* Initialize database object and connect
|
||||
*
|
||||
* @return rcube_db Database instance
|
||||
*/
|
||||
public static function db()
|
||||
{
|
||||
if (self::$db === null) {
|
||||
$rc = rcube::get_instance();
|
||||
$db = rcube_db::factory($rc->config->get('db_dsnw'));
|
||||
|
||||
$db->set_debug((bool)$rc->config->get('sql_debug'));
|
||||
|
||||
// Connect to database
|
||||
$db->db_connect('w');
|
||||
|
||||
if (!$db->is_connected()) {
|
||||
rcube::raise_error("Error connecting to database: " . $db->is_error(), false, true);
|
||||
}
|
||||
|
||||
self::$db = $db;
|
||||
}
|
||||
|
||||
return self::$db;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize database schema
|
||||
*
|
||||
* @param string $dir Directory with sql files
|
||||
*/
|
||||
public static function db_init($dir)
|
||||
{
|
||||
$db = self::db();
|
||||
|
||||
$file = $dir . '/' . $db->db_provider . '.initial.sql';
|
||||
if (!file_exists($file)) {
|
||||
rcube::raise_error("DDL file $file not found", false, true);
|
||||
}
|
||||
|
||||
echo "Creating database schema... ";
|
||||
|
||||
if ($sql = file_get_contents($file)) {
|
||||
if (!$db->exec_script($sql)) {
|
||||
$error = $db->is_error();
|
||||
}
|
||||
}
|
||||
else {
|
||||
$error = "Unable to read file $file or it is empty";
|
||||
}
|
||||
|
||||
if ($error) {
|
||||
echo "[FAILED]\n";
|
||||
rcube::raise_error($error, false, true);
|
||||
}
|
||||
else {
|
||||
echo "[OK]\n";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Update database schema
|
||||
*
|
||||
* @param string $dir Directory with sql files
|
||||
* @param string $package Component name
|
||||
* @param string $ver Optional current version number
|
||||
* @param array $opts Parameters (errors, quiet)
|
||||
*
|
||||
* @return True on success, False on failure
|
||||
*/
|
||||
public static function db_update($dir, $package, $ver = null, $opts = array())
|
||||
{
|
||||
// Check if directory exists
|
||||
if (!file_exists($dir)) {
|
||||
if ($opts['errors']) {
|
||||
rcube::raise_error("Specified database schema directory doesn't exist.", false, true);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
$db = self::db();
|
||||
|
||||
// Read DB schema version from database (if 'system' table exists)
|
||||
if (in_array($db->table_name('system'), (array)$db->list_tables())) {
|
||||
$db->query("SELECT `value`"
|
||||
. " FROM " . $db->table_name('system', true)
|
||||
. " WHERE `name` = ?",
|
||||
$package . '-version');
|
||||
|
||||
$row = $db->fetch_array();
|
||||
$version = preg_replace('/[^0-9]/', '', $row[0]);
|
||||
}
|
||||
|
||||
// DB version not found, but release version is specified
|
||||
if (!$version && $ver) {
|
||||
// Map old release version string to DB schema version
|
||||
// Note: This is for backward compat. only, do not need to be updated
|
||||
$map = array(
|
||||
'0.1-stable' => 1,
|
||||
'0.1.1' => 2008030300,
|
||||
'0.2-alpha' => 2008040500,
|
||||
'0.2-beta' => 2008060900,
|
||||
'0.2-stable' => 2008092100,
|
||||
'0.2.1' => 2008092100,
|
||||
'0.2.2' => 2008092100,
|
||||
'0.3-stable' => 2008092100,
|
||||
'0.3.1' => 2009090400,
|
||||
'0.4-beta' => 2009103100,
|
||||
'0.4' => 2010042300,
|
||||
'0.4.1' => 2010042300,
|
||||
'0.4.2' => 2010042300,
|
||||
'0.5-beta' => 2010100600,
|
||||
'0.5' => 2010100600,
|
||||
'0.5.1' => 2010100600,
|
||||
'0.5.2' => 2010100600,
|
||||
'0.5.3' => 2010100600,
|
||||
'0.5.4' => 2010100600,
|
||||
'0.6-beta' => 2011011200,
|
||||
'0.6' => 2011011200,
|
||||
'0.7-beta' => 2011092800,
|
||||
'0.7' => 2011111600,
|
||||
'0.7.1' => 2011111600,
|
||||
'0.7.2' => 2011111600,
|
||||
'0.7.3' => 2011111600,
|
||||
'0.7.4' => 2011111600,
|
||||
'0.8-beta' => 2011121400,
|
||||
'0.8-rc' => 2011121400,
|
||||
'0.8.0' => 2011121400,
|
||||
'0.8.1' => 2011121400,
|
||||
'0.8.2' => 2011121400,
|
||||
'0.8.3' => 2011121400,
|
||||
'0.8.4' => 2011121400,
|
||||
'0.8.5' => 2011121400,
|
||||
'0.8.6' => 2011121400,
|
||||
'0.9-beta' => 2012080700,
|
||||
);
|
||||
|
||||
$version = $map[$ver];
|
||||
}
|
||||
|
||||
// Assume last version before the 'system' table was added
|
||||
if (empty($version)) {
|
||||
$version = 2012080700;
|
||||
}
|
||||
|
||||
$dir .= '/' . $db->db_provider;
|
||||
if (!file_exists($dir)) {
|
||||
if ($opts['errors']) {
|
||||
rcube::raise_error("DDL Upgrade files for " . $db->db_provider . " driver not found.", false, true);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
$dh = opendir($dir);
|
||||
$result = array();
|
||||
|
||||
while ($file = readdir($dh)) {
|
||||
if (preg_match('/^([0-9]+)\.sql$/', $file, $m) && $m[1] > $version) {
|
||||
$result[] = $m[1];
|
||||
}
|
||||
}
|
||||
sort($result, SORT_NUMERIC);
|
||||
|
||||
foreach ($result as $v) {
|
||||
if (!$opts['quiet']) {
|
||||
echo "Updating database schema ($v)... ";
|
||||
}
|
||||
|
||||
$error = self::db_update_schema($package, $v, "$dir/$v.sql");
|
||||
|
||||
if ($error) {
|
||||
if (!$opts['quiet']) {
|
||||
echo "[FAILED]\n";
|
||||
}
|
||||
if ($opts['errors']) {
|
||||
rcube::raise_error("Error in DDL upgrade $v: $error", false, true);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
else if (!$opts['quiet']) {
|
||||
echo "[OK]\n";
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Run database update from a single sql file
|
||||
*/
|
||||
protected static function db_update_schema($package, $version, $file)
|
||||
{
|
||||
$db = self::db();
|
||||
|
||||
// read DDL file
|
||||
if ($sql = file_get_contents($file)) {
|
||||
if (!$db->exec_script($sql)) {
|
||||
return $db->is_error();
|
||||
}
|
||||
}
|
||||
|
||||
// escape if 'system' table does not exist
|
||||
if ($version < 2013011000) {
|
||||
return;
|
||||
}
|
||||
|
||||
$system_table = $db->table_name('system', true);
|
||||
|
||||
$db->query("UPDATE " . $system_table
|
||||
. " SET `value` = ?"
|
||||
. " WHERE `name` = ?",
|
||||
$version, $package . '-version');
|
||||
|
||||
if (!$db->is_error() && !$db->affected_rows()) {
|
||||
$db->query("INSERT INTO " . $system_table
|
||||
." (`name`, `value`) VALUES (?, ?)",
|
||||
$package . '-version', $version);
|
||||
}
|
||||
|
||||
return $db->is_error();
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes all deleted records older than X days
|
||||
*
|
||||
* @param int $days Number of days
|
||||
*/
|
||||
public static function db_clean($days)
|
||||
{
|
||||
// mapping for table name => primary key
|
||||
$primary_keys = array(
|
||||
'contacts' => 'contact_id',
|
||||
'contactgroups' => 'contactgroup_id',
|
||||
);
|
||||
|
||||
$db = self::db();
|
||||
|
||||
$threshold = date('Y-m-d 00:00:00', time() - $days * 86400);
|
||||
|
||||
foreach (array('contacts','contactgroups','identities') as $table) {
|
||||
$sqltable = $db->table_name($table, true);
|
||||
|
||||
// also delete linked records
|
||||
// could be skipped for databases which respect foreign key constraints
|
||||
if ($db->db_provider == 'sqlite' && ($table == 'contacts' || $table == 'contactgroups')) {
|
||||
$pk = $primary_keys[$table];
|
||||
$memberstable = $db->table_name('contactgroupmembers');
|
||||
|
||||
$db->query(
|
||||
"DELETE FROM " . $db->quote_identifier($memberstable)
|
||||
. " WHERE `$pk` IN ("
|
||||
. "SELECT `$pk` FROM $sqltable"
|
||||
. " WHERE `del` = 1 AND `changed` < ?"
|
||||
. ")",
|
||||
$threshold);
|
||||
|
||||
echo $db->affected_rows() . " records deleted from '$memberstable'\n";
|
||||
}
|
||||
|
||||
// delete outdated records
|
||||
$db->query("DELETE FROM $sqltable WHERE `del` = 1 AND `changed` < ?", $threshold);
|
||||
|
||||
echo $db->affected_rows() . " records deleted from '$table'\n";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Reindex contacts
|
||||
*/
|
||||
public static function indexcontacts()
|
||||
{
|
||||
$db = self::db();
|
||||
|
||||
// iterate over all users
|
||||
$sql_result = $db->query("SELECT `user_id` FROM " . $db->table_name('users', true) . " ORDER BY `user_id`");
|
||||
while ($sql_result && ($sql_arr = $db->fetch_assoc($sql_result))) {
|
||||
echo "Indexing contacts for user " . $sql_arr['user_id'] . "...\n";
|
||||
|
||||
$contacts = new rcube_contacts($db, $sql_arr['user_id']);
|
||||
$contacts->set_pagesize(9999);
|
||||
|
||||
$result = $contacts->list_records();
|
||||
while ($result->count && ($row = $result->next())) {
|
||||
unset($row['words']);
|
||||
$contacts->update($row['ID'], $row);
|
||||
}
|
||||
}
|
||||
|
||||
echo "done.\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* Modify user preferences
|
||||
*
|
||||
* @param string $name Option name
|
||||
* @param string $value Option value
|
||||
* @param int $userid Optional user identifier
|
||||
* @param string $type Optional value type (bool, int, string)
|
||||
*/
|
||||
public static function mod_pref($name, $value, $userid = null, $type = 'string')
|
||||
{
|
||||
$db = self::db();
|
||||
|
||||
if ($userid) {
|
||||
$query = '`user_id` = ' . intval($userid);
|
||||
}
|
||||
else {
|
||||
$query = '1=1';
|
||||
}
|
||||
|
||||
$type = strtolower($type);
|
||||
|
||||
if ($type == 'bool' || $type == 'boolean') {
|
||||
$value = rcube_utils::get_boolean($value);
|
||||
}
|
||||
else if ($type == 'int' || $type == 'integer') {
|
||||
$value = (int) $value;
|
||||
}
|
||||
|
||||
// iterate over all users
|
||||
$sql_result = $db->query("SELECT * FROM " . $db->table_name('users', true) . " WHERE $query");
|
||||
|
||||
while ($sql_result && ($sql_arr = $db->fetch_assoc($sql_result))) {
|
||||
echo "Updating prefs for user " . $sql_arr['user_id'] . "...";
|
||||
|
||||
$user = new rcube_user($sql_arr['user_id'], $sql_arr);
|
||||
$prefs = $old_prefs = $user->get_prefs();
|
||||
|
||||
$prefs[$name] = $value;
|
||||
|
||||
if ($prefs != $old_prefs) {
|
||||
$user->save_prefs($prefs, true);
|
||||
echo "saved.\n";
|
||||
}
|
||||
else {
|
||||
echo "nothing changed.\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
9407
data/web/rc/program/js/app.js
Normal file
9407
data/web/rc/program/js/app.js
Normal file
File diff suppressed because it is too large
Load Diff
343
data/web/rc/program/js/app.min.js
vendored
Normal file
343
data/web/rc/program/js/app.min.js
vendored
Normal file
@@ -0,0 +1,343 @@
|
||||
/**
|
||||
* Roundcube Webmail Client Script
|
||||
*
|
||||
* This file is part of the Roundcube Webmail client
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (C) 2005-2015, The Roundcube Dev Team
|
||||
* Copyright (C) 2011-2015, Kolab Systems AG
|
||||
*
|
||||
* 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 (GNU GPL) as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option)
|
||||
* any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
*
|
||||
* As additional permission under GNU GPL version 3 section 7, you
|
||||
* may distribute non-source (e.g., minimized or compacted) forms of
|
||||
* that code without the copy of the GNU GPL normally required by
|
||||
* section 4, provided you include this license notice and a URL
|
||||
* through which recipients can access the Corresponding Source.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*
|
||||
* @author Thomas Bruederli <roundcube@gmail.com>
|
||||
* @author Aleksander 'A.L.E.C' Machniak <alec@alec.pl>
|
||||
* @author Charles McNulty <charles@charlesmcnulty.com>
|
||||
*
|
||||
* @requires jquery.js, common.js, list.js
|
||||
*/
|
||||
function rcube_webmail(){this.labels={};this.buttons={};this.buttons_sel={};this.gui_objects={};this.gui_containers={};this.commands={};this.command_handlers={};this.onloads=[];this.messages={};this.group2expand={};this.http_request_jobs={};this.menu_stack=[];this.dblclick_time=500;this.message_time=5E3;this.identifier_expr=/[^0-9a-z_-]/gi;this.env={request_timeout:180,draft_autosave:0,comm_path:"./",recipients_separator:",",recipients_delimiter:", ",popup_width:1150,popup_width_small:900};this.ref=
|
||||
"rcmail";var f=this;$.ajaxSetup({cache:!1,timeout:1E3*this.env.request_timeout,error:function(a,b,d){f.http_error(a,b,d)},beforeSend:function(a){a.setRequestHeader("X-Roundcube-Request",f.env.request_token)}});$(window).on("beforeunload",function(){f.unload=!0});this.set_env=function(a,b){if(null==a||"object"!==typeof a||b)this.env[a]=b;else for(var d in a)this.env[d]=a[d]};this.add_label=function(a,b){"string"==typeof a?this.labels[a]=b:"object"==typeof a&&$.extend(this.labels,a)};this.register_button=
|
||||
function(a,b,d,e,g,h){b={id:b,type:d};e&&(b.act=e);g&&(b.sel=g);h&&(b.over=h);this.buttons[a]||(this.buttons[a]=[]);this.buttons[a].push(b);this.loaded&&v(a,b)};this.gui_object=function(a,b){this.gui_objects[a]=this.loaded?rcube_find_object(b):b};this.gui_container=function(a,b){this.gui_containers[a]=b};this.add_element=function(a,b){this.gui_containers[b]&&this.gui_containers[b].jquery&&this.gui_containers[b].append(a)};this.register_command=function(a,b,d){this.command_handlers[a]=b;d&&this.enable_command(a,
|
||||
!0)};this.add_onload=function(a){this.onloads.push(a)};this.init=function(){var a;this.task=this.env.task;if(409==this.env.server_error||bw.dom&&bw.xmlhttp_test()){this.env.blankpage||(this.env.blankpage=this.assets_path("program/resources/blank.gif"));for(a in this.gui_containers)this.gui_containers[a]=$("#"+this.gui_containers[a]);for(a in this.gui_objects)this.gui_objects[a]=rcube_find_object(this.gui_objects[a]);if(a=this.env.x_frame_options)try{if("deny"==a.toLowerCase()&&top.location.href!=
|
||||
self.location.href)top.location.href=self.location.href;else{if(/^allow-from[\s\t]+(.+)$/i.test(a)&&0!=RegExp.$1.indexOf(top.location.origin))throw 1;if(top.location.hostname!=self.location.hostname)throw 1;}}catch(k){$("form").each(function(){f.lock_form(this,!0)});this.display_message("Blocked: possible clickjacking attack!","error");return}this.init_buttons();this.is_framed()&&(parent.rcmail.set_busy(!1,null,parent.rcmail.env.frame_lock),parent.rcmail.env.frame_lock=null);this.enable_command("close",
|
||||
"logout","mail","addressbook","settings","save-pref","compose","undo","about","switch-task","menu-open","menu-close","menu-save",!0);this.set_button(this.task,"sel");this.env.permaurl&&this.enable_command("permaurl","extwin",!0);switch(this.task){case "mail":this.enable_command("list","checkmail","add-contact","search","reset-search","collapse-folder","import-messages",!0);this.gui_objects.messagelist&&(this.env.widescreen_list_template=[{className:"threads",cells:["threads"]},{className:"subject",
|
||||
cells:["fromto","date","status","subject"]},{className:"flags",cells:["flag","attachment"]}],this.message_list=new rcube_list_widget(this.gui_objects.messagelist,{multiselect:!0,multiexpand:!0,draggable:!0,keyboard:!0,column_movable:this.env.col_movable,dblclick_time:this.dblclick_time}),this.message_list.addEventListener("initrow",function(a){f.init_message_row(a)}).addEventListener("dblclick",function(a){f.msglist_dbl_click(a)}).addEventListener("click",function(a){f.msglist_click(a)}).addEventListener("keypress",
|
||||
function(a){f.msglist_keypress(a)}).addEventListener("select",function(a){f.msglist_select(a)}).addEventListener("dragstart",function(a){f.drag_start(a)}).addEventListener("dragmove",function(a){f.drag_move(a)}).addEventListener("dragend",function(a){f.drag_end(a)}).addEventListener("expandcollapse",function(a){f.msglist_expand(a)}).addEventListener("column_replace",function(a){f.msglist_set_coltypes(a)}).addEventListener("listupdate",function(a){f.triggerEvent("listupdate",a)}).init(),$(this.message_list.thead).on("click",
|
||||
"a.sortcol",function(a){return f.command("sort",$(this).attr("rel"),this)}),this.enable_command("toggle_status","toggle_flag","sort",!0),this.enable_command("set-listmode",this.env.threads&&!this.is_multifolder_listing()),this.command("list"),$(this.gui_objects.qsearchbox).val(this.env.search_text).focusin(function(){f.message_list.blur()}));this.set_button_titles();this.env.message_commands="show reply reply-all reply-list move copy delete open mark edit viewsource print load-attachment download-attachment show-headers hide-headers download forward forward-inline forward-attachment change-format".split(" ");
|
||||
if("show"==this.env.action||"preview"==this.env.action){if(this.enable_command(this.env.message_commands,this.env.uid),this.enable_command("reply-list",this.env.list_post),"show"==this.env.action&&this.http_request("pagenav",{_uid:this.env.uid,_mbox:this.env.mailbox,_search:this.env.search_request},this.display_message("","loading")),0<this.env.mail_read_time&&setTimeout(function(){f.http_post("mark",{_uid:f.env.uid,_flag:"read",_mbox:f.env.mailbox,_quiet:1})},1E3*this.env.mail_read_time),this.env.blockedobjects&&
|
||||
(this.gui_objects.remoteobjectsmsg&&(this.gui_objects.remoteobjectsmsg.style.display="block"),this.enable_command("load-images","always-load",!0)),"preview"==this.env.action&&this.is_framed()&&(this.enable_command("compose","add-contact",!1),parent.rcmail.show_contentframe(!0)),this.gui_objects.attachments)$("li > a",this.gui_objects.attachments).not(".drop").on("dragstart",function(a){var b=this.href,d=a.originalEvent.dataTransfer;d&&(b=b.replace(/^https?:\/\//,function(a){return a+urlencode(f.env.username)+
|
||||
"@"}),a=$(this).clone(),a.children().remove(),d.setData("roundcube-uri",b),d.setData("roundcube-name",$.trim(a.text())))})}else if("compose"==this.env.action)this.env.address_group_stack=[],this.env.compose_commands="send-attachment remove-attachment send cancel toggle-editor list-addresses pushgroup search reset-search extwin insert-response save-response menu-open menu-close load-attachment download-attachment open-attachment rename-attachment".split(" "),this.env.drafts_mailbox&&this.env.compose_commands.push("savedraft"),
|
||||
this.enable_command(this.env.compose_commands,"identities","responses",!0),$.merge(this.env.compose_commands,["add-recipient","firstpage","previouspage","nextpage","lastpage"]),window.googie&&(this.env.editor_config.spellchecker=googie,this.env.editor_config.spellcheck_observer=function(a){f.spellcheck_state()},this.env.compose_commands.push("spellcheck"),this.enable_command("spellcheck",!0)),this.editor_init(this.env.editor_config,this.env.composebody),this.gui_objects.responseslist&&($("a.insertresponse",
|
||||
this.gui_objects.responseslist).attr("unselectable","on").mousedown(function(a){return rcube_event.cancel(a)}).on("mouseup keypress",function(a){if("mouseup"==a.type||13==rcube_event.get_keycode(a))return f.command("insert-response",$(this).attr("rel")),$(document.body).trigger("mouseup"),rcube_event.cancel(a)}),$.each(this.buttons["save-response"]||[],function(a,b){$("#"+b.id).mousedown(function(a){return rcube_event.cancel(a)})})),this.init_messageform();else if("get"==this.env.action){if(this.enable_command("download",
|
||||
!0),bw.mz&&"application/pdf"==this.env.mimetype?(a=0,$(this.gui_objects.messagepartframe).on("load",function(){if(a++)try{this.contentWindow.document,f.enable_command("print",!0)}catch(k){}})):this.enable_command("print",!0),this.env.is_message&&(this.enable_command("reply","reply-all","edit","viewsource","forward","forward-inline","forward-attachment",!0),this.env.list_post&&this.enable_command("reply-list",!0)),this.env.mimetype.startsWith("image/"))$(this.gui_objects.messagepartframe).on("load",
|
||||
function(){$(this).contents().find("head").append('<style type="text/css">img { max-width:100%; max-height:100%; } body { display:flex; align-items:center; justify-content:center; height:100%; margin:0; }</style>')})}else"print"!=this.env.action||!this.env.uid||this.env.is_pgp_content||this.env.pgp_mime_part||this.print_dialog();this.gui_objects.mailboxlist&&(this.env.unread_counts={},this.gui_objects.folderlist=this.gui_objects.mailboxlist,this.http_request("getunread",{_page:this.env.current_page}));
|
||||
this.gui_objects.contactslist&&(this.contact_list=new rcube_list_widget(this.gui_objects.contactslist,{multiselect:!0,draggable:!1,keyboard:!0}),this.contact_list.addEventListener("initrow",function(a){f.triggerEvent("insertrow",{cid:a.uid,row:a})}).addEventListener("select",function(a){f.compose_recipient_select(a)}).addEventListener("dblclick",function(a){f.compose_add_recipient()}).addEventListener("keypress",function(a){a.key_pressed==a.ENTER_KEY&&(f.compose_add_recipient()||a.last_selected&&
|
||||
"G"==String(a.last_selected).charAt(0)&&$(a.rows[a.last_selected].obj).find("a").first().click())}).init(),$("#_to,#_cc,#_bcc").focus(function(){f.env.focused_field=this}));this.gui_objects.addressbookslist&&(this.gui_objects.folderlist=this.gui_objects.addressbookslist,this.enable_command("list-addresses",!0));if(this.env.mdn_request&&this.env.uid){var b="sendmdn",d={_uid:this.env.uid,_mbox:this.env.mailbox};confirm(this.get_label("mdnrequest"))||(d._flag="mdnsent",b="mark");this.http_post(b,d)}this.check_mailvelope(this.env.action);
|
||||
this.is_framed()||this.env.extwin||this.browser_capabilities_check();break;case "addressbook":this.env.address_group_stack=[];this.gui_objects.folderlist&&(this.env.contactfolders=$.extend($.extend({},this.env.address_sources),this.env.contactgroups));this.enable_command("add","import",this.env.writable_source);this.enable_command("list","listgroup","pushgroup","popgroup","listsearch","search","reset-search","advanced-search",!0);this.gui_objects.contactslist&&(this.contact_list=new rcube_list_widget(this.gui_objects.contactslist,
|
||||
{multiselect:!0,draggable:this.gui_objects.folderlist?!0:!1,keyboard:!0}),this.contact_list.addEventListener("initrow",function(a){f.triggerEvent("insertrow",{cid:a.uid,row:a})}).addEventListener("keypress",function(a){f.contactlist_keypress(a)}).addEventListener("select",function(a){f.contactlist_select(a)}).addEventListener("dragstart",function(a){f.drag_start(a)}).addEventListener("dragmove",function(a){f.drag_move(a)}).addEventListener("dragend",function(a){f.drag_end(a)}).init(),$(this.gui_objects.qsearchbox).focusin(function(){f.contact_list.blur()}),
|
||||
this.update_group_commands(),this.command("list"));this.gui_objects.savedsearchlist&&(this.savedsearchlist=new rcube_treelist_widget(this.gui_objects.savedsearchlist,{id_prefix:"rcmli",id_encode:this.html_identifier_encode,id_decode:this.html_identifier_decode}),this.savedsearchlist.addEventListener("select",function(a){f.triggerEvent("selectfolder",{folder:a.id,prefix:"rcmli"})}));this.set_page_buttons();this.env.cid&&(this.enable_command("show","edit","qrcode",!0),this.gui_objects.editform&&$("input.groupmember").change(function(){f.group_member_change(this.checked?
|
||||
"add":"del",f.env.cid,f.env.source,this.value)}));this.gui_objects.editform?(this.enable_command("save",!0),"add"!=this.env.action&&"edit"!=this.env.action&&"search"!=this.env.action||this.init_contact_form()):"print"==this.env.action&&this.print_dialog();break;case "settings":this.enable_command("preferences","identities","responses","save","folders",!0);"identities"==this.env.action?this.enable_command("add",2>this.env.identities_level):"edit-identity"==this.env.action||"add-identity"==this.env.action?
|
||||
(this.enable_command("save","edit","toggle-editor",!0),this.enable_command("delete",2>this.env.identities_level),this.editor_init(this.env.editor_config,"rcmfd_signature")):"folders"==this.env.action?this.enable_command("subscribe","unsubscribe","create-folder","rename-folder",!0):"edit-folder"==this.env.action&&this.gui_objects.editform?(this.enable_command("save","folder-size",!0),parent.rcmail.env.exists=this.env.messagecount,parent.rcmail.enable_command("purge",this.env.messagecount)):"responses"==
|
||||
this.env.action&&this.enable_command("add",!0);this.gui_objects.identitieslist?(this.identity_list=new rcube_list_widget(this.gui_objects.identitieslist,{multiselect:!1,draggable:!1,keyboard:!0}),this.identity_list.addEventListener("select",function(a){f.identity_select(a)}).addEventListener("keypress",function(a){a.key_pressed==a.ENTER_KEY&&f.identity_select(a)}).init().focus()):this.gui_objects.sectionslist?(this.sections_list=new rcube_list_widget(this.gui_objects.sectionslist,{multiselect:!1,
|
||||
draggable:!1,keyboard:!0}),this.sections_list.addEventListener("select",function(a){f.section_select(a)}).addEventListener("keypress",function(a){a.key_pressed==a.ENTER_KEY&&f.section_select(a)}).init().focus()):this.gui_objects.subscriptionlist?this.init_subscription_list():this.gui_objects.responseslist&&(this.responses_list=new rcube_list_widget(this.gui_objects.responseslist,{multiselect:!1,draggable:!1,keyboard:!0}),this.responses_list.addEventListener("select",function(a){var b;a=a.get_single_selection();
|
||||
f.enable_command("delete",!!a&&0>$.inArray(a,f.env.readonly_responses));a&&(b=f.get_frame_window(f.env.contentframe))&&(f.set_busy(!0),f.location_href({_action:"edit-response",_key:a,_framed:1},b))}).init().focus());break;case "login":var e=window.jstz,g=$("#rcmloginuser"),h=$("#rcmlogintz");g.keyup(function(a){return f.login_user_keyup(a)});""==g.val()?g.focus():$("#rcmloginpwd").focus();e&&(b=e.determine())&&(d=b.name());h.val(d?d:(new Date).getStdTimezoneOffset()/-60);$("form").submit(function(){$("input[type=submit]",
|
||||
this).prop("disabled",!0);f.clear_messages();f.display_message("","loading")});this.enable_command("login",!0)}this.gui_objects.editform&&$("input,select,textarea",this.gui_objects.editform).not(":hidden").not(":disabled").first().select().focus();this.env.contentframe&&!$("#"+this.env.contentframe).is(":visible")&&(this.env.contentframe=null);bw.ie&&$("input[type=file]").keydown(function(a){"13"==a.keyCode&&a.preventDefault()});this.loaded=!0;this.env.lastrefresh=new Date;this.pending_message&&this.display_message.apply(this,
|
||||
this.pending_message);this.gui_objects.folderlist&&window.rcube_treelist_widget&&this.gui_objects.folderlist!=this.gui_objects.addressbookslist&&(this.treelist=new rcube_treelist_widget(this.gui_objects.folderlist,{selectable:!0,id_prefix:"rcmli",parent_focus:!0,id_encode:this.html_identifier_encode,id_decode:this.html_identifier_decode,check_droptarget:function(a){return!a.virtual&&f.check_droptarget(a.id)}}),this.treelist.addEventListener("collapse",function(a){f.folder_collapsed(a)}).addEventListener("expand",
|
||||
function(a){f.folder_collapsed(a)}).addEventListener("beforeselect",function(a){return!f.busy}).addEventListener("select",function(a){f.triggerEvent("selectfolder",{folder:a.id,prefix:"rcmli"});f.mark_all_read_state()}));this.gui_objects.filedrop&&this.env.filedrop&&(window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.sendAsBinary||window.FormData)&&($(document.body).on("dragover dragleave drop",function(a){return f.document_drag_hover(a,"dragover"==a.type)}),$(this.gui_objects.filedrop).addClass("droptarget").on("dragover dragleave",
|
||||
function(a){return f.file_drag_hover(a,"dragover"==a.type)}).get(0).addEventListener("drop",function(a){return f.file_dropped(a)},!1));b=function(a){return f.doc_mouse_up(a)};$(document.body).mouseup(b).keydown(function(a){return f.doc_keypress(a)});rcube_webmail.set_iframe_events({mouseup:b});this.triggerEvent("init",{task:this.task,action:this.env.action});for(a in this.onloads)if("string"===typeof this.onloads[a])eval(this.onloads[a]);else if("function"===typeof this.onloads[a])this.onloads[a]();
|
||||
this.start_refresh();this.start_keepalive()}else this.goto_url("error","_code=0x199")};this.log=function(a){this.env.devel_mode&&window.console&&console.log&&console.log(a)};this.command=function(a,b,d,e){var g,h,k,l=!1;!d||!d.blur||e&&rcube_event.is_keyboard(e)||d.blur();if(this.busy&&("reset-search"!=a||"search"!=this.last_command)&&!a.match(/^menu-/))return!1;if(d&&d.href&&0>String(d.href).indexOf("#")&&rcube_event.get_modifier(e))return!0;if(!this.commands[a])return this.is_framed()&&parent.rcmail.command(a,
|
||||
b),!1;if("mail"==this.task&&"compose"==this.env.action&&!this.env.server_error&&"save-pref"!=a&&0>$.inArray(a,this.env.compose_commands)){if(!this.env.is_sent&&this.cmp_hash!=this.compose_field_hash()&&!confirm(this.get_label("notsentwarning")))return!1;this.remove_compose_data(this.env.compose_id);this.compose_skip_unsavedcheck=!0}this.last_command=a;if("function"===typeof this.command_handlers[a])return g=this.command_handlers[a](b,d,e),void 0!==g?g:d?!1:!0;if("string"===typeof this.command_handlers[a])return g=
|
||||
window[this.command_handlers[a]](b,d,e),void 0!==g?g:d?!1:!0;this.triggerEvent("actionbefore",{props:b,action:a,originalEvent:e});g=this.triggerEvent("before"+a,b||e);if(void 0!==g){if(!1===g)return!1;b=g}g=void 0;switch(a){case "login":this.gui_objects.loginform&&this.gui_objects.loginform.submit();break;case "logout":case "mail":case "addressbook":case "settings":this.switch_task(a);break;case "about":this.redirect("?_task=settings&_action=about",!1);break;case "permaurl":if(d&&d.href&&d.target)return!0;
|
||||
this.env.permaurl&&(parent.location.href=this.env.permaurl);break;case "extwin":if("compose"==this.env.action){if(e=this.gui_objects.messageform,h=this.open_window(""))this.save_compose_form_local(),this.compose_skip_unsavedcheck=!0,$("input[name='_action']",e).val("compose"),e.action=this.url("mail/compose",{_id:this.env.compose_id,_extwin:1}),e.target=h.name,e.submit()}else this.open_window(this.env.permaurl,!0);break;case "change-format":e=this.env.permaurl+"&_format="+b;"preview"==this.env.action&&
|
||||
(e=e.replace(/_action=show/,"_action=preview")+"&_framed=1");this.env.extwin&&(e+="&_extwin=1");location.href=e;break;case "menu-open":b&&"attachmentmenu"==b.menu&&((h=this.env.attachments[b.id])&&h.mimetype&&(h=h.mimetype),this.enable_command("open-attachment",h&&this.env.mimetypes&&0<=$.inArray(h,this.env.mimetypes)));this.show_menu(b,b.show||void 0,e);break;case "menu-close":this.hide_menu(b,e);break;case "menu-save":return this.triggerEvent(a,{props:b,originalEvent:e}),!1;case "open":if(h=this.get_single_uid())return d.href=
|
||||
this.url("show",this.params_from_uid(h)),!0;break;case "close":this.env.extwin&&window.close();break;case "list":b&&""!=b&&this.reset_qsearch(!0);"compose"==this.env.action&&this.env.extwin?window.close():"mail"==this.task?(this.list_mailbox(b),this.set_button_titles()):"addressbook"==this.task&&this.list_contacts(b);break;case "set-listmode":this.set_list_options(null,void 0,void 0,"threads"==b?1:0);break;case "sort":e=this.env.sort_order;h=this.env.disabled_sort_col?this.env.sort_col:b;this.env.disabled_sort_order||
|
||||
(e=this.env.sort_col==h&&"ASC"==e?"DESC":"ASC");this.set_list_sorting(h,e);this.list_mailbox("","",h+"_"+e);break;case "nextpage":this.list_page("next");break;case "lastpage":this.list_page("last");break;case "previouspage":this.list_page("prev");break;case "firstpage":this.list_page("first");break;case "expunge":this.env.exists&&this.expunge_mailbox(this.env.mailbox);break;case "purge":case "empty-mailbox":this.env.exists&&this.purge_mailbox(this.env.mailbox);break;case "show":"mail"==this.task?
|
||||
(h=this.get_single_uid(),!h||this.env.uid&&h==this.env.uid||(this.env.mailbox==this.env.drafts_mailbox?this.open_compose_step({_draft_uid:h,_mbox:this.env.mailbox}):this.show_message(h))):"addressbook"==this.task&&(k=b?b:this.get_single_cid(),!k||"show"==this.env.action&&k==this.env.cid||this.load_contact(k,"show"));break;case "add":if("addressbook"==this.task)this.load_contact(0,"add");else if("settings"==this.task&&"responses"==this.env.action){if(e=this.get_frame_window(this.env.contentframe))this.set_busy(!0),
|
||||
this.location_href({_action:"add-response",_framed:1},e)}else"settings"==this.task&&(this.identity_list.clear_selection(),this.load_identity(0,"add-identity"));break;case "edit":"addressbook"==this.task&&(k=this.get_single_cid())?this.load_contact(k,"edit"):"settings"==this.task&&b?this.load_identity(b,"edit-identity"):"mail"==this.task&&(h=this.get_single_uid())&&(e={_mbox:this.get_message_mailbox(h)},e[this.env.mailbox==this.env.drafts_mailbox&&"new"!=b?"_draft_uid":"_uid"]=h,this.open_compose_step(e));
|
||||
break;case "save":var m;if(e=this.gui_objects.editform){if("search"!=this.env.action)if((m=$("input[name='_pagesize']",e))&&m.length&&isNaN(parseInt(m.val()))){alert(this.get_label("nopagesizewarning"));m.focus();break}else if("reload"==b)e.action+="&_reload=1";else if("settings"==this.task&&0==this.env.identities_level%2&&(m=$("input[name='_email']",e))&&m.length&&!rcube_check_email(m.val())){alert(this.get_label("noemailwarning"));m.focus();break}parent.rcmail&&parent.rcmail.env.source&&(e.action=
|
||||
this.add_url(e.action,"_orig_source",parent.rcmail.env.source));e.submit()}break;case "delete":"mail"==this.task?this.delete_messages(e):"addressbook"==this.task?this.delete_contacts():"settings"==this.task&&"responses"==this.env.action?this.delete_response():"settings"==this.task&&this.delete_identity();break;case "move":case "moveto":"mail"==this.task?this.move_messages(b,e):"addressbook"==this.task&&this.move_contacts(b);break;case "copy":"mail"==this.task?this.copy_messages(b,e):"addressbook"==
|
||||
this.task&&this.copy_contacts(b);break;case "mark":b&&this.mark_message(b);break;case "toggle_status":case "toggle_flag":e="toggle_flag"==a?"flagged":"read";if(h=b)"flagged"==e?this.message_list.rows[h].flagged&&(e="unflagged"):this.message_list.rows[h].deleted?e="undelete":this.message_list.rows[h].unread||(e="unread"),this.mark_message(e,h);break;case "always-load":if(this.env.uid&&this.env.sender){this.add_contact(this.env.sender);setTimeout(function(){f.command("load-images")},300);break}case "load-images":this.env.uid&&
|
||||
this.show_message(this.env.uid,!0,"preview"==this.env.action);break;case "load-attachment":case "open-attachment":case "download-attachment":h=this.env.attachments[b];"compose"==this.env.action?(e={_file:b,_id:this.env.compose_id},h=h?h.mimetype:""):e={_mbox:this.env.mailbox,_uid:this.env.uid,_part:b};if("download-attachment"!=a&&h&&this.env.mimetypes&&0<=$.inArray(h,this.env.mimetypes)&&this.open_window(this.url("get",$.extend({_frame:1},e))))break;this.compose_skip_unsavedcheck=e._download=1;this.goto_url("get",
|
||||
e,!1,!0);this.compose_skip_unsavedcheck=0;break;case "select-all":this.select_all_mode=b?!1:!0;this.dummy_select=!0;"invert"==b?this.message_list.invert_selection():this.message_list.select_all("page"==b?"":b);this.dummy_select=null;break;case "select-none":this.select_all_mode=!1;this.message_list.clear_selection();break;case "expand-all":this.env.autoexpand_threads=1;this.message_list.expand_all();break;case "expand-unread":this.env.autoexpand_threads=2;this.message_list.collapse_all();this.expand_unread();
|
||||
break;case "collapse-all":this.env.autoexpand_threads=0;this.message_list.collapse_all();break;case "nextmessage":this.env.next_uid&&this.show_message(this.env.next_uid,!1,"preview"==this.env.action);break;case "lastmessage":this.env.last_uid&&this.show_message(this.env.last_uid);break;case "previousmessage":this.env.prev_uid&&this.show_message(this.env.prev_uid,!1,"preview"==this.env.action);break;case "firstmessage":this.env.first_uid&&this.show_message(this.env.first_uid);break;case "compose":e=
|
||||
{};if("mail"==this.task)e={_mbox:this.env.mailbox,_search:this.env.search_request},b&&(e._to=b);else if("addressbook"==this.task)if(b&&0<b.indexOf("@"))e._to=b;else{e=[];b?e.push(b):this.contact_list&&(e=this.contact_list.get_selection());e.length?this.http_post("mailto",{_cid:e.join(","),_source:this.env.source},!0):this.env.group&&this.http_post("mailto",{_gid:this.env.group,_source:this.env.source},!0);break}else b&&"string"==typeof b?e._to=b:b&&"object"==typeof b&&$.extend(e,b);this.open_compose_step(e);
|
||||
break;case "spellcheck":this.spellcheck_state()?this.editor.spellcheck_stop():this.editor.spellcheck_start();break;case "savedraft":clearTimeout(this.save_timer);if(this.env.draft_id&&this.cmp_hash==this.compose_field_hash()){this.auto_save_start();break}this.submit_messageform(!0);break;case "send":if(!b.nocheck&&!this.env.is_sent&&!this.check_compose_input(a))break;clearTimeout(this.save_timer);this.submit_messageform();break;case "send-attachment":clearTimeout(this.save_timer);(e=this.upload_file(b||
|
||||
this.gui_objects.uploadform,"upload"))||(!1!==e&&alert(this.get_label("selectimportfile")),l=!0);break;case "insert-sig":this.change_identity($("[name='_from']")[0],!0);break;case "list-addresses":this.list_contacts(b);this.enable_command("add-recipient",!1);break;case "add-recipient":this.compose_add_recipient(b);break;case "reply-all":case "reply-list":case "reply":if(h=this.get_single_uid())e={_reply_uid:h,_mbox:this.get_message_mailbox(h),_search:this.env.search_request},"reply-all"==a?e._all=
|
||||
!b&&1==this.env.reply_all_mode&&this.commands["reply-list"]?"list":"all":"reply-list"==a&&(e._all="list"),this.open_compose_step(e);break;case "forward-attachment":case "forward-inline":case "forward":h=this.env.uid?[this.env.uid]:this.message_list?this.message_list.get_selection():[];if(h.length){e={_forward_uid:this.uids_to_list(h),_mbox:this.env.mailbox,_search:this.env.search_request};if("forward-attachment"==a||!b&&this.env.forward_attachment||1<h.length)e._attachment=1;this.open_compose_step(e)}break;
|
||||
case "print":if("addressbook"==this.task){if(h=this.contact_list.get_single_selection())e="&_action=print&_cid="+h,this.env.source&&(e+="&_source="+urlencode(this.env.source)),this.open_window(this.env.comm_path+e,!0,!0)}else if("get"==this.env.action&&!this.env.is_message)this.gui_objects.messagepartframe.contentWindow.print();else if(h=this.get_single_uid())e=this.url("print",this.params_from_uid(h,{_safe:this.env.safemode?1:0})),this.open_window(e,!0,!0)&&"show"!=this.env.action&&"get"!=this.env.action&&
|
||||
this.mark_message("read",h);break;case "viewsource":(h=this.get_single_uid())&&this.open_window(this.url("viewsource",this.params_from_uid(h)),!0,!0);break;case "download":"get"==this.env.action?location.href=this.secure_url(location.href.replace(/_frame=/,"_download=")):(h=this.get_single_uid())&&this.goto_url("viewsource",this.params_from_uid(h,{_save:1}),!1,!0);break;case "search":g=this.qsearch(b);break;case "reset-search":var n;e=this.env.search_request||this.env.qsearch;this.reset_qsearch(!0);
|
||||
if(e&&"compose"==this.env.action)this.contact_list&&this.list_contacts_clear();else if(e&&this.env.mailbox)this.list_mailbox(this.env.mailbox,1);else if(e&&"addressbook"==this.task){if(""==this.env.source){for(n in this.env.address_sources)break;this.env.source=n;this.env.group=""}this.list_contacts(this.env.source,this.env.group,1)}break;case "pushgroup":var p={id:b.id,search_request:this.env.search_request,page:this.env.current_page,search:this.env.search_request&&this.gui_objects.qsearchbox?this.gui_objects.qsearchbox.value:
|
||||
null};this.env.address_group_stack.push(p);d&&e&&rcube_event.cancel(e);case "listgroup":this.reset_qsearch();this.list_contacts(b.source,b.id,1,p);break;case "popgroup":this.env.address_group_stack.length&&(e=this.env.address_group_stack.pop(),this.reset_qsearch(),e.search_request?(e.search&&this.gui_objects.qsearchbox&&$(this.gui_objects.qsearchbox).val(e.search),this.env.search_request=e.search_request,this.list_contacts_remote(null,null,this.env.current_page=e.page)):this.list_contacts(b.source,
|
||||
this.env.address_group_stack[this.env.address_group_stack.length-1].id));break;case "import-messages":e=b||this.gui_objects.importform;h=this.set_busy(!0,"importwait");$('input[name="_unlock"]',e).val(h);(e=this.upload_file(e,"import",h))||(this.set_busy(!1,null,h),!1!==e&&alert(this.get_label("selectimportfile")),l=!0);break;case "import":"import"==this.env.action&&this.gui_objects.importform?(e=document.getElementById("rcmimportfile"))&&!e.value?(alert(this.get_label("selectimportfile")),l=!0):
|
||||
(this.gui_objects.importform.submit(),this.set_busy(!0,"importwait"),this.lock_form(this.gui_objects.importform,!0)):this.goto_url("import",this.env.source?"_target="+urlencode(this.env.source)+"&":"");break;case "export":0<this.contact_list.rowcount&&this.goto_url("export",{_source:this.env.source,_gid:this.env.group,_search:this.env.search_request},!1,!0);break;case "export-selected":0<this.contact_list.rowcount&&this.goto_url("export",{_source:this.env.source,_gid:this.env.group,_cid:this.contact_list.get_selection().join(",")},
|
||||
!1,!0);break;case "upload-photo":this.upload_contact_photo(b||this.gui_objects.uploadform);break;case "delete-photo":this.replace_contact_photo("-del-");break;case "preferences":case "identities":case "responses":case "folders":this.goto_url("settings/"+a);break;case "undo":this.http_request("undo","",this.display_message("","loading"));break;default:h=a.replace(/-/g,"_"),this[h]&&"function"===typeof this[h]&&(g=this[h](b,d,e))}l||!1!==this.triggerEvent("after"+a,b)||(g=!1);this.triggerEvent("actionafter",
|
||||
{props:b,action:a,aborted:l,ret:g});return!1===g?!1:d?!1:!0};this.enable_command=function(){var a,b,d=Array.prototype.slice.call(arguments),e=d.pop(),g;for(b=0;b<d.length;b++)if(g=d[b],"string"===typeof g)this.commands[g]=e,this.set_button(g,e?"act":"pas"),this.triggerEvent("enable-command",{command:g,status:e});else for(a in g)d.push(g[a])};this.command_enabled=function(a){return this.commands[a]};this.set_busy=function(a,b,d){a&&b?(d=this.get_label(b),d==b&&(d="Loading..."),d=this.display_message(d,
|
||||
"loading")):!a&&d&&this.hide_message(d);this.busy=a;this.gui_objects.editform&&this.lock_form(this.gui_objects.editform,a);return d};this.gettext=this.get_label=function(a,b){return b&&this.labels[b+"."+a]?this.labels[b+"."+a]:this.labels[a]?this.labels[a]:a};this.switch_task=function(a){if(this.task!==a||"mail"==a){var b=this.get_task_url(a);"mail"==a?b+="&_mbox=INBOX":"logout"!=a||this.env.server_error||(b=this.secure_url(b),this.clear_compose_data());this.redirect(b)}};this.get_task_url=function(a,
|
||||
b){b||(b=this.env.comm_path);return b.match(/[?&]_task=[a-zA-Z0-9_-]+/)?b.replace(/_task=[a-zA-Z0-9_-]+/,"_task="+a):b.replace(/\?.*$/,"")+"?_task="+a};this.reload=function(a){this.is_framed()?parent.rcmail.reload(a):a?setTimeout(function(){f.reload()},a):window.location&&(location.href=this.url("",{_extwin:this.env.extwin}))};this.add_url=function(a,b,d){d=urlencode(d);if(/(\?.*)$/.test(a)){var e=RegExp.$1,g=RegExp("((\\?|&)"+RegExp.escape(b)+"=[^&]*)"),e=g.test(e)?e.replace(g,RegExp.$2+b+"="+d):
|
||||
e+("&"+b+"="+d);return a.replace(/(\?.*)$/,e)}return a+"?"+b+"="+d};this.secure_url=function(a){return this.add_url(a,"_token",this.env.request_token)};this.is_framed=function(){return this.env.framed&&parent.rcmail&&parent.rcmail!=this&&"function"==typeof parent.rcmail.command};this.save_pref=function(a){var b={_name:a.name,_value:a.value};a.session&&(b._session=a.session);a.env&&(this.env[a.env]=a.value);this.http_post("save-pref",b)};this.html_identifier=function(a,b){return b?this.html_identifier_encode(a):
|
||||
String(a).replace(this.identifier_expr,"_")};this.html_identifier_encode=function(a){return Base64.encode(String(a)).replace(/=+$/,"").replace(/\+/g,"-").replace(/\//g,"_")};this.html_identifier_decode=function(a){for(a=String(a).replace(/-/g,"+").replace(/_/g,"/");a.length%4;)a+="=";return Base64.decode(a)};this.drag_menu=function(a,b){var d=rcube_event.get_modifier(a),e=this.gui_objects.dragmenu;return e&&d==SHIFT_KEY&&this.commands.copy?(d=rcube_event.get_mouse_pos(a),this.env.drag_target=b,this.show_menu(this.gui_objects.dragmenu.id,
|
||||
!0,a),$(e).css({top:d.y-10+"px",left:d.x-10+"px"}),!0):!1};this.drag_menu_action=function(a){var b=this.gui_objects.dragmenu;b&&$(b).hide();this.command(a,this.env.drag_target);this.env.drag_target=null};this.drag_start=function(a){this.drag_active=!0;this.preview_timer&&clearTimeout(this.preview_timer);this.treelist&&this.treelist.drag_start()};this.drag_end=function(a){var b,d;this.treelist&&this.treelist.drag_end();if(b=this.message_list)d=this.env.mailboxes;else if(b=this.contact_list)d=this.env.contactfolders;
|
||||
this.drag_active&&d&&this.env.last_folder_target&&(d=d[this.env.last_folder_target],b.draglayer.hide(),this.contact_list?this.contacts_drag_menu(a,d)||this.command("move",d):this.drag_menu(a,d)||this.command("move",d));this.drag_active=!1;this.env.last_folder_target=null};this.drag_move=function(a){if(this.gui_objects.folderlist){var b,d,e="draglayernormal";a=rcube_event.get_mouse_pos(a);this.contact_list&&this.contact_list.draglayer&&(d=this.contact_list.draglayer.attr("class"));this.treelist&&(b=
|
||||
this.treelist.intersects(a,!0))?(this.env.last_folder_target=b,e="draglayer"+(1<this.check_droptarget(b)?"copy":"normal")):this.env.last_folder_target=null;e!=d&&this.contact_list&&this.contact_list.draglayer&&this.contact_list.draglayer.attr("class",e)}};this.collapse_folder=function(a){this.treelist&&this.treelist.toggle(a)};this.folder_collapsed=function(a){var b="addressbook"==this.env.task?"collapsed_abooks":"collapsed_folders",d=this.env[b];if(a.collapsed)this.env[b]=this.env[b]+"&"+urlencode(a.id)+
|
||||
"&",!a.virtual&&this.env.mailbox&&this.env.mailbox.startsWith(a.id+this.env.delimiter)&&this.command("list",a.id);else{var e=new RegExp("&"+urlencode(a.id)+"&");this.env[b]=this.env[b].replace(e,"")}this.drag_active||(d!==this.env[b]&&this.command("save-pref",{name:b,value:this.env[b]}),this.env.unread_counts&&this.set_unread_count_display(a.id,!1))};this.doc_mouse_up=function(a){var b,d=rcube_event.get_target(a);if(!$(d).closest(".ui-dialog, .ui-widget-overlay").length){window.rcube_list_widget&&
|
||||
rcube_list_widget._instances.length&&$.each(rcube_list_widget._instances,function(b,d){d&&!rcube_mouse_is_over(a,d.list.parentNode)&&d.blur()});if(this.buttons_sel){for(b in this.buttons_sel)"function"!==typeof b&&this.button_out(this.buttons_sel[b],b);this.buttons_sel={}}setTimeout(function(a){var b,e,k,l,m=$(d).parents();for(l=f.menu_stack.length-1;0<=l;l--)k=f.menu_stack[l],b=$("#"+k),!b.is(":visible")||d==b.data("opener")||d==b.get(0)||m.is(b.data("opener"))||k==e||"true"==b.attr("data-editable")&&
|
||||
$(d).parents("#"+k).length||"true"==b.attr("data-sticky")&&rcube_mouse_is_over(a,b.get(0))||f.hide_menu(k,a),e=b.data("parent")},10,a)}};this.doc_keypress=function(a){var b=function(a){var b,d=0>a?"prevAll":"nextAll",e=0>a?"last":"first";return f.focused_menu&&(b=$("#"+f.focused_menu))?(a=b.find(":focus").closest("li")[d](":has(:not([aria-disabled=true]))").find("a,input")[e](),a.length||(a=b.find(":focus").closest("ul")[d](":has(:not([aria-disabled=true]))").find("a,input")[e]()),a.focus().length):
|
||||
0},d=a.target||{},e=rcube_event.get_keycode(a);if(27!=a.keyCode&&(!this.menu_keyboard_active||"TEXTAREA"==d.nodeName||"SELECT"==d.nodeName))return!0;switch(e){case 38:case 40:case 63232:case 63233:return b(38==e||63232==e?-1:1),rcube_event.cancel(a);case 9:return this.focused_menu&&(d=rcube_event.get_modifier(a),b(d==SHIFT_KEY?-1:1)||this.hide_menu(this.focused_menu,a)),rcube_event.cancel(a);case 27:this.menu_stack.length&&this.hide_menu(this.menu_stack[this.menu_stack.length-1],a)}return!0};this.msglist_select=
|
||||
function(a){this.preview_timer&&clearTimeout(this.preview_timer);var b=a.get_single_selection();this.enable_command(this.env.message_commands,null!=b);b&&(this.env.mailbox==this.env.drafts_mailbox?this.enable_command("reply","reply-all","reply-list","forward","forward-attachment","forward-inline",!1):this.env.messages[b].ml||this.enable_command("reply-list",!1));this.enable_command("delete","move","copy","mark","forward","forward-attachment",0<a.selection.length);if(b||a.selection.length&&a.selection.length!=
|
||||
a.rowcount)this.select_all_mode=!1;b&&this.env.contentframe&&!a.multi_selecting&&!this.dummy_select?this.preview_timer=setTimeout(function(){f.msglist_get_preview()},a.dblclick_time):this.env.contentframe&&this.show_contentframe(!1)};this.msglist_click=function(a){if(!a.multi_selecting&&this.env.contentframe&&!a.get_single_selection()){var b=this.get_frame_window(this.env.contentframe);b&&0<=b.location.href.indexOf(this.env.blankpage)&&(this.preview_timer&&clearTimeout(this.preview_timer),this.preview_timer=
|
||||
setTimeout(function(){f.msglist_get_preview()},a.dblclick_time))}};this.msglist_dbl_click=function(a){this.preview_timer&&clearTimeout(this.preview_timer);(a=a.get_single_selection())&&(this.env.messages[a].mbox||this.env.mailbox)==this.env.drafts_mailbox?this.open_compose_step({_draft_uid:a,_mbox:this.env.mailbox}):a&&this.show_message(a,!1,!1)};this.msglist_keypress=function(a){a.modkey!=CONTROL_KEY&&(a.key_pressed==a.ENTER_KEY?this.command("show"):a.key_pressed==a.DELETE_KEY||a.key_pressed==a.BACKSPACE_KEY?
|
||||
this.command("delete"):33==a.key_pressed?this.command("previouspage"):34==a.key_pressed&&this.command("nextpage"))};this.msglist_get_preview=function(){var a=this.get_single_uid();a&&this.env.contentframe&&!this.drag_active?this.show_message(a,!1,!0):this.env.contentframe&&this.show_contentframe(!1)};this.msglist_expand=function(a){this.env.messages[a.uid]&&(this.env.messages[a.uid].expanded=a.expanded);$(a.obj)[a.expanded?"addClass":"removeClass"]("expanded")};this.msglist_set_coltypes=function(a){var b,
|
||||
d=a.thead.rows[0].cells;this.env.listcols=[];for(a=0;a<d.length;a++)d[a].id&&d[a].id.startsWith("rcm")&&(b=d[a].id.slice(3),this.env.listcols.push(b));0<=(a=$.inArray("flag",this.env.listcols))&&(this.env.flagged_col=a);0<=(a=$.inArray("subject",this.env.listcols))&&(this.env.subject_col=a);this.command("save-pref",{name:"list_cols",value:this.env.listcols,session:"list_attrib/columns"})};this.check_droptarget=function(a){switch(this.task){case "mail":return!this.env.mailboxes[a]||this.env.mailboxes[a].virtual||
|
||||
this.env.mailboxes[a].id==this.env.mailbox&&!this.is_multifolder_listing()?0:1;case "addressbook":var b;if(a!=this.env.source&&(b=this.env.contactfolders[a]))if("group"==b.type){if(b.id!=this.env.group&&!this.env.contactfolders[b.source].readonly)return!(1<this.env.selection_sources.length||-1==$.inArray(b.source,this.env.selection_sources))||this.commands.move?1:2}else if(!b.readonly&&(1<this.env.selection_sources.length||-1==$.inArray(a,this.env.selection_sources)))return this.commands.move?1:2}return 0};
|
||||
this.open_window=function(a,b,d){var e="rcmextwin"+(new Date).getTime();a+=(a.match(/\?/)?"&":"?")+"_extwin=1";if(this.env.standard_windows)var g=window.open(a,e);else var h=this.is_framed()?parent.window:window,f=$(h),l=f.width(),f=bw.mz?$("body",h).height():f.height(),g=window.open(a,e,"width="+Math.min(b?this.env.popup_width_small:this.env.popup_width,l)+",height="+f+",top="+((h.screenTop||h.screenY)+20)+",left="+((h.screenLeft||h.screenX)+20)+",resizable=yes,location=no,scrollbars=yes"+(d?",toolbar=yes,menubar=yes,status=yes":
|
||||
",toolbar=no,menubar=no,status=no"));if(!g||g.closed)this.display_message(this.get_label("windowopenerror"),"warning");else return!a&&g.document&&g.document.write("<html><body>"+this.get_label("loading")+"</body></html>"),this.triggerEvent("openwindow",{url:a,handle:g}),setTimeout(function(){g&&g.focus()},10),g};this.init_message_row=function(a){var b={},d=a.uid,e=(null!=this.env.status_col?"status":"msg")+"icn"+a.id;d&&this.env.messages[d]&&$.extend(a,this.env.messages[d]);if(a.icon=document.getElementById(e))b.icon=
|
||||
function(a){f.command("toggle_status",d)};a.msgicon=null!=this.env.status_col?document.getElementById("msgicn"+a.id):a.icon;null!=this.env.flagged_col&&(a.flagicon=document.getElementById("flagicn"+a.id))&&(b.flagicon=function(a){f.command("toggle_flag",d)});!a.depth&&a.has_children&&(a.expando=document.getElementById("rcmexpando"+a.id))&&(b.expando=function(a){f.expand_message_row(a,d)});$.each(b,function(b,d){a[b].onclick=function(a){d(a);return rcube_event.cancel(a)};bw.touch&&a[b].addEventListener&&
|
||||
a[b].addEventListener("touchend",function(a){if(1==a.changedTouches.length)return d(a),rcube_event.cancel(a)},!1)});this.triggerEvent("insertrow",{uid:d,row:a})};this.add_message_row=function(a,b,d,e){if(!this.gui_objects.messagelist||!this.message_list||d.mbox!=this.env.mailbox&&!d.skip_mbox_check)return!1;this.env.messages[a]||(this.env.messages[a]={});$.extend(this.env.messages[a],{deleted:d.deleted?1:0,replied:d.answered?1:0,unread:d.seen?0:1,forwarded:d.forwarded?1:0,flagged:d.flagged?1:0,has_children:d.has_children?
|
||||
1:0,depth:d.depth?d.depth:0,unread_children:d.unread_children||0,flagged_children:d.flagged_children||0,parent_uid:d.parent_uid||0,selected:this.select_all_mode||this.message_list.in_selection(a),ml:d.ml?1:0,ctype:d.ctype,mbox:d.mbox,flags:d.extra_flags});var g,h,f,l,m="",n=f="",p="",q=this.message_list;l=q.rows;var t=this.env.messages[a],u=this.html_identifier(a,!0),w="message"+(d.seen?"":" unread")+(d.deleted?" deleted":"")+(d.flagged?" flagged":"")+(t.selected?" selected":""),x={cols:[],style:{},
|
||||
id:"rcmrow"+u,uid:a};g="msgicon";null===this.env.status_col&&(g+=" status",d.deleted?(m+=" deleted",f+=this.get_label("deleted")+" "):d.seen?0<d.unread_children&&(m+=" unreadchildren"):(m+=" unread",f+=this.get_label("unread")+" "));d.answered&&(m+=" replied",f+=this.get_label("replied")+" ");d.forwarded&&(m+=" forwarded",f+=this.get_label("forwarded")+" ");t.selected&&!q.in_selection(a)&&q.selection.push(a);this.env.threading&&(t.depth?(n+='<span id="rcmtab'+u+'" class="branch" style="width:'+15*
|
||||
t.depth+'px;"> </span>',l[t.parent_uid]&&!1===l[t.parent_uid].expanded||!(0!=this.env.autoexpand_threads&&2!=this.env.autoexpand_threads||l[t.parent_uid]&&l[t.parent_uid].expanded)?(x.style.display="none",t.expanded=!1):t.expanded=!0,w+=" thread expanded"):t.has_children&&(void 0===t.expanded&&(1==this.env.autoexpand_threads||2==this.env.autoexpand_threads&&t.unread_children)&&(t.expanded=!0),p='<div id="rcmexpando'+x.id+'" class="'+(t.expanded?"expanded":"collapsed")+'"> </div>',
|
||||
w+=" thread"+(t.expanded?" expanded":"")),d.unread_children&&d.seen&&!t.expanded&&(w+=" unroot"),d.flagged_children&&!t.expanded&&(w+=" flaggedroot"));n+='<span id="msgicn'+x.id+'" class="'+g+m+'" title="'+f+'"></span>';x.className=w;b.subject&&(g=d.mbox==this.env.drafts_mailbox?"compose":"show",f={_mbox:d.mbox},f[d.mbox==this.env.drafts_mailbox?"_draft_uid":"_uid"]=a,b.subject='<a href="'+this.url(g,f)+'" onclick="return rcube_event.keyboard_only(event)" onmouseover="rcube_webmail.long_subject_title(this,'+
|
||||
(t.depth+1)+')" tabindex="-1"><span>'+b.subject+"</span></a>");for(h in this.env.listcols)g=this.env.listcols[h],f={className:String(g).toLowerCase(),events:{}},this.env.coltypes[g]&&this.env.coltypes[g].hidden&&(f.className+=" hidden"),"flag"==g?(g=d.flagged?"flagged":"unflagged",l=this.get_label(g),g='<span id="flagicn'+x.id+'" class="'+g+'" title="'+l+'"></span>'):"attachment"==g?(l=this.get_label("withattachment"),g=d.attachmentClass?'<span class="'+d.attachmentClass+'" title="'+l+'"></span>':
|
||||
/application\/|multipart\/(m|signed)/.test(d.ctype)?'<span class="attachment" title="'+l+'"></span>':/multipart\/report/.test(d.ctype)?'<span class="report"></span>':"multipart/encrypted"==d.ctype||"application/pkcs7-mime"==d.ctype?'<span class="encrypted"></span>':" "):"status"==g?(l="",d.deleted?(g="deleted",l=this.get_label("deleted")):d.seen?g=0<d.unread_children?"unreadchildren":"msgicon":(g="unread",l=this.get_label("unread")),g='<span id="statusicn'+x.id+'" class="'+g+m+'" title="'+l+
|
||||
'"></span>'):"threads"==g?g=p:"subject"==g?g=n+b[g]:"priority"==g?0<d.prio&&6>d.prio?(l=this.get_label("priority")+" "+d.prio,g='<span class="prio'+d.prio+'" title="'+l+'"></span>'):g=" ":g="folder"==g?'<span onmouseover="rcube_webmail.long_subject_title(this)">'+b[g]+"<span>":b[g],f.innerHTML=g,x.cols.push(f);"widescreen"==this.env.layout&&(x=this.widescreen_message_row(x,a,t));q.insert_row(x,e);e&&this.env.pagesize&&q.rowcount>this.env.pagesize&&(a=q.get_last_row(),q.remove_row(a),q.clear_selection(a))};
|
||||
this.widescreen_message_row=function(a,b,d){var e=document.createElement("tr");e.id=a.id;e.uid=a.uid;e.className=a.className;a.style&&$.extend(e.style,a.style);$.each(this.env.widescreen_list_template,function(){if(f.env.threading||"threads"!=this.className){var b,d,k,l=document.createElement("td");this.className&&(l.className=this.className);for(b=0;this.cells&&b<this.cells.length;b++)for(d=0;a.cols&&d<a.cols.length;d++)if(this.cells[b]==a.cols[d].className){d=a.cols[d];k=document.createElement("span");
|
||||
k.className=this.cells[b];"subject"==this.className&&"subject"!=k.className&&(k.className+=" skip-on-drag");d.innerHTML&&(k.innerHTML=d.innerHTML);l.appendChild(k);break}e.appendChild(l)}});this.env.threading&&d.depth&&($("td.subject",e).attr("style","padding-left:"+Math.min(90,15*d.depth)+"px !important"),$("span.branch",e).remove());return e};this.set_list_sorting=function(a,b){var d="arrival"==a?"date":a;$("#rcm"+("arrival"==this.env.sort_col?"date":this.env.sort_col)).removeClass("sorted"+this.env.sort_order.toUpperCase());
|
||||
d&&$("#rcm"+d).addClass("sorted"+b);$("#rcmdate > a").prop("rel","arrival"==a?"arrival":"date");this.env.sort_col=a;this.env.sort_order=b};this.set_list_options=function(a,b,d,e,g){var h,f={};void 0===b&&(b=this.env.sort_col);d||(d=this.env.sort_order);if(this.env.sort_col!=b||this.env.sort_order!=d)h=1,this.set_list_sorting(b,d);this.env.threading!=e&&(h=1,f._threads=e);g&&this.env.layout!=g&&(this.triggerEvent("layout-change",{old_layout:this.env.layout,new_layout:g}),h=1,this.env.layout=f._layout=
|
||||
g);if(a&&a.length){var l,m=[],n=this.env.listcols;for(e=0;e<n.length;e++)l=n[e],g=$.inArray(l,a),-1!=g&&(m.push(l),delete a[g]);for(e=0;e<a.length;e++)a[e]&&m.push(a[e]);m.join()!=n.join()&&(h=1,f._cols=m.join(","))}h&&this.list_mailbox("","",b+"_"+d,f)};this.show_message=function(a,b,d){if(a){var e,g=window;a=this.params_from_uid(a,{_caps:this.browser_capabilities()});d&&(e=this.get_frame_window(this.env.contentframe))&&(g=e,a._framed=1);b&&(a._safe=1);this.env.search_request&&(a._search=this.env.search_request);
|
||||
this.env.extwin&&(a._extwin=1);a=this.url(d?"preview":"show",a);d&&0<=String(g.location.href).indexOf(a)?this.show_contentframe(!0):d||!this.env.message_extwin||this.env.extwin?this.location_href(a,g,!0):this.open_window(a,!0)}};this.set_unread_message=function(a,b){var d=this;d.message_list||(d=d.opener());!d&&window.parent&&(d=parent.rcmail);d&&d.message_list&&(!1===d.set_message(a,"unread",!1)&&d.set_message(a+"-"+b,"unread",!1),0<d.env.unread_counts[b]&&(--d.env.unread_counts[b],d.set_unread_count(b,
|
||||
d.env.unread_counts[b],"INBOX"==b&&!d.is_multifolder_listing())))};this.show_contentframe=function(a){var b,d,e=this.env.contentframe;if(e&&(b=this.get_frame_element(e)))if(!a&&(d=this.get_frame_window(e)))0>d.location.href.indexOf(this.env.blankpage)&&(d.stop?d.stop():d.document.execCommand("Stop"),d.location.href=this.env.blankpage);else if(!bw.safari&&!bw.konq)$(b)[a?"show":"hide"]();!a&&this.env.frame_lock&&this.set_busy(!1,null,this.env.frame_lock)};this.get_frame_element=function(a){var b;if(a&&
|
||||
(b=document.getElementById(a)))return b};this.get_frame_window=function(a){if((a=this.get_frame_element(a))&&a.name&&window.frames)return window.frames[a.name]};this.lock_frame=function(){this.env.frame_lock||((this.is_framed()?parent.rcmail:this).env.frame_lock=this.set_busy(!0,"loading"))};this.list_page=function(a){"next"==a?a=this.env.current_page+1:"last"==a?a=this.env.pagecount:"prev"==a&&1<this.env.current_page?a=this.env.current_page-1:"first"==a&&1<this.env.current_page&&(a=1);0<a&&a<=this.env.pagecount&&
|
||||
(this.env.current_page=a,"addressbook"==this.task||this.contact_list?this.list_contacts(this.env.source,this.env.group,a):"mail"==this.task&&this.list_mailbox(this.env.mailbox,a))};this.checkmail=function(){var a=this.set_busy(!0,"checkingmail"),b=this.check_recent_params();this.http_post("check-recent",b,a)};this.filter_mailbox=function(a){if(!this.filter_disabled){var b=this.set_busy(!0,"searching");this.clear_message_list();this.env.current_page=1;this.env.search_filter=a;this.http_request("search",
|
||||
this.search_params(!1,a),b)}};this.refresh_list=function(){this.list_mailbox(this.env.mailbox,this.env.current_page||1,null,{_clear:1},!0);this.message_list&&this.message_list.clear_selection()};this.list_mailbox=function(a,b,d,e,g){var h=window;"object"!=typeof e&&(e={});a||(a=this.env.mailbox?this.env.mailbox:"INBOX");d&&(e._sort=d);this.env.mailbox!=a?(b=1,this.env.current_page=b,this.env.search_scope="base",this.select_all_mode=!1,this.reset_search_filter()):this.env.search_request&&(e._search=
|
||||
this.env.search_request);if(!g){this.clear_message_list();if(a!=this.env.mailbox||a==this.env.mailbox&&!b&&!d)e._refresh=1;this.select_folder(a,"",!0);this.unmark_folder(a,"recent","",!0);this.env.mailbox=a}if(this.gui_objects.messagelist)this.list_mailbox_remote(a,b,e);else{if(d=this.get_frame_window(this.env.contentframe))h=d,e._framed=1;this.env.uid&&(e._uid=this.env.uid);a&&(this.set_busy(!0,"loading"),e._mbox=a,b&&(e._page=b),this.location_href(e,h))}};this.clear_message_list=function(){this.env.messages=
|
||||
{};this.show_contentframe(!1);this.message_list&&this.message_list.clear(!0)};this.list_mailbox_remote=function(a,b,d){var e=this.set_busy(!0,"loading");"object"!=typeof d&&(d={});d._mbox=a;b&&(d._page=b);this.message_list&&(this.message_list.dblclick_time="list"!=this.env.layout?10:this.dblclick_time);this.http_request("list",d,e);this.update_state({_mbox:a,_page:b&&1<b?b:null})};this.update_selection=function(){var a=this.message_list,b=a.selection,d=a.rows,e,g=[];for(e in b)d[b[e]]&&g.push(b[e]);
|
||||
a.selection=g;try{var h=this.get_frame_window(this.env.contentframe).rcmail.env.uid;h&&!a.in_selection(h)&&this.show_contentframe(!1)}catch(k){}};this.expand_unread=function(){for(var a,b=this.message_list.tbody.firstChild;b;)1==b.nodeType&&(a=this.message_list.rows[b.uid])&&a.unread_children&&(this.message_list.expand_all(a),this.set_unread_children(a.uid)),b=b.nextSibling;return!1};this.expand_message_row=function(a,b){var d=this.message_list.rows[b];d.expanded=!d.expanded;this.set_unread_children(b);
|
||||
this.set_flagged_children(b);d.expanded=!d.expanded;this.message_list.expand_row(a,b)};this.expand_threads=function(){if(this.env.threading&&this.env.autoexpand_threads&&this.message_list)switch(this.env.autoexpand_threads){case 2:this.expand_unread();break;case 1:this.message_list.expand_all()}};this.init_threads=function(a,b){if(b&&b!=this.env.mailbox)return!1;for(var d=0,e=a.length;d<e;d++)this.add_tree_icons(a[d]);this.expand_threads()};this.add_tree_icons=function(a){var b,d,e,g,h=[],f=[],l,
|
||||
m=this.message_list.rows;for(l=a?m[a]?m[a].obj:null:this.message_list.tbody.firstChild;l;){if(1==l.nodeType&&(d=m[l.uid]))if(d.depth){for(b=h.length-1;0<=b&&!(e=h[b].length,e>d.depth?(g=e-d.depth,h[b][g]&2||(h[b][g]=h[b][g]?h[b][g]+2:2)):e==d.depth&&(h[b][0]&2||(h[b][0]+=2)),d.depth>e);b--);h.push(Array(d.depth));h[h.length-1][0]=1;f.push(d.uid)}else{if(h.length){for(b in h)this.set_tree_icons(f[b],h[b]);h=[];f=[]}if(a&&l!=m[a].obj)break}l=l.nextSibling}if(h.length)for(b in h)this.set_tree_icons(f[b],
|
||||
h[b])};this.set_tree_icons=function(a,b){var d,e=[],g="",h=b.length;for(d=0;d<h;d++)2<b[d]?e.push({"class":"l3",width:15}):1<b[d]?e.push({"class":"l2",width:15}):0<b[d]?e.push({"class":"l1",width:15}):e.length&&!e[e.length-1]["class"]?e[e.length-1].width+=15:e.push({"class":null,width:15});for(d=e.length-1;0<=d;d--)g=e[d]["class"]?g+('<div class="tree '+e[d]["class"]+'" />'):g+('<div style="width:'+e[d].width+'px" />');g&&$("#rcmtab"+this.html_identifier(a,!0)).html(g)};this.update_thread_root=function(a,
|
||||
b){if(this.env.threading){var d=this.message_list.find_root(a);if(a!=d){var e=this.message_list.rows[d];if("read"==b&&e.unread_children)e.unread_children--;else if("unread"==b&&e.has_children)e.unread_children=(e.unread_children||0)+1;else if("unflagged"==b&&e.flagged_children)e.flagged_children--;else if("flagged"==b&&e.has_children)e.flagged_children=(e.flagged_children||0)+1;else return;this.set_message_icon(d);this.set_unread_children(d);this.set_flagged_children(d)}}};this.update_thread=function(a){if(!this.env.threading)return 0;
|
||||
var b,d,e=0,g=this.message_list.rows,h=g[a],k=g[a].depth,l=[];h.depth||e--;h.depth&&h.unread&&(d=this.message_list.find_root(a),g[d].unread_children--,this.set_unread_children(d));h.depth&&h.flagged&&(d=this.message_list.find_root(a),g[d].flagged_children--,this.set_flagged_children(d));d=h.parent_uid;for(h=h.obj.nextSibling;h;){if(1==h.nodeType&&(b=g[h.uid])){if(!b.depth||b.depth<=k)break;b.depth--;$("#rcmtab"+b.id).width(15*b.depth).html("");b.depth?(b.depth==k&&(b.parent_uid=d),b.unread&&l.length&&
|
||||
l[l.length-1].unread_children++):(e++,b.parent_uid=0,b.has_children&&($("#"+b.id+" .leaf:first").attr("id","rcmexpando"+b.id).attr("class","none"!=b.obj.style.display?"expanded":"collapsed").mousedown({uid:b.uid},function(a){return f.expand_message_row(a,a.data.uid)}),b.unread_children=0,l.push(b)),"none"==b.obj.style.display&&$(b.obj).show())}h=h.nextSibling}for(b=0;b<l.length;b++)this.set_unread_children(l[b].uid),this.set_flagged_children(l[b].uid);return e};this.delete_excessive_thread_rows=function(){for(var a=
|
||||
this.message_list.rows,b=this.message_list.tbody.firstChild,d=this.env.pagesize+1;b;)1==b.nodeType&&(r=a[b.uid])&&(!r.depth&&d&&d--,d||this.message_list.remove_row(b.uid)),b=b.nextSibling};this.set_message_icon=function(a){var b="",d=this.message_list.rows[a];if(!d)return!1;d.icon&&(a="msgicon",d.deleted?(a+=" deleted",b+=this.get_label("deleted")+" "):d.unread?(a+=" unread",b+=this.get_label("unread")+" "):d.unread_children&&(a+=" unreadchildren"),d.msgicon==d.icon&&(d.replied&&(a+=" replied",b+=
|
||||
this.get_label("replied")+" "),d.forwarded&&(a+=" forwarded",b+=this.get_label("forwarded")+" "),a+=" status"),$(d.icon).attr("class",a).attr("title",b));d.msgicon&&d.msgicon!=d.icon&&(b="",a="msgicon",!d.unread&&d.unread_children&&(a+=" unreadchildren"),d.replied&&(a+=" replied",b+=this.get_label("replied")+" "),d.forwarded&&(a+=" forwarded",b+=this.get_label("forwarded")+" "),$(d.msgicon).attr("class",a).attr("title",b));d.flagicon&&(a=d.flagged?"flagged":"unflagged",b=this.get_label(a),$(d.flagicon).attr("class",
|
||||
a).attr("aria-label",b).attr("title",b))};this.set_message_status=function(a,b,d){var e=this.message_list.rows[a];if(!e)return!1;"unread"==b?e.unread!=d&&this.update_thread_root(a,d?"unread":"read"):"flagged"==b&&this.update_thread_root(a,d?"flagged":"unflagged");-1<$.inArray(b,["unread","deleted","replied","forwarded","flagged"])&&(e[b]=d)};this.set_message=function(a,b,d){var e=this.message_list&&this.message_list.rows[a];if(!e)return!1;b&&this.set_message_status(a,b,d);if(-1<$.inArray(b,["unread",
|
||||
"deleted","flagged"]))$(e.obj)[e[b]?"addClass":"removeClass"](b);this.set_unread_children(a);this.set_message_icon(a)};this.set_unread_children=function(a){a=this.message_list.rows[a];if(!a.parent_uid){var b=!a.unread&&a.unread_children&&!a.expanded;$(a.obj)[b?"addClass":"removeClass"]("unroot")}};this.set_flagged_children=function(a){a=this.message_list.rows[a];if(!a.parent_uid){var b=a.flagged_children&&!a.expanded;$(a.obj)[b?"addClass":"removeClass"]("flaggedroot")}};this.copy_messages=function(a,
|
||||
b){if(a&&"object"===typeof a)a=a.id;else if(!a)return this.folder_selector(b,function(a){f.command("copy",a)});if(a&&a!=this.env.mailbox){var d=this.selection_post_data({_target_mbox:a});d._uid&&this.http_post("copy",d,this.display_message(this.get_label("copyingmessage"),"loading"))}};this.move_messages=function(a,b){if(a&&"object"===typeof a)a=a.id;else if(!a)return this.folder_selector(b,function(a){f.command("move",a)});if(a&&(a!=this.env.mailbox||this.is_multifolder_listing())){var d=!1,e=this.selection_post_data({_target_mbox:a});
|
||||
e._uid&&("show"==this.env.action?d=this.set_busy(!0,"movingmessage"):this.show_contentframe(!1),this.enable_command(this.env.message_commands,!1),this.with_selected_messages("move",e,d))}};this.delete_messages=function(a){var b=this.message_list,d=this.env.trash_mailbox;if(this.env.flag_for_deletion)return this.mark_message("delete"),!1;d&&this.env.mailbox!=d?this.env.delete_junk&&this.env.junk_mailbox&&this.env.mailbox==this.env.junk_mailbox?this.permanently_remove_messages():b&&b.modkey==SHIFT_KEY||
|
||||
a&&rcube_event.get_modifier(a)==SHIFT_KEY?confirm(this.get_label("deletemessagesconfirm"))&&this.permanently_remove_messages():this.move_messages(d):this.permanently_remove_messages();return!0};this.permanently_remove_messages=function(){var a=this.selection_post_data();a._uid&&(this.show_contentframe(!1),this.with_selected_messages("delete",a))};this.with_selected_messages=function(a,b,d,e){var g=0,h="delete"==a||!this.is_multifolder_listing();if(this.message_list){var f,l,m,n=[],p=this.message_list.get_selection();
|
||||
f=0;for(len=p.length;f<len;f++)l=p[f],this.env.threading&&(g+=this.update_thread(l),m=this.message_list.find_root(l),m!=l&&0>$.inArray(m,n)&&n.push(m)),h&&this.message_list.remove_row(l,this.env.display_next&&f==p.length-1);!this.env.display_next&&h&&this.message_list.clear_selection();f=0;for(len=n.length;f<len;f++)this.add_tree_icons(n[f])}0>g?b._count=-1*g:0<g&&h&&this.delete_excessive_thread_rows();h||(b._refresh=1);d||(d=this.display_message(this.get_label("move"==a?"movingmessage":"deletingmessage"),
|
||||
"loading"));this.http_post(e||a,b,d)};this.selection_post_data=function(a){"object"!=typeof a&&(a={});a._mbox=this.env.mailbox;if(!a._uid){var b=this.env.uid?[this.env.uid]:this.message_list.get_selection();a._uid=this.uids_to_list(b)}this.env.action&&(a._from=this.env.action);this.env.search_request&&(a._search=this.env.search_request);this.env.display_next&&this.env.next_uid&&(a._next_uid=this.env.next_uid);return a};this.mark_message=function(a,b){var d=[],e=[],g,h,f,l=this.message_list;b?d[0]=
|
||||
b:this.env.uid?d[0]=this.env.uid:l&&(d=l.get_selection());if(l)for(l.focus(),h=0,g=d.length;h<g;h++)f=d[h],("read"==a&&l.rows[f].unread||"unread"==a&&!l.rows[f].unread||"delete"==a&&!l.rows[f].deleted||"undelete"==a&&l.rows[f].deleted||"flagged"==a&&!l.rows[f].flagged||"unflagged"==a&&l.rows[f].flagged)&&e.push(f);else e=d;if(e.length||this.select_all_mode)switch(a){case "read":case "unread":this.toggle_read_status(a,e);break;case "delete":case "undelete":this.toggle_delete_status(e);break;case "flagged":case "unflagged":this.toggle_flagged_status(a,
|
||||
d)}};this.toggle_read_status=function(a,b){var d,e=b.length,g=this.selection_post_data({_uid:this.uids_to_list(b),_flag:a}),h=this.display_message(this.get_label("markingmessage"),"loading");for(d=0;d<e;d++)this.set_message(b[d],"unread","unread"==a?!0:!1);this.http_post("mark",g,h)};this.toggle_flagged_status=function(a,b){var d,e=b.length,g=this.selection_post_data({_uid:this.uids_to_list(b),_flag:a}),h=this.display_message(this.get_label("markingmessage"),"loading");for(d=0;d<e;d++)this.set_message(b[d],
|
||||
"flagged","flagged"==a?!0:!1);this.http_post("mark",g,h)};this.toggle_delete_status=function(a){var b=a.length,d,e,g=!0,h=this.message_list?this.message_list.rows:{};if(1==b)return!this.message_list||h[a[0]]&&!h[a[0]].deleted?this.flag_as_deleted(a):this.flag_as_undeleted(a),!0;for(d=0;d<b;d++)if(e=a[d],h[e]&&!h[e].deleted){g=!1;break}g?this.flag_as_undeleted(a):this.flag_as_deleted(a);return!0};this.flag_as_undeleted=function(a){var b,d=a.length,e=this.selection_post_data({_uid:this.uids_to_list(a),
|
||||
_flag:"undelete"}),g=this.display_message(this.get_label("markingmessage"),"loading");for(b=0;b<d;b++)this.set_message(a[b],"deleted",!1);this.http_post("mark",e,g)};this.flag_as_deleted=function(a){for(var b=[],d=this.selection_post_data({_uid:this.uids_to_list(a),_flag:"delete"}),e=this.display_message(this.get_label("markingmessage"),"loading"),g=this.message_list?this.message_list.rows:{},h=0,f=0,l=a.length;f<l;f++)uid=a[f],g[uid]&&(g[uid].unread&&(b[b.length]=uid),this.env.skip_deleted?(h+=this.update_thread(uid),
|
||||
this.message_list.remove_row(uid,this.env.display_next&&f==this.message_list.selection.length-1)):this.set_message(uid,"deleted",!0));this.env.skip_deleted&&this.message_list&&(this.env.display_next||this.message_list.clear_selection(),0>h?d._count=-1*h:0<h&&this.delete_excessive_thread_rows());b.length&&(d._ruid=this.uids_to_list(b));this.env.skip_deleted&&this.env.display_next&&this.env.next_uid&&(d._next_uid=this.env.next_uid);this.http_post("mark",d,e)};this.flag_deleted_as_read=function(a){var b,
|
||||
d,e,g=this.message_list?this.message_list.rows:{};"string"==typeof a&&(a=a.split(","));d=0;for(e=a.length;d<e;d++)b=a[d],g[b]&&this.set_message(b,"unread",!1)};this.uids_to_list=function(a){return this.select_all_mode?"*":1>=a.length?a.join(","):a};this.set_button_titles=function(){var a="deletemessage";this.env.flag_for_deletion||!this.env.trash_mailbox||this.env.mailbox==this.env.trash_mailbox||this.env.delete_junk&&this.env.junk_mailbox&&this.env.mailbox==this.env.junk_mailbox||(a="movemessagetotrash");
|
||||
this.set_alttext("delete",a)};this.init_pagejumper=function(a){$(a).addClass("rcpagejumper").on("focus",function(b){var d,e="";for(d=1;d<=f.env.pagecount;d++)e+="<li>"+d+"</li>";e='<ul class="toolbarmenu">'+e+"</ul>";f.pagejump||(f.pagejump=$('<div id="pagejump-selector" class="popupmenu"></div>').appendTo(document.body).on("click","li",function(){f.busy||$(a).val($(this).text()).change()}));f.pagejump.data("count")!=d&&f.pagejump.html(e);f.pagejump.attr("rel","#"+this.id).data("count",d);f.show_menu("pagejump-selector",
|
||||
!0,b);$(this).keydown()}).on("keydown keyup click",function(b){var d=$("#pagejump-selector"),e=$("ul",d),g=$("li",e);e.height();var h=parseInt(this.value);if(27!=b.which&&9!=b.which&&13!=b.which&&!d.is(":visible"))return f.show_menu("pagejump-selector",!0,b);if("keydown"==b.type)if(40==b.which)g.length>h&&(this.value=h+=1);else if(38==b.which)1<h&&g.length>h-1&&(this.value=--h);else{if(13==b.which)return $(this).change();if(27==b.which||9==b.which)return $(a).val(f.env.current_page)}$("li.selected",
|
||||
e).removeClass("selected");(b=$(g[h-1])).length&&(b.addClass("selected"),$("#pagejump-selector").scrollTop(e.height()/g.length*(h-1)-d.height()/2))}).on("change",function(a){(a=parseInt(this.value))&&a!=f.env.current_page&&!f.busy&&(f.hide_menu("pagejump-selector"),f.list_page(a))})};this.update_pagejumper=function(){$("input.rcpagejumper").val(this.env.current_page).prop("disabled",2>this.env.pagecount)};this.check_mailvelope=function(a){if("undefined"!==typeof window.mailvelope)this.mailvelope_load(a);
|
||||
else $(window).on("mailvelope",function(){f.mailvelope_load(a)})};this.mailvelope_load=function(a){this.env.browser_capabilities&&(this.env.browser_capabilities.pgpmime=1);var b=this.env.user_id;mailvelope.getKeyring(b).then(function(b){f.mailvelope_keyring=b;f.mailvelope_init(a,b)},function(d){mailvelope.createKeyring(b).then(function(b){f.mailvelope_keyring=b;f.mailvelope_init(a,b)},function(a){console.error(a)})})};this.mailvelope_init=function(a,b){if(window.mailvelope)if("show"==a||"preview"==
|
||||
a||"print"==a)if(this.env.is_pgp_content){var d=$(this.env.is_pgp_content).text();f.mailvelope_display_container(this.env.is_pgp_content,d,b)}else{if(this.env.pgp_mime_part){var e=this.display_message(this.get_label("loadingdata"),"loading"),g=this.env.pgp_mime_container;$.ajax({type:"GET",url:this.url("get",{_mbox:this.env.mailbox,_uid:this.env.uid,_part:this.env.pgp_mime_part}),error:function(a,b,d){f.http_error(a,b,d,e)},success:function(a){f.mailvelope_display_container(g,a,b,e)}})}}else if("compose"==
|
||||
a){this.env.compose_commands.push("compose-encrypted");var h=0<$('input[name="_is_html"]').val();if(this.env.pgp_mime_message){var k=this.set_busy(!0,this.get_label("loadingdata"));$.ajax({type:"GET",url:this.url("get",this.env.pgp_mime_message),error:function(a,b,d){f.http_error(a,b,d,k);f.enable_command("compose-encrypted",!h)},success:function(a){f.set_busy(!1,null,k);h&&(f.command("toggle-editor",{html:!1,noconvert:!0}),$("#"+f.env.composebody).val(""));f.compose_encrypted({quotedMail:a});f.enable_command("compose-encrypted",
|
||||
!0)}})}else this.enable_command("compose-encrypted",!h);this.addEventListener("actionafter",function(a){a.ret&&"toggle-editor"==a.action&&f.enable_command("compose-encrypted",!a.props.html)})}};this.compose_encrypted=function(a){var b,d=$("#"+this.env.composebody).parent();f.mailvelope_editor?(f.mailvelope_editor=null,f.compose_skip_unsavedcheck=!1,f.set_button("compose-encrypted","act"),d.removeClass("mailvelope").find("iframe:not([aria-hidden=true])").remove(),$("#"+f.env.composebody).show(),$("[name='_pgpmime']").remove(),
|
||||
f.enable_command("spellcheck","insert-sig","toggle-editor","insert-response","save-response",!0),f.triggerEvent("compose-encrypted",{active:!1})):(this.spellcheck_state()&&this.editor.spellcheck_stop(),b=a.quotedMail?{quotedMail:a.quotedMail,quotedMailIndent:!1}:{predefinedText:$("#"+this.env.composebody).val()},"reply"==this.env.compose_mode&&(b.quotedMailIndent=!0,b.quotedMailHeader=this.env.compose_reply_header),mailvelope.createEditorContainer("#"+d.attr("id"),f.mailvelope_keyring,b).then(function(a){f.mailvelope_editor=
|
||||
a;f.compose_skip_unsavedcheck=!0;f.set_button("compose-encrypted","sel");d.addClass("mailvelope");$("#"+f.env.composebody).hide();f.enable_command("spellcheck","insert-sig","toggle-editor","insert-response","save-response",!1);f.triggerEvent("compose-encrypted",{active:!0});f.env.attachments&&!$.isEmptyObject(f.env.attachments)&&(alert(f.get_label("encryptnoattachments")),$.each(f.env.attachments,function(a,b){f.remove_from_attachment_list(a)}))},function(a){console.error(a);console.log(b)}))};this.mailvelope_submit_messageform=
|
||||
function(a,b){var d=[];$.each(["to","cc","bcc"],function(a,b){for(var e,g=$.trim($('[name="_'+b+'"]').val());g.length&&rcube_check_email(g,!0);)e=RegExp.$2,d.push(e),g=g.substr(g.indexOf(e)+e.length+1).replace(/^\s*,\s*/,"")});var e=0<d.length;f.mailvelope_keyring.validKeyForAddress(d).then(function(g){var h=[];$.each(g,function(a,b){!1===b&&(e=!1,h.push(a))});if(!e&&h.length)return f.simple_dialog(f.get_label("nopubkeyfor").replace("$email",h.join(", "))+"<p>"+f.get_label("searchpubkeyservers")+
|
||||
"</p>","encryptedsendialog",function(){f.mailvelope_search_pubkeys(h,function(){return!0})},{button:"search"}),!1;if(!e)return d.length||(alert(f.get_label("norecipientwarning")),$("[name='_to']").focus()),!1;var k=[],l=f.env.identities[$("[name='_from'] option:selected").val()];$.each(f.env.identities,function(a,b){k.push(b.email)});f.mailvelope_keyring.validKeyForAddress(k).then(function(e){valid_sender=null;$.each(e,function(a,b){if(!1!==b&&(valid_sender=a,valid_sender==l))return!1});if(!valid_sender&&
|
||||
!confirm(f.get_label("nopubkeyforsender")))return!1;d.push(valid_sender);f.mailvelope_editor.encrypt(d).then(function(d){var e=f.gui_objects.messageform,g=$("[name='_pgpmime']",e),h=f.set_busy(!0,a||b?"savingmessage":"sendingmessage");e.target="savetarget";e._draft.value=a?"1":"";e.action=f.add_url(e.action,"_unlock",h);e.action=f.add_url(e.action,"_framed",1);b&&(e.action=f.add_url(e.action,"_saveonly",1));g.length||(g=$('<input type="hidden" name="_pgpmime">').appendTo(e));g.val(d);e.submit()},
|
||||
function(a){console.log(a)})},function(a){console.error(a)})},function(a){console.error(a)});return!1};this.mailvelope_display_container=function(a,b,d,e){var g=function(b){$(a+" > iframe").remove();f.hide_message(e);f.display_message(b.message,"error")};mailvelope.createDisplayContainer(a,b,d,{showExternalContent:this.env.safemode}).then(function(b){if(b.error&&b.error.message)return g(b.error);f.hide_message(e);$(a).addClass("mailvelope").children().not("iframe").hide();f.env.pgp_mime_part&&$("#attach"+
|
||||
f.env.pgp_mime_part).remove();setTimeout(function(){$(window).resize()},10)},g)};this.mailvelope_search_pubkeys=function(a,b,d){var e=[],g=new PublicKey,h=f.display_message(f.get_label("loading"),"loading");$.each(a,function(a,b){var d=$.Deferred();g.search(b,function(a,e){null!==e?d.resolve([b]):d.resolve([b].concat(a))});e.push(d)});$.when.apply($,e).then(function(){var a=[],e=[];$.each(arguments,function(b,d){var g=d.shift();d.length?e=e.concat(d):a.push(g)});f.hide_message(h);b(!0);e.length&&
|
||||
f.mailvelope_key_import_dialog(e,d);a.length&&f.display_message(f.get_label("nopubkeyfor").replace("$email",a.join(", ")),"warning")}).fail(function(){console.error("Pubkey lookup failed with",arguments);f.hide_message(h);f.display_message("pubkeysearcherror","error");b(!1)})};this.mailvelope_key_import_dialog=function(a,b){var d=$("<div>").addClass("listing pgpkeyimport");$.each(a,function(a,b){var e=$("<div>").addClass("key");b.revoked&&e.addClass("revoked");b.disabled&&e.addClass("disabled");b.expired&&
|
||||
e.addClass("expired");e.append($("<label>").addClass("keyid").text(f.get_label("keyid")));e.append($("<a>").text(b.keyid.substr(-8).toUpperCase()).attr("href",b.info).attr("target","_blank").attr("tabindex","-1"));e.append($("<label>").addClass("keylen").text(f.get_label("keylength")));e.append($("<span>").text(b.keylen));b.expirationdate&&(e.append($("<label>").addClass("keyexpired").text(f.get_label("keyexpired"))),e.append($("<span>").text((new Date(1E3*b.expirationdate)).toDateString())));b.revoked&&
|
||||
e.append($("<span>").addClass("keyrevoked").text(f.get_label("keyrevoked")));var g=$("<ul>").addClass("uids");$.each(b.uids,function(a,b){var d=$("<li>").addClass("uid");b.revoked&&d.addClass("revoked");b.disabled&&d.addClass("disabled");b.expired&&d.addClass("expired");g.append(d.text(b.uid))});e.append(g);e.append($("<input>").attr("type","button").attr("rel",b.keyid).attr("value",f.get_label("import")).addClass("button importkey").prop("disabled",b.revoked||b.disabled||b.expired));d.append(e)});
|
||||
f.show_popup_dialog($("<div>").append($("<p>").html(f.get_label("encryptpubkeysfound"))).append(d),f.get_label("importpubkeys"),[{text:f.get_label("close"),click:function(){(f.is_framed()?parent.$:$)(this).dialog("close")}}]);d.on("click","input.button.importkey",function(){var a=$(this),d=a.attr("rel"),h=new PublicKey,k=f.display_message(f.get_label("loading"),"loading");h.get(d,function(e,g){f.hide_message(k);g?f.display_message(f.get_label("keyservererror"),"error"):b?b(e):f.mailvelope_keyring.importPublicKey(e).then(function(b){"REJECTED"!==
|
||||
b&&(b=d.substr(-8).toUpperCase(),a.closest(".key").fadeOut(),f.display_message(f.get_label("keyimportsuccess").replace("$key",b),"confirmation"))},function(a){console.log(a)})})})};this.expunge_mailbox=function(a){var b,d={_mbox:a};a==this.env.mailbox&&(b=this.set_busy(!0,"loading"),d._reload=1,this.env.search_request&&(d._search=this.env.search_request));this.http_post("expunge",d,b)};this.purge_mailbox=function(a){var b,d={_mbox:a};if(!confirm(this.get_label("purgefolderconfirm")))return!1;a==this.env.mailbox&&
|
||||
(b=this.set_busy(!0,"loading"),d._reload=1);this.http_post("purge",d,b)};this.purge_mailbox_test=function(){return this.env.exists&&(this.env.mailbox==this.env.trash_mailbox||this.env.mailbox==this.env.junk_mailbox||this.env.mailbox.startsWith(this.env.trash_mailbox+this.env.delimiter)||this.env.mailbox.startsWith(this.env.junk_mailbox+this.env.delimiter))};this.mark_all_read=function(a,b){var d,e,g=[];e=this.message_list;var h=a||this.env.mailbox,k={_uid:"*",_flag:"read",_mbox:h,_folders:b};if("string"!=
|
||||
typeof b){d=this.mark_all_read_state(h);if(!d)return;if(1<d){$.each({cur:1,sub:2,all:4},function(a,b){var e=$("<label>").attr("style","display:block; line-height:22px"),h=$("<span>").text(f.get_label("folders-"+a)),k=$("<input>").attr({type:"radio",value:a,name:"mode"});d&b||(e.attr("class","disabled"),k.attr("disabled",!0));g.push(e.append(k).append(h))});e=$("<div>").append(g);$("input:not([disabled]):first",e).attr("checked",!0);this.show_popup_dialog(e,this.get_label("markallread"),[{"class":"mainaction",
|
||||
text:this.get_label("mark"),click:function(){f.mark_all_read(h,$("input:checked",this).val());$(this).dialog("close")}},{text:this.get_label("cancel"),click:function(){$(this).dialog("close")}}]);return}k._folders="cur"}$.each(e?e.rows:[],function(a,d){if(d.unread){var e=f.env.messages[a].mbox;("all"==b||e==f.env.mailbox||"sub"==b&&e.startsWith(f.env.mailbox+f.env.delimiter))&&f.set_message(a,"unread",!1)}});this.http_post("mark",k,this.display_message(this.get_label("markingmessage"),"loading"))};
|
||||
this.mark_all_read_state=function(a){var b=0,d=this.treelist.get_item(a||this.env.mailbox);a=$(d).is(".unread")?1:0;var d=$("li.unread",d).length,e=$("li.unread",f.gui_objects.folderlist).length,b=b+a+(d?2:0)+(e>a+d?4:0);this.enable_command("mark-all-read",0<b);return b};this.login_user_keyup=function(a){var b=rcube_event.get_keycode(a),d=$("#rcmloginpwd");return 13==b&&d.length&&!d.val()?(d.focus(),rcube_event.cancel(a)):!0};this.open_compose_step=function(a){a=this.url("mail/compose",a);this.env.compose_extwin&&
|
||||
!this.env.extwin?this.open_window(a):(this.redirect(a),this.env.extwin&&window.resizeTo(Math.max(this.env.popup_width,$(window).width()),$(window).height()+24))};this.init_messageform=function(){if(!this.gui_objects.messageform)return!1;var a,b,d=$("[name='_from']"),e=$("[name='_to']"),g=$("input[name='_subject']"),f=$("[name='_message']").get(0),k="1"==$("input[name='_is_html']").val(),l=["cc","bcc","replyto","followupto"],m,n=this.opener();n&&"compose"==n.env.action&&(setTimeout(function(){1<opener.history.length?
|
||||
opener.history.back():n.redirect(n.get_task_url("mail"))},100),this.env.opened_extwin=!0);0<this.env.autocomplete_threads&&(m={threads:this.env.autocomplete_threads,sources:this.env.autocomplete_sources});this.init_address_input_events(e,m);for(a in l)this.init_address_input_events($("[name='_"+l[a]+"']"),m);k||(a=this.env.top_posting&&this.env.compose_mode?0:f.value.length,"select-one"==d.prop("type")&&this.change_identity(d[0]),this.set_caret_pos(f,a),a&&$(f).scrollTop(f.scrollHeight));this.env.save_localstorage&&
|
||||
this.compose_restore_dialog(0,k);""==e.val()?b=e:""==g.val()?b=g:f&&(b=f);$(b).filter(":visible").focus();this.env.compose_focus_elem=document.activeElement;this.compose_field_hash(!0);this.auto_save_start()};this.compose_restore_dialog=function(a,b){var d,e,g,h=this.local_storage_get_item("compose.index",[]),k=function(a){++a<h.length&&f.compose_restore_dialog(a,b)};for(d=a||0;d<h.length;d++)if(e=h[d],g=this.local_storage_get_item("compose."+e,null,!0)){if(g.changed&&e==this.env.compose_id){this.restore_compose_form(e,
|
||||
b);break}if(!(this.env.draft_id&&g.draft_id&&g.draft_id!=this.env.draft_id||this.env.reply_msgid&&g.reply_msgid!=this.env.reply_msgid)&&g.changed&&g.session!=this.env.session_id){this.show_popup_dialog(this.get_label("restoresavedcomposedata").replace("$date",(new Date(g.changed)).toLocaleString()).replace("$subject",g._subject).replace(/\n/g,"<br/>"),this.get_label("restoremessage"),[{text:this.get_label("restore"),"class":"mainaction",click:function(){f.restore_compose_form(e,b);f.remove_compose_data(e);
|
||||
f.save_compose_form_local();$(this).dialog("close")}},{text:this.get_label("delete"),"class":"delete",click:function(){f.remove_compose_data(e);$(this).dialog("close");k(d)}},{text:this.get_label("ignore"),click:function(){$(this).dialog("close");k(d)}}]);break}}};this.init_address_input_events=function(a,b){this.env.recipients_delimiter=this.env.recipients_separator+" ";a.keydown(function(a){return f.ksearch_keydown(a,this,b)}).attr({autocomplete:"off","aria-autocomplete":"list","aria-expanded":"false",
|
||||
role:"combobox"})};this.submit_messageform=function(a,b){var d=this.gui_objects.messageform;if(d){if(!b&&this.env.is_sent)return this.simple_dialog(this.get_label("messageissent"),"",function(){f.submit_messageform(!1,!0);return!0});if(this.mailvelope_editor)return this.mailvelope_submit_messageform(a,b);var e=this.set_busy(!0,a||b?"savingmessage":"sendingmessage"),g=this.spellcheck_lang(),h=[];$("li",this.gui_objects.attachmentlist).each(function(){h.push(this.id.replace(/^rcmfile/,""))});$('input[name="_attachments"]',
|
||||
d).val(h.join());d.target="savetarget";d._draft.value=a?"1":"";d.action=this.add_url(d.action,"_unlock",e);d.action=this.add_url(d.action,"_lang",g);d.action=this.add_url(d.action,"_framed",1);b&&(d.action=this.add_url(d.action,"_saveonly",1));this.submit_timer=setTimeout(function(){f.set_busy(!1,null,e);f.display_message(f.get_label("requesttimedout"),"error")},1E3*this.env.request_timeout);d.submit()}};this.compose_recipient_select=function(a){var b,d,e=0;for(d=0;d<a.selection.length;d++)b=a.selection[d],
|
||||
this.env.contactdata[b]&&e++;this.enable_command("add-recipient",e)};this.compose_add_recipient=function(a){a||(a=$(this.env.focused_field).filter(":visible"),a=a.length?a.attr("id").replace("_",""):"to");var b=[],d=$("#_"+a),e=this.env.recipients_delimiter;if(this.contact_list&&this.contact_list.selection.length)for(var g,f=0;f<this.contact_list.selection.length;f++)if((g=this.contact_list.selection[f])&&this.env.contactdata[g]&&(b.push(this.env.contactdata[g]),"E"==g.charAt(0)&&0>this.env.contactdata[g].indexOf("@")&&
|
||||
d.length)){var k=g.substr(1);this.group2expand[k]={name:this.env.contactdata[g],input:d.get(0)};this.http_request("group-expand",{_source:this.env.source,_gid:k},!1)}b.length&&d.length&&(g=d.val(),f=new RegExp(RegExp.escape(e)+"\\s*$"),g&&!f.test(g)&&(g+=e+" "),d.val(g+b.join(e+" ")+e+" ").change(),this.triggerEvent("add-recipient",{field:a,recipients:b}));return b.length};this.check_compose_input=function(a,b){var d,e,g,h=this.env.max_disclosed_recipients,k=$("[name='_to']"),l=$("[name='_cc']"),
|
||||
m=$("[name='_bcc']"),n=$("[name='_from']"),p=$("[name='_subject']"),q=function(a){a=$.map(a,function(a){a=$.trim(a.val());return a.length?a:null});return a.join(",").replace(/^[\s,;]+/,"").replace(/[\s,;]+$/,"")};if("text"==n.prop("type")&&!rcube_check_email(n.val(),!0))return alert(this.get_label("nosenderwarning")),n.focus(),!1;e=q([k,l,m]);if(!b&&!rcube_check_email(e,!0))return alert(this.get_label("norecipientwarning")),k.focus(),!1;for(d in this.env.attachments)if("object"===typeof this.env.attachments[d]&&
|
||||
!this.env.attachments[d].complete)return alert(this.get_label("notuploadedwarning")),!1;if(h&&!b&&!this.env.disclosed_recipients_warned&&rcube_check_email(e=q([k,l]),!0,!0)>h){var t=function(b){b&&(b=m.val(),m.val((b?b+", ":"")+e).change(),k.val("").change(),l.val("").change());g.dialog("close");f.check_compose_input(a,!0)};g=this.show_popup_dialog(this.get_label("disclosedrecipwarning"),this.get_label("disclosedreciptitle"),[{text:this.get_label("sendmessage"),click:function(){t(!1)},"class":"mainaction"},
|
||||
{text:this.get_label("bccinstead"),click:function(){t(!0)}},{text:this.get_label("cancel"),click:function(){g.dialog("close")}}],{dialogClass:"warning"});this.env.disclosed_recipients_warned=!0;return!1}if(!this.env.nosubject_warned&&""==p.val()){var u=$("<input>").attr({type:"text",size:40});d=$('<div class="prompt">').append($('<div class="message">').text(this.get_label("nosubjectwarning"))).append(u);t=function(){p.val(u.val());g.dialog("close");f.command(a,{nocheck:!0})};g=this.show_popup_dialog(d,
|
||||
this.get_label("nosubjecttitle"),[{text:this.get_label("sendmessage"),click:function(){t()},"class":"mainaction"},{text:this.get_label("cancel"),click:function(){p.focus();g.dialog("close")}}],{dialogClass:"warning"});u.select().keydown(function(a){13==a.which&&t()});this.env.nosubject_warned=!0;return!1}if(!this.mailvelope_editor&&!this.editor.get_content()&&!confirm(this.get_label("nobodywarning")))return this.editor.focus(),!1;this.editor.save();return!0};this.toggle_editor=function(a,b,d){b=this.editor.toggle(a.html,
|
||||
a.noconvert||!1);a.mode=a.html?"html":"plain";!b&&d&&(a.mode=a.html?"plain":"html",$(d.target).filter("select").val(a.mode));b&&$("input[name='_is_html']").val(a.html?1:0);return b};this.insert_response=function(a){return this.editor.replace(this.env.textresponses[a])};this.save_response=function(){var a={},b=this.editor.get_content({selection:!0,format:"text",nosig:!0}),d='<form class="propform"><div class="prop block"><label>'+this.get_label("responsename")+'</label><input type="text" name="name" id="ffresponsename" size="40" /></div><div class="prop block"><label>'+
|
||||
this.get_label("responsetext")+'</label><textarea name="text" id="ffresponsetext" cols="40" rows="8"></textarea></div></form>';a[this.get_label("save")]=function(a){a=$("#ffresponsename").val();var b=$("#ffresponsetext").val();if(!b)return $("#ffresponsetext").select(),!1;a||(a=b.substring(0,40));var d=f.display_message(f.get_label("savingresponse"),"loading");f.http_post("settings/responses",{_insert:1,_name:a,_text:b},d);$(this).dialog("close")};a[this.get_label("cancel")]=function(){$(this).dialog("close")};
|
||||
this.show_popup_dialog(d,this.get_label("newresponse"),a,{button_classes:["mainaction"]});$("#ffresponsetext").val(b);$("#ffresponsename").select()};this.add_response_item=function(a){var b=a.key;this.env.textresponses[b]=a;if(this.gui_objects.responseslist){var d=$("<li>").appendTo(this.gui_objects.responseslist);$("<a>").addClass("insertresponse active").attr("href","#").attr("rel",b).attr("tabindex","0").html(this.quote_html(a.name)).appendTo(d).mousedown(function(a){return rcube_event.cancel(a)}).on("mouseup keypress",
|
||||
function(a){if("mouseup"==a.type||13==rcube_event.get_keycode(a))return f.command("insert-response",$(this).attr("rel")),$(document.body).trigger("mouseup"),rcube_event.cancel(a)})}};this.edit_responses=function(){};this.delete_response=function(a){!a&&this.responses_list&&(a=this.responses_list.get_selection()[0]);a&&confirm(this.get_label("deleteresponseconfirm"))&&this.http_post("settings/delete-response",{_key:a},!1)};this.spellcheck_state=function(){var a=this.editor.spellcheck_state();$.each(this.buttons.spellcheck||
|
||||
[],function(b,d){$("#"+d.id)[a?"addClass":"removeClass"]("selected")});return a};this.spellcheck_lang=function(){return this.editor.get_language()};this.spellcheck_lang_set=function(a){this.editor.set_language(a)};this.spellcheck_resume=function(a){this.editor.spellcheck_resume(a)};this.set_draft_id=function(a){if(a&&a!=this.env.draft_id){var b={task:"mail",action:""};(b=this.opener(!1,b)||this.opener(!0,b))&&b.env.mailbox==this.env.drafts_mailbox&&b.command("checkmail");this.env.draft_id=a;$("input[name='_draft_saveid']").val(a);
|
||||
window.frames.savetarget&&window.frames.savetarget.history&&!this.draft_autosave_submit&&!this.mailvelope_editor&&window.frames.savetarget.history.back();this.draft_autosave_submit=!1}this.remove_compose_data(this.env.compose_id);this.compose_skip_unsavedcheck=!1};this.auto_save_start=function(){this.env.draft_autosave&&(this.draft_autosave_submit=!1,this.save_timer=setTimeout(function(){f.draft_autosave_submit=!0;f.command("savedraft")},1E3*this.env.draft_autosave));!this.local_save_timer&&window.localStorage&&
|
||||
this.env.save_localstorage&&(this.compose_type_activity=this.compose_type_activity_last=0,$(document).keypress(function(a){f.compose_type_activity++}),this.local_save_timer=setInterval(function(){f.compose_type_activity>f.compose_type_activity_last&&(f.save_compose_form_local(),f.compose_type_activity_last=f.compose_type_activity)},5E3),$(window).on("unload",function(){f.env.server_error||f.remove_compose_data(f.env.compose_id)}));window.onbeforeunload||(window.onbeforeunload=function(){if(!f.compose_skip_unsavedcheck&&
|
||||
f.cmp_hash!=f.compose_field_hash())return f.get_label("notsentwarning")});this.busy=!1};this.compose_field_hash=function(a){var b,d,e,g="",f=["to","cc","bcc","subject"];for(b=0;b<f.length;b++)if(e=$('[name="_'+f[b]+'"]').val())g+=e+":";g+=this.editor.get_content({refresh:!1});if(this.env.attachments)for(d in this.env.attachments)g+=d;this.mailvelope_editor&&(g+=";"+(new Date).getTime());a&&(this.cmp_hash=g);return g};this.save_compose_form_local=function(){if(this.env.save_localstorage){var a={session:this.env.session_id,
|
||||
changed:(new Date).getTime()},b=!0;this.editor.save();this.env.draft_id&&(a.draft_id=this.env.draft_id);this.env.reply_msgid&&(a.reply_msgid=this.env.reply_msgid);$("input, select, textarea",this.gui_objects.messageform).each(function(d,e){switch(e.tagName.toLowerCase()){case "input":if("button"==e.type||"submit"==e.type||"hidden"==e.type&&"_is_html"!=e.name)break;a[e.name]="checkbox"!=e.type||e.checked?$(e).val():"";""!=a[e.name]&&"hidden"!=e.type&&(b=!1);break;case "select":a[e.name]=$("option:checked",
|
||||
e).val();break;default:a[e.name]=$(e).val(),""!=a[e.name]&&(b=!1)}});if(!b){var d=this.local_storage_get_item("compose.index",[]),e=this.env.compose_id;0>$.inArray(e,d)&&d.push(e);this.local_storage_set_item("compose."+e,a,!0);this.local_storage_set_item("compose.index",d)}}};this.restore_compose_form=function(a,b){var d=this.local_storage_get_item("compose."+a,!0);d&&"object"==typeof d&&($.each(d,function(a,b){if("_"==a[0]){var d=$("*[name='"+a+"']");d[0]&&"checkbox"==d[0].type?d.prop("checked",
|
||||
""!=b):d.val(b)}}),("1"==d._is_html&&!b||"1"!=d._is_html&&b)&&this.command("toggle-editor",{id:this.env.composebody,html:!b,noconvert:!0}))};this.remove_compose_data=function(a){var b=this.local_storage_get_item("compose.index",[]);0<=$.inArray(a,b)&&(this.local_storage_remove_item("compose."+a),this.local_storage_set_item("compose.index",$.grep(b,function(b,e){return b!=a})))};this.clear_compose_data=function(){var a,b=this.local_storage_get_item("compose.index",[]);for(a=0;a<b.length;a++)this.local_storage_remove_item("compose."+
|
||||
b[a]);this.local_storage_remove_item("compose.index")};this.change_identity=function(a,b){if(!a||!a.options)return!1;b||(b=this.env.show_sig);var d=a.options[a.selectedIndex].value,e=this.env.identity,g=this.env.recipients_separator,h=RegExp.escape(g);this.env.signatures&&this.env.signatures[d]?(this.enable_command("insert-sig",!0),this.env.compose_commands.push("insert-sig")):this.enable_command("insert-sig",!1);if(!this.env.identities_initialized&&(this.env.identities_initialized=!0,this.env.show_sig_later&&
|
||||
(this.env.show_sig=!0),this.env.opened_extwin))return;$.each(["replyto","bcc"],function(){var a,b=e&&f.env.identities[e]?f.env.identities[e][this]:"",m=d&&f.env.identities[d]?f.env.identities[d][this]:"",n=$('[name="_'+this+'"]'),p=n.val();b&&p&&(a=new RegExp("\\s*"+RegExp.escape(b)+"\\s*"),p=p.replace(a,""));a=new RegExp(h+"\\s*"+h,"g");p=String(p).replace(a,g);a=new RegExp("^[\\s"+h+"]+");p=p.replace(a,"");m&&-1==p.indexOf(m)&&-1==p.indexOf(m.replace(/"/g,""))&&(p&&(a=new RegExp("["+h+"\\s]+$"),
|
||||
p=p.replace(a,"")+g+" "),p+=m+g+" ");(b||m)&&n.val(p).change()});this.editor.change_signature(d,b);this.env.identity=d;this.triggerEvent("change_identity");return!0};this.upload_input=function(a){$("#"+a+' input[type="file"]').click()};this.upload_file=function(a,b,d){if(a){var e=0,g=0;$.each($(a).get(0).elements||[],function(){if("file"==this.type){var a,b=this.files?this.files.length:this.value?1:0;if(this.files)for(a=0;a<b;a++)e+=this.files[a].size;g+=b}});if(g){if(this.env.max_filesize&&this.env.filesizeerror&&
|
||||
e>this.env.max_filesize)return this.display_message(this.env.filesizeerror,"error"),!1;if(this.env.max_filecount&&this.env.filecounterror&&g>this.env.max_filecount)return this.display_message(this.env.filecounterror,"error"),!1;b=this.async_upload_form(a,b||"upload",function(a){var b,e="";try{this.contentDocument?b=this.contentDocument:this.contentWindow&&(b=this.contentWindow.document),e=b.childNodes[1].innerHTML}catch(p){}e.match(/add2attachment/)||bw.opera&&(!f.env.uploadframe||f.env.uploadframe!=
|
||||
a.data.ts)||(e.match(/display_message/)||f.display_message(f.get_label("fileuploaderror"),"error"),f.remove_from_attachment_list(a.data.ts),d&&f.set_busy(!1,null,d));bw.opera&&(f.env.uploadframe=a.data.ts)});var h="<span>"+this.get_label("uploading"+(1<g?"many":""))+"</span>",k=b.replace(/^rcmupload/,"");this.add2attachment_list(k,{name:"",html:h,classname:"uploading",frame:b,complete:!1});this.env.upload_progress_time&&this.upload_progress_start("upload",k);this.gui_objects.attachmentform=a;return!0}}};
|
||||
this.add2attachment_list=function(a,b,d){d&&this.triggerEvent("fileuploaded",{name:a,attachment:b,id:d});this.env.attachments||(this.env.attachments={});d&&this.env.attachments[d]&&delete this.env.attachments[d];this.env.attachments[a]=b;if(!this.gui_objects.attachmentlist)return!1;!b.complete&&this.env.loadingicon&&(b.html='<img src="'+this.env.loadingicon+'" alt="" class="uploading" />'+b.html);!b.complete&&b.frame&&(b.html='<a title="'+this.get_label("cancel")+'" onclick="return rcmail.cancel_attachment_upload(\''+
|
||||
a+"', '"+b.frame+'\');" href="#cancelupload" class="cancelupload">'+(this.env.cancelicon?'<img src="'+this.env.cancelicon+'" alt="'+this.get_label("cancel")+'" />':this.get_label("cancel"))+"</a>"+b.html);var e,g=$("<li>");g.attr("id",a).addClass(b.classname).html(b.html).on("mouseover",function(){rcube_webmail.long_subject_title_ex(this)});d&&(e=document.getElementById(d))?g.replaceAll(e):g.appendTo(this.gui_objects.attachmentlist);e=$(this.gui_objects.attachmentlist).attr("data-tabindex")||"0";
|
||||
g.find("a").attr("tabindex",e);this.triggerEvent("fileappended",{name:a,attachment:b,id:d,item:g});return!0};this.remove_from_attachment_list=function(a){this.env.attachments&&(delete this.env.attachments[a],$("#"+a).remove())};this.remove_attachment=function(a){a&&this.env.attachments[a]&&this.http_post("remove-attachment",{_id:this.env.compose_id,_file:a});return!1};this.cancel_attachment_upload=function(a,b){if(!a||!b)return!1;this.remove_from_attachment_list(a);$("iframe[name='"+b+"']").remove();
|
||||
return!1};this.upload_progress_start=function(a,b){setTimeout(function(){f.http_request(a,{_progress:b})},1E3*this.env.upload_progress_time)};this.upload_progress_update=function(a){var b=$("#"+a.name+" > span");b.length&&a.text&&(b.text(a.text),a.done||this.upload_progress_start(a.action,a.name))};this.rename_attachment=function(a){var b=this.env.attachments?this.env.attachments[a]:null;if(b){var d=$("<input>").attr({type:"text",size:50}).val(b.name),e=$("<label>").text(this.get_label("namex")).append(d);
|
||||
this.simple_dialog(e,"attachmentrename",function(){var e;if((e=d.val())&&e!=b.name)return f.http_post("rename-attachment",{_id:f.env.compose_id,_file:a,_name:e},f.set_busy(!0,"loading")),!0},{open:function(){d.select()}})}};this.rename_attachment_handler=function(a,b){var d=this.env.attachments?this.env.attachments[a]:null,e=$("#"+a+" > a.filename"),g=$("<a>");d&&b&&(d.name=b,1==e.length&&(g.text(b).append($("span",e).clone()),e.html(g.html()),e.parent().attr("title","")))};this.add_contact=function(a){a&&
|
||||
this.http_post("addcontact",{_address:a});return!0};this.qsearch=function(a){if(a||$(this.gui_objects.qsearchbox).val()||$(this.gui_objects.search_interval).val()){var b=this.set_busy(!0,"searching");a=this.search_params(a);var d="compose"==this.env.action&&this.contact_list?"search-contacts":"search";this.message_list?this.clear_message_list():this.contact_list&&this.list_contacts_clear();this.env.source&&(a._source=this.env.source);this.env.group&&(a._gid=this.env.group);this.env.current_page=1;
|
||||
a=this.http_request(d,a,b);this.env.qsearch={lock:b,request:a};this.enable_command("set-listmode",this.env.threads&&"base"==(this.env.search_scope||"base"));return!0}return!1};this.continue_search=function(a){var b=this.set_busy(!0,"stillsearching");setTimeout(function(){var d=f.search_params();d._continue=a;f.env.qsearch={lock:b,request:f.http_request("search",d,b)}},100)};this.search_params=function(a,b){var d,e={},g=[],f=this.env.search_mods,k=this.env.search_scope||"base",l="all"==k?"*":this.env.mailbox;
|
||||
!b&&this.gui_objects.search_filter&&(b=this.gui_objects.search_filter.value);!a&&this.gui_objects.qsearchbox&&(a=this.gui_objects.qsearchbox.value);b&&(e._filter=b);this.gui_objects.search_interval&&(e._interval=$(this.gui_objects.search_interval).val());if(a&&(e._q=a,f&&this.message_list&&(f=f[l]||f["*"]),f)){for(d in f)g.push(d);e._headers=g.join(",")}k&&(e._scope=k);l&&"all"!=k&&(e._mbox=l);return e};this.reset_search_filter=function(){this.filter_disabled=!0;this.gui_objects.search_filter&&$(this.gui_objects.search_filter).val("ALL").change();
|
||||
this.filter_disabled=!1};this.reset_qsearch=function(a){this.gui_objects.qsearchbox&&(this.gui_objects.qsearchbox.value="");this.gui_objects.search_interval&&$(this.gui_objects.search_interval).val("");this.env.qsearch&&this.abort_request(this.env.qsearch);a&&(this.env.search_scope="base",this.reset_search_filter());this.env.qsearch=null;this.env.search_request=null;this.env.search_id=null;this.select_all_mode=!1;this.enable_command("set-listmode",this.env.threads)};this.set_searchscope=function(a){var b=
|
||||
this.env.search_scope;this.env.search_scope=a;a!=b&&this.env.search_request&&(!this.qsearch(this.gui_objects.qsearchbox.value)&&this.env.search_filter&&"ALL"!=this.env.search_filter&&this.filter_mailbox(this.env.search_filter),"all"!=a&&this.select_folder(this.env.mailbox,"",!0))};this.set_searchinterval=function(a){var b=this.env.search_interval;this.env.search_interval=a;a!=b&&this.env.search_request&&(!this.qsearch(this.gui_objects.qsearchbox.value)&&this.env.search_filter&&"ALL"!=this.env.search_filter&&
|
||||
this.filter_mailbox(this.env.search_filter),a&&this.select_folder(this.env.mailbox,"",!0))};this.set_searchmods=function(a){var b=this.env.mailbox;"all"==(this.env.search_scope||"base")&&(b="*");this.env.search_mods||(this.env.search_mods={});b&&(this.env.search_mods[b]=a)};this.is_multifolder_listing=function(){return void 0!==this.env.multifolder_listing?this.env.multifolder_listing:this.env.search_request&&"base"!=(this.env.search_scope||"base")};this.sent_successfully=function(a,b,d,e){this.display_message(b,
|
||||
a);this.compose_skip_unsavedcheck=!0;if(this.env.extwin){e||this.lock_form(this.gui_objects.messageform);var g={task:"mail",action:""};if(g=this.opener(!1,g)||this.opener(!0,g))g.display_message(b,a),d&&0<=$.inArray(g.env.mailbox,d)&&g.command("checkmail");e||setTimeout(function(){window.close()},1E3)}else e||setTimeout(function(){f.list_mailbox()},500);e&&(this.env.is_sent=!0)};this.ksearch_keydown=function(a,b,d){this.ksearch_timer&&clearTimeout(this.ksearch_timer);var e=rcube_event.get_keycode(a),
|
||||
g=rcube_event.get_modifier(a);switch(e){case 38:case 40:if(!this.ksearch_visible())return;b=38==e?1:0;e=document.getElementById("rcmkSearchItem"+this.ksearch_selected);e||(e=this.ksearch_pane.__ul.firstChild);e&&this.ksearch_select(b?e.previousSibling:e.nextSibling);return rcube_event.cancel(a);case 9:if(g==SHIFT_KEY||!this.ksearch_visible()){this.ksearch_hide();return}case 13:if(!this.ksearch_visible())return!1;this.insert_recipient(this.ksearch_selected);this.ksearch_hide();return rcube_event.cancel(a);
|
||||
case 27:this.ksearch_hide();return;case 37:case 39:return}this.ksearch_timer=setTimeout(function(){f.ksearch_get_results(d)},200);this.ksearch_input=b;return!0};this.ksearch_visible=function(){return null!==this.ksearch_selected&&void 0!==this.ksearch_selected&&this.ksearch_value};this.ksearch_select=function(a){this.ksearch_pane&&a&&this.ksearch_pane.find("li.selected").removeClass("selected").removeAttr("aria-selected");a&&($(a).addClass("selected").attr("aria-selected","true"),this.ksearch_selected=
|
||||
a._rcm_id,$(this.ksearch_input).attr("aria-activedescendant","rcmkSearchItem"+this.ksearch_selected))};this.insert_recipient=function(a){if(null!==a&&this.env.contacts[a]&&this.ksearch_input){var b=this.ksearch_input.value,d=this.get_caret_pos(this.ksearch_input),d=b.lastIndexOf(this.ksearch_value,d),e=!1,g="",f=b.substring(0,d),b=b.substring(d+this.ksearch_value.length,b.length);this.ksearch_destroy();"object"!==typeof this.env.contacts[a]||"group"!=this.env.contacts[a].type||this.env.contacts[a].email?
|
||||
"object"===typeof this.env.contacts[a]&&this.env.contacts[a].name?(g=this.env.contacts[a].name+this.env.recipients_delimiter,e=!0):"string"===typeof this.env.contacts[a]&&(g=this.env.contacts[a]+this.env.recipients_delimiter,e=!0):(g+=this.env.contacts[a].name+this.env.recipients_delimiter,this.group2expand[this.env.contacts[a].id]=$.extend({input:this.ksearch_input},this.env.contacts[a]),this.http_request("mail/group-expand",{_source:this.env.contacts[a].source,_gid:this.env.contacts[a].id},!1));
|
||||
this.ksearch_input.value=f+g+b;this.set_caret_pos(this.ksearch_input,d+g.length);e&&(this.triggerEvent("autocomplete_insert",{field:this.ksearch_input,insert:g,data:this.env.contacts[a],search:this.ksearch_value_last,result_type:"person"}),this.ksearch_value_last=null,this.compose_type_activity++)}};this.replace_group_recipients=function(a,b){this.group2expand[a]&&(this.group2expand[a].input.value=this.group2expand[a].input.value.replace(this.group2expand[a].name,b),this.triggerEvent("autocomplete_insert",
|
||||
{field:this.group2expand[a].input,insert:b,data:this.group2expand[a],search:this.ksearch_value_last,result_type:"group"}),this.ksearch_value_last=null,this.group2expand[a]=null,this.compose_type_activity++)};this.ksearch_get_results=function(a){var b=this.ksearch_input?this.ksearch_input.value:null;if(null!==b){this.ksearch_pane&&this.ksearch_pane.is(":visible")&&this.ksearch_pane.hide();var d=this.get_caret_pos(this.ksearch_input),e=b.lastIndexOf(this.env.recipients_separator,d-1),b=b.substring(e+
|
||||
1,d),e=this.env.autocomplete_min_length,d=this.ksearch_data,b=$.trim(b);b!=this.ksearch_value&&(this.ksearch_destroy(),b.length&&b.length<e?this.ksearch_info||(this.ksearch_info=this.display_message(this.get_label("autocompletechars").replace("$min",e))):(e=this.ksearch_value,this.ksearch_value_last=this.ksearch_value=b,!b.length||e&&e.length&&b.startsWith(e)&&(!d||0>=d.num)&&this.env.contacts&&!this.env.contacts.length||(d=a&&a.sources?a.sources:[""],this.ksearch_data={id:this.multi_thread_http_request({items:d,
|
||||
threads:a&&a.threads?a.threads:1,action:a&&a.action?a.action:"mail/autocomplete",postdata:{_search:b,_source:"%s"},lock:this.display_message(this.get_label("searching"),"loading")}),sources:d.slice(),num:d.length})))}};this.ksearch_query_results=function(a,b,d){this.multi_thread_http_response(a,d);if(this.ksearch_value&&(!this.ksearch_input||b==this.ksearch_value)){var e,g,h,k,l,m=this.ksearch_value,n=this.env.autocomplete_max?this.env.autocomplete_max:15;this.ksearch_pane||(b=$("<ul>"),this.ksearch_pane=
|
||||
$("<div>").attr("id","rcmKSearchpane").attr("role","listbox").css({position:"absolute","z-index":3E4}).append(b).appendTo(document.body),this.ksearch_pane.__ul=b[0]);b=this.ksearch_pane.__ul;d&&this.ksearch_pane.data("reqid")==d?n-=b.childNodes.length:(this.ksearch_pane.data("reqid",d),b.innerHTML="",this.env.contacts=[],e=$(this.ksearch_input).offset(),this.ksearch_pane.css({left:e.left+"px",top:e.top+this.ksearch_input.offsetHeight+"px",display:"none"}));if(a&&(h=a.length))for(e=0;e<h&&0<n;e++)k=
|
||||
"object"===typeof a[e]?a[e].display||a[e].name:a[e],l="object"===typeof a[e]?a[e].type:"",g=e+this.env.contacts.length,$("<li>").attr("id","rcmkSearchItem"+g).attr("role","option").html('<i class="icon"></i>'+this.quote_html(k.replace(new RegExp("("+RegExp.escape(m)+")","ig"),"##$1%%")).replace(/##([^%]+)%%/g,"<b>$1</b>")).addClass(l||"").appendTo(b).mouseover(function(){f.ksearch_select(this)}).mouseup(function(){f.ksearch_click(this)}).get(0)._rcm_id=g,--n;b.childNodes.length&&($(this.ksearch_input).attr("aria-haspopup",
|
||||
"true").attr("aria-expanded","true").attr("aria-owns","rcmKSearchpane"),this.ksearch_pane.show(),this.env.contacts.length||this.ksearch_select($("li:first",b).get(0)));h&&(this.env.contacts=this.env.contacts.concat(a));this.ksearch_data.id==d&&this.ksearch_data.num--}};this.ksearch_click=function(a){this.ksearch_input&&this.ksearch_input.focus();this.insert_recipient(a._rcm_id);this.ksearch_hide()};this.ksearch_blur=function(){this.ksearch_timer&&clearTimeout(this.ksearch_timer);this.ksearch_input=
|
||||
null;this.ksearch_hide()};this.ksearch_hide=function(){this.ksearch_selected=null;this.ksearch_value="";this.ksearch_pane&&this.ksearch_pane.hide();$(this.ksearch_input).attr("aria-haspopup","false").attr("aria-expanded","false").removeAttr("aria-activedescendant").removeAttr("aria-owns");this.ksearch_destroy()};this.ksearch_destroy=function(){this.ksearch_data&&this.multi_thread_request_abort(this.ksearch_data.id);this.ksearch_info&&this.hide_message(this.ksearch_info);this.ksearch_msg&&this.hide_message(this.ksearch_msg);
|
||||
this.ksearch_msg=this.ksearch_info=this.ksearch_data=null};this.contactlist_keypress=function(a){a.key_pressed==a.DELETE_KEY&&this.command("delete")};this.contactlist_select=function(a){this.preview_timer&&clearTimeout(this.preview_timer);var b,d,e,g,h=!1,k=a.selection.length,l=this.env.source?this.env.address_sources[this.env.source]:null;this.env.contentframe&&(d=a.get_single_selection())?this.preview_timer=setTimeout(function(){f.load_contact(d,"show")},50):this.env.contentframe&&this.show_contentframe(!1);
|
||||
if(k){a.draggable=!1;this.env.selection_sources=[];l&&this.env.selection_sources.push(this.env.source);for(b in a.selection)g=a.data[a.selection[b]],l?h=h||!l.readonly&&!g.readonly:(e=String(a.selection[b]).replace(/^[^-]+-/,""))&&this.env.address_sources[e]&&(h=h||!this.env.address_sources[e].readonly&&!g.readonly,this.env.selection_sources.push(e)),"group"!=g._type&&(a.draggable=!0);this.env.selection_sources=$.unique(this.env.selection_sources)}this.enable_command("group-remove-selected",this.env.group&&
|
||||
k&&h);this.enable_command("compose",this.env.group||k);this.enable_command("print",1==k);this.enable_command("export-selected","copy",0<k);this.enable_command("edit",d&&h);this.enable_command("delete","move",k&&h);return!1};this.list_contacts=function(a,b,d,e){var g,h=-1,k={},l=void 0===a&&void 0===b&&void 0===d,m=window;a||(a=this.env.source);l&&(b=this.env.group);a!=this.env.source?(d=this.env.current_page=1,this.reset_qsearch()):l||b==this.env.group||(d=this.env.current_page=1);this.env.search_id?
|
||||
g="S"+this.env.search_id:this.env.search_request||(g=b?"G"+a+b:a);this.env.source=a;this.env.group=b;$.each(this.env.address_group_stack,function(a,b){if(f.env.group==b.id)return h=a,!1});this.env.address_group_stack=0>h?[]:this.env.address_group_stack.slice(0,h);this.env.group?(e||(e={}),e.id=this.env.group,this.env.address_group_stack.push(e),g="G"+a+this.env.address_group_stack[0].id):this.gui_objects.addresslist_title&&$(this.gui_objects.addresslist_title).text(this.get_label("contacts"));this.env.search_id||
|
||||
this.select_folder(g,"",!0);if(this.gui_objects.contactslist)this.list_contacts_remote(a,b,d);else{if(e=this.get_frame_window(this.env.contentframe))m=e,k._framed=1;b&&(k._gid=b);d&&(k._page=d);a&&(k._source=a);this.env.search_request&&(k._search=this.env.search_request);this.set_busy(!0,"loading");this.location_href(k,m)}};this.list_contacts_remote=function(a,b,d){this.list_contacts_clear();var e={},g=this.set_busy(!0,"loading");a&&(e._source=a);d&&(e._page=d);b&&(e._gid=b);this.env.source=a;this.env.group=
|
||||
b;this.env.search_request&&(e._search=this.env.search_request);this.http_request("mail"==this.env.task?"list-contacts":"list",e,g);"mail"!=this.env.task&&this.update_state({_source:a,_page:d&&1<d?d:null,_gid:b})};this.list_contacts_clear=function(){this.contact_list.data={};this.contact_list.clear(!0);this.show_contentframe(!1);this.enable_command("delete","move","copy","print",!1);this.enable_command("compose",this.env.group)};this.set_group_prop=function(a){if(this.gui_objects.addresslist_title){var b=
|
||||
$(this.gui_objects.addresslist_title).html("");if(1<this.env.address_group_stack.length||1==this.env.address_group_stack.length&&this.env.address_group_stack[0].search_request)$('<a href="#list">...</a>').attr("title",this.get_label("uponelevel")).addClass("poplink").appendTo(b).click(function(a){return f.command("popgroup","",this)}),b.append(" » ");b.append($("<span>").text(a?a.name:this.get_label("contacts")))}a&&this.triggerEvent("groupupdate",a)};this.load_contact=function(a,
|
||||
b,d){var e,g={},f=window,k=this.contact_list?this.contact_list.data[a]:null;if(e=this.get_frame_window(this.env.contentframe))g._framed=1,f=e,this.show_contentframe(!0),a||this.contact_list.clear_selection(),this.enable_command("compose",k&&k.email),this.enable_command("export-selected","print",k&&"group"!=k._type);else if(d)return!1;!b||!a&&"add"!=b||this.drag_active||(this.env.group&&(g._gid=this.env.group),this.env.search_request&&(g._search=this.env.search_request),g._action=b,g._source=this.env.source,
|
||||
g._cid=a,this.location_href(g,f,!0));return!0};this.group_member_change=function(a,b,d,e){"add"!=a&&(a="del");var g=this.get_label("add"==a?"addingmember":"removingmember"),g=this.display_message(g,"loading");this.http_post("group-"+a+"members",{_cid:b,_source:d,_gid:e},g)};this.contacts_drag_menu=function(a,b){var d="group"==b.type?b.source:b.id,e=this.env.source;if(!this.env.address_sources[d]||this.env.address_sources[d].readonly)return!0;""==e&&1==this.env.selection_sources.length&&(e=this.env.selection_sources[0]);
|
||||
return"group"==b.type&&d==e?(e=this.contact_list.get_selection().join(","),this.group_member_change("add",e,d,b.id),!0):this.commands.move||rcube_event.get_modifier(a)==SHIFT_KEY?this.drag_menu(a,b):(this.copy_contacts(b),!0)};this.copy_contacts=function(a){var b="group"==a.type?a.source:a.id,d=this.env.source,e=this.env.group?this.env.group:"",g=this.contact_list.get_selection().join(",");g&&this.env.address_sources[b]&&!this.env.address_sources[b].readonly&&(""==d&&1==this.env.selection_sources.length&&
|
||||
(d=this.env.selection_sources[0]),"group"==a.type?b!=d&&(d=this.display_message(this.get_label("copyingcontact"),"loading"),a={_cid:g,_source:this.env.source,_to:b,_togid:a.id,_gid:e},this.http_post("copy",a,d)):a.id!=d&&(d=this.display_message(this.get_label("copyingcontact"),"loading"),a={_cid:g,_source:this.env.source,_to:a.id,_gid:e},this.http_post("copy",a,d)))};this.move_contacts=function(a){var b="group"==a.type?a.source:a.id,d=this.env.source;this.env.address_sources[b]&&!this.env.address_sources[b].readonly&&
|
||||
(""==d&&1==this.env.selection_sources.length&&(d=this.env.selection_sources[0]),"group"==a.type?b!=d&&this._with_selected_contacts("move",{_to:b,_togid:a.id}):a.id!=d&&this._with_selected_contacts("move",{_to:a.id}))};this.delete_contacts=function(){if(this.env.source&&this.env.address_sources[this.env.source].undelete||confirm(this.get_label("deletecontactconfirm")))return this._with_selected_contacts("delete")};this._with_selected_contacts=function(a,b){var d=this.contact_list?this.contact_list.get_selection():
|
||||
[];if(d.length||this.env.cid){var e,g=[],f=this.display_message(this.get_label("delete"==a?"contactdeleting":"movingcontact"),"loading");if(this.env.cid)g.push(this.env.cid);else{for(e=0;e<d.length;e++)id=d[e],g.push(id),this.contact_list.remove_row(id,e==d.length-1);1==d.length&&this.show_contentframe(!1)}b||(b={});b._source=this.env.source;b._from=this.env.action;b._cid=g.join(",");this.env.group&&(b._gid=this.env.group);this.env.search_request&&(b._search=this.env.search_request);this.http_post(a,
|
||||
b,f);return!0}};this.update_contact_row=function(a,b,d,e,g){var f=this.contact_list;a=this.html_identifier(a);f.rows[a]||(a=a+"-"+e,d&&(d=d+"-"+e));f.update_row(a,b,d,!0);f.data[a]=g};this.add_contact_row=function(a,b,d,e){if(!this.gui_objects.contactslist)return!1;var g,f=this.contact_list,k={cols:[]};k.id="rcmrow"+this.html_identifier(a);k.className="contact "+(d||"");f.in_selection(a)&&(k.className+=" selected");for(g in b)d={},d.className=String(g).toLowerCase(),d.innerHTML=b[g],k.cols.push(d);
|
||||
f.data[a]=e;f.insert_row(k);this.enable_command("export",0<f.rowcount)};this.init_contact_form=function(){var a;if(this.env.coltypes)for(a in this.set_photo_actions($("#ff_photo").val()),this.env.coltypes)this.init_edit_field(a,null);$(".contactfieldgroup .row a.deletebutton").click(function(){f.delete_edit_field(this);return!1});$("select.addfieldmenu").change(function(){f.insert_edit_field($(this).val(),$(this).attr("rel"),this);this.selectedIndex=0});$.datepicker&&this.env.date_format&&($.datepicker.setDefaults({dateFormat:this.env.date_format,
|
||||
changeMonth:!0,changeYear:!0,yearRange:"-120:+10",showOtherMonths:!0,selectOtherMonths:!0}),$("input.datepicker").datepicker());"search"==this.env.action&&$(this.gui_objects.editform).append($('<input type="submit">').hide()).submit(function(){$("input.mainaction").click();return!1})};this.group_create=function(){var a=$("<input>").attr("type","text"),b=$("<label>").text(this.get_label("namex")).append(a);this.simple_dialog(b,"newgroup",function(){var b;if(b=a.val())return f.http_post("group-create",
|
||||
{_source:f.env.source,_name:b},f.set_busy(!0,"loading")),!0})};this.group_rename=function(){if(this.env.group){var a=this.env.contactgroups["G"+this.env.source+this.env.group].name,b=$("<input>").attr("type","text").val(a),d=$("<label>").text(this.get_label("namex")).append(b);this.simple_dialog(d,"grouprename",function(){var d;if((d=b.val())&&d!=a)return f.http_post("group-rename",{_source:f.env.source,_gid:f.env.group,_name:d},f.set_busy(!0,"loading")),!0},{open:function(){b.select()}})}};this.group_delete=
|
||||
function(){if(this.env.group&&confirm(this.get_label("deletegroupconfirm"))){var a=this.set_busy(!0,"groupdeleting");this.http_post("group-delete",{_source:this.env.source,_gid:this.env.group},a)}};this.remove_group_item=function(a){var b="G"+a.source+a.id;this.treelist.remove(b)&&(this.triggerEvent("group_delete",{source:a.source,id:a.id}),delete this.env.contactfolders[b],delete this.env.contactgroups[b]);this.list_contacts(a.source,0)};this.group_remove_selected=function(){this.http_post("group-delmembers",
|
||||
{_cid:this.contact_list.selection,_source:this.env.source,_gid:this.env.group})};this.remove_group_contacts=function(a){if(void 0!==this.env.group&&this.env.group===a.gid){var b=this.contact_list.get_selection();for(a=0;a<b.length;a++)id=b[a],this.contact_list.remove_row(id,a==b.length-1)}};this.insert_contact_group=function(a){a.type="group";var b="G"+a.source+a.id,d=$("<a>").attr("href","#").attr("rel",a.source+":"+a.id).click(function(){return f.command("listgroup",a,this)}).html(a.name);this.env.contactfolders[b]=
|
||||
this.env.contactgroups[b]=a;this.treelist.insert({id:b,html:d,classes:["contactgroup"]},a.source,"contactgroup");this.triggerEvent("group_insert",{id:a.id,source:a.source,name:a.name,li:this.treelist.get_item(b)})};this.update_contact_group=function(a){var b="G"+a.source+a.id,d={};if(a.newid){var e="G"+a.source+a.newid,g=$.extend({},a);this.env.contactfolders[e]=this.env.contactfolders[b];this.env.contactfolders[e].id=a.newid;this.env.group=a.newid;delete this.env.contactfolders[b];delete this.env.contactgroups[b];
|
||||
g.id=a.newid;g.type="group";d.id=e;d.html=$("<a>").attr("href","#").attr("rel",a.source+":"+a.newid).click(function(){return f.command("listgroup",g,this)}).html(a.name)}else $(this.treelist.get_item(b)).children().first().html(a.name),this.env.contactfolders[b].name=this.env.contactgroups[b].name=a.name;this.treelist.update(b,d,!0);this.triggerEvent("group_update",{id:a.id,source:a.source,name:a.name,li:this.treelist.get_item(b),newid:a.newid})};this.update_group_commands=function(){var a=""!=this.env.source?
|
||||
this.env.address_sources[this.env.source]:null,a=a&&a.groups&&!a.readonly;this.enable_command("group-create",a);this.enable_command("group-rename","group-delete",a&&this.env.group)};this.init_edit_field=function(a,b){var d=this.env.coltypes[a].label;b||(b=$(".ff_"+a));d&&b.placeholder(d)};this.insert_edit_field=function(a,b,d){var e=$("#ff_"+a);if(e.length)e.show().focus(),$(d).children('option[value="'+a+'"]').prop("disabled",!0);else{$(".ff_"+a);e=$("#contactsection"+b+" .contactcontroller"+a);
|
||||
if(!e.length){b=$("#contactsection"+b);var g=$(".contactfieldgroup",b).last(),e=$("<fieldset>").addClass("contactfieldgroup contactcontroller"+a);g.length?e.insertAfter(g):b.prepend(e)}if(e.length&&"FIELDSET"==e.get(0).nodeName){var h;b=this.env.coltypes[a];var k="ff_"+a+(b.count||0),g=$("<div>").addClass("row"),l=$("<div>").addClass("contactfieldcontent data"),m=$("<div>").addClass("contactfieldlabel label");b.subtypes_select?m.html(b.subtypes_select):m.html('<label for="'+k+'">'+b.label+"</label>");
|
||||
var n=1!=b.limit?"[]":"";if("text"==b.type||"date"==b.type)h=$("<input>").addClass("ff_"+a).attr({type:"text",name:"_"+a+n,size:b.size,id:k}).appendTo(l),this.init_edit_field(a,h),"date"==b.type&&$.datepicker&&h.datepicker();else if("textarea"==b.type)h=$("<textarea>").addClass("ff_"+a).attr({name:"_"+a+n,cols:b.size,rows:b.rows,id:k}).appendTo(l),this.init_edit_field(a,h);else if("composite"==b.type){var p,q,t=[],u=[];if(h=this.env[a+"_template"])for(k=0;k<h.length;k++)t.push(h[k][1]),u.push(h[k][2]);
|
||||
else for(p in b.childs)t.push(p);for(k=0;k<t.length;k++)p=t[k],h=b.childs[p],h=$("<input>").addClass("ff_"+p).attr({type:"text",name:"_"+p+n,size:h.size}).appendTo(l),l.append(u[k]||" "),this.init_edit_field(p,h),q||(q=h);h=q}else if("select"==b.type){h=$("<select>").addClass("ff_"+a).attr({name:"_"+a+n,id:k}).appendTo(l);var w=h.attr("options");w[w.length]=new Option("---","");b.options&&$.each(b.options,function(a,b){w[w.length]=new Option(b,a)})}h&&($('<a href="#del"></a>').addClass("contactfieldbutton deletebutton").attr({title:this.get_label("delete"),
|
||||
rel:a}).html(this.env.delbutton).click(function(){f.delete_edit_field(this);return!1}).appendTo(l),g.append(m).append(l).appendTo(e.show()),h.first().focus(),b.count||(b.count=0),++b.count==b.limit&&b.limit&&$(d).children('option[value="'+a+'"]').prop("disabled",!0))}}};this.delete_edit_field=function(a){var b=$(a).attr("rel"),d=this.env.coltypes[b],e=$(a).parents("fieldset.contactfieldgroup"),g=e.parent().find("select.addfieldmenu");0>=--d.count&&d.visible?$(a).parent().children("input").val("").blur():
|
||||
($(a).parents("div.row").remove(),e.children("div.row").length||e.hide());g.length&&(a=g.children('option[value="'+b+'"]'),a.length?a.prop("disabled",!1):$("<option>").attr("value",b).html(d.label).appendTo(g),g.show())};this.upload_contact_photo=function(a){a&&a.elements._photo.value&&(this.async_upload_form(a,"upload-photo",function(a){f.set_busy(!1,null,f.file_upload_id)}),this.file_upload_id=this.set_busy(!0,"uploading"))};this.replace_contact_photo=function(a){var b="-del-"==a?this.env.photo_placeholder:
|
||||
this.env.comm_path+"&_action=photo&_source="+this.env.source+"&_cid="+(this.env.cid||0)+"&_photo="+a;this.set_photo_actions(a);$(this.gui_objects.contactphoto).children("img").attr("src",b)};this.photo_upload_end=function(){this.set_busy(!1,null,this.file_upload_id);delete this.file_upload_id};this.set_photo_actions=function(a){var b,d=this.buttons["upload-photo"];for(b=0;d&&b<d.length;b++)$("a#"+d[b].id).html(this.get_label("-del-"==a?"addphoto":"replacephoto"));$("#ff_photo").val(a);this.enable_command("upload-photo",
|
||||
this.env.coltypes.photo?!0:!1);this.enable_command("delete-photo",this.env.coltypes.photo&&"-del-"!=a)};this.advanced_search=function(){var a,b={_form:1,_action:"search"},d=window;if(a=this.get_frame_window(this.env.contentframe))b._framed=1,d=a,this.contact_list.clear_selection();this.location_href(b,d,!0);return!0};this.unselect_directory=function(){this.select_folder("");this.enable_command("search-delete",!1)};this.insert_saved_search=function(a,b){var d="S"+b,e=$("<a>").attr("href","#").attr("rel",
|
||||
b).click(function(){return f.command("listsearch",b,this)}).html(a),g={name:a,id:b};this.savedsearchlist.insert({id:d,html:e,classes:["contactsearch"]},null,"contactsearch");this.select_folder(d,"",!0);this.enable_command("search-delete",!0);this.env.search_id=b;this.triggerEvent("abook_search_insert",g)};this.search_create=function(){var a=$("<input>").attr("type","text"),b=$("<label>").text(this.get_label("namex")).append(a);this.simple_dialog(b,"searchsave",function(){var b;if(b=a.val())return f.http_post("search-create",
|
||||
{_search:f.env.search_request,_name:b},f.set_busy(!0,"loading")),!0})};this.search_delete=function(){if(this.env.search_request){var a=this.set_busy(!0,"savedsearchdeleting");this.http_post("search-delete",{_sid:this.env.search_id},a)}};this.remove_search_item=function(a){this.savedsearchlist.remove("S"+a)&&this.triggerEvent("search_delete",{id:a,li:void 0});this.env.search_id=null;this.env.search_request=null;this.list_contacts_clear();this.reset_qsearch();this.enable_command("search-delete","search-create",
|
||||
!1)};this.listsearch=function(a){var b=this.set_busy(!0,"searching");this.contact_list&&this.list_contacts_clear();this.reset_qsearch();this.savedsearchlist?(this.treelist.select(""),this.savedsearchlist.select("S"+a)):this.select_folder("S"+a,"",!0);this.env.current_page=1;this.http_request("search",{_sid:a},b)};this.qrcode=function(){var a=this.get_label("qrcode"),b=[{text:this.get_label("close"),"class":"mainaction",click:function(){(f.is_framed()?parent.$:$)(this).dialog("destroy")}}],d=new Image(300,
|
||||
300);d.src=this.url("addressbook/qrcode",{_source:this.env.source,_cid:this.env.cid});return this.show_popup_dialog(d,a,b,{width:310,height:410})};this.section_select=function(a){var b;b=a.get_single_selection();a=window;var d={_action:"edit-prefs",_section:b};if(b){if(b=this.get_frame_window(this.env.contentframe))d._framed=1,a=b;this.location_href(d,a,!0)}return!0};this.identity_select=function(a){var b;if(b=a.get_single_selection())this.enable_command("delete",1<a.rowcount&&2>this.env.identities_level),
|
||||
this.load_identity(b,"edit-identity")};this.load_identity=function(a,b){if("edit-identity"==b&&(!a||a==this.env.iid))return!1;var d,e=window,g={_action:b,_iid:a};if(d=this.get_frame_window(this.env.contentframe))g._framed=1,e=d;(a||"add-identity"==b)&&this.location_href(g,e,!0);return!0};this.delete_identity=function(a){var b=this.identity_list.get_selection();if(b.length||this.env.iid)a||(a=this.env.iid?this.env.iid:b[0]),a&&confirm(this.get_label("deleteidentityconfirm"))&&this.http_post("settings/delete-identity",
|
||||
{_iid:a},!0)};this.update_identity_row=function(a,b,d){var e=this.identity_list;a=this.html_identifier(a);d?(e.insert_row({id:"rcmrow"+a,cols:[{className:"mail",innerHTML:b}]}),e.select(a)):e.update_row(a,[b])};this.update_response_row=function(a,b){var d=this.responses_list;d&&b?d.update_row(b,[a.name],a.key,!0):d&&(d.insert_row({id:"rcmrow"+a.key,cols:[{className:"name",innerHTML:a.name}]}),d.select(a.key))};this.remove_response=function(a){var b;this.env.textresponses&&delete this.env.textresponses[a];
|
||||
this.responses_list&&(this.responses_list.remove_row(a),this.env.contentframe&&(b=this.get_frame_window(this.env.contentframe))&&(b.location.href=this.env.blankpage));this.enable_command("delete",!1)};this.remove_identity=function(a){var b,d=this.identity_list,e=this.html_identifier(a);d&&a&&(d.remove_row(e),this.env.contentframe&&(b=this.get_frame_window(this.env.contentframe))&&(b.location.href=this.env.blankpage));this.enable_command("delete",!1)};this.init_subscription_list=function(){var a=RegExp.escape(this.env.delimiter);
|
||||
this.last_sub_rx=RegExp("["+a+"]?[^"+a+"]+$");this.subscription_list=new rcube_treelist_widget(this.gui_objects.subscriptionlist,{selectable:!0,tabexit:!1,parent_focus:!0,id_prefix:"rcmli",id_encode:this.html_identifier_encode,id_decode:this.html_identifier_decode,searchbox:"#foldersearch"});this.subscription_list.addEventListener("select",function(a){f.subscription_select(a.id)}).addEventListener("collapse",function(a){f.folder_collapsed(a)}).addEventListener("expand",function(a){f.folder_collapsed(a)}).addEventListener("search",
|
||||
function(a){a.query&&f.subscription_select()}).draggable({cancel:"li.mailbox.root"}).droppable({accept:function(a){if(!$(a).is(".mailbox"))return!1;a=f.folder_id2name($(a).attr("id"));var b=f.folder_id2name(this.id),e=f.env.subscriptionrows[a];return e&&!e[2]&&b!=a.replace(f.last_sub_rx,"")&&!b.startsWith(a+f.env.delimiter)},drop:function(a,d){var b=f.folder_id2name(d.draggable.attr("id")),g=f.folder_id2name(this.id);f.subscription_move_folder(b,g)}})};this.folder_id2name=function(a){return a?f.html_identifier_decode(a.replace(/^rcmli/,
|
||||
"")):null};this.subscription_select=function(a){var b;a&&"*"!=a&&(b=this.env.subscriptionrows[a])?(this.env.mailbox=a,this.show_folder(a),this.enable_command("delete-folder",!b[2])):(this.env.mailbox=null,this.show_contentframe(!1),this.enable_command("delete-folder","purge",!1))};this.subscription_move_folder=function(a,b){if(a&&null!==b&&a!=b&&b!=a.replace(this.last_sub_rx,"")){var d=a.split(this.env.delimiter).pop(),d=""===b||"*"===b?d:b+this.env.delimiter+d;d!=a&&this.http_post("rename-folder",
|
||||
{_folder_oldname:a,_folder_newname:d},this.set_busy(!0,"foldermoving"))}};this.create_folder=function(){this.show_folder("",this.env.mailbox)};this.delete_folder=function(a){a||(a=this.env.mailbox);a&&confirm(this.get_label("deletefolderconfirm"))&&this.http_post("delete-folder",{_mbox:a},this.set_busy(!0,"folderdeleting"))};this.add_folder_row=function(a,b,d,e,g,h,k,l){if(!this.gui_objects.subscriptionlist)return!1;this.subscription_list.is_search()&&(this.subscription_select(),this.subscription_list.reset_search());
|
||||
this.subscription_list.draggable("destroy").droppable("destroy");var m,n,p,q,t,u="",w=[],x=[],v=[],y=$(this.gui_objects.subscriptionlist);m=k?k:$($("li",y).get(1)).clone(!0);if(!m.length)return this.goto_url("folders"),!1;m.attr({id:"rcmli"+this.html_identifier_encode(a),"class":h});k&&k.length||($("ul,div.treetoggle",m).remove(),m.removeData("filtered"));$("a:first",m).text(d);$('input[name="_subscribed[]"]:first',m).val(a).prop({checked:g?!0:!1,disabled:e?!0:!1});this.env.subscriptionrows[a]=[b,
|
||||
d,!1];$.each(this.env.subscriptionrows,function(a,b){b[3]=a;w.push(b)});try{t=new Intl.Collator(this.env.locale.replace("_","-"))}catch(z){}w.sort(function(a,b){var d,e,g,h=a[0].split(f.env.delimiter),k=b[0].split(f.env.delimiter),l=h.length;for(d=0;d<l;d++){e=h[d];g=k[d];if(e!==g)return void 0===g?1:t?t.compare(e,g):e<g?-1:1;if(d==l-1)return-1}});for(n in w)d=w[n][3],w[n][2]?(b=d+this.env.delimiter,b!=this.env.prefix_ns&&(v.push(d),p=b)):p&&d.startsWith(p)?v.push(d):(x.push(d),p=null);for(n=0;n<
|
||||
v.length;n++)a.startsWith(v[n]+this.env.delimiter)&&(q=v[n]);for(n=0;!q&&n<x.length;n++)n&&x[n]==a&&(q=x[n-1]);if(q&&(n=this.subscription_list.get_item(q,!0))){if(p=a.lastIndexOf(this.env.delimiter))u=a.substring(0,p),u=this.subscription_list.get_item(u,!0),$("div.treetoggle",u).length||$("<div> </div>").addClass("treetoggle collapsed").appendTo(u),$("ul",u).length||$("<ul>").css("display","none").appendTo(u);if(u&&n==u)$("ul:first",u).append(m);else{for(;(d=$(n).parent().parent().get(0))&&(!u||
|
||||
d!=u)&&$(d).is("li.mailbox");)n=d;$(n).after(m)}}else y.append(m);$.extend(this.env.subscriptionrows,l||{});this.subscription_list.reset(!0);this.subscription_select();u&&this.subscription_list.expand(this.folder_id2name(u.id));m=m.show().get(0);m.scrollIntoView&&m.scrollIntoView();return m};this.replace_folder_row=function(a,b,d,e,g,h){if(!this.gui_objects.subscriptionlist)return this.is_framed()?window.parent.rcmail.replace_folder_row(a,b,d,e,g,h):!1;this.subscription_list.is_search()&&(this.subscription_select(),
|
||||
this.subscription_list.reset_search());var k={},l=this.subscription_list.get_item(a,!0),m=$(l).parent(),n=a.length,p=this.env.subscriptionrows[a][0].length,q=$('input[name="_subscribed[]"]:first',l).prop("checked");a==b?$(l).attr("class",h||""):($("li",l).each(function(){var a=f.folder_id2name(this.id),e=f.env.subscriptionrows[a],g=b+a.slice(n);this.id="rcmli"+f.html_identifier_encode(g);$('input[name="_subscribed[]"]:first',this).val(g);e[0]=d+e[0].slice(p);k[g]=e;delete f.env.subscriptionrows[a]}),
|
||||
l=$(l).detach(),delete this.env.subscriptionrows[a],m.get(0)==this.gui_objects.subscriptionlist||$("li",m).length||$("ul,div.treetoggle",m.parent()).remove(),this.add_folder_row(b,d,e,g,q,h,l,k))};this.remove_folder_row=function(a){this.subscription_list.is_search()&&(this.subscription_select(),this.subscription_list.reset_search());var b=[],d=this.subscription_list.get_item(a,!0);$("li",d).each(function(){b.push(f.folder_id2name(this.id))});this.subscription_list.remove(a);b.push(a);$.each(b,function(a,
|
||||
b){delete f.env.subscriptionrows[b]})};this.subscribe=function(a){if(a){var b=this.display_message(this.get_label("foldersubscribing"),"loading");this.http_post("subscribe",{_mbox:a},b)}};this.unsubscribe=function(a){if(a){var b=this.display_message(this.get_label("folderunsubscribing"),"loading");this.http_post("unsubscribe",{_mbox:a},b)}};this.show_folder=function(a,b,d){var e=window;a="&_action=edit-folder&_mbox="+urlencode(a);b&&(a+="&_path="+urlencode(b));if(b=this.get_frame_window(this.env.contentframe))e=
|
||||
b,a+="&_framed=1";0<=String(e.location.href).indexOf(a)&&!d?this.show_contentframe(!0):this.location_href(this.env.comm_path+a,e,!0)};this.disable_subscription=function(a){(a=this.subscription_list.get_item(a,!0))&&$('input[name="_subscribed[]"]:first',a).prop("disabled",!0)};this.reset_subscription=function(a,b){var d=this.subscription_list.get_item(a,!0);d&&$('input[name="_subscribed[]"]:first',d).prop("checked",b)};this.folder_size=function(a){var b=this.set_busy(!0,"loading");this.http_post("folder-size",
|
||||
{_mbox:a},b)};this.folder_size_update=function(a){$("#folder-size").replaceWith(a)};this.folder_filter=function(a){this.subscription_list.reset_search();this.subscription_list.container.children("li").each(function(){var b,d=f.folder_id2name(this.id);if("---"!=a)if(a){if(d!==a){$(this).data("filtered",!0).hide();return}}else for(b in f.env.ns_roots)if(d===f.env.ns_roots[b]){$(this).data("filtered",!0).hide();return}$(this).removeData("filtered").show()})};var v=function(a,b){var d=document.getElementById(b.id);
|
||||
if(d){var e=!1;"image"==b.type&&(d=d.parentNode,e=!0);d._command=a;d._id=b.id;b.sel&&(d.onmousedown=function(a){return f.button_sel(this._command,this._id)},d.onmouseup=function(a){return f.button_out(this._command,this._id)},e&&((new Image).src=b.sel));b.over&&(d.onmouseover=function(a){return f.button_over(this._command,this._id)},d.onmouseout=function(a){return f.button_out(this._command,this._id)},e&&((new Image).src=b.over))}};this.init_buttons=function(){for(var a in this.buttons)if("string"===
|
||||
typeof a)for(var b=0;b<this.buttons[a].length;b++)v(a,this.buttons[a][b])};this.set_button=function(a,b){var d,e,g,f=this.buttons[a],k=f?f.length:0;for(d=0;d<k;d++)if(e=f[d],(g=document.getElementById(e.id))&&e.status!==b)"image"!=e.type||e.status?e.status||(e.pas=String(g.className)):(e.pas=g._original_src?g._original_src:g.src,g.runtimeStyle&&g.runtimeStyle.filter&&g.runtimeStyle.filter.match(/src=['"]([^'"]+)['"]/)&&(e.pas=RegExp.$1)),e.status=b,"image"==e.type&&e[b]?g.src=e[b]:void 0!==e[b]&&
|
||||
(g.className=e[b]),"input"==e.type?g.disabled="pas"==b:"uibutton"==e.type?(e.status=b,$(g).button("option","disabled","pas"==b)):(e=$(g),e.attr("tabindex","pas"==b||"sel"==b?"-1":e.attr("data-tabindex")||"0").attr("aria-disabled","pas"==b||"sel"==b?"true":"false"))};this.set_alttext=function(a,b){var d,e,g,f,k=this.buttons[a],l=k?k.length:0;for(d=0;d<l;d++)e=k[d],g=document.getElementById(e.id),"image"==e.type&&g?(g.setAttribute("alt",this.get_label(b)),(f=g.parentNode)&&"a"==f.tagName.toLowerCase()&&
|
||||
f.setAttribute("title",this.get_label(b))):g&&g.setAttribute("title",this.get_label(b))};this.button_over=function(a,b){this.button_event(a,b,"over")};this.button_sel=function(a,b){this.button_event(a,b,"sel")};this.button_out=function(a,b){this.button_event(a,b,"act")};this.button_event=function(a,b,d){var e,g,f,k=this.buttons[a],l=k?k.length:0;for(e=0;e<l;e++)g=k[e],g.id==b&&"act"==g.status&&(g[d]&&(f=document.getElementById(g.id))&&(f["image"==g.type?"src":"className"]=g[d]),"sel"==d&&(this.buttons_sel[b]=
|
||||
a))};this.set_pagetitle=function(a){a&&document.title&&(document.title=a)};this.display_message=function(a,b,d,e){if(this.is_framed())return parent.rcmail.display_message(a,b,d);if(!this.gui_objects.message)return"loading"!=b&&(this.pending_message=[a,b,d,e]),1;b||(b="notice");e||(e=this.html_identifier(a));var g=b+(new Date).getTime();if(!d)switch(b){case "error":case "warning":d=2*this.message_time;break;case "uploading":d=0;break;default:d=this.message_time}"loading"==b&&(e="loading",d=1E3*this.env.request_timeout,
|
||||
a||(a=this.get_label("loading")));if(this.messages[e])return this.messages[e].obj&&this.messages[e].obj.html(a),"loading"==b&&this.messages[e].labels.push({id:g,msg:a}),this.messages[e].elements.push(g),setTimeout(function(){f.hide_message(g,"loading"==b)},d),g;var h=$("<div>").addClass(b).html(a).data("key",e);$(this.gui_objects.message).append(h).show();this.messages[e]={obj:h,elements:[g]};"loading"==b?this.messages[e].labels=[{id:g,msg:a}]:"uploading"!=b&&h.click(function(){return f.hide_message(h)}).attr("role",
|
||||
"alert");this.triggerEvent("message",{message:a,type:b,timeout:d,object:h});0<d&&setTimeout(function(){f.hide_message(g,"loading"!=b)},d);return g};this.hide_message=function(a,b){if(this.is_framed())return parent.rcmail.hide_message(a,b);if(this.gui_objects.message){var d,e,g,f,k=this.messages;if("object"===typeof a)f=$(a),d=f.data("key"),this.hide_message_object(f,b),k[d]&&delete k[d];else for(d in k)for(e in k[d].elements)if(k[d]&&k[d].elements[e]==a)if(k[d].elements.splice(e,1),!k[d].elements.length)this.hide_message_object(k[d].obj,
|
||||
b),delete k[d];else if("loading"==d)for(g in k[d].labels)k[d].labels[g].id==a?delete k[d].labels[g]:(f=k[d].labels[g].msg,k[d].obj.html(f))}};this.hide_message_object=function(a,b){b?a.fadeOut(600,function(){$(this).remove()}):a.hide().remove()};this.clear_messages=function(){if(this.is_framed())return parent.rcmail.clear_messages();var a,b,d=this.messages;for(a in d)for(b in d[a].elements)d[a].obj&&this.hide_message_object(d[a].obj);this.messages={}};this.display_progress=function(a){if(a&&a.name){var b=
|
||||
this.messages["progress"+a.name];a.label||(a.label=this.get_label("uploadingmany"));b?!a.total||100<=a.percent?this.hide_message(b.obj):(a.text&&(a.label+=" "+a.text),b.obj.text(a.label)):(!a.percent||100>a.percent)&&this.display_message(a.label,"uploading",0,"progress"+a.name)}};this.show_popup_dialog=function(a,b,d,e){if(this.is_framed())return parent.rcmail.show_popup_dialog(a,b,d,e);var g=$('<div class="popup">');"object"==typeof a?g.append(a):g.html(a);e=$.extend({title:b,buttons:d,modal:!0,
|
||||
resizable:!0,width:500,close:function(a,b){$(this).remove()}},e||{});g.dialog(e);b=$(window);a=b.width();b=b.height();var f=g.width(),k=g.height();g.dialog("option",{height:Math.min(b-40,k+75+(d?50:0)),width:Math.min(a-20,f+36)});$.each(e.button_classes||[],function(a,b){b&&$($(".ui-dialog-buttonpane button.ui-button",g.parent()).get(a)).addClass(b)});return g};this.simple_dialog=function(a,b,d,e){b=this.get_label(b);var g=[{text:this.get_label((e||{}).button||"save"),"class":"mainaction",click:function(){d()&&
|
||||
$(this).dialog("close")}},{text:f.get_label("cancel"),click:function(){$(this).dialog("close")}}];return this.show_popup_dialog(a,b,g,e)};this.set_page_buttons=function(){this.enable_command("nextpage","lastpage",this.env.pagecount>this.env.current_page);this.enable_command("previouspage","firstpage",1<this.env.current_page);this.update_pagejumper()};this.select_folder=function(a,b,d){this.savedsearchlist&&this.savedsearchlist.select("");this.treelist?this.treelist.select(a):this.gui_objects.folderlist&&
|
||||
($("li.selected",this.gui_objects.folderlist).removeClass("selected"),$(this.get_folder_li(a,b,d)).addClass("selected"),this.triggerEvent("selectfolder",{folder:a,prefix:b}))};this.mark_folder=function(a,b,d,e){$(this.get_folder_li(a,d,e)).addClass(b);this.triggerEvent("markfolder",{folder:a,mark:b,status:!0})};this.unmark_folder=function(a,b,d,e){$(this.get_folder_li(a,d,e)).removeClass(b);this.triggerEvent("markfolder",{folder:a,mark:b,status:!1})};this.get_folder_li=function(a,b,d){b||(b="rcmli");
|
||||
if(this.gui_objects.folderlist)return a=this.html_identifier(a,d),document.getElementById(b+a)};this.set_message_coltypes=function(a,b,d){var e=this.message_list,g=e?e.thead:null,f,k;this.env.listcols=a;this.env.coltypes||(this.env.coltypes={});if(g){if(b){g.innerHTML="";k=document.createElement("tr");c=0;for(a=b.length;c<a;c++)f=document.createElement("th"),f.innerHTML=b[c].html||"",b[c].id&&(f.id=b[c].id),b[c].className&&(f.className=b[c].className),k.appendChild(f);g.appendChild(k)}k=0;for(a=this.env.listcols.length;k<
|
||||
a;k++)b=this.env.listcols[k],!(f=g.rows[0].cells[k])||"from"!=b&&"to"!=b&&"fromto"!=b||$(f).attr("rel",b).find("span,a").text(this.get_label("fromto"==b?d:b))}this.env.subject_col=null;this.env.flagged_col=null;this.env.status_col=null;this.env.coltypes.folder&&(this.env.coltypes.folder.hidden=!(this.env.search_request||this.env.search_id)||"base"==this.env.search_scope);0<=(k=$.inArray("subject",this.env.listcols))&&(this.env.subject_col=k,e&&(e.subject_col=k));0<=(k=$.inArray("flag",this.env.listcols))&&
|
||||
(this.env.flagged_col=k);0<=(k=$.inArray("status",this.env.listcols))&&(this.env.status_col=k);e&&(e.hide_column("folder",this.env.coltypes.folder&&this.env.coltypes.folder.hidden||0>$.inArray("folder",this.env.listcols)),e.init_header())};this.set_rowcount=function(a,b){if(b&&b!=this.env.mailbox)return!1;$(this.gui_objects.countdisplay).html(a);this.set_page_buttons()};this.set_mailboxname=function(a){this.gui_objects.mailboxname&&a&&(this.gui_objects.mailboxname.innerHTML=a)};this.set_quota=function(a){this.gui_objects.quotadisplay&&
|
||||
a&&"text"==a.type&&$(this.gui_objects.quotadisplay).text((a.percent||0)+"%").attr("title",a.title);this.triggerEvent("setquota",a);this.env.quota_content=a};this.set_trash_count=function(a){this[(a?"un":"")+"mark_folder"](this.env.trash_mailbox,"empty","",!0)};this.set_unread_count=function(a,b,d,e){if(!this.gui_objects.mailboxlist)return!1;this.env.unread_counts[a]=b;this.set_unread_count_display(a,d);e?this.mark_folder(a,e,"",!0):b||this.unmark_folder(a,"recent","",!0);this.mark_all_read_state()};
|
||||
this.set_unread_count_display=function(a,b){var d,e,g,f,k;if(g=this.get_folder_li(a,"",!0)){f=this.env.unread_counts[a]?this.env.unread_counts[a]:0;e=$(g).children("a").eq(0);d=e.children("span.unreadcount");!d.length&&f&&(d=$("<span>").addClass("unreadcount").appendTo(e));e=0;if((k=g.getElementsByTagName("div")[0])&&k.className.match(/collapsed/))for(var l in this.env.unread_counts)l.startsWith(a+this.env.delimiter)&&(e+=this.env.unread_counts[l]);f&&d.length?d.html(this.env.unreadwrap.replace(/%[sd]/,
|
||||
f)):d.length&&d.remove();d=new RegExp(RegExp.escape(this.env.delimiter)+"[^"+RegExp.escape(this.env.delimiter)+"]+$");a.match(d)&&this.set_unread_count_display(a.replace(d,""),!1);0<f+e?$(g).addClass("unread"):$(g).removeClass("unread")}d=/^\([0-9]+\)\s+/i;b&&document.title&&(g=String(document.title),f=f&&g.match(d)?g.replace(d,"("+f+") "):f?"("+f+") "+g:g.replace(d,""),this.set_pagetitle(f))};this.set_headers=function(a){this.gui_objects.all_headers_row&&this.gui_objects.all_headers_box&&a&&$(this.gui_objects.all_headers_box).html(a).show()};
|
||||
this.show_headers=function(a,b){this.gui_objects.all_headers_row&&this.gui_objects.all_headers_box&&this.env.uid&&($(b).removeClass("show-headers").addClass("hide-headers"),$(this.gui_objects.all_headers_row).show(),b.onclick=function(){f.command("hide-headers","",b)},this.gui_objects.all_headers_box.innerHTML||this.http_post("headers",{_uid:this.env.uid,_mbox:this.env.mailbox},this.display_message(this.get_label("loading"),"loading")))};this.hide_headers=function(a,b){this.gui_objects.all_headers_row&&
|
||||
this.gui_objects.all_headers_box&&($(b).removeClass("hide-headers").addClass("show-headers"),$(this.gui_objects.all_headers_row).hide(),b.onclick=function(){f.command("show-headers","",b)})};this.folder_selector=function(a,b){var d=this.folder_selector_element;if(!d){var e=[],g=this.env.delimiter,h=$('<ul class="toolbarmenu">'),k=document.createElement("a"),d=$('<div id="folder-selector" class="popupmenu"></div>');k.href="#";k.className="icon";$.each(this.env.mailboxes_list,function(){var a=0,b=0,
|
||||
d=f.env.mailboxes[this],h=d.id,q=$(k.cloneNode(!1)),t=$("<li>");d.virtual?q.addClass("virtual").attr("aria-disabled","true").attr("tabindex","-1"):q.addClass("active").data("id",d.id);for(d["class"]&&q.addClass(d["class"]);0<=(b=h.indexOf(g,b));)a++,b++;q.css("padding-left",a?16*a+"px":0);q.append($("<span>").text(d.name));t.append(q);e.push(t)});h.append(e).appendTo(d);d.css({left:"-1000px",top:"-1000px"}).appendTo($("body")).show();10<e.length&&d.css("max-height",10*$("li",d)[0].offsetHeight+9);
|
||||
d.on("click","a.active",function(a){d.data("callback")($(this).data("id"));return!1});this.folder_selector_element=d}d.data("callback",b);this.show_menu("folder-selector",!0,a)};this.show_menu=function(a,b,d){var e="object"==typeof a?a.menu:a,g=$("#"+e),f=d&&d.target?$(d.target):$(g.attr("rel")||"#"+e+"link"),k=rcube_event.is_keyboard(d),l=g.attr("data-align")||"",m=!1;"A"!=f.get(0).tagName&&f.closest("a").length&&(f=f.closest("a"));"string"==typeof a&&(a={menu:e});g.length||(g=this.triggerEvent("menu-get",
|
||||
{name:e,props:a,originalEvent:d}));if(!g||!g.length)return this.triggerEvent(!1===b?"menu-close":"menu-open",{name:e,props:a,originalEvent:d});g.appendTo(document.body);"undefined"==typeof b&&(b=g.is(":visible")?!1:!0);if(b&&f.length){var n=$(window),p=f.offset(),q=0<=l.indexOf("bottom"),m="menuitem"==f.attr("role")||0<f.closest("[role=menuitem]").length;f.offsetWidth=f.outerWidth();f.offsetHeight=f.outerHeight();!q&&p.top+f.offsetHeight+g.height()>n.height()&&(q=!0);0<=l.indexOf("right")?p.left=
|
||||
p.left+f.outerWidth()-g.width():m&&(p.left=p.left+f.offsetWidth-5,p.top-=f.offsetHeight);p.left+g.width()>n.width()&&(p.left=n.width()-g.width()-12);p.top=Math.max(0,p.top+(q?-g.height():f.offsetHeight));g.css({left:p.left+"px",top:p.top+"px"})}if(b){for(l=this.menu_stack.length-1;m&&0<=l;l--)$(f).parents("#"+this.menu_stack[l]).length||"menuitem"==$(d.target).parent().attr("role")||this.hide_menu(this.menu_stack[l],d);m&&this.menu_stack.length?(g.data("parent",$.last(this.menu_stack)),g.css("z-index",
|
||||
($("#"+$.last(this.menu_stack)).css("z-index")||0)+1)):!m&&this.menu_stack.length&&this.hide_menu(this.menu_stack[0],d);g.show().attr("aria-hidden","false").data("opener",f.attr("aria-expanded","true").get(0));this.triggerEvent("menu-open",{name:e,obj:g,props:a,originalEvent:d});this.menu_stack.push(e);if(this.menu_keyboard_active=b&&k)this.focused_menu=e,g.find("a,input:not(:disabled)").not("[aria-disabled=true]").first().focus()}else this.hide_menu(e,d);return b};this.hide_menu=function(a,b){if(this.menu_stack.length){for(var d,
|
||||
e=rcube_event.is_keyboard(b),f=this.menu_stack.length-1;0<=f;f--)d=$("#"+this.menu_stack[f]).hide().attr("aria-hidden","true").data("parent",!1),this.triggerEvent("menu-close",{name:this.menu_stack[f],obj:d,props:{menu:this.menu_stack[f]},originalEvent:b}),this.menu_stack[f]==a&&(f=-1,d.data("opener")&&($(d.data("opener")).attr("aria-expanded","false"),e&&d.data("opener").focus())),this.menu_stack.pop();this.menu_stack.length&&e?(this.menu_keyboard_active=!0,this.focused_menu=$.last(this.menu_stack),
|
||||
d&&d.data("opener")||$("#"+this.focused_menu).find("a,input:not(:disabled)").not("[aria-disabled=true]").first().focus()):(this.focused_menu=null,this.menu_keyboard_active=!1)}else this.triggerEvent("menu-close",{name:a,props:{menu:a},originalEvent:b})};this.element_position=function(a,b){b=$(b);var d=$(window),e=b.outerWidth(),f=b.outerHeight(),h=b.data("menu-pos"),k=d.height(),l=$(a).height(),m=$(a).width(),n=b.offset(),p=n.top,n=n.left+e;"bottom"==h?(p+=f,n-=e):n-=5;p+l>k&&(p-=l-f,0>p&&(p=Math.max(0,
|
||||
(k-l)/2)));n+m>d.width()&&(n-=m+e);a.css({left:n+"px",top:p+"px"})};this.editor_init=function(a,b){this.editor=new rcube_text_editor(a,b)};this.html2plain=function(a,b){return this.format_converter(a,"html",b)};this.plain2html=function(a,b){return this.format_converter(a,"plain",b)};this.format_converter=function(a,b,d){if(!a||"html"==b&&!a.replace(/<[^>]+>| |\xC2\xA0|\s/g,"").length||"html"!=b&&!a.replace(/\xC2\xA0|\s/g,"").length)return d&&setTimeout(function(){d("")},50),!0;var e=this.env.editor_warned||
|
||||
confirm(this.get_label("editorwarning"));this.env.editor_warned=!0;if(!e)return!1;b="?_task=utils&_action="+("html"==b?"html2text":"text2html");var g=this.set_busy(!0,"converting");$.ajax({type:"POST",url:b,data:a,contentType:"application/octet-stream",error:function(a,b,d){f.http_error(a,b,d,g)},success:function(a){f.set_busy(!1,null,g);d&&d(a)}});return!0};this.url=function(a,b){var d="string"===typeof b?b:"";"string"!==typeof a?b=a:b&&"object"===typeof b||(b={});a?b._action=a:this.env.action&&
|
||||
(b._action=this.env.action);var e=this.env.comm_path,f,h={};a&&a.match(/([a-z0-9_-]+)\/([a-z0-9-_.]+)/)&&(b._action=RegExp.$2,e=e.replace(/\_task=[a-z0-9_-]+/,"_task="+RegExp.$1));for(f in b)void 0!==b[f]&&null!==b[f]&&(h[f]=b[f]);if(h=$.param(h))e+=(-1<e.indexOf("?")?"&":"?")+h;d&&(e+=(-1<e.indexOf("?")?"&":"?")+d);return e};this.redirect=function(a,b){(b||null===b)&&this.set_busy(!0);this.is_framed()?parent.rcmail.redirect(a,b):(this.env.extwin&&("string"==typeof a?a+=(0>a.indexOf("?")?"?":"&")+
|
||||
"_extwin=1":a._extwin=1),this.location_href(a,window))};this.goto_url=function(a,b,d,e){a=this.url(a,b);e&&(a=this.secure_url(a));this.redirect(a,d)};this.location_href=function(a,b,d){d&&this.lock_frame();"object"==typeof a&&(a=this.env.comm_path+"&"+$.param(a));bw.ie&&b==window?$("<a>").attr("href",a).appendTo(document.body).get(0).click():b.location.href=a;this.start_keepalive()};this.update_state=function(a){if(window.history.replaceState)try{window.history.replaceState({},document.title,rcmail.url("",
|
||||
a))}catch(b){}};this.http_get=this.http_request=function(a,b,d,e){"POST"!=e&&(e="GET");"object"!==typeof b&&(b=rcube_parse_query(b));b._remote=1;b._unlock=d?d:0;var g=this.triggerEvent("request"+a,b);if(!1===g)return b._unlock&&this.set_busy(!1,null,b._unlock),!1;void 0!==g&&(b=g,b._action&&(a=b._action,delete b._action));g=this.url(a);this.start_keepalive();return $.ajax({type:e,url:g,data:b,dataType:"json",success:function(a){f.http_response(a)},error:function(b,e,g){f.http_error(b,e,g,d,a)}})};
|
||||
this.http_post=function(a,b,d){return this.http_request(a,b,d,"POST")};this.abort_request=function(a){a.request&&a.request.abort();a.lock&&this.set_busy(!1,null,a.lock)};this.http_response=function(a){if(a){a.unlock&&this.set_busy(!1);this.triggerEvent("responsebefore",{response:a});this.triggerEvent("responsebefore"+a.action,{response:a});a.env&&this.set_env(a.env);var b;if("object"===typeof a.texts)for(b in a.texts)"string"===typeof a.texts[b]&&this.add_label(b,a.texts[b]);a.exec&&eval(a.exec);
|
||||
if(a.callbacks&&a.callbacks.length)for(b=0;b<a.callbacks.length;b++)this.triggerEvent(a.callbacks[b][0],a.callbacks[b][1]);switch(a.action){case "mark":"show"!=this.env.action&&"preview"!=this.env.action||"SEEN"!=this.env.last_flag||this.set_unread_message(this.env.uid,this.env.mailbox);break;case "delete":if("addressbook"==this.task){var d;b=this.contact_list.get_selection();d=!1;b&&this.contact_list.rows[b]&&(d=""==this.env.source?(d=String(b).replace(/^[^-]+-/,""))&&this.env.address_sources[d]&&
|
||||
!this.env.address_sources[d].readonly:!this.env.address_sources[this.env.source].readonly);this.enable_command("compose",b&&this.contact_list.rows[b]);this.enable_command("delete","edit",d);this.enable_command("export",this.contact_list&&0<this.contact_list.rowcount);this.enable_command("export-selected","print",!1)}case "move":"show"==this.env.action?(this.enable_command(this.env.message_commands,!0),this.env.list_post||this.enable_command("reply-list",!1)):"addressbook"==this.task&&this.triggerEvent("listupdate",
|
||||
{folder:this.env.source,rowcount:this.contact_list.rowcount});case "purge":case "expunge":"mail"==this.task&&(this.env.exists||(this.env.contentframe&&this.show_contentframe(!1),this.enable_command(this.env.message_commands,"purge","expunge","select-all","select-none","expand-all","expand-unread","collapse-all",!1)),this.message_list&&this.triggerEvent("listupdate",{folder:this.env.mailbox,rowcount:this.message_list.rowcount}));break;case "refresh":case "check-recent":$.each(this.env.recent_flags||
|
||||
{},function(a,b){f.set_message(a,"deleted",b.deleted);f.set_message(a,"replied",b.answered);f.set_message(a,"unread",!b.seen);f.set_message(a,"forwarded",b.forwarded);f.set_message(a,"flagged",b.flagged)}),delete this.env.recent_flags;case "getunread":case "search":this.env.qsearch=null;case "list":if("mail"==this.task){d=this.is_multifolder_listing();var e=this.message_list;b=this.env.list_uid;this.enable_command("show","select-all","select-none",0<this.env.messagecount);this.enable_command("expunge",
|
||||
this.env.exists&&!d);this.enable_command("purge",this.purge_mailbox_test()&&!d);this.enable_command("import-messages",!d);this.enable_command("expand-all","expand-unread","collapse-all",this.env.threading&&this.env.messagecount&&!d);if(e){if("list"==a.action||"search"==a.action)b&&(e.rows[b]||(b+="-"+this.env.mailbox),e.rows[b]&&e.select(b),delete this.env.list_uid),this.enable_command("set-listmode",this.env.threads&&!d),0<e.rowcount&&!$(document.activeElement).is("input,textarea")&&e.focus(),e.triggerEvent("select");
|
||||
"getunread"!=a.action&&this.triggerEvent("listupdate",{folder:this.env.mailbox,rowcount:e.rowcount})}}else"addressbook"==this.task&&(this.enable_command("export",this.contact_list&&0<this.contact_list.rowcount),"list"==a.action||"search"==a.action)&&(this.enable_command("search-create",""==this.env.source),this.enable_command("search-delete",this.env.search_id),this.update_group_commands(),0<this.contact_list.rowcount&&!$(document.activeElement).is("input,textarea")&&this.contact_list.focus(),this.triggerEvent("listupdate",
|
||||
{folder:this.env.source,rowcount:this.contact_list.rowcount}));break;case "list-contacts":case "search-contacts":this.contact_list&&0<this.contact_list.rowcount&&this.contact_list.focus()}a.unlock&&this.hide_message(a.unlock);this.triggerEvent("responseafter",{response:a});this.triggerEvent("responseafter"+a.action,{response:a});this.start_keepalive()}};this.http_error=function(a,b,d,e,g){d=a.statusText;this.set_busy(!1,null,e);a.abort();this.unload||(a.status&&d?this.display_message(this.get_label("servererror")+
|
||||
" ("+d+")","error"):"timeout"==b?this.display_message(this.get_label("requesttimedout"),"error"):0==a.status&&"abort"!=b&&this.display_message(this.get_label("connerror"),"error"),(b=a.getResponseHeader("Location"))&&"compose"!=this.env.action&&this.redirect(b),403==a.status?(this.is_framed()?parent:window).location.reload():"keep-alive"==g&&setTimeout(function(){f.keep_alive();f.start_keepalive()},3E4))};this.session_error=function(a){this.env.server_error=401;"compose"==this.env.action?(this.save_compose_form_local(),
|
||||
this.compose_skip_unsavedcheck=!0,this.env.session_lifetime=0,this._keepalive&&clearInterval(this._keepalive),this._refresh&&clearInterval(this._refresh)):a&&setTimeout(function(){f.redirect(a,!0)},2E3)};this.iframe_loaded=function(a){this.set_busy(!1,null,a);this.submit_timer&&clearTimeout(this.submit_timer)};this.multi_thread_http_request=function(a){var b,d,e=(new Date).getTime(),f=a.threads||1;a.reqid=e;a.running=0;a.requests=[];a.result=[];a._items=$.extend([],a.items);a.lock||(a.lock=this.display_message(this.get_label("loading"),
|
||||
"loading"));this.http_request_jobs[e]=a;for(b=0;b<f;b++){d=a._items.shift();if(void 0===d)break;a.running++;a.requests.push(this.multi_thread_send_request(a,d))}return e};this.multi_thread_send_request=function(a,b){var d,e,f;if(a.postdata){e={};for(d in a.postdata)e[d]=String(a.postdata[d]).replace("%s",b);e._reqid=a.reqid}else if("string"==typeof a.query)f=a.query.replace("%s",b),f+="&_reqid="+a.reqid;else if("object"==typeof a.query&&a.query){f={};for(d in a.query)f[d]=String(a.query[d]).replace("%s",
|
||||
b);f._reqid=a.reqid}return e?this.http_post(a.action,e):this.http_request(a.action,f)};this.multi_thread_http_response=function(a,b){var d=this.http_request_jobs[b];if(!(!d||0>=d.running||d.cancelled)){d.running--;if(d.onresponse&&"function"==typeof d.onresponse)d.onresponse(a);d.result=$.extend(d.result,a);var e=d._items.shift();void 0!==e?(d.running++,d.requests.push(this.multi_thread_send_request(d,e))):0==d.running&&(d.whendone&&"function"==typeof d.whendone&&d.whendone(d.result),this.set_busy(!1,
|
||||
"",d.lock),delete this.http_request_jobs[b])}};this.multi_thread_request_abort=function(a){if(a=this.http_request_jobs[a]){for(var b=0;0<a.running&&b<a.requests.length;b++)a.requests[b].abort&&a.requests[b].abort();a.running=0;a.cancelled=!0;this.set_busy(!1,"",a.lock)}};this.async_upload_form=function(a,b,d){var e=(new Date).getTime(),f="rcmupload"+e,h=this.async_upload_form_frame(f);if(this.env.upload_progress_name){var k=this.env.upload_progress_name,l=$("input[name="+k+"]",a);l.length||(l=$("<input>").attr({type:"hidden",
|
||||
name:k}),l.prependTo(a));l.val(e)}h.on("load",{ts:e},d);$(a).attr({target:f,action:this.url(b,{_id:this.env.compose_id||"",_uploadid:e,_from:this.env.action}),method:"POST"}).attr(a.encoding?"encoding":"enctype","multipart/form-data").submit();return f};this.async_upload_form_frame=function(a){return $("<iframe>").attr({name:a,style:"border: none; width: 0; height: 0; visibility: hidden"}).appendTo(document.body)};this.document_drag_hover=function(a,b){$(this.gui_objects.filedrop)[b?"addClass":"removeClass"]("active")};
|
||||
this.file_drag_hover=function(a,b){a.preventDefault();a.stopPropagation();$(this.gui_objects.filedrop)[b?"addClass":"removeClass"]("hover")};this.file_dropped=function(a){this.file_drag_hover(a,!1);var b,d=a.target.files||a.dataTransfer.files,e=window.FormData?new FormData:null,g=(this.env.filedrop.fieldname||"_file")+(this.env.filedrop.single?"":"[]"),h="------multipartformboundary"+(new Date).getTime(),k="--"+h+"\r\n",l={_id:this.env.compose_id||this.env.cid||"",_remote:1,_from:this.env.action};
|
||||
if(d&&d.length)for(var m=function(){var a=1<d.length,b=(new Date).getTime(),a=$("<span>").text(a?f.get_label("uploadingmany"):d[0].name).html();f.add2attachment_list(b,{name:"",html:a,classname:"uploading",complete:!1})||(f.file_upload_id=f.set_busy(!0,"uploading"));k+="--"+h+"--\r\n";l._uploadid=b;$.ajax({type:"POST",dataType:"json",url:f.url(f.env.filedrop.action||"upload",l),contentType:e?!1:"multipart/form-data; boundary="+h,processData:!1,timeout:0,data:e||k,headers:{"X-Roundcube-Request":f.env.request_token},
|
||||
xhr:function(){var a=jQuery.ajaxSettings.xhr();!e&&a.sendAsBinary&&(a.send=a.sendAsBinary);return a},success:function(a){f.http_response(a)},error:function(a,b,d){f.http_error(a,b,d,null,"attachment")}})},n=this.env.filedrop.single?0:d.length-1,p=b=0,q;b<=n&&(q=d[p]);p++){if(q.name||(q.name=q.fileName),q.size||(q.size=q.fileSize),q.type||(q.type="application/octet-stream"),!e&&/[^\x20-\x7E]/.test(q.name)&&(q.name_bin=unescape(encodeURIComponent(q.name))),!this.env.filedrop.filter||q.type.match(new RegExp(this.env.filedrop.filter))){if(e){if(e.append(g,
|
||||
q),b==n)return m()}else if(window.FileReader){var t=new FileReader;t.onload=function(a,b){return function(d){k+='Content-Disposition: form-data; name="'+g+'"';k+='; filename="'+(q.name_bin||a.name)+'"\r\n';k+="Content-Length: "+a.size+"\r\n";k+="Content-Type: "+a.type+"\r\n\r\n";k+=t.result+"\r\n";k+="--"+h+"\r\n";if(b==n)return m()}}(q,b);t.readAsBinaryString(q)}else if(q.getAsBinary&&(k+='Content-Disposition: form-data; name="'+g+'"',k+='; filename="'+(q.name_bin||q.name)+'"\r\n',k+="Content-Length: "+
|
||||
q.size+"\r\n",k+="Content-Type: "+q.type+"\r\n\r\n",k+=q.getAsBinary()+"\r\n",k+="--"+h+"\r\n",b==n))return m();b++}}else if(b=a.dataTransfer.getData("roundcube-uri"))p=(new Date).getTime(),a=$("<span>").text(a.dataTransfer.getData("roundcube-name")||this.get_label("attaching")).html(),l._uri=b,l._uploadid=p,this.add2attachment_list(p,{name:"",html:a,classname:"uploading",complete:!1})||(this.file_upload_id=this.set_busy(!0,"attaching")),this.http_post(this.env.filedrop.action||"upload",l)};this.start_keepalive=
|
||||
function(){if(this.env.session_lifetime&&!this.env.framed&&!this.env.extwin&&"login"!=this.task&&"print"!=this.env.action){this._keepalive&&clearInterval(this._keepalive);var a=500*Math.min(1800,this.env.session_lifetime);this._keepalive=setInterval(function(){f.keep_alive()},3E4>a?3E4:a)}};this.start_refresh=function(){!this.env.refresh_interval||this.env.framed||this.env.extwin||"login"==this.task||"print"==this.env.action||(this._refresh&&clearInterval(this._refresh),this._refresh=setInterval(function(){f.refresh()},
|
||||
1E3*this.env.refresh_interval))};this.keep_alive=function(){this.busy||this.http_request("keep-alive")};this.refresh=function(){if(this.busy)setTimeout(function(){f.refresh();f.start_refresh()},1E4);else{var a={},b=this.set_busy(!0,"refreshing");"mail"==this.task&&this.gui_objects.mailboxlist&&(a=this.check_recent_params());a._last=Math.floor(this.env.lastrefresh.getTime()/1E3);this.env.lastrefresh=new Date;this.http_post("refresh",a,b)}};this.check_recent_params=function(){var a={_mbox:this.env.mailbox};
|
||||
this.gui_objects.mailboxlist&&(a._folderlist=1);this.gui_objects.quotadisplay&&(a._quota=1);this.env.search_request&&(a._search=this.env.search_request);this.gui_objects.messagelist&&(a._list=1,a._uids=$.map(this.message_list.rows,function(a,d){return d}).join(","));return a};this.quote_html=function(a){return String(a).replace(/</g,"<").replace(/>/g,">").replace(/"/g,""")};this.opener=function(a,b){var d,e=window.opener;try{if(e&&!e.closed){a&&(!e.rcmail||e.rcmail.env.framed)&&e.parent&&
|
||||
e.parent.rcmail&&(e=e.parent);if(e.rcmail&&b)for(d in b)if(e.rcmail.env[d]!=b[d])return;return e.rcmail}}catch(g){}};this.get_single_uid=function(){var a=this.env.uid||(this.message_list?this.message_list.get_single_selection():null);return f.triggerEvent("get_single_uid",{uid:a})||a};this.get_single_cid=function(){var a=this.env.cid||(this.contact_list?this.contact_list.get_single_selection():null);return f.triggerEvent("get_single_cid",{cid:a})||a};this.get_message_mailbox=function(a){return((this.env.messages&&
|
||||
a?this.env.messages[a]:null)||{}).mbox||this.env.mailbox};this.params_from_uid=function(a,b){b||(b={});b._uid=String(a).split("-")[0];b._mbox=this.get_message_mailbox(a);return b};this.get_caret_pos=function(a){return void 0!==a.selectionEnd?a.selectionEnd:a.value.length};this.set_caret_pos=function(a,b){try{a.setSelectionRange&&a.setSelectionRange(b,b)}catch(d){}};this.get_input_selection=function(a){var b=0,d=0,e="";"number"==typeof a.selectionStart&&"number"==typeof a.selectionEnd&&(e=a.value,
|
||||
b=a.selectionStart,d=a.selectionEnd);return{start:b,end:d,text:e.substr(b,d-b)}};this.lock_form=function(a,b){if(a&&a.elements){var d,e,f;b&&(this.disabled_form_elements=[]);d=0;for(e=a.elements.length;d<e;d++)if(f=a.elements[d],"hidden"!=f.type)if(b&&f.disabled)this.disabled_form_elements.push(f);else if(b||0>$.inArray(f,this.disabled_form_elements))f.disabled=b}};this.mailto_handler_uri=function(){return location.href.split("?")[0]+"?_task=mail&_action=compose&_to=%s"};this.register_protocol_handler=
|
||||
function(a){try{window.navigator.registerProtocolHandler("mailto",this.mailto_handler_uri(),a)}catch(b){this.display_message(String(b),"error")}};this.check_protocol_handler=function(a,b){var d=window.navigator;d&&"function"==typeof d.registerProtocolHandler?"function"==typeof d.isProtocolHandlerRegistered?(d=d.isProtocolHandlerRegistered("mailto",this.mailto_handler_uri()))&&$(b).parent().find(".mailtoprotohandler-status").html(d):$(b).click(function(){f.register_protocol_handler(a);return!1}):$(b).addClass("disabled").click(function(){return!1})};
|
||||
this.browser_capabilities_check=function(){this.env.browser_capabilities||(this.env.browser_capabilities={});$.each(["pdf","flash","tiff","webp"],function(){void 0===f.env.browser_capabilities[this]&&(f.env.browser_capabilities[this]=f[this+"_support_check"]())})};this.browser_capabilities=function(){if(!this.env.browser_capabilities)return"";var a,b=[];for(a in this.env.browser_capabilities)b.push(a+"="+this.env.browser_capabilities[a]);return b.join()};this.tiff_support_check=function(){this.image_support_check("tiff");
|
||||
return 0};this.webp_support_check=function(){this.image_support_check("webp");return 0};this.image_support_check=function(a){window.setTimeout(function(){var b=new Image;b.onload=function(){f.env.browser_capabilities[a]=1};b.onerror=function(){f.env.browser_capabilities[a]=0};b.src=f.assets_path("program/resources/blank."+a)},10)};this.pdf_support_check=function(){var a,b=navigator.mimeTypes?navigator.mimeTypes["application/pdf"]:{},d=navigator.plugins,e=d.length,g=/Adobe Reader|PDF|Acrobat/i;if(b&&
|
||||
b.enabledPlugin)return 1;if("ActiveXObject"in window){try{return b=new ActiveXObject("AcroPDF.PDF"),1}catch(h){}try{return b=new ActiveXObject("PDF.PdfCtrl"),1}catch(h){}}for(a=0;a<e;a++)if(b=d[a],"String"===typeof b){if(g.test(b))return 1}else if(b.name&&g.test(b.name))return 1;window.setTimeout(function(){$("<object>").attr({data:f.assets_path("program/resources/dummy.pdf"),type:"application/pdf",style:'position: "absolute"; top: -1000px; height: 1px'}).on("load error",function(a){f.env.browser_capabilities.pdf=
|
||||
"load"==a.type?1:0;$(this).remove()}).appendTo($("body"))},10);return 0};this.flash_support_check=function(){var a=navigator.mimeTypes?navigator.mimeTypes["application/x-shockwave-flash"]:{};if(a&&a.enabledPlugin)return 1;if("ActiveXObject"in window)try{return new ActiveXObject("ShockwaveFlash.ShockwaveFlash"),1}catch(b){}return 0};this.assets_path=function(a){this.env.assets_path&&!a.startsWith(this.env.assets_path)&&(a=this.env.assets_path+a);return a};this.set_cookie=function(a,b,d){setCookie(a,
|
||||
b,d,this.env.cookie_path,this.env.cookie_domain,this.env.cookie_secure)};this.get_local_storage_prefix=function(){this.local_storage_prefix||(this.local_storage_prefix="roundcube."+(this.env.user_id||"anonymous")+".");return this.local_storage_prefix};this.local_storage_get_item=function(a,b,d){var e,f;try{e=localStorage.getItem(this.get_local_storage_prefix()+a),f=JSON.parse(e)}catch(h){}return f||b||null};this.local_storage_set_item=function(a,b,d){try{return localStorage.setItem(this.get_local_storage_prefix()+
|
||||
a,JSON.stringify(b)),!0}catch(e){return!1}};this.local_storage_remove_item=function(a){try{return localStorage.removeItem(this.get_local_storage_prefix()+a),!0}catch(b){return!1}};this.print_dialog=function(){bw.safari?setTimeout("window.print()",10):window.print()}}rcube_webmail.long_subject_title=function(f,v){if(!f.title){var a=$(f);a.width()+15*(v||0)>a.parent().width()&&(f.title=rcube_webmail.subject_text(f))}};
|
||||
rcube_webmail.long_subject_title_ex=function(f){if(!f.title){var v=$(f),a=$.trim(v.text()),a=$("<span>").text(a).css({position:"absolute","float":"left",visibility:"hidden","font-size":v.css("font-size"),"font-weight":v.css("font-weight")}).appendTo($("body")),b=a.width();a.remove();b+15*$("span.branch",v).width()>v.width()&&(f.title=rcube_webmail.subject_text(f))}};rcube_webmail.subject_text=function(f){f=$(f).clone();f.find(".skip-on-drag,.skip-content,.voice").remove();return f.text()};
|
||||
rcube_webmail.set_iframe_events=function(f){$("iframe").each(function(){var v=$(this);$.each(f,function(a,b){v.on("load",function(d){try{$(this).contents().on(a,b)}catch(e){}});try{v.contents().on(a,b)}catch(d){}})})};rcube_webmail.prototype.get_cookie=getCookie;rcube_webmail.prototype.addEventListener=rcube_event_engine.prototype.addEventListener;rcube_webmail.prototype.removeEventListener=rcube_event_engine.prototype.removeEventListener;rcube_webmail.prototype.triggerEvent=rcube_event_engine.prototype.triggerEvent;
|
||||
791
data/web/rc/program/js/common.js
Normal file
791
data/web/rc/program/js/common.js
Normal file
@@ -0,0 +1,791 @@
|
||||
/**
|
||||
* Roundcube common js library
|
||||
*
|
||||
* This file is part of the Roundcube Webmail client
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2005-2014, The Roundcube Dev Team
|
||||
*
|
||||
* The JavaScript code in this page is free software: you can
|
||||
* redistribute it and/or modify it under the terms of the GNU
|
||||
* General Public License (GNU GPL) as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option)
|
||||
* any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
*
|
||||
* As additional permission under GNU GPL version 3 section 7, you
|
||||
* may distribute non-source (e.g., minimized or compacted) forms of
|
||||
* that code without the copy of the GNU GPL normally required by
|
||||
* section 4, provided you include this license notice and a URL
|
||||
* through which recipients can access the Corresponding Source.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*/
|
||||
|
||||
// Constants
|
||||
var CONTROL_KEY = 1;
|
||||
var SHIFT_KEY = 2;
|
||||
var CONTROL_SHIFT_KEY = 3;
|
||||
|
||||
/**
|
||||
* Default browser check class
|
||||
* @constructor
|
||||
*/
|
||||
function roundcube_browser()
|
||||
{
|
||||
var n = navigator;
|
||||
|
||||
this.agent = n.userAgent;
|
||||
this.agent_lc = n.userAgent.toLowerCase();
|
||||
this.name = n.appName;
|
||||
this.vendor = n.vendor ? n.vendor : '';
|
||||
this.vendver = n.vendorSub ? parseFloat(n.vendorSub) : 0;
|
||||
this.product = n.product ? n.product : '';
|
||||
this.platform = String(n.platform).toLowerCase();
|
||||
this.lang = n.language ? n.language.substring(0,2) :
|
||||
n.browserLanguage ? n.browserLanguage.substring(0,2) :
|
||||
n.systemLanguage ? n.systemLanguage.substring(0,2) : 'en';
|
||||
|
||||
this.win = this.platform.indexOf('win') >= 0;
|
||||
this.mac = this.platform.indexOf('mac') >= 0;
|
||||
this.linux = this.platform.indexOf('linux') >= 0;
|
||||
this.unix = this.platform.indexOf('unix') >= 0;
|
||||
|
||||
this.dom = document.getElementById ? true : false;
|
||||
this.dom2 = document.addEventListener && document.removeEventListener;
|
||||
|
||||
this.webkit = this.agent_lc.indexOf('applewebkit') > 0;
|
||||
this.ie = (document.all && !window.opera) || (this.win && this.agent_lc.indexOf('trident/') > 0);
|
||||
|
||||
if (window.opera) {
|
||||
this.opera = true; // Opera < 15
|
||||
this.vendver = opera.version();
|
||||
}
|
||||
else if (!this.ie) {
|
||||
this.chrome = this.agent_lc.indexOf('chrome') > 0;
|
||||
this.opera = this.webkit && this.agent.indexOf(' OPR/') > 0; // Opera >= 15
|
||||
this.safari = !this.chrome && !this.opera && (this.webkit || this.agent_lc.indexOf('safari') > 0);
|
||||
this.konq = this.agent_lc.indexOf('konqueror') > 0;
|
||||
this.mz = this.dom && !this.chrome && !this.safari && !this.konq && !this.opera && this.agent.indexOf('Mozilla') >= 0;
|
||||
this.iphone = this.safari && (this.agent_lc.indexOf('iphone') > 0 || this.agent_lc.indexOf('ipod') > 0);
|
||||
this.ipad = this.safari && this.agent_lc.indexOf('ipad') > 0;
|
||||
}
|
||||
|
||||
if (!this.vendver) {
|
||||
// common version strings
|
||||
this.vendver = /(opera|opr|khtml|chrome|safari|applewebkit|msie)(\s|\/)([0-9\.]+)/.test(this.agent_lc) ? parseFloat(RegExp.$3) : 0;
|
||||
|
||||
// any other (Mozilla, Camino, IE>=11)
|
||||
if (!this.vendver)
|
||||
this.vendver = /rv:([0-9\.]+)/.test(this.agent) ? parseFloat(RegExp.$1) : 0;
|
||||
}
|
||||
|
||||
// get real language out of safari's user agent
|
||||
if (this.safari && (/;\s+([a-z]{2})-[a-z]{2}\)/.test(this.agent_lc)))
|
||||
this.lang = RegExp.$1;
|
||||
|
||||
this.tablet = /ipad|android|xoom|sch-i800|playbook|tablet|kindle/i.test(this.agent_lc);
|
||||
this.mobile = /iphone|ipod|blackberry|iemobile|opera mini|opera mobi|mobile/i.test(this.agent_lc);
|
||||
this.touch = this.mobile || this.tablet;
|
||||
this.cookies = n.cookieEnabled;
|
||||
|
||||
// test for XMLHTTP support
|
||||
this.xmlhttp_test = function()
|
||||
{
|
||||
var activeX_test = new Function("try{var o=new ActiveXObject('Microsoft.XMLHTTP');return true;}catch(err){return false;}");
|
||||
this.xmlhttp = window.XMLHttpRequest || (('ActiveXObject' in window) && activeX_test());
|
||||
return this.xmlhttp;
|
||||
};
|
||||
|
||||
// set class names to html tag according to the current user agent detection
|
||||
// this allows browser-specific css selectors like "html.chrome .someclass"
|
||||
this.set_html_class = function()
|
||||
{
|
||||
var classname = ' js';
|
||||
|
||||
if (this.ie)
|
||||
classname += ' ie ie'+parseInt(this.vendver);
|
||||
else if (this.opera)
|
||||
classname += ' opera';
|
||||
else if (this.konq)
|
||||
classname += ' konqueror';
|
||||
else if (this.safari)
|
||||
classname += ' chrome';
|
||||
else if (this.chrome)
|
||||
classname += ' chrome';
|
||||
else if (this.mz)
|
||||
classname += ' mozilla';
|
||||
|
||||
if (this.iphone)
|
||||
classname += ' iphone';
|
||||
else if (this.ipad)
|
||||
classname += ' ipad';
|
||||
else if (this.webkit)
|
||||
classname += ' webkit';
|
||||
|
||||
if (this.mobile)
|
||||
classname += ' mobile';
|
||||
if (this.tablet)
|
||||
classname += ' tablet';
|
||||
|
||||
if (document.documentElement)
|
||||
document.documentElement.className += classname;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
// static functions for DOM event handling
|
||||
var rcube_event = {
|
||||
|
||||
/**
|
||||
* returns the event target element
|
||||
*/
|
||||
get_target: function(e)
|
||||
{
|
||||
e = e || window.event;
|
||||
return e && e.target ? e.target : e.srcElement;
|
||||
},
|
||||
|
||||
/**
|
||||
* returns the event key code
|
||||
*/
|
||||
get_keycode: function(e)
|
||||
{
|
||||
e = e || window.event;
|
||||
return e && e.keyCode ? e.keyCode : (e && e.which ? e.which : 0);
|
||||
},
|
||||
|
||||
/**
|
||||
* returns the event key code
|
||||
*/
|
||||
get_button: function(e)
|
||||
{
|
||||
e = e || window.event;
|
||||
return e && e.button !== undefined ? e.button : (e && e.which ? e.which : 0);
|
||||
},
|
||||
|
||||
/**
|
||||
* returns modifier key (constants defined at top of file)
|
||||
*/
|
||||
get_modifier: function(e)
|
||||
{
|
||||
var opcode = 0;
|
||||
e = e || window.event;
|
||||
|
||||
if (bw.mac && e)
|
||||
opcode += (e.metaKey && CONTROL_KEY) + (e.shiftKey && SHIFT_KEY);
|
||||
else if (e)
|
||||
opcode += (e.ctrlKey && CONTROL_KEY) + (e.shiftKey && SHIFT_KEY);
|
||||
|
||||
return opcode;
|
||||
},
|
||||
|
||||
/**
|
||||
* Return absolute mouse position of an event
|
||||
*/
|
||||
get_mouse_pos: function(e)
|
||||
{
|
||||
if (!e) e = window.event;
|
||||
var mX = (e.pageX) ? e.pageX : e.clientX,
|
||||
mY = (e.pageY) ? e.pageY : e.clientY;
|
||||
|
||||
if (document.body && document.all) {
|
||||
mX += document.body.scrollLeft;
|
||||
mY += document.body.scrollTop;
|
||||
}
|
||||
|
||||
if (e._offset) {
|
||||
mX += e._offset.left;
|
||||
mY += e._offset.top;
|
||||
}
|
||||
|
||||
return { x:mX, y:mY };
|
||||
},
|
||||
|
||||
/**
|
||||
* Add an object method as event listener to a certain element
|
||||
*/
|
||||
add_listener: function(p)
|
||||
{
|
||||
if (!p.object || !p.method) // not enough arguments
|
||||
return;
|
||||
if (!p.element)
|
||||
p.element = document;
|
||||
|
||||
if (!p.object._rc_events)
|
||||
p.object._rc_events = {};
|
||||
|
||||
var key = p.event + '*' + p.method;
|
||||
if (!p.object._rc_events[key])
|
||||
p.object._rc_events[key] = function(e){ return p.object[p.method](e); };
|
||||
|
||||
if (p.element.addEventListener)
|
||||
p.element.addEventListener(p.event, p.object._rc_events[key], false);
|
||||
else if (p.element.attachEvent) {
|
||||
// IE allows multiple events with the same function to be applied to the same object
|
||||
// forcibly detach the event, then attach
|
||||
p.element.detachEvent('on'+p.event, p.object._rc_events[key]);
|
||||
p.element.attachEvent('on'+p.event, p.object._rc_events[key]);
|
||||
}
|
||||
else
|
||||
p.element['on'+p.event] = p.object._rc_events[key];
|
||||
},
|
||||
|
||||
/**
|
||||
* Remove event listener
|
||||
*/
|
||||
remove_listener: function(p)
|
||||
{
|
||||
if (!p.element)
|
||||
p.element = document;
|
||||
|
||||
var key = p.event + '*' + p.method;
|
||||
if (p.object && p.object._rc_events && p.object._rc_events[key]) {
|
||||
if (p.element.removeEventListener)
|
||||
p.element.removeEventListener(p.event, p.object._rc_events[key], false);
|
||||
else if (p.element.detachEvent)
|
||||
p.element.detachEvent('on'+p.event, p.object._rc_events[key]);
|
||||
else
|
||||
p.element['on'+p.event] = null;
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Prevent event propagation and bubbling
|
||||
*/
|
||||
cancel: function(evt)
|
||||
{
|
||||
var e = evt ? evt : window.event;
|
||||
|
||||
if (e.preventDefault)
|
||||
e.preventDefault();
|
||||
else
|
||||
e.returnValue = false;
|
||||
|
||||
if (e.stopPropagation)
|
||||
e.stopPropagation();
|
||||
|
||||
e.cancelBubble = true;
|
||||
|
||||
return false;
|
||||
},
|
||||
|
||||
/**
|
||||
* Determine whether the given event was trigered from keyboard
|
||||
*/
|
||||
is_keyboard: function(e)
|
||||
{
|
||||
return e && (
|
||||
(e.type && String(e.type).match(/^key/)) // DOM3-compatible
|
||||
|| (!e.pageX && (e.pageY || 0) <= 0 && !e.clientX && (e.clientY || 0) <= 0) // others
|
||||
);
|
||||
},
|
||||
|
||||
/**
|
||||
* Accept event if triggered from keyboard action (e.g. <Enter>)
|
||||
*/
|
||||
keyboard_only: function(e)
|
||||
{
|
||||
return rcube_event.is_keyboard(e) ? true : rcube_event.cancel(e);
|
||||
},
|
||||
|
||||
touchevent: function(e)
|
||||
{
|
||||
return { pageX:e.pageX, pageY:e.pageY, offsetX:e.pageX - e.target.offsetLeft, offsetY:e.pageY - e.target.offsetTop, target:e.target, istouch:true };
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* rcmail objects event interface
|
||||
*/
|
||||
function rcube_event_engine()
|
||||
{
|
||||
this._events = {};
|
||||
};
|
||||
|
||||
rcube_event_engine.prototype = {
|
||||
|
||||
/**
|
||||
* Setter for object event handlers
|
||||
*
|
||||
* @param {String} Event name
|
||||
* @param {Function} Handler function
|
||||
*/
|
||||
addEventListener: function(evt, func, obj)
|
||||
{
|
||||
if (!this._events)
|
||||
this._events = {};
|
||||
if (!this._events[evt])
|
||||
this._events[evt] = [];
|
||||
|
||||
this._events[evt].push({func:func, obj:obj ? obj : window});
|
||||
|
||||
return this; // chainable
|
||||
},
|
||||
|
||||
/**
|
||||
* Removes a specific event listener
|
||||
*
|
||||
* @param {String} Event name
|
||||
* @param {Int} Listener ID to remove
|
||||
*/
|
||||
removeEventListener: function(evt, func, obj)
|
||||
{
|
||||
if (obj === undefined)
|
||||
obj = window;
|
||||
|
||||
for (var h,i=0; this._events && this._events[evt] && i < this._events[evt].length; i++)
|
||||
if ((h = this._events[evt][i]) && h.func == func && h.obj == obj)
|
||||
this._events[evt][i] = null;
|
||||
},
|
||||
|
||||
/**
|
||||
* This will execute all registered event handlers
|
||||
*
|
||||
* @param {String} Event to trigger
|
||||
* @param {Object} Event object/arguments
|
||||
*/
|
||||
triggerEvent: function(evt, e)
|
||||
{
|
||||
var ret, h;
|
||||
|
||||
if (e === undefined)
|
||||
e = this;
|
||||
else if (typeof e === 'object')
|
||||
e.event = evt;
|
||||
|
||||
if (!this._event_exec)
|
||||
this._event_exec = {};
|
||||
|
||||
if (this._events && this._events[evt] && !this._event_exec[evt]) {
|
||||
this._event_exec[evt] = true;
|
||||
for (var i=0; i < this._events[evt].length; i++) {
|
||||
if ((h = this._events[evt][i])) {
|
||||
if (typeof h.func === 'function')
|
||||
ret = h.func.call ? h.func.call(h.obj, e) : h.func(e);
|
||||
else if (typeof h.obj[h.func] === 'function')
|
||||
ret = h.obj[h.func](e);
|
||||
|
||||
// cancel event execution
|
||||
if (ret !== undefined && !ret)
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (ret && ret.event) {
|
||||
try {
|
||||
delete ret.event;
|
||||
} catch (err) {
|
||||
// IE6-7 doesn't support deleting HTMLFormElement attributes (#1488017)
|
||||
$(ret).removeAttr('event');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
delete this._event_exec[evt];
|
||||
|
||||
if (e.event) {
|
||||
try {
|
||||
delete e.event;
|
||||
} catch (err) {
|
||||
// IE6-7 doesn't support deleting HTMLFormElement attributes (#1488017)
|
||||
$(e).removeAttr('event');
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
}; // end rcube_event_engine.prototype
|
||||
|
||||
|
||||
// check if input is a valid email address
|
||||
// By Cal Henderson <cal@iamcal.com>
|
||||
// http://code.iamcal.com/php/rfc822/
|
||||
function rcube_check_email(input, inline, count)
|
||||
{
|
||||
if (!input)
|
||||
return count ? 0 : false;
|
||||
|
||||
if (count) inline = true;
|
||||
|
||||
var qtext = '[^\\x0d\\x22\\x5c\\x80-\\xff]',
|
||||
dtext = '[^\\x0d\\x5b-\\x5d\\x80-\\xff]',
|
||||
atom = '[^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+',
|
||||
quoted_pair = '\\x5c[\\x00-\\x7f]',
|
||||
quoted_string = '\\x22('+qtext+'|'+quoted_pair+')*\\x22',
|
||||
ipv4 = '\\[(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3}\\]',
|
||||
ipv6 = '\\[IPv6:[0-9a-f:.]+\\]',
|
||||
ip_addr = '(' + ipv4 + ')|(' + ipv6 + ')',
|
||||
// Use simplified domain matching, because we need to allow Unicode characters here
|
||||
// So, e-mail address should be validated also on server side after idn_to_ascii() use
|
||||
//domain_literal = '\\x5b('+dtext+'|'+quoted_pair+')*\\x5d',
|
||||
//sub_domain = '('+atom+'|'+domain_literal+')',
|
||||
// allow punycode/unicode top-level domain
|
||||
domain = '(('+ip_addr+')|(([^@\\x2e]+\\x2e)+([^\\x00-\\x40\\x5b-\\x60\\x7b-\\x7f]{2,}|xn--[a-z0-9]{2,})))',
|
||||
// ICANN e-mail test (http://idn.icann.org/E-mail_test)
|
||||
icann_domains = [
|
||||
'\\u0645\\u062b\\u0627\\u0644\\x2e\\u0625\\u062e\\u062a\\u0628\\u0627\\u0631',
|
||||
'\\u4f8b\\u5b50\\x2e\\u6d4b\\u8bd5',
|
||||
'\\u4f8b\\u5b50\\x2e\\u6e2c\\u8a66',
|
||||
'\\u03c0\\u03b1\\u03c1\\u03ac\\u03b4\\u03b5\\u03b9\\u03b3\\u03bc\\u03b1\\x2e\\u03b4\\u03bf\\u03ba\\u03b9\\u03bc\\u03ae',
|
||||
'\\u0909\\u0926\\u093e\\u0939\\u0930\\u0923\\x2e\\u092a\\u0930\\u0940\\u0915\\u094d\\u0937\\u093e',
|
||||
'\\u4f8b\\u3048\\x2e\\u30c6\\u30b9\\u30c8',
|
||||
'\\uc2e4\\ub840\\x2e\\ud14c\\uc2a4\\ud2b8',
|
||||
'\\u0645\\u062b\\u0627\\u0644\\x2e\\u0622\\u0632\\u0645\\u0627\\u06cc\\u0634\u06cc',
|
||||
'\\u043f\\u0440\\u0438\\u043c\\u0435\\u0440\\x2e\\u0438\\u0441\\u043f\\u044b\\u0442\\u0430\\u043d\\u0438\\u0435',
|
||||
'\\u0b89\\u0ba4\\u0bbe\\u0bb0\\u0ba3\\u0bae\\u0bcd\\x2e\\u0baa\\u0bb0\\u0bbf\\u0b9f\\u0bcd\\u0b9a\\u0bc8',
|
||||
'\\u05d1\\u05f2\\u05b7\\u05e9\\u05e4\\u05bc\\u05d9\\u05dc\\x2e\\u05d8\\u05e2\\u05e1\\u05d8'
|
||||
],
|
||||
icann_addr = 'mailtest\\x40('+icann_domains.join('|')+')',
|
||||
word = '('+atom+'|'+quoted_string+')',
|
||||
delim = '[,;\\s\\n]',
|
||||
local_part = word+'(\\x2e'+word+')*',
|
||||
addr_spec = '(('+local_part+'\\x40'+domain+')|('+icann_addr+'))',
|
||||
rx_flag = count ? 'ig' : 'i',
|
||||
rx = inline ? new RegExp('(^|<|'+delim+')'+addr_spec+'($|>|'+delim+')', rx_flag) : new RegExp('^'+addr_spec+'$', 'i');
|
||||
|
||||
if (count)
|
||||
return input.match(rx).length;
|
||||
|
||||
return rx.test(input);
|
||||
};
|
||||
|
||||
// recursively copy an object
|
||||
function rcube_clone_object(obj)
|
||||
{
|
||||
var out = {};
|
||||
|
||||
for (var key in obj) {
|
||||
if (obj[key] && typeof obj[key] === 'object')
|
||||
out[key] = rcube_clone_object(obj[key]);
|
||||
else
|
||||
out[key] = obj[key];
|
||||
}
|
||||
|
||||
return out;
|
||||
};
|
||||
|
||||
// make a string URL safe (and compatible with PHP's rawurlencode())
|
||||
function urlencode(str)
|
||||
{
|
||||
if (window.encodeURIComponent)
|
||||
return encodeURIComponent(str).replace('*', '%2A');
|
||||
|
||||
return escape(str)
|
||||
.replace('+', '%2B')
|
||||
.replace('*', '%2A')
|
||||
.replace('/', '%2F')
|
||||
.replace('@', '%40');
|
||||
};
|
||||
|
||||
|
||||
// get any type of html objects by id/name
|
||||
function rcube_find_object(id, d)
|
||||
{
|
||||
var n, f, obj, e;
|
||||
|
||||
if (!d) d = document;
|
||||
|
||||
if (d.getElementById)
|
||||
if (obj = d.getElementById(id))
|
||||
return obj;
|
||||
|
||||
if (!obj && d.getElementsByName && (e = d.getElementsByName(id)))
|
||||
obj = e[0];
|
||||
|
||||
if (!obj && d.all)
|
||||
obj = d.all[id];
|
||||
|
||||
if (!obj && d.images.length)
|
||||
obj = d.images[id];
|
||||
|
||||
if (!obj && d.forms.length) {
|
||||
for (f=0; f<d.forms.length; f++) {
|
||||
if (d.forms[f].name == id)
|
||||
obj = d.forms[f];
|
||||
else if(d.forms[f].elements[id])
|
||||
obj = d.forms[f].elements[id];
|
||||
}
|
||||
}
|
||||
|
||||
if (!obj && d.layers) {
|
||||
if (d.layers[id])
|
||||
obj = d.layers[id];
|
||||
for (n=0; !obj && n<d.layers.length; n++)
|
||||
obj = rcube_find_object(id, d.layers[n].document);
|
||||
}
|
||||
|
||||
return obj;
|
||||
};
|
||||
|
||||
// determine whether the mouse is over the given object or not
|
||||
function rcube_mouse_is_over(ev, obj)
|
||||
{
|
||||
var mouse = rcube_event.get_mouse_pos(ev),
|
||||
pos = $(obj).offset();
|
||||
|
||||
return (mouse.x >= pos.left) && (mouse.x < (pos.left + obj.offsetWidth)) &&
|
||||
(mouse.y >= pos.top) && (mouse.y < (pos.top + obj.offsetHeight));
|
||||
};
|
||||
|
||||
|
||||
// cookie functions by GoogieSpell
|
||||
function setCookie(name, value, expires, path, domain, secure)
|
||||
{
|
||||
var curCookie = name + "=" + escape(value) +
|
||||
(expires ? "; expires=" + expires.toGMTString() : "") +
|
||||
(path ? "; path=" + path : "") +
|
||||
(domain ? "; domain=" + domain : "") +
|
||||
(secure ? "; secure" : "");
|
||||
|
||||
document.cookie = curCookie;
|
||||
};
|
||||
|
||||
function getCookie(name)
|
||||
{
|
||||
var dc = document.cookie,
|
||||
prefix = name + "=",
|
||||
begin = dc.indexOf("; " + prefix);
|
||||
|
||||
if (begin == -1) {
|
||||
begin = dc.indexOf(prefix);
|
||||
if (begin != 0)
|
||||
return null;
|
||||
}
|
||||
else {
|
||||
begin += 2;
|
||||
}
|
||||
|
||||
var end = dc.indexOf(";", begin);
|
||||
if (end == -1)
|
||||
end = dc.length;
|
||||
|
||||
return unescape(dc.substring(begin + prefix.length, end));
|
||||
};
|
||||
|
||||
// deprecated aliases, to be removed, use rcmail.set_cookie/rcmail.get_cookie
|
||||
roundcube_browser.prototype.set_cookie = setCookie;
|
||||
roundcube_browser.prototype.get_cookie = getCookie;
|
||||
|
||||
var bw = new roundcube_browser();
|
||||
bw.set_html_class();
|
||||
|
||||
|
||||
// Add escape() method to RegExp object
|
||||
// http://dev.rubyonrails.org/changeset/7271
|
||||
RegExp.escape = function(str)
|
||||
{
|
||||
return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1');
|
||||
};
|
||||
|
||||
// Extend Date prototype to detect Standard timezone without DST
|
||||
// from http://www.michaelapproved.com/articles/timezone-detect-and-ignore-daylight-saving-time-dst/
|
||||
Date.prototype.getStdTimezoneOffset = function()
|
||||
{
|
||||
var m = 12,
|
||||
d = new Date(null, m, 1),
|
||||
tzo = d.getTimezoneOffset();
|
||||
|
||||
while (--m) {
|
||||
d.setUTCMonth(m);
|
||||
if (tzo != d.getTimezoneOffset()) {
|
||||
return Math.max(tzo, d.getTimezoneOffset());
|
||||
}
|
||||
}
|
||||
|
||||
return tzo;
|
||||
}
|
||||
|
||||
// define String's startsWith() method for old browsers
|
||||
if (!String.prototype.startsWith) {
|
||||
String.prototype.startsWith = function(search, position) {
|
||||
position = position || 0;
|
||||
return this.slice(position, search.length) === search;
|
||||
};
|
||||
}
|
||||
|
||||
// array utility function
|
||||
jQuery.last = function(arr) {
|
||||
return arr && arr.length ? arr[arr.length-1] : undefined;
|
||||
}
|
||||
|
||||
// jQuery plugin to set HTML5 placeholder and title attributes on input elements
|
||||
jQuery.fn.placeholder = function(text) {
|
||||
return this.each(function() {
|
||||
$(this).prop({title: text, placeholder: text});
|
||||
});
|
||||
};
|
||||
|
||||
// function to parse query string into an object
|
||||
var rcube_parse_query = function(query)
|
||||
{
|
||||
if (!query)
|
||||
return {};
|
||||
|
||||
var params = {}, e, k, v,
|
||||
re = /([^&=]+)=?([^&]*)/g,
|
||||
decodeRE = /\+/g, // Regex for replacing addition symbol with a space
|
||||
decode = function (str) { return decodeURIComponent(str.replace(decodeRE, ' ')); };
|
||||
|
||||
query = query.replace(/\?/, '');
|
||||
|
||||
while (e = re.exec(query)) {
|
||||
k = decode(e[1]);
|
||||
v = decode(e[2]);
|
||||
|
||||
if (k.substring(k.length - 2) === '[]') {
|
||||
k = k.substring(0, k.length - 2);
|
||||
(params[k] || (params[k] = [])).push(v);
|
||||
}
|
||||
else
|
||||
params[k] = v;
|
||||
}
|
||||
|
||||
return params;
|
||||
};
|
||||
|
||||
|
||||
// Base64 code from Tyler Akins -- http://rumkin.com
|
||||
var Base64 = (function () {
|
||||
var keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
|
||||
|
||||
// private method for UTF-8 encoding
|
||||
var utf8_encode = function(string) {
|
||||
string = string.replace(/\r\n/g, "\n");
|
||||
var utftext = '';
|
||||
|
||||
for (var n = 0; n < string.length; n++) {
|
||||
var c = string.charCodeAt(n);
|
||||
|
||||
if (c < 128) {
|
||||
utftext += String.fromCharCode(c);
|
||||
}
|
||||
else if(c > 127 && c < 2048) {
|
||||
utftext += String.fromCharCode((c >> 6) | 192);
|
||||
utftext += String.fromCharCode((c & 63) | 128);
|
||||
}
|
||||
else {
|
||||
utftext += String.fromCharCode((c >> 12) | 224);
|
||||
utftext += String.fromCharCode(((c >> 6) & 63) | 128);
|
||||
utftext += String.fromCharCode((c & 63) | 128);
|
||||
}
|
||||
}
|
||||
|
||||
return utftext;
|
||||
};
|
||||
|
||||
// private method for UTF-8 decoding
|
||||
var utf8_decode = function (utftext) {
|
||||
var i = 0, string = '', c = 0, c2 = 0, c3 = 0;
|
||||
|
||||
while (i < utftext.length) {
|
||||
c = utftext.charCodeAt(i);
|
||||
if (c < 128) {
|
||||
string += String.fromCharCode(c);
|
||||
i++;
|
||||
}
|
||||
else if (c > 191 && c < 224) {
|
||||
c2 = utftext.charCodeAt(i + 1);
|
||||
string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
|
||||
i += 2;
|
||||
}
|
||||
else {
|
||||
c2 = utftext.charCodeAt(i + 1);
|
||||
c3 = utftext.charCodeAt(i + 2);
|
||||
string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
|
||||
i += 3;
|
||||
}
|
||||
}
|
||||
|
||||
return string;
|
||||
};
|
||||
|
||||
var obj = {
|
||||
/**
|
||||
* Encodes a string in base64
|
||||
* @param {String} input The string to encode in base64.
|
||||
*/
|
||||
encode: function (input) {
|
||||
// encode UTF8 as btoa() may fail on some characters
|
||||
input = utf8_encode(input);
|
||||
|
||||
if (typeof(window.btoa) === 'function') {
|
||||
try {
|
||||
return btoa(input);
|
||||
}
|
||||
catch (e) {};
|
||||
}
|
||||
|
||||
var chr1, chr2, chr3, enc1, enc2, enc3, enc4, i = 0, output = '', len = input.length;
|
||||
|
||||
while (i < len) {
|
||||
chr1 = input.charCodeAt(i++);
|
||||
chr2 = input.charCodeAt(i++);
|
||||
chr3 = input.charCodeAt(i++);
|
||||
|
||||
enc1 = chr1 >> 2;
|
||||
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
|
||||
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
|
||||
enc4 = chr3 & 63;
|
||||
|
||||
if (isNaN(chr2))
|
||||
enc3 = enc4 = 64;
|
||||
else if (isNaN(chr3))
|
||||
enc4 = 64;
|
||||
|
||||
output = output
|
||||
+ keyStr.charAt(enc1) + keyStr.charAt(enc2)
|
||||
+ keyStr.charAt(enc3) + keyStr.charAt(enc4);
|
||||
}
|
||||
|
||||
return output;
|
||||
},
|
||||
|
||||
/**
|
||||
* Decodes a base64 string.
|
||||
* @param {String} input The string to decode.
|
||||
*/
|
||||
decode: function (input) {
|
||||
if (typeof(window.atob) === 'function') {
|
||||
try {
|
||||
return utf8_decode(atob(input));
|
||||
}
|
||||
catch (e) {};
|
||||
}
|
||||
|
||||
var chr1, chr2, chr3, enc1, enc2, enc3, enc4, len, i = 0, output = '';
|
||||
|
||||
// remove all characters that are not A-Z, a-z, 0-9, +, /, or =
|
||||
input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
|
||||
len = input.length;
|
||||
|
||||
while (i < len) {
|
||||
enc1 = keyStr.indexOf(input.charAt(i++));
|
||||
enc2 = keyStr.indexOf(input.charAt(i++));
|
||||
enc3 = keyStr.indexOf(input.charAt(i++));
|
||||
enc4 = keyStr.indexOf(input.charAt(i++));
|
||||
|
||||
chr1 = (enc1 << 2) | (enc2 >> 4);
|
||||
chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
|
||||
chr3 = ((enc3 & 3) << 6) | enc4;
|
||||
|
||||
output = output + String.fromCharCode(chr1);
|
||||
|
||||
if (enc3 != 64)
|
||||
output = output + String.fromCharCode(chr2);
|
||||
if (enc4 != 64)
|
||||
output = output + String.fromCharCode(chr3);
|
||||
}
|
||||
|
||||
return utf8_decode(output);
|
||||
}
|
||||
};
|
||||
|
||||
return obj;
|
||||
})();
|
||||
52
data/web/rc/program/js/common.min.js
vendored
Normal file
52
data/web/rc/program/js/common.min.js
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
/**
|
||||
* Roundcube common js library
|
||||
*
|
||||
* This file is part of the Roundcube Webmail client
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2005-2014, The Roundcube Dev Team
|
||||
*
|
||||
* The JavaScript code in this page is free software: you can
|
||||
* redistribute it and/or modify it under the terms of the GNU
|
||||
* General Public License (GNU GPL) as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option)
|
||||
* any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
*
|
||||
* As additional permission under GNU GPL version 3 section 7, you
|
||||
* may distribute non-source (e.g., minimized or compacted) forms of
|
||||
* that code without the copy of the GNU GPL normally required by
|
||||
* section 4, provided you include this license notice and a URL
|
||||
* through which recipients can access the Corresponding Source.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*/
|
||||
var CONTROL_KEY=1,SHIFT_KEY=2,CONTROL_SHIFT_KEY=3;
|
||||
function roundcube_browser(){var a=navigator;this.agent=a.userAgent;this.agent_lc=a.userAgent.toLowerCase();this.name=a.appName;this.vendor=a.vendor?a.vendor:"";this.vendver=a.vendorSub?parseFloat(a.vendorSub):0;this.product=a.product?a.product:"";this.platform=String(a.platform).toLowerCase();this.lang=a.language?a.language.substring(0,2):a.browserLanguage?a.browserLanguage.substring(0,2):a.systemLanguage?a.systemLanguage.substring(0,2):"en";this.win=0<=this.platform.indexOf("win");this.mac=0<=this.platform.indexOf("mac");
|
||||
this.linux=0<=this.platform.indexOf("linux");this.unix=0<=this.platform.indexOf("unix");this.dom=document.getElementById?!0:!1;this.dom2=document.addEventListener&&document.removeEventListener;this.webkit=0<this.agent_lc.indexOf("applewebkit");this.ie=document.all&&!window.opera||this.win&&0<this.agent_lc.indexOf("trident/");window.opera?(this.opera=!0,this.vendver=opera.version()):this.ie||(this.chrome=0<this.agent_lc.indexOf("chrome"),this.opera=this.webkit&&0<this.agent.indexOf(" OPR/"),this.safari=
|
||||
!this.chrome&&!this.opera&&(this.webkit||0<this.agent_lc.indexOf("safari")),this.konq=0<this.agent_lc.indexOf("konqueror"),this.mz=this.dom&&!this.chrome&&!this.safari&&!this.konq&&!this.opera&&0<=this.agent.indexOf("Mozilla"),this.iphone=this.safari&&(0<this.agent_lc.indexOf("iphone")||0<this.agent_lc.indexOf("ipod")),this.ipad=this.safari&&0<this.agent_lc.indexOf("ipad"));this.vendver||(this.vendver=/(opera|opr|khtml|chrome|safari|applewebkit|msie)(\s|\/)([0-9\.]+)/.test(this.agent_lc)?parseFloat(RegExp.$3):
|
||||
0,this.vendver||(this.vendver=/rv:([0-9\.]+)/.test(this.agent)?parseFloat(RegExp.$1):0));this.safari&&/;\s+([a-z]{2})-[a-z]{2}\)/.test(this.agent_lc)&&(this.lang=RegExp.$1);this.tablet=/ipad|android|xoom|sch-i800|playbook|tablet|kindle/i.test(this.agent_lc);this.touch=(this.mobile=/iphone|ipod|blackberry|iemobile|opera mini|opera mobi|mobile/i.test(this.agent_lc))||this.tablet;this.cookies=a.cookieEnabled;this.xmlhttp_test=function(){var a=new Function("try{var o=new ActiveXObject('Microsoft.XMLHTTP');return true;}catch(err){return false;}");
|
||||
return this.xmlhttp=window.XMLHttpRequest||"ActiveXObject"in window&&a()};this.set_html_class=function(){var a=" js";this.ie?a+=" ie ie"+parseInt(this.vendver):this.opera?a+=" opera":this.konq?a+=" konqueror":this.safari?a+=" chrome":this.chrome?a+=" chrome":this.mz&&(a+=" mozilla");this.iphone?a+=" iphone":this.ipad?a+=" ipad":this.webkit&&(a+=" webkit");this.mobile&&(a+=" mobile");this.tablet&&(a+=" tablet");document.documentElement&&(document.documentElement.className+=a)}}
|
||||
var rcube_event={get_target:function(a){return(a=a||window.event)&&a.target?a.target:a.srcElement},get_keycode:function(a){return(a=a||window.event)&&a.keyCode?a.keyCode:a&&a.which?a.which:0},get_button:function(a){return(a=a||window.event)&&void 0!==a.button?a.button:a&&a.which?a.which:0},get_modifier:function(a){var b=0;a=a||window.event;bw.mac&&a?b+=(a.metaKey&&CONTROL_KEY)+(a.shiftKey&&SHIFT_KEY):a&&(b+=(a.ctrlKey&&CONTROL_KEY)+(a.shiftKey&&SHIFT_KEY));return b},get_mouse_pos:function(a){a||(a=
|
||||
window.event);var b=a.pageX?a.pageX:a.clientX,c=a.pageY?a.pageY:a.clientY;document.body&&document.all&&(b+=document.body.scrollLeft,c+=document.body.scrollTop);a._offset&&(b+=a._offset.left,c+=a._offset.top);return{x:b,y:c}},add_listener:function(a){if(a.object&&a.method){a.element||(a.element=document);a.object._rc_events||(a.object._rc_events={});var b=a.event+"*"+a.method;a.object._rc_events[b]||(a.object._rc_events[b]=function(b){return a.object[a.method](b)});a.element.addEventListener?a.element.addEventListener(a.event,
|
||||
a.object._rc_events[b],!1):a.element.attachEvent?(a.element.detachEvent("on"+a.event,a.object._rc_events[b]),a.element.attachEvent("on"+a.event,a.object._rc_events[b])):a.element["on"+a.event]=a.object._rc_events[b]}},remove_listener:function(a){a.element||(a.element=document);var b=a.event+"*"+a.method;a.object&&a.object._rc_events&&a.object._rc_events[b]&&(a.element.removeEventListener?a.element.removeEventListener(a.event,a.object._rc_events[b],!1):a.element.detachEvent?a.element.detachEvent("on"+
|
||||
a.event,a.object._rc_events[b]):a.element["on"+a.event]=null)},cancel:function(a){a=a?a:window.event;a.preventDefault?a.preventDefault():a.returnValue=!1;a.stopPropagation&&a.stopPropagation();a.cancelBubble=!0;return!1},is_keyboard:function(a){return a&&(a.type&&String(a.type).match(/^key/)||!a.pageX&&0>=(a.pageY||0)&&!a.clientX&&0>=(a.clientY||0))},keyboard_only:function(a){return rcube_event.is_keyboard(a)?!0:rcube_event.cancel(a)},touchevent:function(a){return{pageX:a.pageX,pageY:a.pageY,offsetX:a.pageX-
|
||||
a.target.offsetLeft,offsetY:a.pageY-a.target.offsetTop,target:a.target,istouch:!0}}};function rcube_event_engine(){this._events={}}
|
||||
rcube_event_engine.prototype={addEventListener:function(a,b,c){this._events||(this._events={});this._events[a]||(this._events[a]=[]);this._events[a].push({func:b,obj:c?c:window});return this},removeEventListener:function(a,b,c){void 0===c&&(c=window);for(var d,e=0;this._events&&this._events[a]&&e<this._events[a].length;e++)(d=this._events[a][e])&&d.func==b&&d.obj==c&&(this._events[a][e]=null)},triggerEvent:function(a,b){var c,d;void 0===b?b=this:"object"===typeof b&&(b.event=a);this._event_exec||
|
||||
(this._event_exec={});if(this._events&&this._events[a]&&!this._event_exec[a]){this._event_exec[a]=!0;for(var e=0;e<this._events[a].length;e++)if(d=this._events[a][e])if("function"===typeof d.func?c=d.func.call?d.func.call(d.obj,b):d.func(b):"function"===typeof d.obj[d.func]&&(c=d.obj[d.func](b)),void 0!==c&&!c)break;if(c&&c.event)try{delete c.event}catch(f){$(c).removeAttr("event")}}delete this._event_exec[a];if(b.event)try{delete b.event}catch(f){$(b).removeAttr("event")}return c}};
|
||||
function rcube_check_email(a,b,c){if(!a)return c?0:!1;c&&(b=!0);b=b?RegExp("(^|<|[,;\\s\\n])((([^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+|\\x22([^\\x0d\\x22\\x5c\\x80-\\xff]|\\x5c[\\x00-\\x7f])*\\x22)(\\x2e([^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+|\\x22([^\\x0d\\x22\\x5c\\x80-\\xff]|\\x5c[\\x00-\\x7f])*\\x22))*\\x40(((\\[(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3}\\])|(\\[IPv6:[0-9a-f:.]+\\]))|(([^@\\x2e]+\\x2e)+([^\\x00-\\x40\\x5b-\\x60\\x7b-\\x7f]{2,}|xn--[a-z0-9]{2,}))))|(mailtest\\x40(\\u0645\\u062b\\u0627\\u0644\\x2e\\u0625\\u062e\\u062a\\u0628\\u0627\\u0631|\\u4f8b\\u5b50\\x2e\\u6d4b\\u8bd5|\\u4f8b\\u5b50\\x2e\\u6e2c\\u8a66|\\u03c0\\u03b1\\u03c1\\u03ac\\u03b4\\u03b5\\u03b9\\u03b3\\u03bc\\u03b1\\x2e\\u03b4\\u03bf\\u03ba\\u03b9\\u03bc\\u03ae|\\u0909\\u0926\\u093e\\u0939\\u0930\\u0923\\x2e\\u092a\\u0930\\u0940\\u0915\\u094d\\u0937\\u093e|\\u4f8b\\u3048\\x2e\\u30c6\\u30b9\\u30c8|\\uc2e4\\ub840\\x2e\\ud14c\\uc2a4\\ud2b8|\\u0645\\u062b\\u0627\\u0644\\x2e\\u0622\\u0632\\u0645\\u0627\\u06cc\\u0634\u06cc|\\u043f\\u0440\\u0438\\u043c\\u0435\\u0440\\x2e\\u0438\\u0441\\u043f\\u044b\\u0442\\u0430\\u043d\\u0438\\u0435|\\u0b89\\u0ba4\\u0bbe\\u0bb0\\u0ba3\\u0bae\\u0bcd\\x2e\\u0baa\\u0bb0\\u0bbf\\u0b9f\\u0bcd\\u0b9a\\u0bc8|\\u05d1\\u05f2\\u05b7\\u05e9\\u05e4\\u05bc\\u05d9\\u05dc\\x2e\\u05d8\\u05e2\\u05e1\\u05d8)))($|>|[,;\\s\\n])",
|
||||
c?"ig":"i"):RegExp("^((([^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+|\\x22([^\\x0d\\x22\\x5c\\x80-\\xff]|\\x5c[\\x00-\\x7f])*\\x22)(\\x2e([^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+|\\x22([^\\x0d\\x22\\x5c\\x80-\\xff]|\\x5c[\\x00-\\x7f])*\\x22))*\\x40(((\\[(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3}\\])|(\\[IPv6:[0-9a-f:.]+\\]))|(([^@\\x2e]+\\x2e)+([^\\x00-\\x40\\x5b-\\x60\\x7b-\\x7f]{2,}|xn--[a-z0-9]{2,}))))|(mailtest\\x40(\\u0645\\u062b\\u0627\\u0644\\x2e\\u0625\\u062e\\u062a\\u0628\\u0627\\u0631|\\u4f8b\\u5b50\\x2e\\u6d4b\\u8bd5|\\u4f8b\\u5b50\\x2e\\u6e2c\\u8a66|\\u03c0\\u03b1\\u03c1\\u03ac\\u03b4\\u03b5\\u03b9\\u03b3\\u03bc\\u03b1\\x2e\\u03b4\\u03bf\\u03ba\\u03b9\\u03bc\\u03ae|\\u0909\\u0926\\u093e\\u0939\\u0930\\u0923\\x2e\\u092a\\u0930\\u0940\\u0915\\u094d\\u0937\\u093e|\\u4f8b\\u3048\\x2e\\u30c6\\u30b9\\u30c8|\\uc2e4\\ub840\\x2e\\ud14c\\uc2a4\\ud2b8|\\u0645\\u062b\\u0627\\u0644\\x2e\\u0622\\u0632\\u0645\\u0627\\u06cc\\u0634\u06cc|\\u043f\\u0440\\u0438\\u043c\\u0435\\u0440\\x2e\\u0438\\u0441\\u043f\\u044b\\u0442\\u0430\\u043d\\u0438\\u0435|\\u0b89\\u0ba4\\u0bbe\\u0bb0\\u0ba3\\u0bae\\u0bcd\\x2e\\u0baa\\u0bb0\\u0bbf\\u0b9f\\u0bcd\\u0b9a\\u0bc8|\\u05d1\\u05f2\\u05b7\\u05e9\\u05e4\\u05bc\\u05d9\\u05dc\\x2e\\u05d8\\u05e2\\u05e1\\u05d8)))$",
|
||||
"i");return c?a.match(b).length:b.test(a)}function rcube_clone_object(a){var b={},c;for(c in a)b[c]=a[c]&&"object"===typeof a[c]?rcube_clone_object(a[c]):a[c];return b}function urlencode(a){return window.encodeURIComponent?encodeURIComponent(a).replace("*","%2A"):escape(a).replace("+","%2B").replace("*","%2A").replace("/","%2F").replace("@","%40")}
|
||||
function rcube_find_object(a,b){var c,d;b||(b=document);if(b.getElementById&&(d=b.getElementById(a)))return d;!d&&b.getElementsByName&&(c=b.getElementsByName(a))&&(d=c[0]);!d&&b.all&&(d=b.all[a]);!d&&b.images.length&&(d=b.images[a]);if(!d&&b.forms.length)for(c=0;c<b.forms.length;c++)b.forms[c].name==a?d=b.forms[c]:b.forms[c].elements[a]&&(d=b.forms[c].elements[a]);if(!d&&b.layers)for(b.layers[a]&&(d=b.layers[a]),c=0;!d&&c<b.layers.length;c++)d=rcube_find_object(a,b.layers[c].document);return d}
|
||||
function rcube_mouse_is_over(a,b){var c=rcube_event.get_mouse_pos(a),d=$(b).offset();return c.x>=d.left&&c.x<d.left+b.offsetWidth&&c.y>=d.top&&c.y<d.top+b.offsetHeight}function setCookie(a,b,c,d,e,f){a=a+"="+escape(b)+(c?"; expires="+c.toGMTString():"")+(d?"; path="+d:"")+(e?"; domain="+e:"")+(f?"; secure":"");document.cookie=a}
|
||||
function getCookie(a){var b=document.cookie;a+="=";var c=b.indexOf("; "+a);if(-1==c){if(c=b.indexOf(a),0!=c)return null}else c+=2;var d=b.indexOf(";",c);-1==d&&(d=b.length);return unescape(b.substring(c+a.length,d))}roundcube_browser.prototype.set_cookie=setCookie;roundcube_browser.prototype.get_cookie=getCookie;var bw=new roundcube_browser;bw.set_html_class();RegExp.escape=function(a){return String(a).replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")};
|
||||
Date.prototype.getStdTimezoneOffset=function(){for(var a=12,b=new Date(null,a,1),c=b.getTimezoneOffset();--a;)if(b.setUTCMonth(a),c!=b.getTimezoneOffset())return Math.max(c,b.getTimezoneOffset());return c};String.prototype.startsWith||(String.prototype.startsWith=function(a,b){return this.slice(b||0,a.length)===a});jQuery.last=function(a){return a&&a.length?a[a.length-1]:void 0};jQuery.fn.placeholder=function(a){return this.each(function(){$(this).prop({title:a,placeholder:a})})};
|
||||
var rcube_parse_query=function(a){if(!a)return{};var b={},c,d,e=/([^&=]+)=?([^&]*)/g,f=/\+/g;for(a=a.replace(/\?/,"");c=e.exec(a);)d=decodeURIComponent(c[1].replace(f," ")),c=decodeURIComponent(c[2].replace(f," ")),"[]"===d.substring(d.length-2)?(d=d.substring(0,d.length-2),(b[d]||(b[d]=[])).push(c)):b[d]=c;return b},Base64=function(){var a=function(a){for(var b=0,d="",e,f,g;b<a.length;)e=a.charCodeAt(b),128>e?(d+=String.fromCharCode(e),b++):191<e&&224>e?(f=a.charCodeAt(b+1),d+=String.fromCharCode((e&
|
||||
31)<<6|f&63),b+=2):(f=a.charCodeAt(b+1),g=a.charCodeAt(b+2),d+=String.fromCharCode((e&15)<<12|(f&63)<<6|g&63),b+=3);return d};return{encode:function(a){a=a.replace(/\r\n/g,"\n");for(var b="",d=0;d<a.length;d++){var e=a.charCodeAt(d);128>e?b+=String.fromCharCode(e):(127<e&&2048>e?b+=String.fromCharCode(e>>6|192):(b+=String.fromCharCode(e>>12|224),b+=String.fromCharCode(e>>6&63|128)),b+=String.fromCharCode(e&63|128))}a=b;if("function"===typeof window.btoa)try{return btoa(a)}catch(n){}for(var f,g,l,
|
||||
h=0,k="",m=a.length;h<m;)f=a.charCodeAt(h++),b=a.charCodeAt(h++),d=a.charCodeAt(h++),e=f>>2,f=(f&3)<<4|b>>4,g=(b&15)<<2|d>>6,l=d&63,isNaN(b)?g=l=64:isNaN(d)&&(l=64),k=k+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(e)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(f)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(g)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(l);return k},decode:function(b){if("function"===
|
||||
typeof window.atob)try{return a(atob(b))}catch(m){}var c,d,e,f,g,l,h=0,k="";b=b.replace(/[^A-Za-z0-9\+\/\=]/g,"");for(l=b.length;h<l;)c="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(b.charAt(h++)),d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(b.charAt(h++)),f="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(b.charAt(h++)),g="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(b.charAt(h++)),
|
||||
c=c<<2|d>>4,d=(d&15)<<4|f>>2,e=(f&3)<<6|g,k+=String.fromCharCode(c),64!=f&&(k+=String.fromCharCode(d)),64!=g&&(k+=String.fromCharCode(e));return a(k)}}}();
|
||||
854
data/web/rc/program/js/editor.js
Normal file
854
data/web/rc/program/js/editor.js
Normal file
@@ -0,0 +1,854 @@
|
||||
/**
|
||||
* Roundcube editor js library
|
||||
*
|
||||
* This file is part of the Roundcube Webmail client
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2006-2014, The Roundcube Dev Team
|
||||
*
|
||||
* The JavaScript code in this page is free software: you can
|
||||
* redistribute it and/or modify it under the terms of the GNU
|
||||
* General Public License (GNU GPL) as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option)
|
||||
* any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
*
|
||||
* As additional permission under GNU GPL version 3 section 7, you
|
||||
* may distribute non-source (e.g., minimized or compacted) forms of
|
||||
* that code without the copy of the GNU GPL normally required by
|
||||
* section 4, provided you include this license notice and a URL
|
||||
* through which recipients can access the Corresponding Source.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*
|
||||
* @author Eric Stadtherr <estadtherr@gmail.com>
|
||||
* @author Aleksander Machniak <alec@alec.pl>
|
||||
*/
|
||||
|
||||
/**
|
||||
* Roundcube Text Editor Widget class
|
||||
* @constructor
|
||||
*/
|
||||
function rcube_text_editor(config, id)
|
||||
{
|
||||
var ref = this,
|
||||
abs_url = location.href.replace(/[?#].*$/, '').replace(/\/$/, ''),
|
||||
conf = {
|
||||
selector: '#' + ($('#' + id).is('.mce_editor') ? id : 'fake-editor-id'),
|
||||
cache_suffix: 's=4050100',
|
||||
theme: 'modern',
|
||||
language: config.lang,
|
||||
content_css: rcmail.assets_path('program/resources/tinymce/content.css'),
|
||||
menubar: false,
|
||||
statusbar: false,
|
||||
toolbar_items_size: 'small',
|
||||
extended_valid_elements: 'font[face|size|color|style],span[id|class|align|style]',
|
||||
relative_urls: false,
|
||||
remove_script_host: false,
|
||||
convert_urls: false, // #1486944
|
||||
image_description: false,
|
||||
paste_webkit_style: "color font-size font-family",
|
||||
paste_data_images: true,
|
||||
browser_spellcheck: true
|
||||
};
|
||||
|
||||
// register spellchecker for plain text editor
|
||||
this.spellcheck_observer = function() {};
|
||||
if (config.spellchecker) {
|
||||
this.spellchecker = config.spellchecker;
|
||||
if (config.spellcheck_observer) {
|
||||
this.spellchecker.spelling_state_observer = this.spellcheck_observer = config.spellcheck_observer;
|
||||
}
|
||||
}
|
||||
|
||||
// secure spellchecker requests with Roundcube token
|
||||
// Note: must be registered only once (#1490311)
|
||||
if (!tinymce.registered_request_token) {
|
||||
tinymce.registered_request_token = true;
|
||||
tinymce.util.XHR.on('beforeSend', function(e) {
|
||||
e.xhr.setRequestHeader('X-Roundcube-Request', rcmail.env.request_token);
|
||||
});
|
||||
}
|
||||
|
||||
// minimal editor
|
||||
if (config.mode == 'identity') {
|
||||
$.extend(conf, {
|
||||
plugins: 'autolink charmap code colorpicker hr image link paste tabfocus textcolor',
|
||||
toolbar: 'bold italic underline alignleft aligncenter alignright alignjustify'
|
||||
+ ' | outdent indent charmap hr link unlink image code forecolor'
|
||||
+ ' | fontselect fontsizeselect',
|
||||
file_browser_callback: function(name, url, type, win) { ref.file_browser_callback(name, url, type); },
|
||||
file_browser_callback_types: 'image'
|
||||
});
|
||||
}
|
||||
// full-featured editor
|
||||
else {
|
||||
$.extend(conf, {
|
||||
plugins: 'autolink charmap code colorpicker directionality link image media nonbreaking'
|
||||
+ ' paste table tabfocus textcolor searchreplace spellchecker',
|
||||
toolbar: 'bold italic underline | alignleft aligncenter alignright alignjustify'
|
||||
+ ' | bullist numlist outdent indent ltr rtl blockquote | forecolor backcolor | fontselect fontsizeselect'
|
||||
+ ' | link unlink table | $extra charmap image media | code searchreplace undo redo',
|
||||
spellchecker_rpc_url: abs_url + '/?_task=utils&_action=spell_html&_remote=1',
|
||||
spellchecker_language: rcmail.env.spell_lang,
|
||||
accessibility_focus: false,
|
||||
file_browser_callback: function(name, url, type, win) { ref.file_browser_callback(name, url, type); },
|
||||
// @todo: support more than image (types: file, image, media)
|
||||
file_browser_callback_types: 'image media'
|
||||
});
|
||||
}
|
||||
|
||||
// add TinyMCE plugins/buttons from Roundcube plugin
|
||||
$.each(config.extra_plugins || [], function() {
|
||||
if (conf.plugins.indexOf(this) < 0)
|
||||
conf.plugins = conf.plugins + ' ' + this;
|
||||
});
|
||||
$.each(config.extra_buttons || [], function() {
|
||||
if (conf.toolbar.indexOf(this) < 0)
|
||||
conf.toolbar = conf.toolbar.replace('$extra', '$extra ' + this);
|
||||
});
|
||||
|
||||
// disable TinyMCE plugins/buttons from Roundcube plugin
|
||||
$.each(config.disabled_plugins || [], function() {
|
||||
conf.plugins = conf.plugins.replace(this, '');
|
||||
});
|
||||
$.each(config.disabled_buttons || [], function() {
|
||||
conf.toolbar = conf.toolbar.replace(this, '');
|
||||
});
|
||||
|
||||
conf.toolbar = conf.toolbar.replace('$extra', '').replace(/\|\s+\|/g, '|');
|
||||
|
||||
// support external configuration settings e.g. from skin
|
||||
if (window.rcmail_editor_settings)
|
||||
$.extend(conf, window.rcmail_editor_settings);
|
||||
|
||||
conf.setup = function(ed) {
|
||||
ed.on('init', function(ed) { ref.init_callback(ed); });
|
||||
// add handler for spellcheck button state update
|
||||
ed.on('SpellcheckStart SpellcheckEnd', function(args) {
|
||||
ref.spellcheck_active = args.type == 'spellcheckstart';
|
||||
ref.spellcheck_observer();
|
||||
});
|
||||
ed.on('keypress', function() {
|
||||
rcmail.compose_type_activity++;
|
||||
});
|
||||
};
|
||||
|
||||
// textarea identifier
|
||||
this.id = id;
|
||||
// reference to active editor (if in HTML mode)
|
||||
this.editor = null;
|
||||
|
||||
tinymce.init(conf);
|
||||
|
||||
// react to real individual tinyMCE editor init
|
||||
this.init_callback = function(event)
|
||||
{
|
||||
this.editor = event.target;
|
||||
|
||||
if (rcmail.env.action != 'compose') {
|
||||
return;
|
||||
}
|
||||
|
||||
var area = $('#' + this.id),
|
||||
height = $('div.mce-toolbar-grp:first', area.parent()).height();
|
||||
|
||||
// the editor might be still not fully loaded, making the editing area
|
||||
// inaccessible, wait and try again (#1490310)
|
||||
if (height > 200 || height > area.height()) {
|
||||
return setTimeout(function () { ref.init_callback(event); }, 300);
|
||||
}
|
||||
|
||||
var css = {},
|
||||
elem = rcube_find_object('_from'),
|
||||
fe = rcmail.env.compose_focus_elem;
|
||||
|
||||
if (rcmail.env.default_font)
|
||||
css['font-family'] = rcmail.env.default_font;
|
||||
|
||||
if (rcmail.env.default_font_size)
|
||||
css['font-size'] = rcmail.env.default_font_size;
|
||||
|
||||
if (css['font-family'] || css['font-size'])
|
||||
$(this.editor.getBody()).css(css);
|
||||
|
||||
if (elem && elem.type == 'select-one') {
|
||||
// insert signature (only for the first time)
|
||||
if (!rcmail.env.identities_initialized)
|
||||
rcmail.change_identity(elem);
|
||||
|
||||
// Focus previously focused element
|
||||
if (fe && fe.id != this.id) {
|
||||
window.focus(); // for WebKit (#1486674)
|
||||
fe.focus();
|
||||
rcmail.env.compose_focus_elem = null;
|
||||
}
|
||||
}
|
||||
|
||||
// set tabIndex and set focus to element that was focused before
|
||||
ref.tabindex(fe && fe.id == ref.id);
|
||||
// Trigger resize (needed for proper editor resizing in some browsers)
|
||||
$(window).resize();
|
||||
};
|
||||
|
||||
// set tabIndex on tinymce editor
|
||||
this.tabindex = function(focus)
|
||||
{
|
||||
if (rcmail.env.task == 'mail' && this.editor) {
|
||||
var textarea = this.editor.getElement(),
|
||||
body = this.editor.getBody(),
|
||||
node = this.editor.getContentAreaContainer().childNodes[0];
|
||||
|
||||
if (textarea && node)
|
||||
node.tabIndex = textarea.tabIndex;
|
||||
|
||||
// find :prev and :next elements to get focus when tabbing away
|
||||
if (textarea.tabIndex > 0) {
|
||||
var x = null,
|
||||
tabfocus_elements = [':prev',':next'],
|
||||
el = tinymce.DOM.select('*[tabindex='+textarea.tabIndex+']:not(iframe)');
|
||||
|
||||
tinymce.each(el, function(e, i) { if (e.id == ref.id) { x = i; return false; } });
|
||||
if (x !== null) {
|
||||
if (el[x-1] && el[x-1].id) {
|
||||
tabfocus_elements[0] = el[x-1].id;
|
||||
}
|
||||
if (el[x+1] && el[x+1].id) {
|
||||
tabfocus_elements[1] = el[x+1].id;
|
||||
}
|
||||
this.editor.settings.tabfocus_elements = tabfocus_elements.join(',');
|
||||
}
|
||||
}
|
||||
|
||||
// ContentEditable reset fixes invisible cursor issue in Firefox < 25
|
||||
if (bw.mz && bw.vendver < 25)
|
||||
$(body).prop('contenteditable', false).prop('contenteditable', true);
|
||||
|
||||
if (focus)
|
||||
body.focus();
|
||||
}
|
||||
};
|
||||
|
||||
// switch html/plain mode
|
||||
this.toggle = function(ishtml, noconvert)
|
||||
{
|
||||
var curr, content, result,
|
||||
// these non-printable chars are not removed on text2html and html2text
|
||||
// we can use them as temp signature replacement
|
||||
sig_mark = "\u0002\u0003",
|
||||
input = $('#' + this.id),
|
||||
signature = rcmail.env.identity ? rcmail.env.signatures[rcmail.env.identity] : null,
|
||||
is_sig = signature && signature.text && signature.text.length > 1;
|
||||
|
||||
// apply spellcheck changes if spell checker is active
|
||||
this.spellcheck_stop();
|
||||
|
||||
if (ishtml) {
|
||||
content = input.val();
|
||||
|
||||
// replace current text signature with temp mark
|
||||
if (is_sig) {
|
||||
content = content.replace(/\r\n/, "\n");
|
||||
content = content.replace(signature.text.replace(/\r\n/, "\n"), sig_mark);
|
||||
}
|
||||
|
||||
var init_editor = function(data) {
|
||||
// replace signature mark with html version of the signature
|
||||
if (is_sig)
|
||||
data = data.replace(sig_mark, '<div id="_rc_sig">' + signature.html + '</div>');
|
||||
|
||||
input.val(data);
|
||||
tinymce.execCommand('mceAddEditor', false, ref.id);
|
||||
|
||||
if (ref.editor) {
|
||||
var body = $(ref.editor.getBody());
|
||||
// #1486593
|
||||
ref.tabindex(true);
|
||||
// put cursor on start of the compose body
|
||||
ref.editor.selection.setCursorLocation(body.children().first().get(0));
|
||||
}
|
||||
};
|
||||
|
||||
// convert to html
|
||||
if (!noconvert) {
|
||||
result = rcmail.plain2html(content, init_editor);
|
||||
}
|
||||
else {
|
||||
init_editor(content);
|
||||
result = true;
|
||||
}
|
||||
}
|
||||
else if (this.editor) {
|
||||
if (is_sig) {
|
||||
// get current version of signature, we'll need it in
|
||||
// case of html2text conversion abort
|
||||
if (curr = this.editor.dom.get('_rc_sig'))
|
||||
curr = curr.innerHTML;
|
||||
|
||||
// replace current signature with some non-printable characters
|
||||
// we use non-printable characters, because this replacement
|
||||
// is visible to the user
|
||||
// doing this after getContent() would be hard
|
||||
this.editor.dom.setHTML('_rc_sig', sig_mark);
|
||||
}
|
||||
|
||||
// get html content
|
||||
content = this.editor.getContent();
|
||||
|
||||
var init_plaintext = function(data) {
|
||||
tinymce.execCommand('mceRemoveEditor', false, ref.id);
|
||||
ref.editor = null;
|
||||
|
||||
// replace signture mark with text version of the signature
|
||||
if (is_sig)
|
||||
data = data.replace(sig_mark, "\n" + signature.text);
|
||||
|
||||
input.val(data).focus();
|
||||
rcmail.set_caret_pos(input.get(0), 0);
|
||||
};
|
||||
|
||||
// convert html to text
|
||||
if (!noconvert) {
|
||||
result = rcmail.html2plain(content, init_plaintext);
|
||||
}
|
||||
else {
|
||||
init_plaintext(input.val());
|
||||
result = true;
|
||||
}
|
||||
|
||||
// bring back current signature
|
||||
if (!result && curr)
|
||||
this.editor.dom.setHTML('_rc_sig', curr);
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
|
||||
// start spellchecker
|
||||
this.spellcheck_start = function()
|
||||
{
|
||||
if (this.editor) {
|
||||
tinymce.execCommand('mceSpellCheck', true);
|
||||
this.spellcheck_observer();
|
||||
}
|
||||
else if (this.spellchecker && this.spellchecker.spellCheck) {
|
||||
this.spellchecker.spellCheck();
|
||||
}
|
||||
};
|
||||
|
||||
// stop spellchecker
|
||||
this.spellcheck_stop = function()
|
||||
{
|
||||
var ed = this.editor;
|
||||
|
||||
if (ed) {
|
||||
if (ed.plugins && ed.plugins.spellchecker && this.spellcheck_active) {
|
||||
ed.execCommand('mceSpellCheck', false);
|
||||
this.spellcheck_observer();
|
||||
}
|
||||
}
|
||||
else if (ed = this.spellchecker) {
|
||||
if (ed.state && ed.state != 'ready' && ed.state != 'no_error_found')
|
||||
$(ed.spell_span).trigger('click');
|
||||
}
|
||||
};
|
||||
|
||||
// spellchecker state
|
||||
this.spellcheck_state = function()
|
||||
{
|
||||
var ed;
|
||||
|
||||
if (this.editor)
|
||||
return this.spellcheck_active;
|
||||
else if ((ed = this.spellchecker) && ed.state)
|
||||
return ed.state != 'ready' && ed.state != 'no_error_found';
|
||||
};
|
||||
|
||||
// resume spellchecking, highlight provided mispellings without a new ajax request
|
||||
this.spellcheck_resume = function(data)
|
||||
{
|
||||
var ed = this.editor;
|
||||
|
||||
if (ed) {
|
||||
ed.plugins.spellchecker.markErrors(data);
|
||||
}
|
||||
else if (ed = this.spellchecker) {
|
||||
ed.prepare(false, true);
|
||||
ed.processData(data);
|
||||
}
|
||||
};
|
||||
|
||||
// get selected (spellcheker) language
|
||||
this.get_language = function()
|
||||
{
|
||||
if (this.editor) {
|
||||
return this.editor.settings.spellchecker_language || rcmail.env.spell_lang;
|
||||
}
|
||||
else if (this.spellchecker) {
|
||||
return GOOGIE_CUR_LANG;
|
||||
}
|
||||
};
|
||||
|
||||
// set language for spellchecking
|
||||
this.set_language = function(lang)
|
||||
{
|
||||
var ed = this.editor;
|
||||
|
||||
if (ed) {
|
||||
ed.settings.spellchecker_language = lang;
|
||||
}
|
||||
if (ed = this.spellchecker) {
|
||||
ed.setCurrentLanguage(lang);
|
||||
}
|
||||
};
|
||||
|
||||
// replace selection with text snippet
|
||||
// input can be a string or object with 'text' and 'html' properties
|
||||
this.replace = function(input)
|
||||
{
|
||||
var format, ed = this.editor;
|
||||
|
||||
if (!input)
|
||||
return false;
|
||||
|
||||
// insert into tinymce editor
|
||||
if (ed) {
|
||||
ed.getWin().focus(); // correct focus in IE & Chrome
|
||||
|
||||
if ($.type(input) == 'object' && ('html' in input)) {
|
||||
input = input.html;
|
||||
format = 'html';
|
||||
}
|
||||
else {
|
||||
if ($.type(input) == 'object')
|
||||
input = input.text || '';
|
||||
|
||||
input = rcmail.quote_html(input).replace(/\r?\n/g, '<br/>');
|
||||
format = 'text';
|
||||
}
|
||||
|
||||
ed.selection.setContent(input, {format: format});
|
||||
}
|
||||
// replace selection in compose textarea
|
||||
else if (ed = rcube_find_object(this.id)) {
|
||||
var selection = $(ed).is(':focus') ? rcmail.get_input_selection(ed) : {start: 0, end: 0},
|
||||
value = ed.value;
|
||||
pre = value.substring(0, selection.start),
|
||||
end = value.substring(selection.end, value.length);
|
||||
|
||||
if ($.type(input) == 'object')
|
||||
input = input.text || '';
|
||||
|
||||
// insert response text
|
||||
ed.value = pre + input + end;
|
||||
|
||||
// set caret after inserted text
|
||||
rcmail.set_caret_pos(ed, selection.start + input.length);
|
||||
ed.focus();
|
||||
}
|
||||
};
|
||||
|
||||
// get selected text (if no selection returns all text) from the editor
|
||||
this.get_content = function(args)
|
||||
{
|
||||
var sigstart, ed = this.editor, text = '', strip = false,
|
||||
defaults = {refresh: true, selection: false, nosig: false, format: 'html'};
|
||||
|
||||
args = $.extend(defaults, args);
|
||||
|
||||
// apply spellcheck changes if spell checker is active
|
||||
if (args.refresh) {
|
||||
this.spellcheck_stop();
|
||||
}
|
||||
|
||||
// get selected text from tinymce editor
|
||||
if (ed) {
|
||||
if (args.selection)
|
||||
text = ed.selection.getContent({format: args.format});
|
||||
|
||||
if (!text) {
|
||||
text = ed.getContent({format: args.format});
|
||||
// @todo: strip signature in html mode
|
||||
strip = args.format == 'text';
|
||||
}
|
||||
}
|
||||
// get selected text from compose textarea
|
||||
else if (ed = rcube_find_object(this.id)) {
|
||||
if (args.selection && $(ed).is(':focus')) {
|
||||
text = rcmail.get_input_selection(ed).text;
|
||||
}
|
||||
|
||||
if (!text) {
|
||||
text = ed.value;
|
||||
strip = true;
|
||||
}
|
||||
}
|
||||
|
||||
// strip off signature
|
||||
// @todo: make this optional
|
||||
if (strip && args.nosig) {
|
||||
sigstart = text.indexOf('-- \n');
|
||||
if (sigstart > 0) {
|
||||
text = text.substring(0, sigstart);
|
||||
}
|
||||
}
|
||||
|
||||
return text;
|
||||
};
|
||||
|
||||
// change user signature text
|
||||
this.change_signature = function(id, show_sig)
|
||||
{
|
||||
var position_element, cursor_pos, p = -1,
|
||||
input_message = $('#' + this.id),
|
||||
message = input_message.val(),
|
||||
sig = rcmail.env.identity;
|
||||
|
||||
if (!this.editor) { // plain text mode
|
||||
// remove the 'old' signature
|
||||
if (show_sig && sig && rcmail.env.signatures && rcmail.env.signatures[sig]) {
|
||||
sig = rcmail.env.signatures[sig].text;
|
||||
sig = sig.replace(/\r\n/g, '\n');
|
||||
|
||||
p = rcmail.env.top_posting ? message.indexOf(sig) : message.lastIndexOf(sig);
|
||||
if (p >= 0)
|
||||
message = message.substring(0, p) + message.substring(p+sig.length, message.length);
|
||||
}
|
||||
|
||||
// add the new signature string
|
||||
if (show_sig && rcmail.env.signatures && rcmail.env.signatures[id]) {
|
||||
sig = rcmail.env.signatures[id].text;
|
||||
sig = sig.replace(/\r\n/g, '\n');
|
||||
|
||||
// in place of removed signature
|
||||
if (p >= 0) {
|
||||
message = message.substring(0, p) + sig + message.substring(p, message.length);
|
||||
cursor_pos = p - 1;
|
||||
}
|
||||
// empty message or new-message mode
|
||||
else if (!message || !rcmail.env.compose_mode) {
|
||||
cursor_pos = message.length;
|
||||
message += '\n\n' + sig;
|
||||
}
|
||||
else if (rcmail.env.top_posting && !rcmail.env.sig_below) {
|
||||
// at cursor position
|
||||
if (pos = rcmail.get_caret_pos(input_message.get(0))) {
|
||||
message = message.substring(0, pos) + '\n' + sig + '\n\n' + message.substring(pos, message.length);
|
||||
cursor_pos = pos;
|
||||
}
|
||||
// on top
|
||||
else {
|
||||
message = '\n\n' + sig + '\n\n' + message.replace(/^[\r\n]+/, '');
|
||||
cursor_pos = 0;
|
||||
}
|
||||
}
|
||||
else {
|
||||
message = message.replace(/[\r\n]+$/, '');
|
||||
cursor_pos = !rcmail.env.top_posting && message.length ? message.length + 1 : 0;
|
||||
message += '\n\n' + sig;
|
||||
}
|
||||
}
|
||||
else {
|
||||
cursor_pos = rcmail.env.top_posting ? 0 : message.length;
|
||||
}
|
||||
|
||||
input_message.val(message);
|
||||
|
||||
// move cursor before the signature
|
||||
rcmail.set_caret_pos(input_message.get(0), cursor_pos);
|
||||
}
|
||||
else if (show_sig && rcmail.env.signatures) { // html
|
||||
var sigElem = this.editor.dom.get('_rc_sig');
|
||||
|
||||
// Append the signature as a div within the body
|
||||
if (!sigElem) {
|
||||
var body = this.editor.getBody();
|
||||
|
||||
sigElem = $('<div id="_rc_sig"></div>').get(0);
|
||||
|
||||
// insert at start or at cursor position in top-posting mode
|
||||
// (but not if the content is empty and not in new-message mode)
|
||||
if (rcmail.env.top_posting && !rcmail.env.sig_below
|
||||
&& rcmail.env.compose_mode && (body.childNodes.length > 1 || $(body).text())
|
||||
) {
|
||||
this.editor.getWin().focus(); // correct focus in IE & Chrome
|
||||
|
||||
var node = this.editor.selection.getNode();
|
||||
|
||||
$(sigElem).insertBefore(node.nodeName == 'BODY' ? body.firstChild : node.nextSibling);
|
||||
$('<p>').append($('<br>')).insertBefore(sigElem);
|
||||
}
|
||||
else {
|
||||
body.appendChild(sigElem);
|
||||
position_element = rcmail.env.top_posting && rcmail.env.compose_mode ? body.firstChild : $(sigElem).prev();
|
||||
}
|
||||
}
|
||||
|
||||
sigElem.innerHTML = rcmail.env.signatures[id] ? rcmail.env.signatures[id].html : '';
|
||||
}
|
||||
else if (!rcmail.env.top_posting) {
|
||||
position_element = $(this.editor.getBody()).children().last();
|
||||
}
|
||||
|
||||
// put cursor before signature and scroll the window
|
||||
if (this.editor && position_element && position_element.length) {
|
||||
this.editor.selection.setCursorLocation(position_element.get(0));
|
||||
this.editor.getWin().scroll(0, position_element.offset().top);
|
||||
}
|
||||
};
|
||||
|
||||
// trigger content save
|
||||
this.save = function()
|
||||
{
|
||||
if (this.editor) {
|
||||
this.editor.save();
|
||||
}
|
||||
};
|
||||
|
||||
// focus the editing area
|
||||
this.focus = function()
|
||||
{
|
||||
(this.editor || rcube_find_object(this.id)).focus();
|
||||
};
|
||||
|
||||
// image selector
|
||||
this.file_browser_callback = function(field_name, url, type)
|
||||
{
|
||||
var i, elem, cancel, dialog, fn, list = [];
|
||||
|
||||
// open image selector dialog
|
||||
dialog = this.editor.windowManager.open({
|
||||
title: rcmail.get_label('select' + type),
|
||||
width: 500,
|
||||
height: 300,
|
||||
html: '<div id="image-selector-list"><ul></ul></div>'
|
||||
+ '<div id="image-selector-form"><div id="image-upload-button" class="mce-widget mce-btn" role="button" tabindex="0"></div></div>',
|
||||
buttons: [{text: 'Cancel', onclick: function() { ref.file_browser_close(); }}]
|
||||
});
|
||||
|
||||
rcmail.env.file_browser_field = field_name;
|
||||
rcmail.env.file_browser_type = type;
|
||||
|
||||
// fill images list with available images
|
||||
for (i in rcmail.env.attachments) {
|
||||
if (elem = ref.file_browser_entry(i, rcmail.env.attachments[i])) {
|
||||
list.push(elem);
|
||||
}
|
||||
}
|
||||
|
||||
if (list.length) {
|
||||
$('#image-selector-list > ul').append(list).find('li:first').focus();
|
||||
}
|
||||
|
||||
// add hint about max file size (in dialog footer)
|
||||
$('div.mce-abs-end', dialog.getEl()).append($('<div class="hint">')
|
||||
.text($('div.hint', rcmail.gui_objects.uploadform).text()));
|
||||
|
||||
// init upload button
|
||||
elem = $('#image-upload-button').append($('<span>').text(rcmail.get_label('add' + type)));
|
||||
cancel = elem.parents('.mce-panel').find('button:last').parent();
|
||||
|
||||
// we need custom Tab key handlers, until we find out why
|
||||
// tabindex do not work here as expected
|
||||
elem.keydown(function(e) {
|
||||
if (e.which == 9) {
|
||||
// on Tab + Shift focus first file
|
||||
if (rcube_event.get_modifier(e) == SHIFT_KEY)
|
||||
$('#image-selector-list li:last').focus();
|
||||
// on Tab focus Cancel button
|
||||
else
|
||||
cancel.focus();
|
||||
|
||||
return false;
|
||||
}
|
||||
});
|
||||
cancel.keydown(function(e) {
|
||||
if (e.which == 9) {
|
||||
// on Tab + Shift focus upload button
|
||||
if (rcube_event.get_modifier(e) == SHIFT_KEY)
|
||||
elem.focus();
|
||||
else
|
||||
$('#image-selector-list li:first').focus();
|
||||
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
// enable (smart) upload button
|
||||
this.hack_file_input(elem, rcmail.gui_objects.uploadform);
|
||||
|
||||
// enable drag-n-drop area
|
||||
if ((window.XMLHttpRequest && XMLHttpRequest.prototype && XMLHttpRequest.prototype.sendAsBinary) || window.FormData) {
|
||||
if (!rcmail.env.filedrop) {
|
||||
rcmail.env.filedrop = {};
|
||||
}
|
||||
if (rcmail.gui_objects.filedrop) {
|
||||
rcmail.env.old_file_drop = rcmail.gui_objects.filedrop;
|
||||
}
|
||||
|
||||
rcmail.gui_objects.filedrop = $('#image-selector-form');
|
||||
rcmail.gui_objects.filedrop.addClass('droptarget')
|
||||
.on('dragover dragleave', function(e) {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
$(this)[(e.type == 'dragover' ? 'addClass' : 'removeClass')]('hover');
|
||||
})
|
||||
.get(0).addEventListener('drop', function(e) { return rcmail.file_dropped(e); }, false);
|
||||
}
|
||||
|
||||
// register handler for successful file upload
|
||||
if (!rcmail.env.file_dialog_event) {
|
||||
rcmail.env.file_dialog_event = true;
|
||||
rcmail.addEventListener('fileuploaded', function(attr) {
|
||||
var elem;
|
||||
if (elem = ref.file_browser_entry(attr.name, attr.attachment)) {
|
||||
$('#image-selector-list > ul').prepend(elem);
|
||||
elem.focus();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// @todo: upload progress indicator
|
||||
};
|
||||
|
||||
// close file browser window
|
||||
this.file_browser_close = function(url)
|
||||
{
|
||||
var input = $('#' + rcmail.env.file_browser_field);
|
||||
|
||||
if (url)
|
||||
input.val(url);
|
||||
|
||||
this.editor.windowManager.close();
|
||||
|
||||
input.focus();
|
||||
|
||||
if (rcmail.env.old_file_drop)
|
||||
rcmail.gui_objects.filedrop = rcmail.env.old_file_drop;
|
||||
};
|
||||
|
||||
// creates file browser entry
|
||||
this.file_browser_entry = function(file_id, file)
|
||||
{
|
||||
if (!file.complete || !file.mimetype) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (rcmail.file_upload_id) {
|
||||
rcmail.set_busy(false, null, rcmail.file_upload_id);
|
||||
}
|
||||
|
||||
var rx, img_src;
|
||||
|
||||
switch (rcmail.env.file_browser_type) {
|
||||
case 'image':
|
||||
rx = /^image\//i;
|
||||
break;
|
||||
|
||||
case 'media':
|
||||
rx = /^video\//i;
|
||||
img_src = 'program/resources/tinymce/video.png';
|
||||
break;
|
||||
|
||||
default:
|
||||
return;
|
||||
}
|
||||
|
||||
if (rx.test(file.mimetype)) {
|
||||
var path = rcmail.env.comm_path + '&_from=' + rcmail.env.action,
|
||||
action = rcmail.env.compose_id ? '&_id=' + rcmail.env.compose_id + '&_action=display-attachment' : '&_action=upload-display',
|
||||
href = path + action + '&_file=' + file_id,
|
||||
img = $('<img>').attr({title: file.name, src: img_src ? img_src : href + '&_thumbnail=1'});
|
||||
|
||||
return $('<li>').attr({tabindex: 0})
|
||||
.data('url', href)
|
||||
.append($('<span class="img">').append(img))
|
||||
.append($('<span class="name">').text(file.name))
|
||||
.click(function() { ref.file_browser_close($(this).data('url')); })
|
||||
.keydown(function(e) {
|
||||
if (e.which == 13) {
|
||||
ref.file_browser_close($(this).data('url'));
|
||||
}
|
||||
// we need custom Tab key handlers, until we find out why
|
||||
// tabindex do not work here as expected
|
||||
else if (e.which == 9) {
|
||||
if (rcube_event.get_modifier(e) == SHIFT_KEY) {
|
||||
if (!$(this).prev().focus().length)
|
||||
$('#image-upload-button').parents('.mce-panel').find('button:last').parent().focus();
|
||||
}
|
||||
else {
|
||||
if (!$(this).next().focus().length)
|
||||
$('#image-upload-button').focus();
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// create smart files upload button
|
||||
this.hack_file_input = function(elem, clone_form)
|
||||
{
|
||||
var offset, link = $(elem),
|
||||
file = $('<input>').attr('name', '_file[]'),
|
||||
form = $('<form>').attr({method: 'post', enctype: 'multipart/form-data'});
|
||||
|
||||
// clone existing upload form
|
||||
if (clone_form) {
|
||||
file.attr('name', $('input[type="file"]', clone_form).attr('name'));
|
||||
form.attr('action', $(clone_form).attr('action'))
|
||||
.append($('<input>').attr({type: 'hidden', name: '_token', value: rcmail.env.request_token}));
|
||||
}
|
||||
|
||||
function move_file_input(e) {
|
||||
if (!offset) offset = link.offset();
|
||||
file.css({top: (e.pageY - offset.top - 10) + 'px', left: (e.pageX - offset.left - 10) + 'px'});
|
||||
}
|
||||
|
||||
file.attr({type: 'file', multiple: 'multiple', size: 5, title: '', tabindex: -1})
|
||||
.change(function() { rcmail.upload_file(form, 'upload'); })
|
||||
.click(function() { setTimeout(function() { link.mouseleave(); }, 20); })
|
||||
// opacity:0 does the trick, display/visibility doesn't work
|
||||
.css({opacity: 0, cursor: 'pointer', position: 'relative', outline: 'none'})
|
||||
.appendTo(form);
|
||||
|
||||
// In FF and IE we need to move the browser file-input's button under the cursor
|
||||
// Thanks to the size attribute above we know the length of the input field
|
||||
if (navigator.userAgent.match(/Firefox|MSIE/))
|
||||
file.css({marginLeft: '-80px'});
|
||||
|
||||
// Note: now, I observe problem with cursor style on FF < 4 only
|
||||
link.css({overflow: 'hidden', cursor: 'pointer'})
|
||||
.mouseenter(function() { this.__active = true; })
|
||||
// place button under the cursor
|
||||
.mousemove(function(e) {
|
||||
if (this.__active)
|
||||
move_file_input(e);
|
||||
// move the input away if button is disabled
|
||||
else
|
||||
$(this).mouseleave();
|
||||
})
|
||||
.mouseleave(function() {
|
||||
file.css({top: '-10000px', left: '-10000px'});
|
||||
this.__active = false;
|
||||
})
|
||||
.click(function(e) {
|
||||
// forward click if mouse-enter event was missed
|
||||
if (!this.__active) {
|
||||
this.__active = true;
|
||||
move_file_input(e);
|
||||
file.trigger(e);
|
||||
}
|
||||
})
|
||||
.keydown(function(e) {
|
||||
if (e.which == 13) file.trigger('click');
|
||||
})
|
||||
.mouseleave()
|
||||
.append(form);
|
||||
};
|
||||
}
|
||||
56
data/web/rc/program/js/editor.min.js
vendored
Normal file
56
data/web/rc/program/js/editor.min.js
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
/**
|
||||
* Roundcube editor js library
|
||||
*
|
||||
* This file is part of the Roundcube Webmail client
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2006-2014, The Roundcube Dev Team
|
||||
*
|
||||
* The JavaScript code in this page is free software: you can
|
||||
* redistribute it and/or modify it under the terms of the GNU
|
||||
* General Public License (GNU GPL) as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option)
|
||||
* any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
*
|
||||
* As additional permission under GNU GPL version 3 section 7, you
|
||||
* may distribute non-source (e.g., minimized or compacted) forms of
|
||||
* that code without the copy of the GNU GPL normally required by
|
||||
* section 4, provided you include this license notice and a URL
|
||||
* through which recipients can access the Corresponding Source.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*
|
||||
* @author Eric Stadtherr <estadtherr@gmail.com>
|
||||
* @author Aleksander Machniak <alec@alec.pl>
|
||||
*/
|
||||
function rcube_text_editor(l,m){var h=this,p=location.href.replace(/[?#].*$/,"").replace(/\/$/,""),k={selector:"#"+($("#"+m).is(".mce_editor")?m:"fake-editor-id"),cache_suffix:"s=4050100",theme:"modern",language:l.lang,content_css:rcmail.assets_path("program/resources/tinymce/content.css"),menubar:!1,statusbar:!1,toolbar_items_size:"small",extended_valid_elements:"font[face|size|color|style],span[id|class|align|style]",relative_urls:!1,remove_script_host:!1,convert_urls:!1,image_description:!1,paste_webkit_style:"color font-size font-family",
|
||||
paste_data_images:!0,browser_spellcheck:!0};this.spellcheck_observer=function(){};l.spellchecker&&(this.spellchecker=l.spellchecker,l.spellcheck_observer&&(this.spellchecker.spelling_state_observer=this.spellcheck_observer=l.spellcheck_observer));tinymce.registered_request_token||(tinymce.registered_request_token=!0,tinymce.util.XHR.on("beforeSend",function(a){a.xhr.setRequestHeader("X-Roundcube-Request",rcmail.env.request_token)}));"identity"==l.mode?$.extend(k,{plugins:"autolink charmap code colorpicker hr image link paste tabfocus textcolor",
|
||||
toolbar:"bold italic underline alignleft aligncenter alignright alignjustify | outdent indent charmap hr link unlink image code forecolor | fontselect fontsizeselect",file_browser_callback:function(a,b,d,c){h.file_browser_callback(a,b,d)},file_browser_callback_types:"image"}):$.extend(k,{plugins:"autolink charmap code colorpicker directionality link image media nonbreaking paste table tabfocus textcolor searchreplace spellchecker",toolbar:"bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent ltr rtl blockquote | forecolor backcolor | fontselect fontsizeselect | link unlink table | $extra charmap image media | code searchreplace undo redo",
|
||||
spellchecker_rpc_url:p+"/?_task=utils&_action=spell_html&_remote=1",spellchecker_language:rcmail.env.spell_lang,accessibility_focus:!1,file_browser_callback:function(a,b,d,c){h.file_browser_callback(a,b,d)},file_browser_callback_types:"image media"});$.each(l.extra_plugins||[],function(){0>k.plugins.indexOf(this)&&(k.plugins=k.plugins+" "+this)});$.each(l.extra_buttons||[],function(){0>k.toolbar.indexOf(this)&&(k.toolbar=k.toolbar.replace("$extra","$extra "+this))});$.each(l.disabled_plugins||[],
|
||||
function(){k.plugins=k.plugins.replace(this,"")});$.each(l.disabled_buttons||[],function(){k.toolbar=k.toolbar.replace(this,"")});k.toolbar=k.toolbar.replace("$extra","").replace(/\|\s+\|/g,"|");window.rcmail_editor_settings&&$.extend(k,window.rcmail_editor_settings);k.setup=function(a){a.on("init",function(a){h.init_callback(a)});a.on("SpellcheckStart SpellcheckEnd",function(a){h.spellcheck_active="spellcheckstart"==a.type;h.spellcheck_observer()});a.on("keypress",function(){rcmail.compose_type_activity++})};
|
||||
this.id=m;this.editor=null;tinymce.init(k);this.init_callback=function(a){this.editor=a.target;if("compose"==rcmail.env.action){var b=$("#"+this.id),d=$("div.mce-toolbar-grp:first",b.parent()).height();if(200<d||d>b.height())return setTimeout(function(){h.init_callback(a)},300);var b={},d=rcube_find_object("_from"),c=rcmail.env.compose_focus_elem;rcmail.env.default_font&&(b["font-family"]=rcmail.env.default_font);rcmail.env.default_font_size&&(b["font-size"]=rcmail.env.default_font_size);(b["font-family"]||
|
||||
b["font-size"])&&$(this.editor.getBody()).css(b);d&&"select-one"==d.type&&(rcmail.env.identities_initialized||rcmail.change_identity(d),c&&c.id!=this.id&&(window.focus(),c.focus(),rcmail.env.compose_focus_elem=null));h.tabindex(c&&c.id==h.id);$(window).resize()}};this.tabindex=function(a){if("mail"==rcmail.env.task&&this.editor){var b=this.editor.getElement(),d=this.editor.getBody(),c=this.editor.getContentAreaContainer().childNodes[0];b&&c&&(c.tabIndex=b.tabIndex);if(0<b.tabIndex){var f=null,c=[":prev",
|
||||
":next"],b=tinymce.DOM.select("*[tabindex="+b.tabIndex+"]:not(iframe)");tinymce.each(b,function(a,b){if(a.id==h.id)return f=b,!1});null!==f&&(b[f-1]&&b[f-1].id&&(c[0]=b[f-1].id),b[f+1]&&b[f+1].id&&(c[1]=b[f+1].id),this.editor.settings.tabfocus_elements=c.join(","))}bw.mz&&25>bw.vendver&&$(d).prop("contenteditable",!1).prop("contenteditable",!0);a&&d.focus()}};this.toggle=function(a,b){var d,c,f=$("#"+this.id),e=rcmail.env.identity?rcmail.env.signatures[rcmail.env.identity]:null,g=e&&e.text&&1<e.text.length;
|
||||
this.spellcheck_stop();if(a)c=f.val(),g&&(c=c.replace(/\r\n/,"\n"),c=c.replace(e.text.replace(/\r\n/,"\n"),"\u0002\u0003")),d=function(a){g&&(a=a.replace("\u0002\u0003",'<div id="_rc_sig">'+e.html+"</div>"));f.val(a);tinymce.execCommand("mceAddEditor",!1,h.id);h.editor&&(a=$(h.editor.getBody()),h.tabindex(!0),h.editor.selection.setCursorLocation(a.children().first().get(0)))},b?(d(c),c=!0):c=rcmail.plain2html(c,d);else if(this.editor){if(g){if(d=this.editor.dom.get("_rc_sig"))d=d.innerHTML;this.editor.dom.setHTML("_rc_sig",
|
||||
"\u0002\u0003")}c=this.editor.getContent();var n=function(a){tinymce.execCommand("mceRemoveEditor",!1,h.id);h.editor=null;g&&(a=a.replace("\u0002\u0003","\n"+e.text));f.val(a).focus();rcmail.set_caret_pos(f.get(0),0)};b?(n(f.val()),c=!0):c=rcmail.html2plain(c,n);!c&&d&&this.editor.dom.setHTML("_rc_sig",d)}return c};this.spellcheck_start=function(){this.editor?(tinymce.execCommand("mceSpellCheck",!0),this.spellcheck_observer()):this.spellchecker&&this.spellchecker.spellCheck&&this.spellchecker.spellCheck()};
|
||||
this.spellcheck_stop=function(){var a=this.editor;a?a.plugins&&a.plugins.spellchecker&&this.spellcheck_active&&(a.execCommand("mceSpellCheck",!1),this.spellcheck_observer()):(a=this.spellchecker)&&a.state&&"ready"!=a.state&&"no_error_found"!=a.state&&$(a.spell_span).trigger("click")};this.spellcheck_state=function(){var a;if(this.editor)return this.spellcheck_active;if((a=this.spellchecker)&&a.state)return"ready"!=a.state&&"no_error_found"!=a.state};this.spellcheck_resume=function(a){var b=this.editor;
|
||||
if(b)b.plugins.spellchecker.markErrors(a);else if(b=this.spellchecker)b.prepare(!1,!0),b.processData(a)};this.get_language=function(){if(this.editor)return this.editor.settings.spellchecker_language||rcmail.env.spell_lang;if(this.spellchecker)return GOOGIE_CUR_LANG};this.set_language=function(a){var b=this.editor;b&&(b.settings.spellchecker_language=a);(b=this.spellchecker)&&b.setCurrentLanguage(a)};this.replace=function(a){var b,d=this.editor;if(!a)return!1;if(d)d.getWin().focus(),"object"==$.type(a)&&
|
||||
"html"in a?(a=a.html,b="html"):("object"==$.type(a)&&(a=a.text||""),a=rcmail.quote_html(a).replace(/\r?\n/g,"<br/>"),b="text"),d.selection.setContent(a,{format:b});else if(d=rcube_find_object(this.id)){b=$(d).is(":focus")?rcmail.get_input_selection(d):{start:0,end:0};var c=d.value;pre=c.substring(0,b.start);end=c.substring(b.end,c.length);"object"==$.type(a)&&(a=a.text||"");d.value=pre+a+end;rcmail.set_caret_pos(d,b.start+a.length);d.focus()}};this.get_content=function(a){var b=this.editor,d="",c=
|
||||
!1;a=$.extend({refresh:!0,selection:!1,nosig:!1,format:"html"},a);a.refresh&&this.spellcheck_stop();if(b)a.selection&&(d=b.selection.getContent({format:a.format})),d||(d=b.getContent({format:a.format}),c="text"==a.format);else if(b=rcube_find_object(this.id))a.selection&&$(b).is(":focus")&&(d=rcmail.get_input_selection(b).text),d||(d=b.value,c=!0);c&&a.nosig&&(a=d.indexOf("-- \n"),0<a&&(d=d.substring(0,a)));return d};this.change_signature=function(a,b){var d,c;c=-1;var f=$("#"+this.id),e=f.val(),
|
||||
g=rcmail.env.identity;this.editor?b&&rcmail.env.signatures?(f=this.editor.dom.get("_rc_sig"),f||(e=this.editor.getBody(),f=$('<div id="_rc_sig"></div>').get(0),rcmail.env.top_posting&&!rcmail.env.sig_below&&rcmail.env.compose_mode&&(1<e.childNodes.length||$(e).text())?(this.editor.getWin().focus(),g=this.editor.selection.getNode(),$(f).insertBefore("BODY"==g.nodeName?e.firstChild:g.nextSibling),$("<p>").append($("<br>")).insertBefore(f)):(e.appendChild(f),d=rcmail.env.top_posting&&rcmail.env.compose_mode?
|
||||
e.firstChild:$(f).prev())),f.innerHTML=rcmail.env.signatures[a]?rcmail.env.signatures[a].html:""):rcmail.env.top_posting||(d=$(this.editor.getBody()).children().last()):(b&&g&&rcmail.env.signatures&&rcmail.env.signatures[g]&&(g=rcmail.env.signatures[g].text,g=g.replace(/\r\n/g,"\n"),c=rcmail.env.top_posting?e.indexOf(g):e.lastIndexOf(g),0<=c&&(e=e.substring(0,c)+e.substring(c+g.length,e.length))),b&&rcmail.env.signatures&&rcmail.env.signatures[a]?(g=rcmail.env.signatures[a].text,g=g.replace(/\r\n/g,
|
||||
"\n"),0<=c?(e=e.substring(0,c)+g+e.substring(c,e.length),--c):e&&rcmail.env.compose_mode?rcmail.env.top_posting&&!rcmail.env.sig_below?(pos=rcmail.get_caret_pos(f.get(0)))?(e=e.substring(0,pos)+"\n"+g+"\n\n"+e.substring(pos,e.length),c=pos):(e="\n\n"+g+"\n\n"+e.replace(/^[\r\n]+/,""),c=0):(e=e.replace(/[\r\n]+$/,""),c=!rcmail.env.top_posting&&e.length?e.length+1:0,e+="\n\n"+g):(c=e.length,e+="\n\n"+g)):c=rcmail.env.top_posting?0:e.length,f.val(e),rcmail.set_caret_pos(f.get(0),c));this.editor&&d&&
|
||||
d.length&&(this.editor.selection.setCursorLocation(d.get(0)),this.editor.getWin().scroll(0,d.offset().top))};this.save=function(){this.editor&&this.editor.save()};this.focus=function(){(this.editor||rcube_find_object(this.id)).focus()};this.file_browser_callback=function(a,b,d){var c,f,e,g=[];b=this.editor.windowManager.open({title:rcmail.get_label("select"+d),width:500,height:300,html:'<div id="image-selector-list"><ul></ul></div><div id="image-selector-form"><div id="image-upload-button" class="mce-widget mce-btn" role="button" tabindex="0"></div></div>',
|
||||
buttons:[{text:"Cancel",onclick:function(){h.file_browser_close()}}]});rcmail.env.file_browser_field=a;rcmail.env.file_browser_type=d;for(c in rcmail.env.attachments)(f=h.file_browser_entry(c,rcmail.env.attachments[c]))&&g.push(f);g.length&&$("#image-selector-list > ul").append(g).find("li:first").focus();$("div.mce-abs-end",b.getEl()).append($('<div class="hint">').text($("div.hint",rcmail.gui_objects.uploadform).text()));f=$("#image-upload-button").append($("<span>").text(rcmail.get_label("add"+
|
||||
d)));e=f.parents(".mce-panel").find("button:last").parent();f.keydown(function(a){if(9==a.which)return rcube_event.get_modifier(a)==SHIFT_KEY?$("#image-selector-list li:last").focus():e.focus(),!1});e.keydown(function(a){if(9==a.which)return rcube_event.get_modifier(a)==SHIFT_KEY?f.focus():$("#image-selector-list li:first").focus(),!1});this.hack_file_input(f,rcmail.gui_objects.uploadform);if(window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.sendAsBinary||window.FormData)rcmail.env.filedrop||
|
||||
(rcmail.env.filedrop={}),rcmail.gui_objects.filedrop&&(rcmail.env.old_file_drop=rcmail.gui_objects.filedrop),rcmail.gui_objects.filedrop=$("#image-selector-form"),rcmail.gui_objects.filedrop.addClass("droptarget").on("dragover dragleave",function(a){a.preventDefault();a.stopPropagation();$(this)["dragover"==a.type?"addClass":"removeClass"]("hover")}).get(0).addEventListener("drop",function(a){return rcmail.file_dropped(a)},!1);rcmail.env.file_dialog_event||(rcmail.env.file_dialog_event=!0,rcmail.addEventListener("fileuploaded",
|
||||
function(a){if(a=h.file_browser_entry(a.name,a.attachment))$("#image-selector-list > ul").prepend(a),a.focus()}))};this.file_browser_close=function(a){var b=$("#"+rcmail.env.file_browser_field);a&&b.val(a);this.editor.windowManager.close();b.focus();rcmail.env.old_file_drop&&(rcmail.gui_objects.filedrop=rcmail.env.old_file_drop)};this.file_browser_entry=function(a,b){if(b.complete&&b.mimetype){rcmail.file_upload_id&&rcmail.set_busy(!1,null,rcmail.file_upload_id);var d,c;switch(rcmail.env.file_browser_type){case "image":d=
|
||||
/^image\//i;break;case "media":d=/^video\//i;c="program/resources/tinymce/video.png";break;default:return}if(d.test(b.mimetype))return d=rcmail.env.comm_path+"&_from="+rcmail.env.action+(rcmail.env.compose_id?"&_id="+rcmail.env.compose_id+"&_action=display-attachment":"&_action=upload-display")+"&_file="+a,c=$("<img>").attr({title:b.name,src:c?c:d+"&_thumbnail=1"}),$("<li>").attr({tabindex:0}).data("url",d).append($('<span class="img">').append(c)).append($('<span class="name">').text(b.name)).click(function(){h.file_browser_close($(this).data("url"))}).keydown(function(a){if(13==
|
||||
a.which)h.file_browser_close($(this).data("url"));else if(9==a.which)return rcube_event.get_modifier(a)==SHIFT_KEY?$(this).prev().focus().length||$("#image-upload-button").parents(".mce-panel").find("button:last").parent().focus():$(this).next().focus().length||$("#image-upload-button").focus(),!1})}};this.hack_file_input=function(a,b){function d(a){c||(c=f.offset());e.css({top:a.pageY-c.top-10+"px",left:a.pageX-c.left-10+"px"})}var c,f=$(a),e=$("<input>").attr("name","_file[]"),g=$("<form>").attr({method:"post",
|
||||
enctype:"multipart/form-data"});b&&(e.attr("name",$('input[type="file"]',b).attr("name")),g.attr("action",$(b).attr("action")).append($("<input>").attr({type:"hidden",name:"_token",value:rcmail.env.request_token})));e.attr({type:"file",multiple:"multiple",size:5,title:"",tabindex:-1}).change(function(){rcmail.upload_file(g,"upload")}).click(function(){setTimeout(function(){f.mouseleave()},20)}).css({opacity:0,cursor:"pointer",position:"relative",outline:"none"}).appendTo(g);navigator.userAgent.match(/Firefox|MSIE/)&&
|
||||
e.css({marginLeft:"-80px"});f.css({overflow:"hidden",cursor:"pointer"}).mouseenter(function(){this.__active=!0}).mousemove(function(a){this.__active?d(a):$(this).mouseleave()}).mouseleave(function(){e.css({top:"-10000px",left:"-10000px"});this.__active=!1}).click(function(a){this.__active||(this.__active=!0,d(a),e.trigger(a))}).keydown(function(a){13==a.which&&e.trigger("click")}).mouseleave().append(g)}};
|
||||
1152
data/web/rc/program/js/googiespell.js
Normal file
1152
data/web/rc/program/js/googiespell.js
Normal file
File diff suppressed because it is too large
Load Diff
72
data/web/rc/program/js/googiespell.min.js
vendored
Normal file
72
data/web/rc/program/js/googiespell.min.js
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
/**
|
||||
* Roundcube SpellCheck script
|
||||
*
|
||||
* jQuery'fied spell checker based on GoogieSpell 4.0
|
||||
* (which was published under GPL "version 2 or any later version")
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (C) 2006 Amir Salihefendic
|
||||
* Copyright (C) 2009 The Roundcube Dev Team
|
||||
* Copyright (C) 2011 Kolab Systems AG
|
||||
*
|
||||
* 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 (GNU GPL) as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option)
|
||||
* any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
*
|
||||
* As additional permission under GNU GPL version 3 section 7, you
|
||||
* may distribute non-source (e.g., minimized or compacted) forms of
|
||||
* that code without the copy of the GNU GPL normally required by
|
||||
* section 4, provided you include this license notice and a URL
|
||||
* through which recipients can access the Corresponding Source.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*
|
||||
* @author 4mir Salihefendic <amix@amix.dk>
|
||||
* @author Aleksander Machniak - <alec [at] alec.pl>
|
||||
*/
|
||||
var GOOGIE_CUR_LANG,GOOGIE_DEFAULT_LANG="en";
|
||||
function GoogieSpell(v,w,x){var m=this,u=rcmail.get_cookie("language");GOOGIE_CUR_LANG=null!=u?u:GOOGIE_DEFAULT_LANG;this.array_keys=function(a){var b=[],c;for(c in a)b.push([c]);return b};this.img_dir=v;this.server_url=w;this.lang_to_word=this.org_lang_to_word={da:"Dansk",de:"Deutsch",en:"English",es:"Espa\u00f1ol",fr:"Fran\u00e7ais",it:"Italiano",nl:"Nederlands",pl:"Polski",pt:"Portugu\u00eas",ru:"\u0420\u0443\u0441\u0441\u043a\u0438\u0439",fi:"Suomi",sv:"Svenska"};this.langlist_codes=this.array_keys(this.lang_to_word);
|
||||
this.show_change_lang_pic=!0;this.change_lang_pic_placement="right";this.report_state_change=!0;this.el_scroll_top=this.ta_scroll_top=0;this.lang_chck_spell="Check spelling";this.lang_revert="Revert to";this.lang_close="Close";this.lang_rsm_edt="Resume editing";this.lang_no_error_found="No spelling errors found";this.lang_no_suggestions="No suggestions";this.lang_learn_word="Add to dictionary";this.show_spell_img=!1;this.decoration=!0;this.use_close_btn=!1;this.report_ta_not_found=this.edit_layer_dbl_click=
|
||||
!0;this.custom_no_spelling_error=this.custom_ajax_error=null;this.custom_menu_builder=[];this.custom_item_evaulator=null;this.extra_menu_items=[];this.custom_spellcheck_starter=null;this.main_controller=!0;this.has_dictionary=x;this.all_errors_fixed_observer=this.show_menu_observer=this.spelling_state_observer=this.lang_state_observer=null;this.use_focus=!1;this.focus_link_b=this.focus_link_t=null;this.cnt_errors_fixed=this.cnt_errors=0;$(document).click(function(a){a=$(a.target);"1"!=a.attr("googie_action_btn")&&
|
||||
m.isLangWindowShown()&&m.hideLangWindow();"1"!=a.attr("googie_action_btn")&&m.isErrorWindowShown()&&m.hideErrorWindow()});this.decorateTextarea=function(a){if(this.text_area="string"===typeof a?document.getElementById(a):a){if(!this.spell_container&&this.decoration){a=document.createElement("table");var b=document.createElement("tbody"),c=document.createElement("tr"),d=document.createElement("td"),e=this.isDefined(this.force_width)?this.force_width:this.text_area.offsetWidth,g=this.isDefined(this.force_height)?
|
||||
this.force_height:16;c.appendChild(d);b.appendChild(c);$(a).append(b).insertBefore(this.text_area).width("100%").height(g);$(d).height(g).width(e).css("text-align","right");this.spell_container=d}this.checkSpellingState()}else this.report_ta_not_found&&alert("Text area not found")};this.setSpellContainer=function(a){this.spell_container="string"===typeof a?document.getElementById(a):a};this.setLanguages=function(a){this.lang_to_word=a;this.langlist_codes=this.array_keys(a)};this.setCurrentLanguage=
|
||||
function(a){GOOGIE_CUR_LANG=a;var b=new Date;b.setTime(b.getTime()+31536E6);rcmail.set_cookie("language",a,b)};this.setForceWidthHeight=function(a,b){this.force_width=a;this.force_height=b};this.setDecoration=function(a){this.decoration=a};this.dontUseCloseButtons=function(){this.use_close_btn=!1};this.appendNewMenuItem=function(a,b,c){this.extra_menu_items.push([a,b,c])};this.appendCustomMenuBuilder=function(a,b){this.custom_menu_builder.push([a,b])};this.setFocus=function(){try{return this.focus_link_b.focus(),
|
||||
this.focus_link_t.focus(),!0}catch(a){return!1}};this.setStateChanged=function(a){this.state=a;null!=this.spelling_state_observer&&this.report_state_change&&this.spelling_state_observer(a,this)};this.setReportStateChange=function(a){this.report_state_change=a};this.getUrl=function(){return this.server_url+GOOGIE_CUR_LANG};this.escapeSpecial=function(a){return a?a.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">"):""};this.createXMLReq=function(a){return'<?xml version="1.0" encoding="utf-8" ?><spellrequest textalreadyclipped="0" ignoredups="0" ignoredigits="1" ignoreallcaps="1"><text>'+
|
||||
a+"</text></spellrequest>"};this.spellCheck=function(a){this.prepare(a);a=this.escapeSpecial(this.orginal_text);var b=this;$.ajax({type:"POST",url:this.getUrl(),data:this.createXMLReq(a),dataType:"text",error:function(a){b.custom_ajax_error?b.custom_ajax_error(b):alert("An error was encountered on the server. Please try again later.");b.main_controller&&($(b.spell_span).remove(),b.removeIndicator());b.checkSpellingState()},success:function(a){b.processData(a);b.results.length||(b.custom_no_spelling_error?
|
||||
b.custom_no_spelling_error(b):b.flashNoSpellingErrorState());b.removeIndicator()}})};this.learnWord=function(a,b){a=this.escapeSpecial(a.innerHTML);var c=this,d='<?xml version="1.0" encoding="utf-8" ?><learnword><text>'+a+"</text></learnword>";$.ajax({type:"POST",url:this.getUrl(),data:d,dataType:"text",error:function(a){c.custom_ajax_error?c.custom_ajax_error(c):alert("An error was encountered on the server. Please try again later.")},success:function(a){}})};this.prepare=function(a,b){this.cnt_errors=
|
||||
this.cnt_errors_fixed=0;this.setStateChanged("checking_spell");this.orginal_text="";!b&&this.main_controller&&this.appendIndicator(this.spell_span);this.error_links=[];this.ta_scroll_top=this.text_area.scrollTop;this.ignore=a;this.hideLangWindow();var c=$(this.text_area);if(""==c.val()||a)this.custom_no_spelling_error?this.custom_no_spelling_error(this):this.flashNoSpellingErrorState(),this.removeIndicator();else{this.createEditLayer(c.width(),c.height());this.createErrorWindow();$("body").append(this.error_window);
|
||||
try{netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead")}catch(d){}this.main_controller&&$(this.spell_span).off("click");this.orginal_text=c.val()}};this.parseResult=function(a){var b=/\w+="(\d+|true)"/g,c=/\t/g;a=a.match(/<c[^>]*>[^<]*<\/c>/g);var d=[];if(null==a)return d;for(var e=0,g=a.length;e<g;e++){var k=[];this.errorFound();k.attrs=[];for(var f,h,m=a[e].match(b),l=0;l<m.length;l++)f=m[l].split(/=/),h=f[1].replace(/"/g,""),k.attrs[f[0]]="true"!=h?parseInt(h):h;k.suggestions=
|
||||
[];f=a[e].replace(/<[^>]*>/g,"").split(c);for(h=0;h<f.length;h++)""!=f[h]&&k.suggestions.push(f[h]);d.push(k)}return d};this.processData=function(a){this.results=this.parseResult(a);this.results.length&&(this.showErrorsInIframe(),this.resumeEditingState())};this.createErrorWindow=function(){this.error_window=document.createElement("div");$(this.error_window).addClass("googie_window popupmenu").attr("googie_action_btn","1")};this.isErrorWindowShown=function(){return $(this.error_window).is(":visible")};
|
||||
this.hideErrorWindow=function(){$(this.error_window).hide();$(this.error_window_iframe).hide()};this.updateOrginalText=function(a,b,c,d){var e=this.orginal_text.substring(0,a);a=this.orginal_text.substring(a+b.length);b=c.length-b.length;this.orginal_text=e+c+a;$(this.text_area).val(this.orginal_text);c=0;for(e=this.results.length;c<e;c++)c!=d&&c>d&&(this.results[c].attrs.o+=b)};this.saveOldValue=function(a,b){a.is_changed=!0;a.old_value=b};this.createListSeparator=function(){var a=document.createElement("td"),
|
||||
b=document.createElement("tr");$(a).html(" ").attr("googie_action_btn","1").css({cursor:"default","font-size":"3px","border-top":"1px solid #ccc","padding-top":"3px"});b.appendChild(a);return b};this.correctError=function(a,b,c,d){var e=b.innerHTML;c=3==c.nodeType?c.nodeValue:c.innerHTML;var g=this.results[a].attrs.o;d&&(d=b.previousSibling.innerHTML,b.previousSibling.innerHTML=d.slice(0,d.length-1),e=" "+e,g--);this.hideErrorWindow();this.updateOrginalText(g,e,c,a);$(b).html(c).css("color","green").attr("is_corrected",
|
||||
!0);this.results[a].attrs.l=c.length;this.isDefined(b.old_value)||this.saveOldValue(b,e);this.errorFixed()};this.ignoreError=function(a,b){$(a).removeAttr("class").css("color","").off();this.hideErrorWindow()};this.showErrorWindow=function(a,b){this.show_menu_observer&&this.show_menu_observer(this);var c=this,d=$(a).offset(),e=document.createElement("table"),g=document.createElement("tbody");$(this.error_window).html("");$(e).addClass("googie_list").attr("googie_action_btn","1");for(var k=!1,f=0;f<
|
||||
this.custom_menu_builder.length;f++){var h=this.custom_menu_builder[f];if(h[0](this.results[b])){k=h[1](this,g,a);break}}if(!k){var k=this.results[b].suggestions,m=this.results[b].attrs.o,f=this.results[b].attrs.l,l,n;this.has_dictionary&&!$(a).attr("is_corrected")&&(h=document.createElement("tr"),l=document.createElement("td"),n=document.createElement("span"),$(n).text(this.lang_learn_word),$(l).attr("googie_action_btn","1").css("cursor","default").mouseover(c.item_onmouseover).mouseout(c.item_onmouseout).click(function(d){c.learnWord(a,
|
||||
b);c.ignoreError(a,b)}),l.appendChild(n),h.appendChild(l),g.appendChild(h));for(var q=0,f=k.length;q<f;q++)h=document.createElement("tr"),l=document.createElement("td"),n=document.createElement("span"),$(n).html(k[q]),$(l).mouseover(this.item_onmouseover).mouseout(this.item_onmouseout).click(function(d){c.correctError(b,a,d.target.firstChild)}),l.appendChild(n),h.appendChild(l),g.appendChild(h);if(a.is_changed&&a.innerHTML!=a.old_value){var r=a.old_value,k=document.createElement("tr"),f=document.createElement("td"),
|
||||
h=document.createElement("span");$(h).addClass("googie_list_revert").html(this.lang_revert+" "+r);$(f).mouseover(this.item_onmouseover).mouseout(this.item_onmouseout).click(function(d){c.updateOrginalText(m,a.innerHTML,r,b);$(a).removeAttr("is_corrected").css("color","#b91414").html(r);c.hideErrorWindow()});f.appendChild(h);k.appendChild(f);g.appendChild(k)}var k=document.createElement("tr"),f=document.createElement("td"),p=document.createElement("input"),h=document.createElement("img");l=document.createElement("form");
|
||||
n=function(){""!=p.value&&(c.isDefined(a.old_value)||c.saveOldValue(a,a.innerHTML),c.updateOrginalText(m,a.innerHTML,p.value,b),$(a).attr("is_corrected",!0).css("color","green").text(p.value),c.hideErrorWindow());return!1};$(p).width(120).css({margin:0,padding:0}).val($(a).text()).attr("googie_action_btn","1");$(f).css("cursor","default").attr("googie_action_btn","1");$(h).attr("src",this.img_dir+"ok.gif").width(32).height(16).css({cursor:"pointer","margin-left":"2px","margin-right":"2px"}).click(n);
|
||||
$(l).attr("googie_action_btn","1").css({margin:0,padding:0,cursor:"default","white-space":"nowrap"}).submit(n);l.appendChild(p);l.appendChild(h);f.appendChild(l);k.appendChild(f);g.appendChild(k);0<this.extra_menu_items.length&&g.appendChild(this.createListSeparator());var t=function(b){if(b<c.extra_menu_items.length){var d=c.extra_menu_items[b];if(!d[2]||d[2](a,c)){var e=document.createElement("tr"),f=document.createElement("td");$(f).html(d[0]).mouseover(c.item_onmouseover).mouseout(c.item_onmouseout).click(function(){return d[1](a,
|
||||
c)});e.appendChild(f);g.appendChild(e)}t(b+1)}};t(0);t=null;this.use_close_btn&&g.appendChild(this.createCloseButton(this.hideErrorWindow))}e.appendChild(g);this.error_window.appendChild(e);f=$(this.error_window).height();e=$(this.error_window).width();h=$(document).height();k=$(document).width();f=d.top+f+20<h?d.top+20:d.top-f;d=d.left+e<k?d.left:d.left-e;$(this.error_window).css({top:f+"px",left:d+"px"}).show();document.all&&!window.opera&&(this.error_window_iframe||(d=$("<iframe>").css({position:"absolute",
|
||||
"z-index":-1}),$("body").append(d),this.error_window_iframe=d),$(this.error_window_iframe).css({top:this.error_window.offsetTop,left:this.error_window.offsetLeft,width:this.error_window.offsetWidth,height:this.error_window.offsetHeight}).show())};this.createEditLayer=function(a,b){this.edit_layer=document.createElement("div");$(this.edit_layer).addClass("googie_edit_layer").attr("id","googie_edit_layer").width(a).height(b);"input"!=this.text_area.nodeName.toLowerCase()||""==$(this.text_area).val()?
|
||||
$(this.edit_layer).css("overflow","auto"):$(this.edit_layer).css("overflow","hidden");var c=this;this.edit_layer_dbl_click&&$(this.edit_layer).dblclick(function(a){if("googie_link"!=a.target.className&&!c.isErrorWindowShown()){c.resumeEditing();var b=function(){$(c.text_area).focus();b=null};window.setTimeout(b,10)}return!1})};this.resumeEditing=function(){this.setStateChanged("ready");this.edit_layer&&(this.el_scroll_top=this.edit_layer.scrollTop);this.hideErrorWindow();this.main_controller&&$(this.spell_span).removeClass().addClass("googie_no_style");
|
||||
this.ignore||(this.use_focus&&($(this.focus_link_t).remove(),$(this.focus_link_b).remove()),$(this.edit_layer).remove(),$(this.text_area).show(),void 0!=this.el_scroll_top&&(this.text_area.scrollTop=this.el_scroll_top));this.checkSpellingState(!1)};this.createErrorLink=function(a,b){var c=document.createElement("span"),d=this,e=function(a){d.showErrorWindow(c,b);e=null;return!1};$(c).html(a).addClass("googie_link").click(e).removeAttr("is_corrected").attr({googie_action_btn:"1",g_id:b});return c};
|
||||
this.createPart=function(a){if(" "==a)return document.createTextNode(" ");a=this.escapeSpecial(a);a=a.replace(/\n/g,"<br>");a=a.replace(/ /g," ");a=a.replace(/^ /g," ");a=a.replace(/ $/g," ");var b=document.createElement("span");$(b).html(a);return b};this.showErrorsInIframe=function(){var a=document.createElement("div"),b=0,c=this.results;if(0<c.length){for(var d=0,e=c.length;d<e;d++){var g=c[d].attrs.o,k=c[d].attrs.l,f=this.orginal_text.substring(b,g),f=this.createPart(f);a.appendChild(f);
|
||||
b+=g-b;g=this.createErrorLink(this.orginal_text.substr(g,k),d);this.error_links.push(g);a.appendChild(g);b+=k}b=this.orginal_text.substr(b,this.orginal_text.length);b=this.createPart(b);a.appendChild(b)}else a.innerHTML=this.orginal_text;$(a).css("text-align","left");var h=this;this.custom_item_evaulator&&$.map(this.error_links,function(a){h.custom_item_evaulator(h,a)});$(this.edit_layer).append(a);$(this.text_area).hide();$(this.edit_layer).insertBefore(this.text_area);this.use_focus&&(this.focus_link_t=
|
||||
this.createFocusLink("focus_t"),this.focus_link_b=this.createFocusLink("focus_b"),$(this.focus_link_t).insertBefore(this.edit_layer),$(this.focus_link_b).insertAfter(this.edit_layer))};this.createLangWindow=function(){this.language_window=document.createElement("div");$(this.language_window).addClass("googie_window popupmenu").width(100).attr("googie_action_btn","1");var a=document.createElement("table"),b=document.createElement("tbody"),c=this,d,e,g;$(a).addClass("googie_list").width("100%");this.lang_elms=
|
||||
[];for(i=0;i<this.langlist_codes.length;i++)d=document.createElement("tr"),e=document.createElement("td"),g=document.createElement("span"),$(g).text(this.lang_to_word[this.langlist_codes[i]]),this.lang_elms.push(e),$(e).attr("googieId",this.langlist_codes[i]).click(function(a){c.deHighlightCurSel();c.setCurrentLanguage($(this).attr("googieId"));null!=c.lang_state_observer&&c.lang_state_observer();c.highlightCurSel();c.hideLangWindow()}).mouseover(function(a){"googie_list_selected"!=this.className&&
|
||||
(this.className="googie_list_onhover")}).mouseout(function(a){"googie_list_selected"!=this.className&&(this.className="googie_list_onout")}),e.appendChild(g),d.appendChild(e),b.appendChild(d);this.use_close_btn&&b.appendChild(this.createCloseButton(function(){c.hideLangWindow.apply(c)}));this.highlightCurSel();a.appendChild(b);this.language_window.appendChild(a)};this.isLangWindowShown=function(){return $(this.language_window).is(":visible")};this.hideLangWindow=function(){$(this.language_window).hide();
|
||||
$(this.switch_lan_pic).removeClass().addClass("googie_lang_3d_on")};this.showLangWindow=function(a){this.show_menu_observer&&this.show_menu_observer(this);this.createLangWindow();$("body").append(this.language_window);var b=$(a).offset(),c=$(a).height(),d=$(a).width();a=$(this.language_window).height();var e=$(document).height(),d="right"==this.change_lang_pic_placement?b.left-100+d:b.left+d,b=b.top+a<e?b.top+c:b.top-a-4;$(this.language_window).css({top:b+"px",left:d+"px"}).show();this.highlightCurSel()};
|
||||
this.deHighlightCurSel=function(){$(this.lang_cur_elm).removeClass().addClass("googie_list_onout")};this.highlightCurSel=function(){null==GOOGIE_CUR_LANG&&(GOOGIE_CUR_LANG=GOOGIE_DEFAULT_LANG);for(var a=0;a<this.lang_elms.length;a++)$(this.lang_elms[a]).attr("googieId")==GOOGIE_CUR_LANG?(this.lang_elms[a].className="googie_list_selected",this.lang_cur_elm=this.lang_elms[a]):this.lang_elms[a].className="googie_list_onout"};this.createChangeLangPic=function(){var a=$("<img>").attr({src:this.img_dir+
|
||||
"change_lang.gif",alt:"Change language",googie_action_btn:"1"}),b=document.createElement("span");m=this;$(b).addClass("googie_lang_3d_on").append(a).click(function(a){a="img"==this.tagName.toLowerCase()?this.parentNode:this;$(a).hasClass("googie_lang_3d_click")?(a.className="googie_lang_3d_on",m.hideLangWindow()):(a.className="googie_lang_3d_click",m.showLangWindow(a))});return b};this.createSpellDiv=function(){var a=document.createElement("span");$(a).addClass("googie_check_spelling_link").text(this.lang_chck_spell);
|
||||
this.show_spell_img&&$(a).append(" ").append($("<img>").attr("src",this.img_dir+"spellc.gif"));return a};this.flashNoSpellingErrorState=function(a){this.setStateChanged("no_error_found");var b=this;if(this.main_controller){var c;c=a?function(){a();b.checkSpellingState()}:function(){b.checkSpellingState()};var d=$("<span>").text(this.lang_no_error_found);$(this.switch_lan_pic).hide();$(this.spell_span).empty().append(d).removeClass().addClass("googie_check_spelling_ok");window.setTimeout(c,1E3)}};
|
||||
this.resumeEditingState=function(){this.setStateChanged("resume_editing");if(this.main_controller){var a=$("<span>").text(this.lang_rsm_edt),b=this;$(this.switch_lan_pic).hide();$(this.spell_span).empty().off().append(a).click(function(){b.resumeEditing()}).removeClass().addClass("googie_resume_editing")}try{this.edit_layer.scrollTop=this.ta_scroll_top}catch(c){}};this.checkSpellingState=function(a){a&&this.setStateChanged("ready");this.switch_lan_pic=this.show_change_lang_pic?this.createChangeLangPic():
|
||||
document.createElement("span");a=this.createSpellDiv();var b=this;this.custom_spellcheck_starter?$(a).click(function(a){b.custom_spellcheck_starter()}):$(a).click(function(a){b.spellCheck()});this.main_controller&&("left"==this.change_lang_pic_placement?$(this.spell_container).empty().append(this.switch_lan_pic).append(" ").append(a):$(this.spell_container).empty().append(a).append(" ").append(this.switch_lan_pic));this.spell_span=a};this.isDefined=function(a){return void 0!==a&&null!==a};this.errorFixed=
|
||||
function(){this.cnt_errors_fixed++;this.all_errors_fixed_observer&&this.cnt_errors_fixed==this.cnt_errors&&(this.hideErrorWindow(),this.all_errors_fixed_observer())};this.errorFound=function(){this.cnt_errors++};this.createCloseButton=function(a){return this.createButton(this.lang_close,"googie_list_close",a)};this.createButton=function(a,b,c){var d=document.createElement("tr"),e=document.createElement("td"),g;b?(g=document.createElement("span"),$(g).addClass(b).html(a)):g=document.createTextNode(a);
|
||||
$(e).click(c).mouseover(this.item_onmouseover).mouseout(this.item_onmouseout);e.appendChild(g);d.appendChild(e);return d};this.removeIndicator=function(a){window.rcmail&&rcmail.set_busy(!1,null,this.rc_msg_id)};this.appendIndicator=function(a){window.rcmail&&(this.rc_msg_id=rcmail.set_busy(!0,"checking"))};this.createFocusLink=function(a){var b=document.createElement("a");$(b).attr({href:"javascript:;",name:a});return b};this.item_onmouseover=function(a){"googie_list_revert"!=this.className&&"googie_list_close"!=
|
||||
this.className?this.className="googie_list_onhover":this.parentNode.className="googie_list_onhover"};this.item_onmouseout=function(a){"googie_list_revert"!=this.className&&"googie_list_close"!=this.className?this.className="googie_list_onout":this.parentNode.className="googie_list_onout"}};
|
||||
38
data/web/rc/program/js/jquery.min.js
vendored
Normal file
38
data/web/rc/program/js/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
36
data/web/rc/program/js/jstz.min.js
vendored
Normal file
36
data/web/rc/program/js/jstz.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1836
data/web/rc/program/js/list.js
Normal file
1836
data/web/rc/program/js/list.js
Normal file
File diff suppressed because it is too large
Load Diff
82
data/web/rc/program/js/list.min.js
vendored
Normal file
82
data/web/rc/program/js/list.min.js
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
/**
|
||||
* Roundcube List Widget
|
||||
*
|
||||
* This file is part of the Roundcube Webmail client
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2005-2014, The Roundcube Dev Team
|
||||
*
|
||||
* The JavaScript code in this page is free software: you can
|
||||
* redistribute it and/or modify it under the terms of the GNU
|
||||
* General Public License (GNU GPL) as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option)
|
||||
* any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
*
|
||||
* As additional permission under GNU GPL version 3 section 7, you
|
||||
* may distribute non-source (e.g., minimized or compacted) forms of
|
||||
* that code without the copy of the GNU GPL normally required by
|
||||
* section 4, provided you include this license notice and a URL
|
||||
* through which recipients can access the Corresponding Source.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*
|
||||
* @author Thomas Bruederli <roundcube@gmail.com>
|
||||
* @author Charles McNulty <charles@charlesmcnulty.com>
|
||||
*
|
||||
* @requires jquery.js, common.js
|
||||
*/
|
||||
function rcube_list_widget(a,b){this.ENTER_KEY=13;this.DELETE_KEY=46;this.BACKSPACE_KEY=8;this.tagname=(this.list=a?a:null)?this.list.nodeName.toLowerCase():"table";this.id_regexp=/^rcmrow([a-z0-9\-_=\+\/]+)/i;this.rows={};this.selection=[];this.modkey=this.subject_col=this.colcount=this.rowcount=0;this.aria_listbox=this.toggleselect=this.keyboard=this.column_movable=this.draggable=this.multi_selecting=this.multiexpand=this.multiselect=!1;this.parent_focus=!0;this.col_drag_active=this.drag_active=
|
||||
!1;this.shift_start=this.last_selected=this.column_fixed=null;this.focused=!1;this.drag_mouse_start=null;this.dblclick_time=500;this.row_init=function(){};if(b&&"object"===typeof b)for(var c in b)this[c]=b[c];rcube_list_widget._instances.push(this)}
|
||||
rcube_list_widget.prototype={init:function(){"table"==this.tagname&&this.list&&this.list.tBodies[0]?(this.thead=this.list.tHead,this.tbody=this.list.tBodies[0]):"table"!=this.tagname&&this.list&&(this.tbody=this.list);"listbox"==$(this.list).attr("role")&&(this.aria_listbox=!0,this.multiselect&&$(this.list).attr("aria-multiselectable","true"));var a=this;if(this.tbody){this.rows={};this.rowcount=0;var b,c,d=this.tbody.childNodes;b=0;for(c=d.length;b<c;b++)1==d[b].nodeType&&(this.rowcount+=this.init_row(d[b])?
|
||||
1:0);this.init_header();this.frame=this.list.parentNode;this.keyboard&&(rcube_event.add_listener({event:"keydown",object:this,method:"key_press"}),$(this.list).attr("tabindex","0").on("focus",function(b){a.focus(b)}))}this.parent_focus&&(this.list.parentNode.onclick=function(b){a.focus()});return this},init_row:function(a){a.uid=this.get_row_uid(a);if(a&&a.uid){var b=this,c=a.uid;this.rows[c]={uid:c,id:a.id,obj:a};$(a).data("uid",c).mousedown(function(a){return b.drag_row(a,this.uid)}).mouseup(function(a){return 1!=
|
||||
a.which||b.drag_active?!0:b.click_row(a,this.uid)});bw.touch&&a.addEventListener&&(a.addEventListener("touchstart",function(a){1==a.touches.length&&(b.touchmoved=!1,b.drag_row(rcube_event.touchevent(a.touches[0]),this.uid))},!1),a.addEventListener("touchend",function(a){1==a.changedTouches.length&&(b.touchmoved||b.click_row(rcube_event.touchevent(a.changedTouches[0]),this.uid)||a.preventDefault())},!1),a.addEventListener("touchmove",function(a){1==a.changedTouches.length&&(b.touchmoved=!0,b.drag_active&&
|
||||
a.preventDefault())},!1));if(this.aria_listbox){var d="l:"+a.id;$(a).attr("role","option").attr("aria-labelledby",d).find(this.col_tagname()).eq(this.subject_col).attr("id",d)}document.all&&(a.onselectstart=function(){return!1});this.row_init(this.rows[c]);this.triggerEvent("initrow",this.rows[c]);return!0}},init_header:function(){if(this.thead){this.colcount=0;this.fixed_header?($(this.list.tHead).replaceWith($(this.fixed_header).find("thead").clone()),$(this.list.tHead).find("th,td").attr("style",
|
||||
"").find("a").attr("tabindex","-1")):!bw.touch&&0<=this.list.className.indexOf("fixedheader")&&this.init_fixed_header();var a,b,c=this;if(this.column_movable&&this.thead&&this.thead.rows)for(b=0;b<this.thead.rows[0].cells.length;b++)this.column_fixed!=b&&(a=this.thead.rows[0].cells[b],a.onmousedown=function(a){return c.drag_column(a,this)},this.colcount++)}},init_fixed_header:function(){var a=$(this.list.tHead).clone();if(this.fixed_header)$(this.fixed_header).find("thead").replaceWith(a);else{this.fixed_header=
|
||||
$("<table>").attr("class",this.list.className+" fixedcopy").attr("role","presentation").css({position:"fixed"}).append(a).append("<tbody></tbody>");$(this.list).before(this.fixed_header);var b=this;$(window).resize(function(){b.resize()});$(window).scroll(function(){var a=$(window);b.fixed_header.css({marginLeft:-a.scrollLeft()+"px",marginTop:-a.scrollTop()+"px"})})}$(this.list.tHead).find("a.sortcol").attr("tabindex","-1");a.find("a.sortcol").attr("tabindex","0");this.thead=a.get(0);this.resize()},
|
||||
resize:function(){if(this.fixed_header){var a=[];$(this.tbody).parent().find("thead th,thead td").each(function(b){a[b]=$(this).width()});$(this.thead).parent().width($(this.tbody).parent().width());$(this.thead).find("th,td").each(function(b){$(this).width(a[b])});$(window).scroll()}},clear:function(a){if("table"==this.tagname){var b=document.createElement("tbody");this.list.insertBefore(b,this.tbody);this.list.removeChild(this.list.tBodies[1]);this.tbody=b}else $(this.row_tagname()+":not(.thead)",
|
||||
this.tbody).remove();this.rows={};this.rowcount=0;this.last_selected=null;a&&this.clear_selection();this.frame&&(this.frame.scrollTop=0);this.resize()},remove_row:function(a,b){var c=this,d=this.rows[a]?this.rows[a].obj:null;d&&(d.style.display="none",b&&this.select_next(),delete this.rows[a],this.rowcount--,clearTimeout(this.resize_timeout),this.resize_timeout=setTimeout(function(){c.resize()},50))},insert_row:function(a,b){var c=this,d=this.tbody;if(void 0===a.nodeName){var e,f,g,h,k=document.createElement(this.row_tagname());
|
||||
a.id&&(k.id=a.id);a.uid&&(k.uid=a.uid);a.className&&(k.className=a.className);a.style&&$.extend(k.style,a.style);for(e=0;a.cols&&e<a.cols.length;e++){h=a.cols[e];g=h.dom;if(!g)for(f in g=document.createElement(this.col_tagname()),h.className&&(g.className=h.className),h.innerHTML&&(g.innerHTML=h.innerHTML),h.events)g["on"+f]=h.events[f];k.appendChild(g)}a=k}b&&d.childNodes.length?d.insertBefore(a,"object"==typeof b&&b.parentNode==d?b:d.firstChild):d.appendChild(a);this.init_row(a);this.rowcount++;
|
||||
clearTimeout(this.resize_timeout);this.resize_timeout=setTimeout(function(){c.resize()},50)},update_row:function(a,b,c,d){var e=this.rows[a];if(!e)return!1;for(var f=e.obj,e=0;b&&e<b.length;e++)this.get_cell(f,e).html(b[e]);c&&(delete this.rows[a],f.uid=c,f.id="rcmrow"+c,this.init_row(f),d&&(this.selection[0]=c),this.last_selected==a&&(this.last_selected=c))},focus:function(a){this.focused||(this.focused=!0,a&&rcube_event.cancel(a),a=null,this.last_selected&&this.rows[this.last_selected]&&(a=$(this.rows[this.last_selected].obj).find(this.col_tagname()).eq(this.subject_col).attr("tabindex",
|
||||
"0")),a&&a.length?this.focus_noscroll(a):($("iframe,:focus:not(body)").blur(),window.focus()),$(this.list).addClass("focus").removeAttr("tabindex"),this.last_selected||this.select_first(CONTROL_KEY))},blur:function(a){this.focused=!1;var b=this;setTimeout(function(){$(b.list).attr("tabindex","0")},20);this.last_selected&&this.rows[this.last_selected]&&$(this.rows[this.last_selected].obj).find(this.col_tagname()).eq(this.subject_col).removeAttr("tabindex");$(this.list).removeClass("focus")},focus_noscroll:function(a){var b=
|
||||
this.frame.scrollTop||this.frame.scrollY;a.focus();this.frame.scrollTop=b},hide_column:function(a,b){var c=b?"addClass":"removeClass";if(this.fixed_header)$(this.row_tagname()+" "+this.col_tagname()+"."+a,this.fixed_header)[c]("hidden");$(this.row_tagname()+" "+this.col_tagname()+"."+a,this.list)[c]("hidden")},drag_column:function(a,b){if(1<this.colcount){this.drag_start=!0;this.drag_mouse_start=rcube_event.get_mouse_pos(a);rcube_event.add_listener({event:"mousemove",object:this,method:"column_drag_mouse_move"});
|
||||
rcube_event.add_listener({event:"mouseup",object:this,method:"column_drag_mouse_up"});this.add_dragfix();for(var c=0;c<this.thead.rows[0].cells.length;c++)if(b==this.thead.rows[0].cells[c]){this.selected_column=c;break}}return!1},drag_row:function(a,b){if(!this.is_event_target(a)||2==rcube_event.get_button(a))return!0;this.in_selection_before=a&&a.istouch||this.in_selection(b)?b:!1;if(!this.in_selection_before){var c=rcube_event.get_modifier(a);this.select_row(b,c,!0)}this.draggable&&this.selection.length&&
|
||||
this.in_selection(b)&&(this.drag_start=!0,this.drag_mouse_start=rcube_event.get_mouse_pos(a),rcube_event.add_listener({event:"mousemove",object:this,method:"drag_mouse_move"}),rcube_event.add_listener({event:"mouseup",object:this,method:"drag_mouse_up"}),bw.touch&&(rcube_event.add_listener({event:"touchmove",object:this,method:"drag_mouse_move"}),rcube_event.add_listener({event:"touchend",object:this,method:"drag_mouse_up"})),this.add_dragfix());return!1},click_row:function(a,b){if(!b||!this.rows[b])return!1;
|
||||
if(!this.is_event_target(a))return!0;var c=(new Date).getTime(),d=c-this.rows[b].clicked<this.dblclick_time;this.drag_active||d||this.in_selection_before!=b||this.select_row(b,rcube_event.get_modifier(a),!0);this.in_selection_before=this.drag_start=!1;this.rowcount&&d&&this.in_selection(b)?(this.triggerEvent("dblclick"),c=0):this.triggerEvent("click");this.drag_active||(this.del_dragfix(),rcube_event.cancel(a));this.rows[b].clicked=c;this.focus();return!1},is_event_target:function(a){a=rcube_event.get_target(a);
|
||||
var b=a.tagName.toLowerCase();return!(a&&("input"==b||"img"==b||"a"!=b&&a.onclick))},find_root:function(a){var b=this.rows[a];return b&&b.parent_uid?this.find_root(b.parent_uid):a},expand_row:function(a,b){var c=this.rows[b],d=rcube_event.get_target(a),e=rcube_event.get_modifier(a);c.clicked=0;c.expanded?(d.className="collapsed",e==CONTROL_KEY||this.multiexpand?this.collapse_all(c):this.collapse(c)):(d.className="expanded",e==CONTROL_KEY||this.multiexpand?this.expand_all(c):this.expand(c))},collapse:function(a){var b=
|
||||
a.depth,c=a?a.obj.nextSibling:null;a.expanded=!1;for(this.triggerEvent("expandcollapse",{uid:a.uid,expanded:a.expanded,obj:a.obj});c;){if(1==c.nodeType){if((a=this.rows[c.uid])&&a.depth<=b)break;$(c).css("display","none");a.expanded&&(a.expanded=!1,this.triggerEvent("expandcollapse",{uid:a.uid,expanded:a.expanded,obj:c}))}c=c.nextSibling}this.resize();this.triggerEvent("listupdate");return!1},expand:function(a){var b,c,d,e,f;a?(a.expanded=!0,d=a.depth,e=a.obj.nextSibling,this.update_expando(a.id,
|
||||
!0),this.triggerEvent("expandcollapse",{uid:a.uid,expanded:a.expanded,obj:a.obj})):(e=this.tbody.firstChild,f=d=0);for(;e;){if(1==e.nodeType&&(b=this.rows[e.uid])){if(a&&(!b.depth||b.depth<=d))break;if(b.parent_uid)if((c=this.rows[b.parent_uid])&&c.expanded){if(a&&c==a||f>=c.depth-1)f=c.depth,$(e).css("display",""),b.expanded=!0,this.triggerEvent("expandcollapse",{uid:b.uid,expanded:b.expanded,obj:e})}else if(a&&(!c||c.depth<=d))break}e=e.nextSibling}this.resize();this.triggerEvent("listupdate");
|
||||
return!1},collapse_all:function(a){var b,c,d;if(a){if(a.expanded=!1,b=a.depth,c=a.obj.nextSibling,this.update_expando(a.id),this.triggerEvent("expandcollapse",{uid:a.uid,expanded:a.expanded,obj:a.obj}),b&&this.multiexpand)return!1}else c=this.tbody.firstChild,b=0;for(;c;){if(1==c.nodeType&&(d=this.rows[c.uid])){if(a&&(!d.depth||d.depth<=b))break;(a||d.depth)&&$(c).css("display","none");d.has_children&&d.expanded&&(d.expanded=!1,this.update_expando(d.id,!1),this.triggerEvent("expandcollapse",{uid:d.uid,
|
||||
expanded:d.expanded,obj:c}))}c=c.nextSibling}this.resize();this.triggerEvent("listupdate");return!1},expand_all:function(a){var b,c,d;a?(a.expanded=!0,b=a.depth,c=a.obj.nextSibling,this.update_expando(a.id,!0),this.triggerEvent("expandcollapse",{uid:a.uid,expanded:a.expanded,obj:a.obj})):(c=this.tbody.firstChild,b=0);for(;c;){if(1==c.nodeType&&(d=this.rows[c.uid])){if(a&&d.depth<=b)break;$(c).css("display","");d.has_children&&!d.expanded&&(d.expanded=!0,this.update_expando(d.id,!0),this.triggerEvent("expandcollapse",
|
||||
{uid:d.uid,expanded:d.expanded,obj:c}))}c=c.nextSibling}this.resize();this.triggerEvent("listupdate");return!1},update_expando:function(a,b){var c=document.getElementById("rcmexpando"+a);c&&(c.className=b?"expanded":"collapsed")},get_row_uid:function(a){if(a){if(!a.uid){var b=$(a).data("uid");b?a.uid=b:String(a.id).match(this.id_regexp)&&(a.uid=RegExp.$1)}return a.uid}},get_next_row:function(){if(!this.rowcount)return!1;for(var a=this.rows[this.last_selected],a=a?a.obj.nextSibling:null;a&&(1!=a.nodeType||
|
||||
"none"==a.style.display);)a=a.nextSibling;return a},get_prev_row:function(){if(!this.rowcount)return!1;for(var a=this.rows[this.last_selected],a=a?a.obj.previousSibling:null;a&&(1!=a.nodeType||"none"==a.style.display);)a=a.previousSibling;return a},get_first_row:function(){if(this.rowcount){var a,b,c=this.tbody.childNodes;for(a=0;a<c.length;a++)if(c[a].id&&(b=this.get_row_uid(c[a])))return b}return null},get_last_row:function(){if(this.rowcount){var a,b,c=this.tbody.childNodes;for(a=c.length-1;0<=
|
||||
a;a--)if(c[a].id&&(b=this.get_row_uid(c[a])))return b}return null},row_tagname:function(){var a={table:"tr",ul:"li","*":"div"};return a[this.tagname]||a["*"]},col_tagname:function(){var a={table:"td","*":"span"};return a[this.tagname]||a["*"]},get_cell:function(a,b){return $(this.col_tagname(),a).eq(b)},select_row:function(a,b,c){var d=this.selection.join(","),e=this.in_selection(a);!this.multiselect&&c&&(b=0);this.shift_start||(this.shift_start=a);if(b){switch(b){case SHIFT_KEY:this.shift_select(a,
|
||||
!1);break;case CONTROL_KEY:c&&(this.shift_start=a,this.highlight_row(a,!0));break;case CONTROL_SHIFT_KEY:this.shift_select(a,!0);break;default:this.highlight_row(a,!1)}this.multi_selecting=!0}else this.shift_start=a,this.highlight_row(a,!1),this.multi_selecting=!1;this.last_selected&&this.rows[this.last_selected]&&$(this.rows[this.last_selected].obj).removeClass("focused").find(this.col_tagname()).eq(this.subject_col).removeAttr("tabindex");this.toggleselect&&e&&!b?this.clear_selection():this.selection.join(",")!=
|
||||
d&&this.triggerEvent("select");this.rows[a]&&($(this.rows[a].obj).addClass("focused"),this.focused&&this.focus_noscroll($(this.rows[a].obj).find(this.col_tagname()).eq(this.subject_col).attr("tabindex","0")));this.selection.length||(this.shift_start=null);this.last_selected=a},select:function(a){this.select_row(a,!1);this.scrollto(a)},select_next:function(){var a=this.get_next_row(),b=this.get_prev_row();(a=a?a:b)&&this.select_row(a.uid,!1,!1)},select_first:function(a){var b=this.get_first_row();
|
||||
b&&(this.select_row(b,a,!1),this.scrollto(b))},select_last:function(a){var b=this.get_last_row();b&&(this.select_row(b,a,!1),this.scrollto(b))},select_children:function(a){var b=this.row_children(a),c=b.length;for(a=0;a<c;a++)this.in_selection(b[a])||this.select_row(b[a],CONTROL_KEY,!0)},shift_select:function(a,b){this.rows[this.shift_start]&&this.selection.length||(this.shift_start=a);var c,d,e;d=this.rows[a];e=this._rowIndex(this.rows[this.shift_start].obj);var f=this._rowIndex(d.obj);e<f&&!d.expanded&&
|
||||
d.has_children&&(d=this.rows[this.row_children(a).pop()])&&(f=this._rowIndex(d.obj));d=e<f?e:f;e=e>f?e:f;for(c in this.rows)this._rowIndex(this.rows[c].obj)>=d&&this._rowIndex(this.rows[c].obj)<=e?this.in_selection(c)||this.highlight_row(c,!0):this.in_selection(c)&&!b&&this.highlight_row(c,!0)},_rowIndex:function(a){return void 0!==a.rowIndex?a.rowIndex:$(a).prevAll().length},in_selection:function(a,b){for(var c in this.selection)if(this.selection[c]==a)return b?parseInt(c):!0;return!1},select_all:function(a){if(!this.rowcount)return!1;
|
||||
var b,c=this.selection.join(",");this.selection=[];for(b in this.rows)a&&1!=this.rows[b][a]?$(this.rows[b].obj).removeClass("selected").removeAttr("aria-selected"):(this.last_selected=b,this.highlight_row(b,!0,!0));this.selection.join(",")!=c&&this.triggerEvent("select");this.focus();return!0},invert_selection:function(){if(!this.rowcount)return!1;var a,b=this.selection.join(",");for(a in this.rows)this.highlight_row(a,!0);this.selection.join(",")!=b&&this.triggerEvent("select");this.focus();return!0},
|
||||
clear_selection:function(a,b){var c,d=this.selection.length;if(a)for(c in this.selection){if(this.selection[c]==a){this.selection.splice(c,1);break}}else{for(c in this.selection)this.rows[this.selection[c]]&&$(this.rows[this.selection[c]].obj).removeClass("selected").removeAttr("aria-selected");this.selection=[]}!d||this.selection.length||b||(this.triggerEvent("select"),this.last_selected=null)},get_selection:function(a){var b=$.merge([],this.selection);if(!1!==a&&b.length)for(var c,d=0,e=b.length;d<
|
||||
e;d++)if(a=b[d],this.rows[a]&&this.rows[a].has_children&&!this.rows[a].expanded){c=this.row_children(a);for(var f=0,g=c.length;f<g;f++)a=c[f],this.in_selection(a)||b.push(a)}return b},get_single_selection:function(){return 1==this.selection.length?this.selection[0]:null},highlight_row:function(a,b,c){if(this.rows[a])if(b){var d;d=this.in_selection(a,!0);!1===d?(this.selection.push(a),$(this.rows[a].obj).addClass("selected").attr("aria-selected","true"),c||this.rows[a].expanded||this.highlight_children(a,
|
||||
!0)):(b=this.selection.slice(0,d),d=this.selection.slice(d+1,this.selection.length),this.selection=b.concat(d),$(this.rows[a].obj).removeClass("selected").removeAttr("aria-selected"),c||this.rows[a].expanded||this.highlight_children(a,!1))}else if(1<this.selection.length||!this.in_selection(a))this.clear_selection(null,!0),this.selection[0]=a,$(this.rows[a].obj).addClass("selected").attr("aria-selected","true")},highlight_children:function(a,b){var c,d,e=this.row_children(a),f=e.length;for(c=0;c<
|
||||
f;c++)d=this.in_selection(e[c]),(b&&!d||!b&&d)&&this.highlight_row(e[c],!0,!0)},key_press:function(a){var b=a.target||{};if(!this.focused||"INPUT"==b.nodeName||"TEXTAREA"==b.nodeName||"SELECT"==b.nodeName)return!0;var b=rcube_event.get_keycode(a),c=rcube_event.get_modifier(a);switch(b){case 40:case 38:case 63233:case 63232:return rcube_event.cancel(a),this.use_arrow_key(b,c);case 32:return rcube_event.cancel(a),this.select_row(this.last_selected,c,!0);case 37:case 39:return rcube_event.cancel(a),
|
||||
a=this.use_arrow_key(b,c),this.key_pressed=b,this.modkey=c,this.triggerEvent("keypress"),this.modkey=0,a;case 36:return this.select_first(c),rcube_event.cancel(a);case 35:return this.select_last(c),rcube_event.cancel(a);case 27:return this.drag_active?this.drag_mouse_up(a):this.col_drag_active?(this.selected_column=null,this.column_drag_mouse_up(a)):rcube_event.cancel(a);case 9:this.blur();break;case 13:this.selection.length||this.select_row(this.last_selected,c,!1);default:if(this.key_pressed=b,
|
||||
this.modkey=c,this.triggerEvent("keypress"),this.modkey=0,this.key_pressed==this.BACKSPACE_KEY)return rcube_event.cancel(a)}return!0},use_arrow_key:function(a,b){var c,d=this.rows[this.last_selected];if(40==a||63233==a)c=this.get_next_row();else if(38==a||63232==a)c=this.get_prev_row();else{if(!d||!d.has_children)return;if(39==a){if(d.expanded)return;b==CONTROL_KEY||this.multiexpand?this.expand_all(d):this.expand(d)}else{if(!d.expanded)return;b==CONTROL_KEY||this.multiexpand?this.collapse_all(d):
|
||||
this.collapse(d)}this.update_expando(d.id,d.expanded);return!1}c?(b||this.selection.length||(b=CONTROL_KEY),this.select_row(c.uid,b,!1),this.scrollto(c.uid)):c||d||this.select_first(CONTROL_KEY);return!1},scrollto:function(a){var b=this.rows[a]?this.rows[a].obj:null;if(b&&this.frame){var c=Number(b.offsetTop),d=0;!c&&this.rows[a].parent_uid&&(a=this.find_root(this.rows[a].uid),this.expand_all(this.rows[a]),c=Number(b.offsetTop));this.fixed_header&&(d=Number(this.thead.offsetHeight));c<Number(this.frame.scrollTop)+
|
||||
d?this.frame.scrollTop=c-d:c+Number(b.offsetHeight)>Number(this.frame.scrollTop)+Number(this.frame.offsetHeight)&&(this.frame.scrollTop=c+Number(b.offsetHeight)-Number(this.frame.offsetHeight))}},drag_mouse_move:function(a){if("touchmove"==a.type)if(1==a.touches.length&&1==a.changedTouches.length)a=rcube_event.touchevent(a.changedTouches[0]);else return rcube_event.cancel(a);if(this.drag_start){var b=rcube_event.get_mouse_pos(a),c=[],d=this;if(!this.drag_mouse_start||3>Math.abs(b.x-this.drag_mouse_start.x)&&
|
||||
3>Math.abs(b.y-this.drag_mouse_start.y))return!1;this.drag_start_pos={left:b.x,top:b.y};this.draglayer?this.draglayer.html(""):this.draglayer=$("<div>").attr("id","rcmdraglayer").css({position:"absolute",display:"none","z-index":2E3}).appendTo(document.body);$(this.row_tagname()+".selected",this.tbody).each(function(){var a=d.get_row_uid(this),b=d.rows[a];if(b&&!(-1<$.inArray(a,c))&&(c.push(a),b.has_children&&!b.expanded&&$.each(d.row_children(a),function(){-1<$.inArray(this,c)||c.push(this)}),11<
|
||||
c.length))return!1});$.each(c,function(a,b){if(10<a)return d.draglayer.append("..."),!1;$("> "+d.col_tagname(),d.rows[b].obj).each(function(a,b){if(0>d.subject_col||0<=d.subject_col&&d.subject_col==a){b=$(b).clone();$(b).find(".skip-on-drag").remove();var c=b.text();if(c)return c=$.trim(c),c=50<c.length?c.substring(0,50)+"...":c,d.draglayer.append($("<div>").text(c)),!1}})});this.draglayer.show();this.drag_active=!0;this.triggerEvent("dragstart")}this.drag_active&&this.draglayer&&(b=rcube_event.get_mouse_pos(a),
|
||||
this.draglayer.css({left:b.x+20+"px",top:b.y-5+(bw.ie?document.documentElement.scrollTop:0)+"px"}),this.triggerEvent("dragmove",a?a:window.event));return this.drag_start=!1},drag_mouse_up:function(a){document.onmousemove=null;if("touchend"==a.type&&1!=a.changedTouches.length)return rcube_event.cancel(a);this.draglayer&&this.draglayer.is(":visible")&&(this.drag_start_pos?this.draglayer.animate(this.drag_start_pos,300,"swing").hide(20):this.draglayer.hide());this.drag_active&&this.focus();this.drag_active=
|
||||
!1;rcube_event.remove_listener({event:"mousemove",object:this,method:"drag_mouse_move"});rcube_event.remove_listener({event:"mouseup",object:this,method:"drag_mouse_up"});bw.touch&&(rcube_event.remove_listener({event:"touchmove",object:this,method:"drag_mouse_move"}),rcube_event.remove_listener({event:"touchend",object:this,method:"drag_mouse_up"}));this.del_dragfix();this.triggerEvent("dragend",a);return rcube_event.cancel(a)},column_drag_mouse_move:function(a){if(this.drag_start){var b;b=rcube_event.get_mouse_pos(a);
|
||||
if(!this.drag_mouse_start||3>Math.abs(b.x-this.drag_mouse_start.x)&&3>Math.abs(b.y-this.drag_mouse_start.y))return!1;if(!this.col_draglayer){b=$(this.list).offset();var c=this.thead.rows[0].cells;b.top+=this.list.scrollTop+this.list.parentNode.scrollTop;this.col_draglayer=$("<div>").attr("id","rcmcoldraglayer").css(b).css({position:"absolute","z-index":2001,"background-color":"white",opacity:.75,height:this.frame.offsetHeight-2+"px",width:this.frame.offsetWidth-2+"px"}).appendTo(document.body).append($("<div>").attr("id",
|
||||
"rcmcolumnindicator").css({position:"absolute","border-right":"2px dotted #555","z-index":2002,height:this.frame.offsetHeight-2+"px"}));this.cols=[];this.list_pos=this.list_min_pos=b.left;for(b=0;b<c.length;b++)this.cols[b]=c[b].offsetWidth,null!==this.column_fixed&&b<=this.column_fixed&&(this.list_min_pos+=this.cols[b])}this.col_draglayer.show();this.col_drag_active=!0;this.triggerEvent("column_dragstart")}if(this.col_drag_active&&this.col_draglayer){var c=0,d=rcube_event.get_mouse_pos(a);for(b=
|
||||
0;b<this.cols.length;b++)if(d.x>=this.cols[b]/2+this.list_pos+c)c+=this.cols[b];else break;0==b&&this.list_min_pos>d.x?c=this.list_min_pos-this.list_pos:this.list.rowcount||b!=this.cols.length||(c-=2);$("#rcmcolumnindicator").css({width:c+"px"});this.triggerEvent("column_dragmove",a?a:window.event)}return this.drag_start=!1},column_drag_mouse_up:function(a){document.onmousemove=null;this.col_draglayer&&(this.col_draglayer.remove(),this.col_draglayer=null);rcube_event.remove_listener({event:"mousemove",
|
||||
object:this,method:"column_drag_mouse_move"});rcube_event.remove_listener({event:"mouseup",object:this,method:"column_drag_mouse_up"});this.del_dragfix();if(this.col_drag_active&&(this.col_drag_active=!1,this.focus(),this.triggerEvent("column_dragend",a),null!==this.selected_column&&this.cols&&this.cols.length)){var b,c=0,d=rcube_event.get_mouse_pos(a);for(b=0;b<this.cols.length;b++)if(d.x>=this.cols[b]/2+this.list_pos+c)c+=this.cols[b];else break;b!=this.selected_column&&b!=this.selected_column+
|
||||
1&&this.column_replace(this.selected_column,b)}return rcube_event.cancel(a)},row_children:function(a){if(!this.rows[a]||!this.rows[a].has_children)return[];var b=[],c=this.rows[a].depth;for(a=this.rows[a].obj.nextSibling;a;){if(1==a.nodeType&&(r=this.rows[a.uid])){if(!r.depth||r.depth<=c)break;b.push(r.uid)}a=a.nextSibling}return b},add_dragfix:function(){$("iframe").each(function(){$('<div class="iframe-dragdrop-fix"></div>').css({background:"#fff",width:this.offsetWidth+"px",height:this.offsetHeight+
|
||||
"px",position:"absolute",opacity:"0.001",zIndex:1E3}).css($(this).offset()).appendTo(document.body)})},del_dragfix:function(){$("div.iframe-dragdrop-fix").remove()},column_replace:function(a,b){if(this.thead&&this.thead.rows){var c;c=this.thead.rows[0].cells;var d=c[a],e=c[b],f=document.createElement("td");e?c[0].parentNode.insertBefore(f,e):c[0].parentNode.appendChild(f);c[0].parentNode.replaceChild(d,f);r=0;for(c=this.tbody.rows.length;r<c;r++)row=this.tbody.rows[r],d=row.cells[a],e=row.cells[b],
|
||||
f=document.createElement("td"),e?row.insertBefore(f,e):row.appendChild(f),row.replaceChild(d,f);this.subject_col==a?this.subject_col=b>a?b-1:b:this.subject_col<a&&b<=this.subject_col?this.subject_col++:this.subject_col>a&&b>=this.subject_col&&this.subject_col--;this.fixed_header&&this.init_header();this.triggerEvent("column_replace")}}};rcube_list_widget.prototype.addEventListener=rcube_event_engine.prototype.addEventListener;rcube_list_widget.prototype.removeEventListener=rcube_event_engine.prototype.removeEventListener;
|
||||
rcube_list_widget.prototype.triggerEvent=rcube_event_engine.prototype.triggerEvent;rcube_list_widget._instances=[];
|
||||
483
data/web/rc/program/js/publickey.js
Normal file
483
data/web/rc/program/js/publickey.js
Normal file
@@ -0,0 +1,483 @@
|
||||
/**
|
||||
* PublicKey.js - v0e011cb
|
||||
*
|
||||
* @source https://github.com/diafygi/publickeyjs/blob/master/publickey.js
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2015 Daniel Roesler
|
||||
*
|
||||
* 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 (GNU GPL) as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option)
|
||||
* any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
*
|
||||
* As additional permission under GNU GPL version 3 section 7, you
|
||||
* may distribute non-source (e.g., minimized or compacted) forms of
|
||||
* that code without the copy of the GNU GPL normally required by
|
||||
* section 4, provided you include this license notice and a URL
|
||||
* through which recipients can access the Corresponding Source.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*/
|
||||
"use strict";
|
||||
|
||||
(function(context){
|
||||
/*
|
||||
Default keyservers (HTTPS and CORS enabled)
|
||||
*/
|
||||
var DEFAULT_KEYSERVERS = [
|
||||
"https://keys.fedoraproject.org/",
|
||||
"https://keybase.io/",
|
||||
];
|
||||
|
||||
/*
|
||||
Initialization to create an PublicKey object.
|
||||
|
||||
Arguments:
|
||||
|
||||
* keyservers - Array of keyserver domains, default is:
|
||||
["https://keys.fedoraproject.org/", "https://keybase.io/"]
|
||||
|
||||
Examples:
|
||||
|
||||
//Initialize with the default keyservers
|
||||
var hkp = new PublicKey();
|
||||
|
||||
//Initialize only with a specific keyserver
|
||||
var hkp = new PublicKey(["https://key.ip6.li/"]);
|
||||
*/
|
||||
var PublicKey = function(keyservers){
|
||||
this.keyservers = keyservers || DEFAULT_KEYSERVERS;
|
||||
};
|
||||
|
||||
/*
|
||||
Get a public key from any keyserver based on keyId.
|
||||
|
||||
Arguments:
|
||||
|
||||
* keyId - String key id of the public key (this is usually a fingerprint)
|
||||
|
||||
* callback - Function that is called when finished. Two arguments are
|
||||
passed to the callback: publicKey and errorCode. publicKey is
|
||||
an ASCII armored OpenPGP public key. errorCode is the error code
|
||||
(either HTTP status code or keybase error code) returned by the
|
||||
last keyserver that was tried. If a publicKey was found,
|
||||
errorCode is null. If no publicKey was found, publicKey is null
|
||||
and errorCode is not null.
|
||||
|
||||
Examples:
|
||||
|
||||
//Get a valid public key
|
||||
var hkp = new PublicKey();
|
||||
hkp.get("F75BE4E6EF6E9DD203679E94E7F6FAD172EFEE3D", function(publicKey, errorCode){
|
||||
errorCode !== null ? console.log(errorCode) : console.log(publicKey);
|
||||
});
|
||||
|
||||
//Try to get an invalid public key
|
||||
var hkp = new PublicKey();
|
||||
hkp.get("bogus_id", function(publicKey, errorCode){
|
||||
errorCode !== null ? console.log(errorCode) : console.log(publicKey);
|
||||
});
|
||||
*/
|
||||
PublicKey.prototype.get = function(keyId, callback, keyserverIndex, err){
|
||||
//default starting point is at the first keyserver
|
||||
if(keyserverIndex === undefined){
|
||||
keyserverIndex = 0;
|
||||
}
|
||||
|
||||
//no more keyservers to check, so no key found
|
||||
if(keyserverIndex >= this.keyservers.length){
|
||||
return callback(null, err || 404);
|
||||
}
|
||||
|
||||
//set the keyserver to try next
|
||||
var ks = this.keyservers[keyserverIndex];
|
||||
var _this = this;
|
||||
|
||||
//special case for keybase
|
||||
if(ks.indexOf("https://keybase.io/") === 0){
|
||||
|
||||
//don't need 0x prefix for keybase searches
|
||||
if(keyId.indexOf("0x") === 0){
|
||||
keyId = keyId.substr(2);
|
||||
}
|
||||
|
||||
//request the public key from keybase
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("get", "https://keybase.io/_/api/1.0/user/lookup.json" +
|
||||
"?fields=public_keys&key_fingerprint=" + keyId);
|
||||
xhr.onload = function(){
|
||||
if(xhr.status === 200){
|
||||
var result = JSON.parse(xhr.responseText);
|
||||
|
||||
//keybase error returns HTTP 200 status, which is silly
|
||||
if(result['status']['code'] !== 0){
|
||||
return _this.get(keyId, callback, keyserverIndex + 1, result['status']['code']);
|
||||
}
|
||||
|
||||
//no public key found
|
||||
if(result['them'].length === 0){
|
||||
return _this.get(keyId, callback, keyserverIndex + 1, 404);
|
||||
}
|
||||
|
||||
//found the public key
|
||||
var publicKey = result['them'][0]['public_keys']['primary']['bundle'];
|
||||
return callback(publicKey, null);
|
||||
}
|
||||
else{
|
||||
return _this.get(keyId, callback, keyserverIndex + 1, xhr.status);
|
||||
}
|
||||
};
|
||||
xhr.send();
|
||||
}
|
||||
|
||||
//normal HKP keyserver
|
||||
else{
|
||||
//add the 0x prefix if absent
|
||||
if(keyId.indexOf("0x") !== 0){
|
||||
keyId = "0x" + keyId;
|
||||
}
|
||||
|
||||
//request the public key from the hkp server
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("get", ks + "pks/lookup?op=get&options=mr&search=" + keyId);
|
||||
xhr.onload = function(){
|
||||
if(xhr.status === 200){
|
||||
return callback(xhr.responseText, null);
|
||||
}
|
||||
else{
|
||||
return _this.get(keyId, callback, keyserverIndex + 1, xhr.status);
|
||||
}
|
||||
};
|
||||
xhr.send();
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
Search for a public key in the keyservers.
|
||||
|
||||
Arguments:
|
||||
|
||||
* query - String to search for (usually an email, name, or username).
|
||||
|
||||
* callback - Function that is called when finished. Two arguments are
|
||||
passed to the callback: results and errorCode. results is an
|
||||
Array of users that were returned by the search. errorCode is
|
||||
the error code (either HTTP status code or keybase error code)
|
||||
returned by the last keyserver that was tried. If any results
|
||||
were found, errorCode is null. If no results are found, results
|
||||
is null and errorCode is not null.
|
||||
|
||||
Examples:
|
||||
|
||||
//Search for diafygi's key id
|
||||
var hkp = new PublicKey();
|
||||
hkp.search("diafygi", function(results, errorCode){
|
||||
errorCode !== null ? console.log(errorCode) : console.log(results);
|
||||
});
|
||||
|
||||
//Search for a nonexistent key id
|
||||
var hkp = new PublicKey();
|
||||
hkp.search("doesntexist123", function(results, errorCode){
|
||||
errorCode !== null ? console.log(errorCode) : console.log(results);
|
||||
});
|
||||
*/
|
||||
PublicKey.prototype.search = function(query, callback, keyserverIndex, results, err){
|
||||
//default starting point is at the first keyserver
|
||||
if(keyserverIndex === undefined){
|
||||
keyserverIndex = 0;
|
||||
}
|
||||
|
||||
//initialize the results array
|
||||
if(results === undefined){
|
||||
results = [];
|
||||
}
|
||||
|
||||
//no more keyservers to check
|
||||
if(keyserverIndex >= this.keyservers.length){
|
||||
|
||||
//return error if no results
|
||||
if(results.length === 0){
|
||||
return callback(null, err || 404);
|
||||
}
|
||||
|
||||
//return results
|
||||
else{
|
||||
|
||||
//merge duplicates
|
||||
var merged = {};
|
||||
for(var i = 0; i < results.length; i++){
|
||||
var k = results[i];
|
||||
|
||||
//see if there's duplicate key ids to merge
|
||||
if(merged[k['keyid']] !== undefined){
|
||||
|
||||
for(var u = 0; u < k['uids'].length; u++){
|
||||
var has_this_uid = false;
|
||||
|
||||
for(var m = 0; m < merged[k['keyid']]['uids'].length; m++){
|
||||
if(merged[k['keyid']]['uids'][m]['uid'] === k['uids'][u]){
|
||||
has_this_uid = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if(!has_this_uid){
|
||||
merged[k['keyid']]['uids'].push(k['uids'][u])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//no duplicate found, so add it to the dict
|
||||
else{
|
||||
merged[k['keyid']] = k;
|
||||
}
|
||||
}
|
||||
|
||||
//return a list of the merged results in the same order
|
||||
var merged_list = [];
|
||||
for(var i = 0; i < results.length; i++){
|
||||
var k = results[i];
|
||||
if(merged[k['keyid']] !== undefined){
|
||||
merged_list.push(merged[k['keyid']]);
|
||||
delete(merged[k['keyid']]);
|
||||
}
|
||||
}
|
||||
return callback(merged_list, null);
|
||||
}
|
||||
}
|
||||
|
||||
//set the keyserver to try next
|
||||
var ks = this.keyservers[keyserverIndex];
|
||||
var _this = this;
|
||||
|
||||
//special case for keybase
|
||||
if(ks.indexOf("https://keybase.io/") === 0){
|
||||
|
||||
//request a list of users from keybase
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("get", "https://keybase.io/_/api/1.0/user/autocomplete.json?q=" + encodeURIComponent(query));
|
||||
xhr.onload = function(){
|
||||
if(xhr.status === 200){
|
||||
var kb_json = JSON.parse(xhr.responseText);
|
||||
|
||||
//keybase error returns HTTP 200 status, which is silly
|
||||
if(kb_json['status']['code'] !== 0){
|
||||
return _this.search(query, callback, keyserverIndex + 1, results, kb_json['status']['code']);
|
||||
}
|
||||
|
||||
//no public key found
|
||||
if(kb_json['completions'].length === 0){
|
||||
return _this.search(query, callback, keyserverIndex + 1, results, 404);
|
||||
}
|
||||
|
||||
//compose keybase user results
|
||||
var kb_results = [];
|
||||
for(var i = 0; i < kb_json['completions'].length; i++){
|
||||
var user = kb_json['completions'][i]['components'];
|
||||
|
||||
//skip if no public key fingerprint
|
||||
if(user['key_fingerprint'] === undefined){
|
||||
continue;
|
||||
}
|
||||
|
||||
//build keybase user result
|
||||
var kb_result = {
|
||||
"keyid": user['key_fingerprint']['val'].toUpperCase(),
|
||||
"href": "https://keybase.io/" + user['username']['val'] + "/key.asc",
|
||||
"info": "https://keybase.io/" + user['username']['val'],
|
||||
"algo": user['key_fingerprint']['algo'],
|
||||
"keylen": user['key_fingerprint']['nbits'],
|
||||
"creationdate": null,
|
||||
"expirationdate": null,
|
||||
"revoked": false,
|
||||
"disabled": false,
|
||||
"expired": false,
|
||||
"uids": [{
|
||||
"uid": user['username']['val'] +
|
||||
" on Keybase <https://keybase.io/" +
|
||||
user['username']['val'] + ">",
|
||||
"creationdate": null,
|
||||
"expirationdate": null,
|
||||
"revoked": false,
|
||||
"disabled": false,
|
||||
"expired": false,
|
||||
}]
|
||||
};
|
||||
|
||||
//add full name
|
||||
if(user['full_name'] !== undefined){
|
||||
kb_result['uids'].push({
|
||||
"uid": "Full Name: " + user['full_name']['val'],
|
||||
"creationdate": null,
|
||||
"expirationdate": null,
|
||||
"revoked": false,
|
||||
"disabled": false,
|
||||
"expired": false,
|
||||
});
|
||||
}
|
||||
|
||||
//add twitter
|
||||
if(user['twitter'] !== undefined){
|
||||
kb_result['uids'].push({
|
||||
"uid": user['twitter']['val'] +
|
||||
" on Twitter <https://twitter.com/" +
|
||||
user['twitter']['val'] + ">",
|
||||
"creationdate": null,
|
||||
"expirationdate": null,
|
||||
"revoked": false,
|
||||
"disabled": false,
|
||||
"expired": false,
|
||||
});
|
||||
}
|
||||
|
||||
//add github
|
||||
if(user['github'] !== undefined){
|
||||
kb_result['uids'].push({
|
||||
"uid": user['github']['val'] +
|
||||
" on Github <https://github.com/" +
|
||||
user['github']['val'] + ">",
|
||||
"creationdate": null,
|
||||
"expirationdate": null,
|
||||
"revoked": false,
|
||||
"disabled": false,
|
||||
"expired": false,
|
||||
});
|
||||
}
|
||||
|
||||
//add reddit
|
||||
if(user['reddit'] !== undefined){
|
||||
kb_result['uids'].push({
|
||||
"uid": user['reddit']['val'] +
|
||||
" on Github <https://reddit.com/u/" +
|
||||
user['reddit']['val'] + ">",
|
||||
"creationdate": null,
|
||||
"expirationdate": null,
|
||||
"revoked": false,
|
||||
"disabled": false,
|
||||
"expired": false,
|
||||
});
|
||||
}
|
||||
|
||||
//add hackernews
|
||||
if(user['hackernews'] !== undefined){
|
||||
kb_result['uids'].push({
|
||||
"uid": user['hackernews']['val'] +
|
||||
" on Hacker News <https://news.ycombinator.com/user?id=" +
|
||||
user['hackernews']['val'] + ">",
|
||||
"creationdate": null,
|
||||
"expirationdate": null,
|
||||
"revoked": false,
|
||||
"disabled": false,
|
||||
"expired": false,
|
||||
});
|
||||
}
|
||||
|
||||
//add coinbase
|
||||
if(user['coinbase'] !== undefined){
|
||||
kb_result['uids'].push({
|
||||
"uid": user['coinbase']['val'] +
|
||||
" on Coinbase <https://www.coinbase.com/" +
|
||||
user['coinbase']['val'] + ">",
|
||||
"creationdate": null,
|
||||
"expirationdate": null,
|
||||
"revoked": false,
|
||||
"disabled": false,
|
||||
"expired": false,
|
||||
});
|
||||
}
|
||||
|
||||
//add websites
|
||||
if(user['websites'] !== undefined){
|
||||
for(var w = 0; w < user['websites'].length; w++){
|
||||
kb_result['uids'].push({
|
||||
"uid": "Owns " + user['websites'][w]['val'],
|
||||
"creationdate": null,
|
||||
"expirationdate": null,
|
||||
"revoked": false,
|
||||
"disabled": false,
|
||||
"expired": false,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
kb_results.push(kb_result);
|
||||
}
|
||||
|
||||
results = results.concat(kb_results);
|
||||
return _this.search(query, callback, keyserverIndex + 1, results, null);
|
||||
}
|
||||
else{
|
||||
return _this.search(query, callback, keyserverIndex + 1, results, xhr.status);
|
||||
}
|
||||
};
|
||||
xhr.send();
|
||||
}
|
||||
|
||||
//normal HKP keyserver
|
||||
else{
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("get", ks + "pks/lookup?op=index&options=mr&fingerprint=on&search=" + encodeURIComponent(query));
|
||||
xhr.onload = function(){
|
||||
if(xhr.status === 200){
|
||||
var ks_results = [];
|
||||
var raw = xhr.responseText.split("\n");
|
||||
var curKey = undefined;
|
||||
for(var i = 0; i < raw.length; i++){
|
||||
var line = raw[i].trim();
|
||||
|
||||
//pub:<keyid>:<algo>:<keylen>:<creationdate>:<expirationdate>:<flags>
|
||||
if(line.indexOf("pub:") == 0){
|
||||
if(curKey !== undefined){
|
||||
ks_results.push(curKey);
|
||||
}
|
||||
var vals = line.split(":");
|
||||
curKey = {
|
||||
"keyid": vals[1],
|
||||
"href": ks + "pks/lookup?op=get&options=mr&search=0x" + vals[1],
|
||||
"info": ks + "pks/lookup?op=vindex&search=0x" + vals[1],
|
||||
"algo": vals[2] === "" ? null : parseInt(vals[2]),
|
||||
"keylen": vals[3] === "" ? null : parseInt(vals[3]),
|
||||
"creationdate": vals[4] === "" ? null : parseInt(vals[4]),
|
||||
"expirationdate": vals[5] === "" ? null : parseInt(vals[5]),
|
||||
"revoked": vals[6].indexOf("r") !== -1,
|
||||
"disabled": vals[6].indexOf("d") !== -1,
|
||||
"expired": vals[6].indexOf("e") !== -1,
|
||||
"uids": [],
|
||||
}
|
||||
}
|
||||
|
||||
//uid:<escaped uid string>:<creationdate>:<expirationdate>:<flags>
|
||||
if(line.indexOf("uid:") == 0){
|
||||
var vals = line.split(":");
|
||||
curKey['uids'].push({
|
||||
"uid": decodeURIComponent(vals[1]),
|
||||
"creationdate": vals[2] === "" ? null : parseInt(vals[2]),
|
||||
"expirationdate": vals[3] === "" ? null : parseInt(vals[3]),
|
||||
"revoked": vals[4].indexOf("r") !== -1,
|
||||
"disabled": vals[4].indexOf("d") !== -1,
|
||||
"expired": vals[4].indexOf("e") !== -1,
|
||||
});
|
||||
}
|
||||
}
|
||||
ks_results.push(curKey);
|
||||
|
||||
results = results.concat(ks_results);
|
||||
return _this.search(query, callback, keyserverIndex + 1, results, null);
|
||||
}
|
||||
else{
|
||||
return _this.search(query, callback, keyserverIndex + 1, results, xhr.status);
|
||||
}
|
||||
};
|
||||
xhr.send();
|
||||
}
|
||||
};
|
||||
|
||||
context.PublicKey = PublicKey;
|
||||
})(typeof exports === "undefined" ? this : exports);
|
||||
37
data/web/rc/program/js/publickey.min.js
vendored
Normal file
37
data/web/rc/program/js/publickey.min.js
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
/**
|
||||
* PublicKey.js - v0e011cb
|
||||
*
|
||||
* @source https://github.com/diafygi/publickeyjs/blob/master/publickey.js
|
||||
*
|
||||
* @licstart The following is the entire license notice for the
|
||||
* JavaScript code in this file.
|
||||
*
|
||||
* Copyright (c) 2015 Daniel Roesler
|
||||
*
|
||||
* 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 (GNU GPL) as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option)
|
||||
* any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
*
|
||||
* As additional permission under GNU GPL version 3 section 7, you
|
||||
* may distribute non-source (e.g., minimized or compacted) forms of
|
||||
* that code without the copy of the GNU GPL normally required by
|
||||
* section 4, provided you include this license notice and a URL
|
||||
* through which recipients can access the Corresponding Source.
|
||||
*
|
||||
* @licend The above is the entire license notice
|
||||
* for the JavaScript code in this file.
|
||||
*/
|
||||
(function(u){var v=["https://keys.fedoraproject.org/","https://keybase.io/"],p=function(e){this.keyservers=e||v};p.prototype.get=function(e,k,h,c){void 0===h&&(h=0);if(h>=this.keyservers.length)return k(null,c||404);c=this.keyservers[h];var g=this;if(0===c.indexOf("https://keybase.io/")){0===e.indexOf("0x")&&(e=e.substr(2));var b=new XMLHttpRequest;b.open("get","https://keybase.io/_/api/1.0/user/lookup.json?fields=public_keys&key_fingerprint="+e);b.onload=function(){if(200===b.status){var c=JSON.parse(b.responseText);
|
||||
return 0!==c.status.code?g.get(e,k,h+1,c.status.code):0===c.them.length?g.get(e,k,h+1,404):k(c.them[0].public_keys.primary.bundle,null)}return g.get(e,k,h+1,b.status)}}else 0!==e.indexOf("0x")&&(e="0x"+e),b=new XMLHttpRequest,b.open("get",c+"pks/lookup?op=get&options=mr&search="+e),b.onload=function(){return 200===b.status?k(b.responseText,null):g.get(e,k,h+1,b.status)};b.send()};p.prototype.search=function(e,k,h,c,g){void 0===h&&(h=0);void 0===c&&(c=[]);if(h>=this.keyservers.length){if(0===c.length)return k(null,
|
||||
g||404);g={};for(var b=0;b<c.length;b++){var f=c[b];if(void 0!==g[f.keyid])for(var n=0;n<f.uids.length;n++){for(var p=!1,t=0;t<g[f.keyid].uids.length;t++)if(g[f.keyid].uids[t].uid===f.uids[n]){p=!0;break}p||g[f.keyid].uids.push(f.uids[n])}else g[f.keyid]=f}n=[];for(b=0;b<c.length;b++)f=c[b],void 0!==g[f.keyid]&&(n.push(g[f.keyid]),delete g[f.keyid]);return k(n,null)}var r=this.keyservers[h],q=this;if(0===r.indexOf("https://keybase.io/")){var m=new XMLHttpRequest;m.open("get","https://keybase.io/_/api/1.0/user/autocomplete.json?q="+
|
||||
encodeURIComponent(e));m.onload=function(){if(200===m.status){var b=JSON.parse(m.responseText);if(0!==b.status.code)return q.search(e,k,h+1,c,b.status.code);if(0===b.completions.length)return q.search(e,k,h+1,c,404);for(var g=[],f=0;f<b.completions.length;f++){var a=b.completions[f].components;if(void 0!==a.key_fingerprint){var l={keyid:a.key_fingerprint.val.toUpperCase(),href:"https://keybase.io/"+a.username.val+"/key.asc",info:"https://keybase.io/"+a.username.val,algo:a.key_fingerprint.algo,keylen:a.key_fingerprint.nbits,
|
||||
creationdate:null,expirationdate:null,revoked:!1,disabled:!1,expired:!1,uids:[{uid:a.username.val+" on Keybase <https://keybase.io/"+a.username.val+">",creationdate:null,expirationdate:null,revoked:!1,disabled:!1,expired:!1}]};void 0!==a.full_name&&l.uids.push({uid:"Full Name: "+a.full_name.val,creationdate:null,expirationdate:null,revoked:!1,disabled:!1,expired:!1});void 0!==a.twitter&&l.uids.push({uid:a.twitter.val+" on Twitter <https://twitter.com/"+a.twitter.val+">",creationdate:null,expirationdate:null,
|
||||
revoked:!1,disabled:!1,expired:!1});void 0!==a.github&&l.uids.push({uid:a.github.val+" on Github <https://github.com/"+a.github.val+">",creationdate:null,expirationdate:null,revoked:!1,disabled:!1,expired:!1});void 0!==a.reddit&&l.uids.push({uid:a.reddit.val+" on Github <https://reddit.com/u/"+a.reddit.val+">",creationdate:null,expirationdate:null,revoked:!1,disabled:!1,expired:!1});void 0!==a.hackernews&&l.uids.push({uid:a.hackernews.val+" on Hacker News <https://news.ycombinator.com/user?id="+a.hackernews.val+
|
||||
">",creationdate:null,expirationdate:null,revoked:!1,disabled:!1,expired:!1});void 0!==a.coinbase&&l.uids.push({uid:a.coinbase.val+" on Coinbase <https://www.coinbase.com/"+a.coinbase.val+">",creationdate:null,expirationdate:null,revoked:!1,disabled:!1,expired:!1});if(void 0!==a.websites)for(var d=0;d<a.websites.length;d++)l.uids.push({uid:"Owns "+a.websites[d].val,creationdate:null,expirationdate:null,revoked:!1,disabled:!1,expired:!1});g.push(l)}}c=c.concat(g);return q.search(e,k,h+1,c,null)}return q.search(e,
|
||||
k,h+1,c,m.status)}}else m=new XMLHttpRequest,m.open("get",r+"pks/lookup?op=index&options=mr&fingerprint=on&search="+encodeURIComponent(e)),m.onload=function(){if(200===m.status){for(var b=[],g=m.responseText.split("\n"),f=void 0,a=0;a<g.length;a++){var l=g[a].trim();if(0==l.indexOf("pub:")){void 0!==f&&b.push(f);var d=l.split(":"),f={keyid:d[1],href:r+"pks/lookup?op=get&options=mr&search=0x"+d[1],info:r+"pks/lookup?op=vindex&search=0x"+d[1],algo:""===d[2]?null:parseInt(d[2]),keylen:""===d[3]?null:
|
||||
parseInt(d[3]),creationdate:""===d[4]?null:parseInt(d[4]),expirationdate:""===d[5]?null:parseInt(d[5]),revoked:-1!==d[6].indexOf("r"),disabled:-1!==d[6].indexOf("d"),expired:-1!==d[6].indexOf("e"),uids:[]}}0==l.indexOf("uid:")&&(d=l.split(":"),f.uids.push({uid:decodeURIComponent(d[1]),creationdate:""===d[2]?null:parseInt(d[2]),expirationdate:""===d[3]?null:parseInt(d[3]),revoked:-1!==d[4].indexOf("r"),disabled:-1!==d[4].indexOf("d"),expired:-1!==d[4].indexOf("e")}))}b.push(f);c=c.concat(b);return q.search(e,
|
||||
k,h+1,c,null)}return q.search(e,k,h+1,c,m.status)};m.send()};u.PublicKey=p})("undefined"===typeof exports?this:exports);
|
||||
220
data/web/rc/program/js/tinymce/langs/ar.js
Normal file
220
data/web/rc/program/js/tinymce/langs/ar.js
Normal file
@@ -0,0 +1,220 @@
|
||||
tinymce.addI18n('ar',{
|
||||
"Cut": "\u0642\u0635",
|
||||
"Heading 5": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 5",
|
||||
"Header 2": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u062a\u0635\u0641\u062d\u0643 \u0644\u0627 \u064a\u062f\u0639\u0645 \u0627\u0644\u0648\u0635\u0648\u0644 \u0627\u0644\u0645\u0628\u0627\u0634\u0631 \u0625\u0644\u0649 \u0627\u0644\u062d\u0627\u0641\u0638\u0629. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d Ctrl+X\/C\/V \u0628\u062f\u0644\u0627 \u0645\u0646 \u0630\u0644\u0643.",
|
||||
"Heading 4": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 2",
|
||||
"Paste": "\u0644\u0635\u0642",
|
||||
"Close": "\u0625\u063a\u0644\u0627\u0642",
|
||||
"Font Family": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0627\u0644\u062e\u0637",
|
||||
"Pre": "\u0633\u0627\u0628\u0642",
|
||||
"Align right": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0646\u0635 \u0644\u0644\u064a\u0645\u064a\u0646",
|
||||
"New document": "\u0645\u0633\u062a\u0646\u062f \u062c\u062f\u064a\u062f",
|
||||
"Blockquote": "\u0639\u0644\u0627\u0645\u0627\u062a \u0627\u0644\u0627\u0642\u062a\u0628\u0627\u0633",
|
||||
"Numbered list": "\u062a\u0631\u0642\u064a\u0645",
|
||||
"Heading 1": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 1",
|
||||
"Headings": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629",
|
||||
"Increase indent": "\u0632\u064a\u0627\u062f\u0629 \u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0627\u0644\u0628\u0627\u062f\u0626\u0629",
|
||||
"Formats": "\u0627\u0644\u062a\u0646\u0633\u064a\u0642\u0627\u062a",
|
||||
"Headers": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646",
|
||||
"Select all": "\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0643\u0644",
|
||||
"Header 3": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 3",
|
||||
"Blocks": "\u0627\u0644\u0623\u0642\u0633\u0627\u0645",
|
||||
"Undo": "\u062a\u0631\u0627\u062c\u0639",
|
||||
"Strikethrough": "\u064a\u062a\u0648\u0633\u0637 \u062e\u0637",
|
||||
"Bullet list": "\u062a\u0639\u062f\u0627\u062f \u0646\u0642\u0637\u064a",
|
||||
"Header 1": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 1",
|
||||
"Superscript": "\u0645\u0631\u062a\u0641\u0639",
|
||||
"Clear formatting": "\u0645\u0633\u062d \u0627\u0644\u062a\u0646\u0633\u064a\u0642",
|
||||
"Font Sizes": "\u062d\u062c\u0645 \u0627\u0644\u062e\u0637",
|
||||
"Subscript": "\u0645\u0646\u062e\u0641\u0636",
|
||||
"Header 6": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 6",
|
||||
"Redo": "\u0625\u0639\u0627\u062f\u0629",
|
||||
"Paragraph": "\u0641\u0642\u0631\u0629",
|
||||
"Ok": "\u0645\u0648\u0627\u0641\u0642",
|
||||
"Bold": "\u063a\u0627\u0645\u0642",
|
||||
"Code": "\u0631\u0645\u0632",
|
||||
"Italic": "\u0645\u0627\u0626\u0644",
|
||||
"Align center": "\u062a\u0648\u0633\u064a\u0637",
|
||||
"Header 5": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 5",
|
||||
"Heading 6": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 6",
|
||||
"Heading 3": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a 3",
|
||||
"Decrease indent": "\u0625\u0646\u0642\u0627\u0635 \u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0627\u0644\u0628\u0627\u062f\u0626\u0629",
|
||||
"Header 4": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u064a\u062a\u0645 \u0627\u0644\u0644\u0635\u0642 \u062d\u0627\u0644\u064a\u0627\u064b \u0643\u0646\u0635 \u0639\u0627\u062f\u064a. \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0633\u064a\u0628\u0642\u0649 \u0643\u0646\u0635 \u0639\u0627\u062f\u064a \u062d\u062a\u0649 \u062a\u0642\u0648\u0645 \u0628\u062a\u0639\u0637\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u062e\u064a\u0627\u0631.",
|
||||
"Underline": "\u062a\u0633\u0637\u064a\u0631",
|
||||
"Cancel": "\u0625\u0644\u063a\u0627\u0621",
|
||||
"Justify": "\u0636\u0628\u0637",
|
||||
"Inline": "\u062e\u0644\u0627\u0644",
|
||||
"Copy": "\u0646\u0633\u062e",
|
||||
"Align left": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0646\u0635 \u0644\u0644\u064a\u0633\u0627\u0631",
|
||||
"Visual aids": "\u0627\u0644\u0645\u0639\u064a\u0646\u0627\u062a \u0627\u0644\u0628\u0635\u0631\u064a\u0629",
|
||||
"Lower Greek": "\u062a\u0631\u0642\u064a\u0645 \u064a\u0648\u0646\u0627\u0646\u064a \u0635\u063a\u064a\u0631",
|
||||
"Square": "\u0645\u0631\u0628\u0639",
|
||||
"Default": "\u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a",
|
||||
"Lower Alpha": "\u062a\u0631\u0642\u064a\u0645 \u0623\u062e\u0631\u0641 \u0635\u063a\u064a\u0631\u0629",
|
||||
"Circle": "\u062f\u0627\u0626\u0631\u0629",
|
||||
"Disc": "\u0642\u0631\u0635",
|
||||
"Upper Alpha": "\u062a\u0631\u0642\u064a\u0645 \u0623\u062d\u0631\u0641 \u0643\u0628\u064a\u0631\u0629",
|
||||
"Upper Roman": "\u062a\u0631\u0642\u064a\u0645 \u0631\u0648\u0645\u0627\u0646\u064a \u0643\u0628\u064a\u0631",
|
||||
"Lower Roman": "\u062a\u0631\u0642\u064a\u0645 \u0631\u0648\u0645\u0627\u0646\u064a \u0635\u063a\u064a\u0631",
|
||||
"Name": "\u0627\u0644\u0627\u0633\u0645",
|
||||
"Anchor": "\u0645\u0631\u0633\u0627\u0629",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0644\u062f\u064a\u0643 \u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0644\u0645 \u064a\u062a\u0645 \u062d\u0641\u0638\u0647\u0627 \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u063a\u0628 \u0641\u064a \u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0639\u064a\u062f\u0627\u061f",
|
||||
"Restore last draft": "\u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0623\u062e\u0631 \u0645\u0633\u0648\u062f\u0629",
|
||||
"Special character": "\u0631\u0645\u0632",
|
||||
"Source code": "\u0634\u0641\u0631\u0629 \u0627\u0644\u0645\u0635\u062f\u0631",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0627\u0644\u0644\u0648\u0646",
|
||||
"Right to left": "\u0645\u0646 \u0627\u0644\u064a\u0645\u064a\u0646 \u0644\u0644\u064a\u0633\u0627\u0631",
|
||||
"Left to right": "\u0645\u0646 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u0644\u064a\u0645\u064a\u0646",
|
||||
"Emoticons": "\u0627\u0644\u0631\u0645\u0648\u0632",
|
||||
"Robots": "\u0627\u0644\u0631\u0648\u0628\u0648\u062a\u0627\u062a",
|
||||
"Document properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0645\u0633\u062a\u0646\u062f",
|
||||
"Title": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646",
|
||||
"Keywords": "\u0643\u0644\u0645\u0627\u062a \u0627\u0644\u0628\u062d\u062b",
|
||||
"Encoding": "\u0627\u0644\u062a\u0631\u0645\u064a\u0632",
|
||||
"Description": "\u0627\u0644\u0648\u0635\u0641",
|
||||
"Author": "\u0627\u0644\u0643\u0627\u062a\u0628",
|
||||
"Fullscreen": "\u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629",
|
||||
"Horizontal line": "\u062e\u0637 \u0623\u0641\u0642\u064a",
|
||||
"Horizontal space": "\u0645\u0633\u0627\u0641\u0629 \u0623\u0641\u0642\u064a\u0629",
|
||||
"Insert\/edit image": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0635\u0648\u0631\u0629",
|
||||
"General": "\u0639\u0627\u0645",
|
||||
"Advanced": "\u062e\u0635\u0627\u0626\u0635 \u0645\u062a\u0642\u062f\u0645\u0647",
|
||||
"Source": "\u0627\u0644\u0645\u0635\u062f\u0631",
|
||||
"Border": "\u062d\u062f\u0648\u062f",
|
||||
"Constrain proportions": "\u0627\u0644\u062a\u0646\u0627\u0633\u0628",
|
||||
"Vertical space": "\u0645\u0633\u0627\u0641\u0629 \u0639\u0645\u0648\u062f\u064a\u0629",
|
||||
"Image description": "\u0648\u0635\u0641 \u0627\u0644\u0635\u0648\u0631\u0629",
|
||||
"Style": "\u0627\u0644\u0646\u0645\u0637 \/ \u0627\u0644\u0634\u0643\u0644",
|
||||
"Dimensions": "\u0627\u0644\u0623\u0628\u0639\u0627\u062f",
|
||||
"Insert image": "\u0625\u062f\u0631\u0627\u062c \u0635\u0648\u0631\u0629",
|
||||
"Zoom in": "\u062a\u0643\u0628\u064a\u0631",
|
||||
"Contrast": "\u0627\u0644\u062a\u0628\u0627\u064a\u0646",
|
||||
"Back": "\u0644\u0644\u062e\u0644\u0641",
|
||||
"Gamma": "\u063a\u0627\u0645\u0627",
|
||||
"Flip horizontally": "\u0627\u0646\u0639\u0643\u0627\u0633 \u0623\u0641\u0642\u064a",
|
||||
"Resize": "\u062a\u063a\u064a\u064a\u0631 \u062d\u062c\u0645",
|
||||
"Sharpen": "\u062d\u0627\u062f\u0629",
|
||||
"Zoom out": "\u062a\u0635\u063a\u064a\u0631",
|
||||
"Image options": "\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0648\u0631\u0629",
|
||||
"Apply": "\u062a\u0637\u0628\u064a\u0642",
|
||||
"Brightness": "\u0627\u0644\u0625\u0636\u0627\u0621\u0629",
|
||||
"Rotate clockwise": "\u062a\u062f\u0648\u064a\u0631 \u0641\u064a \u0627\u062a\u062c\u0627\u0647 \u0639\u0642\u0627\u0631\u0628 \u0627\u0644\u0633\u0627\u0639\u0629",
|
||||
"Rotate counterclockwise": "\u062a\u062f\u0648\u064a\u0631 \u0639\u0643\u0633 \u0627\u062a\u062c\u0627\u0647 \u0639\u0642\u0627\u0631\u0628 \u0627\u0644\u0633\u0627\u0639\u0629",
|
||||
"Edit image": "\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0635\u0648\u0631\u0629",
|
||||
"Color levels": "\u0645\u0633\u062a\u0648\u0649 \u0627\u0644\u0644\u0648\u0646",
|
||||
"Crop": "\u0642\u0635",
|
||||
"Orientation": "\u0627\u0644\u0645\u062d\u0627\u0630\u0627\u0629",
|
||||
"Flip vertically": "\u0627\u0646\u0639\u0643\u0627\u0633 \u0639\u0627\u0645\u0648\u062f\u064a",
|
||||
"Invert": "\u0639\u0643\u0633",
|
||||
"Insert date\/time": "\u0625\u062f\u0631\u0627\u062c \u062a\u0627\u0631\u064a\u062e\/\u0648\u0642\u062a",
|
||||
"Remove link": "\u062d\u0630\u0641 \u0627\u0644\u0631\u0627\u0628\u0637",
|
||||
"Url": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646",
|
||||
"Text to display": "\u0627\u0644\u0646\u0635 \u0627\u0644\u0645\u0637\u0644\u0648\u0628 \u0639\u0631\u0636\u0647",
|
||||
"Anchors": "\u0627\u0644\u0645\u0631\u0633\u0627\u0629",
|
||||
"Insert link": "\u0625\u062f\u0631\u0627\u062c \u0631\u0627\u0628\u0637",
|
||||
"New window": "\u0646\u0627\u0641\u0630\u0629 \u062c\u062f\u064a\u062f\u0629",
|
||||
"None": "\u0628\u0644\u0627",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0646\u062a\u0648\u0642\u0639 \u0627\u0646\u0643 \u0642\u0645\u062a \u0628\u0625\u062f\u0631\u0627\u062c \u0631\u0627\u0628\u0637 \u0644\u0645\u0648\u0642\u0639 \u062e\u0627\u0631\u062c\u064a. \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0646 \u0646\u0636\u064a\u0641 \u0627\u0644\u0644\u0627\u062d\u0642\u0629 http:\/\/ \u0644\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0630\u064a \u0627\u062f\u062e\u0644\u062a\u0647\u061f",
|
||||
"Target": "\u0627\u0644\u0625\u0637\u0627\u0631 \u0627\u0644\u0647\u062f\u0641",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0630\u064a \u0642\u0645\u062a \u0628\u0625\u062f\u0631\u0627\u062c\u0647 \u064a\u0634\u0627\u0628\u0647 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a. \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0646 \u062a\u0636\u064a\u0641 \u0627\u0644\u0644\u0627\u062d\u0642\u0629 mailto: \u0645\u0639\u062a\u0628\u0631\u0627\u064b \u0647\u0630\u0627 \u0627\u0644\u0631\u0627\u0628\u0637 \u0628\u0631\u064a\u062f\u0627 \u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0627\u064b\u061f",
|
||||
"Insert\/edit link": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0631\u0627\u0628\u0637",
|
||||
"Insert\/edit video": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0641\u064a\u062f\u064a\u0648",
|
||||
"Poster": "\u0645\u0644\u0635\u0642",
|
||||
"Alternative source": "\u0645\u0635\u062f\u0631 \u0628\u062f\u064a\u0644",
|
||||
"Paste your embed code below:": "\u0644\u0635\u0642 \u0643\u0648\u062f \u0627\u0644\u062a\u0636\u0645\u064a\u0646 \u0647\u0646\u0627:",
|
||||
"Insert video": "\u0625\u062f\u0631\u0627\u062c \u0641\u064a\u062f\u064a\u0648",
|
||||
"Embed": "\u062a\u0636\u0645\u064a\u0646",
|
||||
"Nonbreaking space": "\u0645\u0633\u0627\u0641\u0629 \u063a\u064a\u0631 \u0645\u0646\u0642\u0633\u0645\u0629",
|
||||
"Page break": "\u0641\u0627\u0635\u0644 \u0644\u0644\u0635\u0641\u062d\u0629",
|
||||
"Paste as text": "\u0644\u0635\u0642 \u0643\u0646\u0635",
|
||||
"Preview": "\u0645\u0639\u0627\u064a\u0646\u0629",
|
||||
"Print": "\u0637\u0628\u0627\u0639\u0629",
|
||||
"Save": "\u062d\u0641\u0638",
|
||||
"Could not find the specified string.": "\u062a\u0639\u0630\u0631 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u062d\u062f\u062f\u0629",
|
||||
"Replace": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644",
|
||||
"Next": "\u0627\u0644\u062a\u0627\u0644\u064a",
|
||||
"Whole words": "\u0645\u0637\u0627\u0628\u0642\u0629 \u0627\u0644\u0643\u0644\u0645\u0627\u062a \u0628\u0627\u0644\u0643\u0627\u0645\u0644",
|
||||
"Find and replace": "\u0628\u062d\u062b \u0648\u0627\u0633\u062a\u0628\u062f\u0627\u0644",
|
||||
"Replace with": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0628\u0640",
|
||||
"Find": "\u0628\u062d\u062b",
|
||||
"Replace all": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0627\u0644\u0643\u0644",
|
||||
"Match case": "\u0645\u0637\u0627\u0628\u0642\u0629 \u062d\u0627\u0644\u0629 \u0627\u0644\u0623\u062d\u0631\u0641",
|
||||
"Prev": "\u0627\u0644\u0633\u0627\u0628\u0642",
|
||||
"Spellcheck": "\u062a\u062f\u0642\u064a\u0642 \u0625\u0645\u0644\u0627\u0626\u064a",
|
||||
"Finish": "\u0627\u0646\u062a\u0647\u064a",
|
||||
"Ignore all": "\u062a\u062c\u0627\u0647\u0644 \u0627\u0644\u0643\u0644",
|
||||
"Ignore": "\u062a\u062c\u0627\u0647\u0644",
|
||||
"Add to Dictionary": "\u0627\u0636\u0641 \u0627\u0644\u064a \u0627\u0644\u0642\u0627\u0645\u0648\u0633",
|
||||
"Insert row before": "\u0625\u062f\u0631\u0627\u062c \u0635\u0641 \u0644\u0644\u0623\u0639\u0644\u0649",
|
||||
"Rows": "\u0639\u062f\u062f \u0627\u0644\u0635\u0641\u0648\u0641",
|
||||
"Height": "\u0627\u0631\u062a\u0641\u0627\u0639",
|
||||
"Paste row after": "\u0644\u0635\u0642 \u0627\u0644\u0635\u0641 \u0644\u0644\u0623\u0633\u0641\u0644",
|
||||
"Alignment": "\u0645\u062d\u0627\u0630\u0627\u0629",
|
||||
"Border color": "\u0644\u0648\u0646 \u0627\u0644\u0625\u0637\u0627\u0631",
|
||||
"Column group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0639\u0645\u0648\u062f",
|
||||
"Row": "\u0635\u0641",
|
||||
"Insert column before": "\u0625\u062f\u0631\u0627\u062c \u0639\u0645\u0648\u062f \u0644\u0644\u064a\u0633\u0627\u0631",
|
||||
"Split cell": "\u062a\u0642\u0633\u064a\u0645 \u0627\u0644\u062e\u0644\u0627\u064a\u0627",
|
||||
"Cell padding": "\u062a\u0628\u0627\u0639\u062f \u0627\u0644\u062e\u0644\u064a\u0629",
|
||||
"Cell spacing": "\u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0628\u064a\u0646 \u0627\u0644\u062e\u0644\u0627\u064a\u0627",
|
||||
"Row type": "\u0646\u0648\u0639 \u0627\u0644\u0635\u0641",
|
||||
"Insert table": "\u0625\u062f\u0631\u0627\u062c \u062c\u062f\u0648\u0644",
|
||||
"Body": "\u0647\u064a\u0643\u0644",
|
||||
"Caption": "\u0634\u0631\u062d",
|
||||
"Footer": "\u062a\u0630\u064a\u064a\u0644",
|
||||
"Delete row": "\u062d\u0630\u0641 \u0635\u0641",
|
||||
"Paste row before": "\u0644\u0635\u0642 \u0627\u0644\u0635\u0641 \u0644\u0644\u0623\u0639\u0644\u0649",
|
||||
"Scope": "\u0627\u0644\u0645\u062c\u0627\u0644",
|
||||
"Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644",
|
||||
"H Align": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0623\u0641\u0642\u064a\u0629",
|
||||
"Top": "\u0623\u0639\u0644\u064a",
|
||||
"Header cell": "\u0631\u0623\u0633 \u0627\u0644\u062e\u0644\u064a\u0629",
|
||||
"Column": "\u0639\u0645\u0648\u062f",
|
||||
"Row group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0635\u0641",
|
||||
"Cell": "\u062e\u0644\u064a\u0629",
|
||||
"Middle": "\u0627\u0644\u0648\u0633\u0637",
|
||||
"Cell type": "\u0646\u0648\u0639 \u0627\u0644\u062e\u0644\u064a\u0629",
|
||||
"Copy row": "\u0646\u0633\u062e \u0627\u0644\u0635\u0641",
|
||||
"Row properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0635\u0641",
|
||||
"Table properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u062c\u062f\u0648\u0644",
|
||||
"Bottom": "\u0627\u0644\u0623\u0633\u0641\u0644",
|
||||
"V Align": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0631\u0623\u0633\u064a\u0629",
|
||||
"Header": "\u0627\u0644\u0631\u0623\u0633",
|
||||
"Right": "\u064a\u0645\u064a\u0646",
|
||||
"Insert column after": "\u0625\u062f\u0631\u0627\u062c \u0639\u0645\u0648\u062f \u0644\u0644\u064a\u0645\u064a\u0646",
|
||||
"Cols": "\u0639\u062f\u062f \u0627\u0644\u0623\u0639\u0645\u062f\u0629",
|
||||
"Insert row after": "\u0625\u062f\u0631\u0627\u062c \u0635\u0641 \u0644\u0644\u0623\u0633\u0641\u0644",
|
||||
"Width": "\u0639\u0631\u0636",
|
||||
"Cell properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u062e\u0644\u064a\u0629",
|
||||
"Left": "\u064a\u0633\u0627\u0631",
|
||||
"Cut row": "\u0642\u0635 \u0627\u0644\u0635\u0641",
|
||||
"Delete column": "\u062d\u0630\u0641 \u0639\u0645\u0648\u062f",
|
||||
"Center": "\u062a\u0648\u0633\u064a\u0637",
|
||||
"Merge cells": "\u062f\u0645\u062c \u062e\u0644\u0627\u064a\u0627",
|
||||
"Insert template": "\u0625\u062f\u0631\u0627\u062c \u0642\u0627\u0644\u0628",
|
||||
"Templates": "\u0642\u0648\u0627\u0644\u0628",
|
||||
"Background color": "\u0644\u0648\u0646 \u0627\u0644\u062e\u0644\u0641\u064a\u0629",
|
||||
"Custom...": "\u062a\u062e\u0635\u064a\u0635 ...",
|
||||
"Custom color": "\u0644\u0648\u0646 \u0645\u062e\u0635\u0635",
|
||||
"No color": "\u0628\u062f\u0648\u0646 \u0644\u0648\u0646",
|
||||
"Text color": "\u0644\u0648\u0646 \u0627\u0644\u0646\u0635",
|
||||
"Show blocks": "\u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u0643\u062a\u0644",
|
||||
"Show invisible characters": "\u0623\u0638\u0647\u0631 \u0627\u0644\u0623\u062d\u0631\u0641 \u0627\u0644\u063a\u064a\u0631 \u0645\u0631\u0626\u064a\u0629",
|
||||
"Words: {0}": "\u0627\u0644\u0643\u0644\u0645\u0627\u062a:{0}",
|
||||
"Insert": "\u0625\u062f\u0631\u0627\u062c",
|
||||
"File": "\u0645\u0644\u0641",
|
||||
"Edit": "\u062a\u062d\u0631\u064a\u0631",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0645\u0646\u0637\u0642\u0629 \u0646\u0635 \u0645\u0646\u0633\u0642. \u0627\u0636\u063a\u0637 ALT-F9 \u0644\u0644\u0642\u0627\u0626\u0645\u0629. \u0627\u0636\u063a\u0637 ALT-F10 \u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a. \u0627\u0636\u063a\u0637 ALT-0 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u0633\u0627\u0639\u062f\u0629",
|
||||
"Tools": "\u0623\u062f\u0627\u0648\u0627\u062a",
|
||||
"View": "\u0639\u0631\u0636",
|
||||
"Table": "\u062c\u062f\u0648\u0644",
|
||||
"Format": "\u062a\u0646\u0633\u064a\u0642",
|
||||
"_dir": "rtl"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/az.js
Normal file
219
data/web/rc/program/js/tinymce/langs/az.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('az',{
|
||||
"Cut": "K\u0259s",
|
||||
"Heading 5": "Ba\u015fl\u0131q 5",
|
||||
"Header 2": "Ba\u015fl\u0131q 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Sizin brauzeriniz m\u00fcbadil\u0259 buferin\u0259 birba\u015fa yolu d\u0259st\u0259kl\u0259mir. Z\u0259hm\u0259t olmasa, bunun yerin\u0259 klaviaturan\u0131n Ctrl+X\/C\/V d\u00fcym\u0259l\u0259rind\u0259n istifad\u0259 edin.",
|
||||
"Heading 4": "Ba\u015fl\u0131q 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Ba\u015fl\u0131q 2",
|
||||
"Paste": "\u018flav\u0259 et",
|
||||
"Close": "Ba\u011fla",
|
||||
"Font Family": "Font stili",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Sa\u011f t\u0259r\u0259f \u00fczr\u0259",
|
||||
"New document": "Yeni s\u0259n\u0259d",
|
||||
"Blockquote": "Sitat",
|
||||
"Numbered list": "N\u00f6mr\u0259l\u0259nmi\u015f siyah\u0131",
|
||||
"Heading 1": "Ba\u015fl\u0131q 1",
|
||||
"Headings": "Ba\u015fl\u0131qlar",
|
||||
"Increase indent": "Bo\u015flu\u011fu art\u0131r",
|
||||
"Formats": "Formatlar",
|
||||
"Headers": "Ba\u015fl\u0131qlar",
|
||||
"Select all": "Ham\u0131s\u0131n\u0131 se\u00e7",
|
||||
"Header 3": "Ba\u015fl\u0131q 3",
|
||||
"Blocks": "Bloklar",
|
||||
"Undo": "Geriy\u0259",
|
||||
"Strikethrough": "Silinmi\u015f",
|
||||
"Bullet list": "S\u0131ras\u0131z siyah\u0131",
|
||||
"Header 1": "Ba\u015fl\u0131q 1",
|
||||
"Superscript": "Yuxar\u0131 indeks",
|
||||
"Clear formatting": "Format\u0131 t\u0259mizl\u0259",
|
||||
"Font Sizes": "Font \u00f6l\u00e7\u00fcl\u0259ri",
|
||||
"Subscript": "A\u015fa\u011f\u0131 indeks",
|
||||
"Header 6": "Ba\u015fl\u0131q 6",
|
||||
"Redo": "\u0130r\u0259li",
|
||||
"Paragraph": "Paraqraf",
|
||||
"Ok": "Oldu",
|
||||
"Bold": "Qal\u0131n",
|
||||
"Code": "Kod",
|
||||
"Italic": "Maili",
|
||||
"Align center": "M\u0259rk\u0259z \u00fczr\u0259",
|
||||
"Header 5": "Ba\u015fl\u0131q 5",
|
||||
"Heading 6": "Ba\u015fl\u0131q 6",
|
||||
"Heading 3": "Ba\u015fl\u0131q 3",
|
||||
"Decrease indent": "Bo\u015flu\u011fu azalt",
|
||||
"Header 4": "Ba\u015fl\u0131q 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Hal-haz\u0131rda adi m\u0259tn rejimind\u0259 yerl\u0259\u015fdirilir. M\u0259zmun sad\u0259 m\u0259tn \u015f\u0259klind\u0259 yerl\u0259\u015fdiril\u0259c\u0259k, h\u0259l\u0259 bu se\u00e7imi d\u0259yi\u015fdirm\u0259.",
|
||||
"Underline": "Alt x\u0259ttli",
|
||||
"Cancel": "L\u0259\u011fv et",
|
||||
"Justify": "H\u0259r iki t\u0259r\u0259f \u00fczr\u0259",
|
||||
"Inline": "S\u0259tir i\u00e7i",
|
||||
"Copy": "K\u00f6\u00e7\u00fcr",
|
||||
"Align left": "Sol t\u0259r\u0259f \u00fczr\u0259",
|
||||
"Visual aids": "Konturlar\u0131 g\u00f6st\u0259r",
|
||||
"Lower Greek": "Ki\u00e7ik Yunan \u0259lifbas\u0131",
|
||||
"Square": "Sah\u0259",
|
||||
"Default": "Susmaya g\u00f6r\u0259",
|
||||
"Lower Alpha": "Ki\u00e7ik Alfa \u0259lifbas\u0131",
|
||||
"Circle": "Dair\u0259",
|
||||
"Disc": "Disk",
|
||||
"Upper Alpha": "B\u00f6y\u00fck Alfa \u0259lifbas\u0131",
|
||||
"Upper Roman": "B\u00f6y\u00fck Roma \u0259lifbas\u0131",
|
||||
"Lower Roman": "Ki\u00e7ik Roma \u0259lifbas\u0131",
|
||||
"Name": "Ad",
|
||||
"Anchor": "L\u00f6vb\u0259r",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Sizd\u0259 yadda saxlan\u0131lmayan d\u0259yi\u015fiklikl\u0259r var \u0259minsiniz ki, getm\u0259k ist\u0259yirsiniz?",
|
||||
"Restore last draft": "Son layih\u0259nin b\u0259rpas\u0131",
|
||||
"Special character": "X\u00fcsusi simvollar",
|
||||
"Source code": "M\u0259nb\u0259 kodu",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "R\u0259ng",
|
||||
"Right to left": "Sa\u011fdan sola",
|
||||
"Left to right": "Soldan sa\u011fa",
|
||||
"Emoticons": "Emosiyalar",
|
||||
"Robots": "Robotlar",
|
||||
"Document properties": "S\u0259n\u0259din x\u00fcsusiyy\u0259tl\u0259ri",
|
||||
"Title": "Ba\u015fl\u0131q",
|
||||
"Keywords": "A\u00e7ar s\u00f6zl\u0259r",
|
||||
"Encoding": "Kodla\u015fd\u0131rma",
|
||||
"Description": "T\u0259sviri",
|
||||
"Author": "M\u00fc\u0259llif",
|
||||
"Fullscreen": "Tam ekran rejimi",
|
||||
"Horizontal line": "Horizontal x\u0259tt",
|
||||
"Horizontal space": "Horizontal sah\u0259",
|
||||
"Insert\/edit image": "\u015e\u0259kilin \u0259lav\u0259\/redakt\u0259 edilm\u0259si",
|
||||
"General": "\u00dcmumi",
|
||||
"Advanced": "Geni\u015fl\u0259nmi\u015f",
|
||||
"Source": "M\u0259nb\u0259",
|
||||
"Border": "\u00c7\u0259r\u00e7iv\u0259",
|
||||
"Constrain proportions": "Nisb\u0259tl\u0259rin saxlan\u0131lmas\u0131",
|
||||
"Vertical space": "Vertikal sah\u0259",
|
||||
"Image description": "\u015e\u0259kilin t\u0259sviri",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "\u00d6l\u00e7\u00fcl\u0259r",
|
||||
"Insert image": "\u015e\u0259kil yerl\u0259\u015fdir",
|
||||
"Zoom in": "Yax\u0131nla\u015fd\u0131r",
|
||||
"Contrast": "Ziddiyy\u0259t",
|
||||
"Back": "Geri",
|
||||
"Gamma": "Qamma",
|
||||
"Flip horizontally": "\u00dcfiqi \u00e7evir",
|
||||
"Resize": "\u00d6l\u00e7\u00fcl\u0259ri d\u0259yi\u015f",
|
||||
"Sharpen": "K\u0259skinl\u0259\u015fdir",
|
||||
"Zoom out": "Uzaqla\u015fd\u0131r",
|
||||
"Image options": "\u015e\u0259kil parametrl\u0259ri",
|
||||
"Apply": "T\u0259tbiq et",
|
||||
"Brightness": "Parlaql\u0131q",
|
||||
"Rotate clockwise": "Saat \u0259qr\u0259bi istiqam\u0259tind\u0259 f\u0131rlat",
|
||||
"Rotate counterclockwise": "Saat \u0259qr\u0259binin \u0259ksin\u0259 f\u0131rlat",
|
||||
"Edit image": "\u015e\u0259kili redakt\u0259 et",
|
||||
"Color levels": "R\u0259ng s\u0259viyy\u0259l\u0259ri",
|
||||
"Crop": "K\u0259s",
|
||||
"Orientation": "Oriyentasiya",
|
||||
"Flip vertically": "\u015eaquli \u00e7evir",
|
||||
"Invert": "T\u0259rsin\u0259 \u00e7evir",
|
||||
"Insert date\/time": "G\u00fcn\/tarix \u0259lav\u0259 et",
|
||||
"Remove link": "Linki sil",
|
||||
"Url": "Linkin \u00fcnvan\u0131",
|
||||
"Text to display": "G\u00f6r\u00fcn\u0259n yaz\u0131n\u0131n t\u0259sviri",
|
||||
"Anchors": "L\u00f6vb\u0259rl\u0259r",
|
||||
"Insert link": "Linkin \u0259lav\u0259 edilm\u0259si",
|
||||
"New window": "Yeni p\u0259nc\u0259r\u0259d\u0259 a\u00e7\u0131ls\u0131n",
|
||||
"None": "Yoxdur",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Daxil etdiyiniz URL bir e-mail kimi g\u00f6r\u00fcn\u00fcr. \u018fg\u0259r t\u0259l\u0259b olunan mailto: prefix \u0259lav\u0259 etm\u0259k ist\u0259yirsiniz?",
|
||||
"Target": "H\u0259d\u0259f",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Daxil etdiyiniz URL bir e-mail kimi g\u00f6r\u00fcn\u00fcr. \u018fg\u0259r t\u0259l\u0259b olunan mailto: prefix \u0259lav\u0259 etm\u0259k ist\u0259yirsiniz?",
|
||||
"Insert\/edit link": "Linkin \u0259lav\u0259\/redakt\u0259 edilm\u0259si",
|
||||
"Insert\/edit video": "Videonun \u0259lav\u0259\/redakt\u0259 edilm\u0259si",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternativ m\u0259nb\u0259",
|
||||
"Paste your embed code below:": "\u00d6z kodunuzu a\u015fa\u011f\u0131 \u0259lav\u0259 edin:",
|
||||
"Insert video": "Videonun \u0259lav\u0259 edilm\u0259si",
|
||||
"Embed": "\u018flav\u0259 etm\u0259k \u00fc\u00e7\u00fcn kod",
|
||||
"Nonbreaking space": "Q\u0131r\u0131lmaz sah\u0259",
|
||||
"Page break": "S\u0259hif\u0259nin q\u0131r\u0131lmas\u0131",
|
||||
"Paste as text": "M\u0259tn kimi \u0259lav\u0259 et",
|
||||
"Preview": "\u0130lkinbax\u0131\u015f",
|
||||
"Print": "\u00c7ap et",
|
||||
"Save": "Yadda saxla",
|
||||
"Could not find the specified string.": "G\u00f6st\u0259ril\u0259n s\u0259tiri tapmaq olmur",
|
||||
"Replace": "D\u0259yi\u015fdir",
|
||||
"Next": "N\u00f6vb\u0259ti",
|
||||
"Whole words": "Tam s\u00f6zl\u0259r",
|
||||
"Find and replace": "Tap v\u0259 d\u0259yi\u015fdir",
|
||||
"Replace with": "Bununla d\u0259yi\u015fdir",
|
||||
"Find": "Tap",
|
||||
"Replace all": "Ham\u0131s\u0131n\u0131 d\u0259yi\u015fdir",
|
||||
"Match case": "Registri n\u0259z\u0259r\u0259 al",
|
||||
"Prev": "\u018fvv\u0259lki",
|
||||
"Spellcheck": "Orfoqrafiyan\u0131 yoxla",
|
||||
"Finish": "Bitir",
|
||||
"Ignore all": "Ham\u0131s\u0131n\u0131 iqnorla",
|
||||
"Ignore": "\u0130qnorla",
|
||||
"Add to Dictionary": "L\u00fc\u011f\u0259t\u0259 \u0259lav\u0259 edilsin",
|
||||
"Insert row before": "\u018fvv\u0259lin\u0259 s\u0259tir \u0259lav\u0259 et",
|
||||
"Rows": "S\u0259tirl\u0259r",
|
||||
"Height": "H\u00fcnd\u00fcrl\u00fcy\u00fc",
|
||||
"Paste row after": "Sonras\u0131na s\u0259tir \u0259lav\u0259 et",
|
||||
"Alignment": "D\u00fczl\u0259ndirm\u0259",
|
||||
"Border color": "\u00c7\u0259r\u00e7iv\u0259 r\u0259ngi",
|
||||
"Column group": "S\u00fctunun qrupu",
|
||||
"Row": "S\u0259tir",
|
||||
"Insert column before": "\u018fvv\u0259lin\u0259 s\u0259tir \u0259lav\u0259 et",
|
||||
"Split cell": "H\u00fccr\u0259l\u0259rin say\u0131",
|
||||
"Cell padding": "H\u00fccr\u0259l\u0259rin sah\u0259l\u0259ri",
|
||||
"Cell spacing": "H\u00fccr\u0259l\u0259rin aras\u0131nda m\u0259saf\u0259",
|
||||
"Row type": "S\u0259tirin tipi",
|
||||
"Insert table": "S\u0259tir \u0259lav\u0259 et",
|
||||
"Body": "K\u00fctl\u0259",
|
||||
"Caption": "Ba\u015flan\u011f\u0131c",
|
||||
"Footer": "\u018fn a\u015fa\u011f\u0131",
|
||||
"Delete row": "S\u0259tri sil",
|
||||
"Paste row before": "\u018fvv\u0259lin\u0259 s\u0259tir \u0259lav\u0259 et",
|
||||
"Scope": "Sfera",
|
||||
"Delete table": "C\u0259dv\u0259li sil",
|
||||
"H Align": "H D\u00fczl\u0259ndir",
|
||||
"Top": "Yuxar\u0131",
|
||||
"Header cell": "H\u00fccr\u0259nin ba\u015fl\u0131\u011f\u0131",
|
||||
"Column": "S\u00fctun",
|
||||
"Row group": "S\u0259tirin qrupu",
|
||||
"Cell": "H\u00fccr\u0259",
|
||||
"Middle": "Orta",
|
||||
"Cell type": "H\u00fccr\u0259nin tipi",
|
||||
"Copy row": "S\u0259tiri k\u00f6\u00e7\u00fcr",
|
||||
"Row properties": "S\u0259trin x\u00fcsusiyy\u0259tl\u0259ri",
|
||||
"Table properties": "C\u0259dv\u0259lin x\u00fcsusiyy\u0259tl\u0259ri",
|
||||
"Bottom": "A\u015fa\u011f\u0131",
|
||||
"V Align": "V D\u00fczl\u0259ndir",
|
||||
"Header": "Ba\u015fl\u0131q",
|
||||
"Right": "Sa\u011f t\u0259r\u0259f \u00fczr\u0259",
|
||||
"Insert column after": "\u018fvv\u0259lin\u0259 s\u00fctun \u0259lav\u0259 et",
|
||||
"Cols": "S\u00fctunlar",
|
||||
"Insert row after": "Sonras\u0131na s\u0259tir \u0259lav\u0259 et",
|
||||
"Width": "Eni",
|
||||
"Cell properties": "H\u00fccr\u0259nin x\u00fcsusiyy\u0259tl\u0259ri",
|
||||
"Left": "Sol t\u0259r\u0259f \u00fczr\u0259",
|
||||
"Cut row": "S\u0259tiri k\u0259s",
|
||||
"Delete column": "S\u00fctunu sil",
|
||||
"Center": "M\u0259rk\u0259z \u00fczr\u0259",
|
||||
"Merge cells": "H\u00fccr\u0259l\u0259ri birl\u0259\u015ftir",
|
||||
"Insert template": "\u015eablon \u0259lav\u0259 et",
|
||||
"Templates": "\u015eablonlar",
|
||||
"Background color": "Arxafon r\u0259ngi",
|
||||
"Custom...": "\u00c7\u0259kilm\u0259...",
|
||||
"Custom color": "\u00c7\u0259kilm\u0259 r\u0259ng",
|
||||
"No color": "R\u0259ngsiz",
|
||||
"Text color": "M\u0259tnin r\u0259ngi",
|
||||
"Show blocks": "Bloklar\u0131 g\u00f6st\u0259r",
|
||||
"Show invisible characters": "G\u00f6r\u00fcnm\u0259y\u0259n simvollar\u0131 g\u00f6st\u0259r",
|
||||
"Words: {0}": "S\u00f6zl\u0259r: {0}",
|
||||
"Insert": "\u018flav\u0259 et",
|
||||
"File": "Fayl",
|
||||
"Edit": "Redakt\u0259 et",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "B\u00f6y\u00fck m\u0259tn sah\u0259si \u0259lav\u0259 edilib. Menyu \u00fc\u00e7\u00fcn ALT-F9 d\u00fcym\u0259sini bas\u0131n. Al\u0259tl\u0259r paneli \u00fc\u00e7\u00fcn ALT-F10 d\u00fcym\u0259sini bas\u0131n. K\u00f6m\u0259k \u00fc\u00e7\u00fcn ALT-0 d\u00fcym\u0259l\u0259rin bas\u0131n.",
|
||||
"Tools": "Al\u0259tl\u0259r",
|
||||
"View": "G\u00f6r\u00fcn\u00fc\u015f",
|
||||
"Table": "C\u0259dv\u0259l",
|
||||
"Format": "Format"
|
||||
});
|
||||
230
data/web/rc/program/js/tinymce/langs/be.js
Normal file
230
data/web/rc/program/js/tinymce/langs/be.js
Normal file
@@ -0,0 +1,230 @@
|
||||
tinymce.addI18n('be',{
|
||||
"Cut": "\u0412\u044b\u0440\u0430\u0437\u0430\u0446\u044c",
|
||||
"Heading 5": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 5",
|
||||
"Header 2": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u045e\u0437\u044d\u0440 \u043d\u0435 \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435 \u043f\u0440\u0430\u043c\u044b \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u0430 \u0431\u0443\u0444\u0435\u0440\u0430 \u0430\u0431\u043c\u0435\u043d\u0443. \u041a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430, \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u0439\u0446\u0435 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u044b\u044f \u0441\u043f\u0430\u043b\u0443\u0447\u044d\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448: Ctrl + X\/C\/V.",
|
||||
"Heading 4": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 4",
|
||||
"Div": "\u0411\u043b\u043e\u043a",
|
||||
"Heading 2": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 2",
|
||||
"Paste": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c",
|
||||
"Close": "\u0417\u0430\u0447\u044b\u043d\u0456\u0446\u044c",
|
||||
"Font Family": "\u0428\u0440\u044b\u0444\u0442",
|
||||
"Pre": "\u041f\u0440\u0430\u0434\u0444\u0430\u0440\u043c\u0430\u0442\u0430\u0432\u0430\u043d\u043d\u0435",
|
||||
"Align right": "\u041f\u0430 \u043f\u0440\u0430\u0432\u044b\u043c \u043a\u0440\u0430\u0456",
|
||||
"New document": "\u041d\u043e\u0432\u044b \u0434\u0430\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Blockquote": "\u0426\u044b\u0442\u0430\u0442\u0430",
|
||||
"Numbered list": "\u041d\u0443\u043c\u0430\u0440\u0430\u0432\u0430\u043d\u044b \u0441\u043f\u0456\u0441",
|
||||
"Heading 1": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 1",
|
||||
"Headings": "\u0417\u0430\u0433\u0430\u043b\u043e\u045e\u043a\u0456",
|
||||
"Increase indent": "\u041f\u0430\u0432\u044f\u043b\u0456\u0447\u044b\u0446\u044c \u0432\u043e\u0434\u0441\u0442\u0443\u043f",
|
||||
"Formats": "\u0424\u0430\u0440\u043c\u0430\u0442",
|
||||
"Headers": "\u0417\u0430\u0433\u0430\u043b\u043e\u045e\u043a\u0456",
|
||||
"Select all": "\u0412\u044b\u043b\u0443\u0447\u044b\u0446\u044c \u0443\u0441\u0451",
|
||||
"Header 3": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 3",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u0456",
|
||||
"Undo": "\u0412\u044f\u0440\u043d\u0443\u0446\u044c",
|
||||
"Strikethrough": "\u0417\u0430\u043a\u0440\u044d\u0441\u043b\u0435\u043d\u044b",
|
||||
"Bullet list": "\u041c\u0430\u0440\u043a\u0456\u0440\u0430\u0432\u0430\u043d\u044b \u0441\u043f\u0456\u0441",
|
||||
"Header 1": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 1",
|
||||
"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0456 \u0456\u043d\u0434\u044d\u043a\u0441",
|
||||
"Clear formatting": "\u0410\u0447\u044b\u0441\u0446\u0456\u0446\u044c \u0444\u0430\u0440\u043c\u0430\u0442",
|
||||
"Font Sizes": "\u041f\u0430\u043c\u0435\u0440 \u0448\u0440\u044b\u0444\u0442\u0430",
|
||||
"Subscript": "\u041d\u0456\u0436\u043d\u0456 \u0456\u043d\u0434\u044d\u043a\u0441",
|
||||
"Header 6": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 6",
|
||||
"Redo": "\u0410\u0434\u043c\u044f\u043d\u0456\u0446\u044c",
|
||||
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
||||
"Ok": "Ok",
|
||||
"Bold": "\u0422\u043b\u0443\u0441\u0442\u044b",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Italic": "\u041a\u0443\u0440\u0441\u0456\u045e",
|
||||
"Align center": "\u041f\u0430 \u0446\u044d\u043d\u0442\u0440\u044b",
|
||||
"Header 5": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 6",
|
||||
"Heading 3": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 3",
|
||||
"Decrease indent": "\u041f\u0430\u043c\u0435\u043d\u0448\u044b\u0446\u044c \u0432\u043e\u0434\u0441\u0442\u0443\u043f",
|
||||
"Header 4": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0423\u0441\u0442\u0430\u045e\u043a\u0430 \u0437\u0434\u0437\u044f\u0439\u0441\u043d\u044f\u0435\u0446\u0446\u0430 \u045e \u0432\u044b\u0433\u043b\u044f\u0434\u0437\u0435 \u043f\u0440\u043e\u0441\u0442\u0430\u0433\u0430 \u0442\u044d\u043a\u0441\u0442\u0443, \u043f\u0430\u043a\u0443\u043b\u044c \u043d\u0435 \u0430\u0434\u043a\u043b\u044e\u0447\u044b\u0446\u044c \u0434\u0430\u0434\u0437\u0435\u043d\u0443\u044e \u043e\u043f\u0446\u044b\u044e.",
|
||||
"Underline": "\u041f\u0430\u0434\u043a\u0440\u044d\u0441\u043b\u0435\u043d\u044b",
|
||||
"Cancel": "\u0410\u0434\u043c\u044f\u043d\u0456\u0446\u044c",
|
||||
"Justify": "\u041f\u0430 \u0448\u044b\u0440\u044b\u043d\u0456",
|
||||
"Inline": "\u0420\u0430\u0434\u043a\u043e\u0432\u044b",
|
||||
"Copy": "\u041a\u0430\u043f\u0456\u0440\u0430\u0432\u0430\u0446\u044c",
|
||||
"Align left": "\u041f\u0430 \u043b\u0435\u0432\u044b\u043c \u043a\u0440\u0430\u0456",
|
||||
"Visual aids": "\u041f\u0430\u043a\u0430\u0437\u0432\u0430\u0446\u044c \u043a\u043e\u043d\u0442\u0443\u0440\u044b",
|
||||
"Lower Greek": "\u041c\u0430\u043b\u044b\u044f \u0433\u0440\u044d\u0447\u0430\u0441\u043a\u0456\u044f \u043b\u0456\u0442\u0430\u0440\u044b",
|
||||
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u044b",
|
||||
"Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b",
|
||||
"Lower Alpha": "\u041c\u0430\u043b\u044b\u044f \u043b\u0430\u0446\u0456\u043d\u0441\u043a\u0456\u044f \u043b\u0456\u0442\u0430\u0440\u044b",
|
||||
"Circle": "\u0410\u043a\u0440\u0443\u0436\u043d\u0430\u0441\u0446\u0456",
|
||||
"Disc": "\u041a\u0440\u0443\u0433\u0456",
|
||||
"Upper Alpha": "\u0417\u0430\u0433\u0430\u043b\u043e\u045e\u043d\u044b\u044f \u043b\u0430\u0446\u0456\u043d\u0441\u043a\u0456\u044f \u043b\u0456\u0442\u0430\u0440\u044b",
|
||||
"Upper Roman": "\u0417\u0430\u0433\u0430\u043b\u043e\u045e\u043d\u044b\u044f \u0440\u044b\u043c\u0441\u043a\u0456\u044f \u043b\u0456\u0447\u0431\u044b",
|
||||
"Lower Roman": "\u041c\u0430\u043b\u044b\u044f \u0440\u044b\u043c\u0441\u043a\u0456\u044f \u043b\u0456\u0447\u0431\u044b",
|
||||
"Name": "\u0406\u043c\u044f",
|
||||
"Anchor": "\u042f\u043a\u0430\u0440",
|
||||
"Id": "Id",
|
||||
"Id needs to be starting with a letter and be followed by letters, numbers, dashes, dots, colons or underscores.": "Id \u043f\u0430\u0432\u0456\u043d\u0435\u043d \u043f\u0430\u0447\u044b\u043d\u0430\u0446\u0446\u0430 \u0437 \u043b\u0456\u0442\u0430\u0440\u044b, \u0430 \u043f\u043e\u0442\u044b\u043c \u0443\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0446\u044c \u043b\u0456\u0442\u0430\u0440\u044b, \u043b\u0456\u0447\u0431\u044b, \u043f\u0440\u0430\u0446\u044f\u0436\u043d\u0456\u043a\u0456, \u043a\u0440\u043e\u043f\u043a\u0456, \u0434\u0432\u0443\u043a\u0440\u043e\u043f'\u044f \u0446\u0456 \u043f\u0430\u0434\u043a\u0440\u044d\u0441\u043b\u0456\u0432\u0430\u043d\u043d\u0456.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0451\u0441\u0446\u044c \u043d\u0435\u0437\u0430\u0445\u0430\u0432\u0430\u043d\u044b\u044f \u0437\u043c\u0435\u043d\u044b. \u0412\u044b \u045e\u043f\u044d\u045e\u043d\u0435\u043d\u044b\u044f, \u0448\u0442\u043e \u0445\u043e\u0447\u0430\u0446\u0435 \u0432\u044b\u0439\u0441\u0446\u0456?",
|
||||
"Restore last draft": "\u0410\u0434\u043d\u0430\u045e\u043b\u0435\u043d\u043d\u0435 \u0430\u043f\u043e\u0448\u043d\u044f\u0433\u0430 \u043f\u0440\u0430\u0435\u043a\u0442\u0430",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u044b\u044f\u043b\u044c\u043d\u044b\u044f \u0441\u0456\u043c\u0432\u0430\u043b\u044b",
|
||||
"Source code": "\u0417\u044b\u0445\u043e\u0434\u043d\u044b \u043a\u043e\u0434",
|
||||
"Language": "\u041c\u043e\u0432\u0430",
|
||||
"Insert\/Edit code sample": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c\/\u0440\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c \u043a\u043e\u0434",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u041a\u043e\u043b\u0435\u0440",
|
||||
"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u0430",
|
||||
"Left to right": "\u0417\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u0430",
|
||||
"Emoticons": "\u0414\u0430\u0434\u0430\u0446\u044c \u0441\u043c\u0430\u0439\u043b",
|
||||
"Robots": "\u0420\u043e\u0431\u0430\u0442\u044b",
|
||||
"Document properties": "\u0423\u043b\u0430\u0441\u0446\u0456\u0432\u0430\u0441\u0446\u0456 \u0434\u0430\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||
"Title": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a",
|
||||
"Keywords": "\u041a\u043b\u044e\u0447\u0430\u0432\u044b\u044f \u0441\u043b\u043e\u0432\u044b",
|
||||
"Encoding": "\u041a\u0430\u0434\u044b\u0440\u043e\u045e\u043a\u0430",
|
||||
"Description": "\u0410\u043f\u0456\u0441\u0430\u043d\u043d\u0435",
|
||||
"Author": "\u0410\u045e\u0442\u0430\u0440",
|
||||
"Fullscreen": "\u041f\u043e\u045e\u043d\u0430\u044d\u043a\u0440\u0430\u043d\u043d\u044b \u0440\u044d\u0436\u044b\u043c",
|
||||
"Horizontal line": "\u0413\u0430\u0440\u044b\u0437\u0430\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0456\u043d\u0456\u044f",
|
||||
"Horizontal space": "\u0413\u0430\u0440\u044b\u0437\u0430\u043d\u0442\u0430\u043b\u044c\u043d\u044b \u0456\u043d\u0442\u044d\u0440\u0432\u0430\u043b",
|
||||
"Insert\/edit image": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c\/\u0440\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c \u0432\u044b\u044f\u0432\u0443",
|
||||
"General": "\u0410\u0433\u0443\u043b\u044c\u043d\u0430\u0435",
|
||||
"Advanced": "\u041f\u0430\u0448\u044b\u0440\u0430\u043d\u0430\u0435",
|
||||
"Source": "\u041a\u0440\u044b\u043d\u0456\u0446\u0430",
|
||||
"Border": "\u041c\u044f\u0436\u0430",
|
||||
"Constrain proportions": "\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u043f\u0440\u0430\u043f\u043e\u0440\u0446\u044b\u0456",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u044b\u043a\u0430\u043b\u044c\u043d\u044b \u0456\u043d\u0442\u044d\u0440\u0432\u0430\u043b",
|
||||
"Image description": "\u0410\u043f\u0456\u0441\u0430\u043d\u043d\u0435 \u0432\u044b\u044f\u0432\u044b",
|
||||
"Style": "\u0421\u0442\u044b\u043b\u044c",
|
||||
"Dimensions": "\u041f\u0430\u043c\u0435\u0440",
|
||||
"Insert image": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0432\u044b\u044f\u0432\u0443",
|
||||
"Image": "\u0412\u044b\u044f\u0432\u0430",
|
||||
"Zoom in": "\u041f\u0430\u0432\u044f\u043b\u0456\u0447\u044b\u0446\u044c",
|
||||
"Contrast": "\u041a\u0430\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Back": "\u041d\u0430\u0437\u0430\u0434",
|
||||
"Gamma": "\u0413\u0430\u043c\u0430",
|
||||
"Flip horizontally": "\u0410\u0434\u043b\u044e\u0441\u0442\u0440\u0430\u0432\u0430\u0446\u044c \u0433\u0430\u0440\u044b\u0437\u0430\u043d\u0442\u0430\u043b\u044c\u043d\u0430",
|
||||
"Resize": "\u0417\u043c\u044f\u043d\u0456\u0446\u044c \u043f\u0430\u043c\u0435\u0440",
|
||||
"Sharpen": "\u0412\u044b\u0440\u0430\u0437\u043d\u0430\u0441\u0446\u044c",
|
||||
"Zoom out": "\u041f\u0430\u043c\u0435\u043d\u0448\u044b\u0446\u044c",
|
||||
"Image options": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u044b\u044f\u0432\u044b",
|
||||
"Apply": "\u0423\u0436\u044b\u0446\u044c",
|
||||
"Brightness": "\u042f\u0440\u043a\u0430\u0441\u0446\u044c",
|
||||
"Rotate clockwise": "\u041f\u0430\u0432\u044f\u0440\u043d\u0443\u0446\u044c clockwise",
|
||||
"Rotate counterclockwise": "\u041f\u0430\u0432\u044f\u0440\u043d\u0443\u0446\u044c counterclockwise",
|
||||
"Edit image": "\u0420\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c \u0432\u044b\u044f\u0432\u0443",
|
||||
"Color levels": "\u0423\u0437\u0440\u043e\u045e\u043d\u0456 \u043a\u043e\u043b\u0435\u0440\u0430\u045e",
|
||||
"Crop": "\u0410\u0431\u0440\u044d\u0437\u0430\u0446\u044c",
|
||||
"Orientation": "\u0410\u0440\u044b\u0435\u043d\u0442\u0430\u0446\u044b\u044f",
|
||||
"Flip vertically": "\u0410\u0434\u043b\u044e\u0441\u0442\u0440\u0430\u0432\u0430\u0446\u044c \u0432\u0435\u0440\u0442\u044b\u043a\u0430\u043b\u044c\u043d\u0430",
|
||||
"Invert": "\u0406\u043d\u0432\u0435\u0440\u0442\u0430\u0432\u0430\u0446\u044c",
|
||||
"Date\/time": "\u0414\u0430\u0442\u0430\/\u0447\u0430\u0441",
|
||||
"Insert date\/time": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441",
|
||||
"Remove link": "\u0412\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443",
|
||||
"Url": "\u0410\u0434\u0440\u0430\u0441 \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0456",
|
||||
"Text to display": "\u0422\u044d\u043a\u0441\u0442 \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0456",
|
||||
"Anchors": "\u042f\u043a\u0430\u0440\u044b",
|
||||
"Insert link": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443",
|
||||
"Link": "\u0421\u043f\u0430\u0441\u044b\u043b\u043a\u0430",
|
||||
"New window": "\u0423 \u043d\u043e\u0432\u044b\u043c \u0430\u043a\u043d\u0435",
|
||||
"None": "\u041d\u044f\u043c\u0430",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0423\u0432\u0435\u0434\u0437\u0435\u043d\u044b \u0430\u0434\u0440\u0430\u0441 \u043f\u0430\u0434\u043e\u0431\u043d\u044b \u043d\u0430 \u0437\u043d\u0435\u0448\u043d\u044e\u044e \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443. \u0416\u0430\u0434\u0430\u0435\u0446\u0435 \u0434\u0430\u0434\u0430\u0446\u044c \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u044b http:\/\/ \u043f\u0440\u044d\u0444\u0456\u043a\u0441?",
|
||||
"Paste or type a link": "\u0423\u0441\u0442\u0430\u045e\u0446\u0435 \u0430\u0431\u043e \u045e\u0432\u044f\u0434\u0437\u0456\u0446\u0435 \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443",
|
||||
"Target": "\u0410\u0434\u043a\u0440\u044b\u0432\u0430\u0446\u044c \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0423\u0432\u0435\u0434\u0437\u0435\u043d\u044b \u0430\u0434\u0440\u0430\u0441 \u043f\u0430\u0434\u043e\u0431\u043d\u044b \u043d\u0430 \u0430\u0434\u0440\u0430\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u0439 \u043f\u043e\u0448\u0442\u044b. \u0416\u0430\u0434\u0430\u0435\u0446\u0435 \u0434\u0430\u0434\u0430\u0446\u044c \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u044b mailto: \u043f\u0440\u044d\u0444\u0456\u043a\u0441?",
|
||||
"Insert\/edit link": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c\/\u0440\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c \u0441\u043f\u0430\u0441\u044b\u043b\u043a\u0443",
|
||||
"Insert\/edit video": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c\/\u0440\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c \u0432\u0456\u0434\u044d\u0430",
|
||||
"Media": "Media",
|
||||
"Alternative source": "\u0410\u043b\u044c\u0442\u044d\u0440\u043d\u0430\u0442\u044b\u045e\u043d\u0430\u044f \u043a\u0440\u044b\u043d\u0456\u0446\u0430",
|
||||
"Paste your embed code below:": "\u0423\u0441\u0442\u0430\u045e\u0446\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0456\u0436\u044d\u0439:",
|
||||
"Insert video": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0432\u0456\u0434\u044d\u0430",
|
||||
"Poster": "\u0412\u044b\u044f\u0432\u0430",
|
||||
"Insert\/edit media": "Insert\/edit media",
|
||||
"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u045e\u0441\u0442\u0430\u045e\u043a\u0456",
|
||||
"Nonbreaking space": "\u041d\u0435\u043f\u0430\u0440\u044b\u045e\u043d\u044b \u043f\u0440\u0430\u0431\u0435\u043b",
|
||||
"Page break": "\u0420\u0430\u0437\u0440\u044b\u045e \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0456",
|
||||
"Paste as text": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u044f\u043a \u0442\u044d\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u0440\u0430\u0434\u043f\u0440\u0430\u0433\u043b\u044f\u0434",
|
||||
"Print": "\u0414\u0440\u0443\u043a",
|
||||
"Save": "\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c",
|
||||
"Could not find the specified string.": "\u0417\u0430\u0434\u0430\u0434\u0437\u0435\u043d\u044b \u0440\u0430\u0434\u043e\u043a \u043d\u0435 \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u044b",
|
||||
"Replace": "\u0417\u043c\u044f\u043d\u0456\u0446\u044c",
|
||||
"Next": "\u0423\u043d\u0456\u0437",
|
||||
"Whole words": "\u0421\u043b\u043e\u0432\u044b \u0446\u0430\u043b\u043a\u0430\u043c",
|
||||
"Find and replace": "\u041f\u043e\u0448\u0443\u043a \u0456 \u0437\u0430\u043c\u0435\u043d\u0430",
|
||||
"Replace with": "\u0417\u043c\u044f\u043d\u0456\u0446\u044c \u043d\u0430",
|
||||
"Find": "\u0417\u043d\u0430\u0439\u0441\u0446\u0456",
|
||||
"Replace all": "\u0417\u043c\u044f\u043d\u0456\u0446\u044c \u0443\u0441\u0435",
|
||||
"Match case": "\u0423\u043b\u0456\u0447\u0432\u0430\u0446\u044c \u0440\u044d\u0433\u0456\u0441\u0442\u0440",
|
||||
"Prev": "\u0423\u0432\u0435\u0440\u0445",
|
||||
"Spellcheck": "\u041f\u0440\u0430\u0432\u0435\u0440\u043a\u0430 \u043f\u0440\u0430\u0432\u0430\u043f\u0456\u0441\u0443",
|
||||
"Finish": "\u0421\u043a\u043e\u043d\u0447\u044b\u0446\u044c",
|
||||
"Ignore all": "\u0406\u0433\u043d\u0430\u0440\u0430\u0432\u0430\u0446\u044c \u0443\u0441\u0435",
|
||||
"Ignore": "\u0406\u0433\u043d\u0430\u0440\u0430\u0432\u0430\u0446\u044c",
|
||||
"Add to Dictionary": "\u0414\u0430\u0434\u0430\u0446\u044c \u0443 \u0441\u043b\u043e\u045e\u043d\u0456\u043a",
|
||||
"Insert row before": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0440\u0430\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443",
|
||||
"Rows": "\u0420\u0430\u0434\u043a\u0456",
|
||||
"Height": "\u0412\u044b\u0448\u044b\u043d\u044f",
|
||||
"Paste row after": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0440\u0430\u0434\u043e\u043a \u0437\u043d\u0456\u0437\u0443",
|
||||
"Alignment": "\u0412\u044b\u0440\u0430\u045e\u043d\u043e\u045e\u0432\u0430\u043d\u043d\u0435",
|
||||
"Border color": "\u041a\u043e\u043b\u0435\u0440 \u043c\u044f\u0436\u044b",
|
||||
"Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u043b\u0443\u043f\u043a\u043e\u045e",
|
||||
"Row": "\u0420\u0430\u0434\u043e\u043a",
|
||||
"Insert column before": "\u0414\u0430\u0434\u0430\u0446\u044c \u0441\u043b\u0443\u043f\u043e\u043a \u0437\u043b\u0435\u0432\u0430",
|
||||
"Split cell": "\u0420\u0430\u0437\u0431\u0456\u0446\u044c \u044f\u0447\u044d\u0439\u043a\u0443",
|
||||
"Cell padding": "\u0423\u043d\u0443\u0442\u0440\u0430\u043d\u044b \u0432\u043e\u0434\u0441\u0442\u0443\u043f",
|
||||
"Cell spacing": "\u0417\u043d\u0435\u0448\u043d\u0456 \u0432\u043e\u0434\u0441\u0442\u0443\u043f",
|
||||
"Row type": "\u0422\u044b\u043f \u0440\u0430\u0434\u043a\u0430",
|
||||
"Insert table": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0442\u0430\u0431\u043b\u0456\u0446\u0443",
|
||||
"Body": "\u0426\u0435\u043b\u0430",
|
||||
"Caption": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a",
|
||||
"Footer": "\u041d\u0456\u0437",
|
||||
"Delete row": "\u0412\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0440\u0430\u0434\u043e\u043a",
|
||||
"Paste row before": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0440\u0430\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443",
|
||||
"Scope": "\u0421\u0444\u0435\u0440\u0430",
|
||||
"Delete table": "\u0412\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0442\u0430\u0431\u043b\u0456\u0446\u0443",
|
||||
"H Align": "\u0413\u0430\u0440. \u0432\u044b\u0440\u0430\u045e\u043d\u043e\u045e\u0432\u0430\u043d\u043d\u0435",
|
||||
"Top": "\u0412\u0435\u0440\u0445",
|
||||
"Header cell": "\u0417\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a",
|
||||
"Column": "\u0421\u043b\u0443\u043f\u043e\u043a",
|
||||
"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u0430\u0434\u043a\u043e\u045e",
|
||||
"Cell": "\u042f\u0447\u044d\u0439\u043a\u0430",
|
||||
"Middle": "\u0421\u044f\u0440\u044d\u0434\u0437\u0456\u043d\u0430",
|
||||
"Cell type": "\u0422\u044b\u043f \u044f\u0447\u044d\u0439\u043a\u0456",
|
||||
"Copy row": "\u041a\u0430\u043f\u0456\u044f\u0432\u0430\u0446\u044c \u0440\u0430\u0434\u043e\u043a",
|
||||
"Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0440\u0430\u0434\u043a\u0430",
|
||||
"Table properties": "\u0423\u043b\u0430\u0441\u0446\u0456\u0432\u0430\u0441\u0446\u0456 \u0442\u0430\u0431\u043b\u0456\u0446\u044b",
|
||||
"Bottom": "\u041d\u0456\u0437",
|
||||
"V Align": "\u0412\u0435\u0440. \u0432\u044b\u0440\u0430\u045e\u043d\u043e\u045e\u0432\u0430\u043d\u043d\u0435",
|
||||
"Header": "\u0428\u0430\u043f\u043a\u0430",
|
||||
"Right": "\u041f\u0430 \u043f\u0440\u0430\u0432\u044b\u043c \u043a\u0440\u0430\u0456",
|
||||
"Insert column after": "\u0414\u0430\u0434\u0430\u0446\u044c \u0441\u043b\u0443\u043f\u043e\u043a \u0441\u043f\u0440\u0430\u0432\u0430",
|
||||
"Cols": "\u0421\u043b\u0443\u043f\u043a\u0456",
|
||||
"Insert row after": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0440\u0430\u0434\u043e\u043a \u0437\u043d\u0456\u0437\u0443",
|
||||
"Width": "\u0428\u044b\u0440\u044b\u043d\u044f",
|
||||
"Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u044f\u0447\u044d\u0439\u043a\u0456",
|
||||
"Left": "\u041f\u0430 \u043b\u0435\u0432\u044b\u043c \u043a\u0440\u0430\u0456",
|
||||
"Cut row": "\u0412\u044b\u0440\u0430\u0437\u0430\u0446\u044c \u0440\u0430\u0434\u043e\u043a",
|
||||
"Delete column": "\u0412\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0441\u043b\u0443\u043f\u043e\u043a",
|
||||
"Center": "\u041f\u0430 \u0446\u044d\u043d\u0442\u0440\u044b",
|
||||
"Merge cells": "\u0410\u0431'\u044f\u0434\u043d\u0430\u0446\u044c \u044f\u0447\u044d\u0439\u043a\u0456",
|
||||
"Insert template": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b",
|
||||
"Background color": "\u041a\u043e\u043b\u0435\u0440 \u0444\u043e\u043d\u0443",
|
||||
"Custom...": "\u041a\u0430\u0440\u044b\u0441\u0442\u0430\u0446\u043a\u0456...",
|
||||
"Custom color": "\u041a\u0430\u0440\u044b\u0441\u0442\u0430\u0446\u043a\u0456 \u043a\u043e\u043b\u0435\u0440",
|
||||
"No color": "\u0411\u0435\u0437 \u043a\u043e\u043b\u0435\u0440\u0443",
|
||||
"Text color": "\u041a\u043e\u043b\u0435\u0440 \u0442\u044d\u043a\u0441\u0442\u0443",
|
||||
"Table of Contents": "Table of Contents",
|
||||
"Show blocks": "\u041f\u0430\u043a\u0430\u0437\u0432\u0430\u0446\u044c \u0431\u043b\u043e\u043a\u0456",
|
||||
"Show invisible characters": "\u041f\u0430\u043a\u0430\u0437\u0432\u0430\u0446\u044c \u043d\u044f\u0431\u0430\u0447\u043d\u044b\u044f \u0441\u0456\u043c\u0432\u0430\u043b\u044b",
|
||||
"Words: {0}": "\u041a\u043e\u043b\u044c\u043a\u0430\u0441\u0446\u044c \u0441\u043b\u043e\u045e: {0}",
|
||||
"Insert": "\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u0417\u043c\u044f\u043d\u0456\u0446\u044c",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u044d\u043a\u0441\u0442\u0430\u0432\u0430\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0446\u0456\u0441\u043d\u0456\u0446\u0435 ALT-F9, \u043a\u0430\u0431 \u0432\u044b\u043a\u043b\u0456\u043a\u0430\u0446\u044c \u043c\u0435\u043d\u044e, ALT-F10 - \u043f\u0430\u043d\u044d\u043b\u044c \u043f\u0440\u044b\u043b\u0430\u0434\u0430\u045e, ALT-0 - \u0434\u043b\u044f \u0432\u044b\u043a\u043b\u0456\u043a\u0443 \u0434\u0430\u043f\u0430\u043c\u043e\u0433\u0456.",
|
||||
"Tools": "\u041f\u0440\u044b\u043b\u0430\u0434\u044b",
|
||||
"View": "\u0412\u044b\u0433\u043b\u044f\u0434",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0456\u0446\u0430",
|
||||
"Format": "\u0424\u0430\u0440\u043c\u0430\u0442"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/bg_BG.js
Normal file
219
data/web/rc/program/js/tinymce/langs/bg_BG.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('bg_BG',{
|
||||
"Cut": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435",
|
||||
"Heading 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5",
|
||||
"Header 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448\u0438\u044f\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u043a\u043b\u0438\u043f\u0431\u043e\u0440\u0434\u0430. \u0412\u043c\u0435\u0441\u0442\u043e \u0442\u043e\u0432\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u043d\u0438\u0442\u0435 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u0438 Ctrl+X (\u0437\u0430 \u0438\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435), Ctrl+C (\u0437\u0430 \u043a\u043e\u043f\u0438\u0440\u0430\u043d\u0435) \u0438 Ctrl+V (\u0437\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435).",
|
||||
"Heading 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4",
|
||||
"Div": "\u0411\u043b\u043e\u043a",
|
||||
"Heading 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2",
|
||||
"Paste": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435",
|
||||
"Close": "\u0417\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
||||
"Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u043d\u043e \u043e\u0444\u043e\u0440\u043c\u0435\u043d \u0442\u0435\u043a\u0441\u0442",
|
||||
"Align right": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u0434\u044f\u0441\u043d\u043e",
|
||||
"New document": "\u041d\u043e\u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442",
|
||||
"Numbered list": "\u041d\u043e\u043c\u0435\u0440\u0438\u0440\u0430\u043d \u0441\u043f\u0438\u0441\u044a\u043a",
|
||||
"Heading 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1",
|
||||
"Headings": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
|
||||
"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435",
|
||||
"Headers": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
|
||||
"Select all": "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0446\u044f\u043b\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||
"Header 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u043e\u0432\u0435",
|
||||
"Undo": "\u0412\u044a\u0440\u043d\u0438",
|
||||
"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u0442\u0430\u0432\u0430\u043d\u0435",
|
||||
"Bullet list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0432\u043e\u0434\u0430\u0447\u0438",
|
||||
"Header 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1",
|
||||
"Superscript": "\u0413\u043e\u0440\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Clear formatting": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e",
|
||||
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Subscript": "\u0414\u043e\u043b\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Header 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6",
|
||||
"Redo": "\u041e\u0442\u043c\u0435\u043d\u0438",
|
||||
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
||||
"Ok": "\u0414\u043e\u0431\u0440\u0435",
|
||||
"Bold": "\u0423\u0434\u0435\u0431\u0435\u043b\u0435\u043d (\u043f\u043e\u043b\u0443\u0447\u0435\u0440)",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Italic": "\u041d\u0430\u043a\u043b\u043e\u043d\u0435\u043d (\u043a\u0443\u0440\u0441\u0438\u0432)",
|
||||
"Align center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e",
|
||||
"Header 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6",
|
||||
"Heading 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3",
|
||||
"Decrease indent": "\u041d\u0430\u043c\u0430\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430",
|
||||
"Header 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435\u0442\u043e \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0435 \u0432 \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d \u0440\u0435\u0436\u0438\u043c. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0449\u0435 \u0431\u044a\u0434\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u043a\u0430\u0442\u043e \u043d\u0435\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442, \u0434\u043e\u043a\u0430\u0442\u043e \u0438\u0437\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0442\u0430\u0437\u0438 \u043e\u043f\u0446\u0438\u044f.",
|
||||
"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u0442\u0430\u043d",
|
||||
"Cancel": "\u041e\u0442\u043a\u0430\u0437",
|
||||
"Justify": "\u0414\u0432\u0443\u0441\u0442\u0440\u0430\u043d\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Inline": "\u041d\u0430 \u0435\u0434\u0438\u043d \u0440\u0435\u0434",
|
||||
"Copy": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435",
|
||||
"Align left": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u043b\u044f\u0432\u043e",
|
||||
"Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b\u043d\u043e \u043e\u0442\u043a\u0440\u043e\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0438 \u0431\u0435\u0437 \u043a\u0430\u043d\u0442\u043e\u0432\u0435 (\u0440\u0430\u043c\u043a\u0438)",
|
||||
"Lower Greek": "\u041c\u0430\u043b\u043a\u0438 \u0433\u0440\u044a\u0446\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Square": "\u0417\u0430\u043f\u044a\u043b\u043d\u0435\u043d\u0438 \u043a\u0432\u0430\u0434\u0440\u0430\u0442\u0438",
|
||||
"Default": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
|
||||
"Lower Alpha": "\u041c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Circle": "\u041e\u043a\u0440\u044a\u0436\u043d\u043e\u0441\u0442\u0438",
|
||||
"Disc": "\u041a\u0440\u044a\u0433\u0447\u0435\u0442\u0430",
|
||||
"Upper Alpha": "\u0413\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Upper Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Lower Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u043c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Name": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"Anchor": "\u041a\u043e\u0442\u0432\u0430 (\u0432\u0440\u044a\u0437\u043a\u0430 \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430)",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0412 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0438\u043c\u0430 \u043d\u0435\u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438. \u0429\u0435 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435 \u043b\u0438?",
|
||||
"Restore last draft": "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u0447\u0435\u0440\u043d\u043e\u0432\u0430",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u0435\u043d \u0437\u043d\u0430\u043a",
|
||||
"Source code": "\u0418\u0437\u0445\u043e\u0434\u0435\u043d \u043a\u043e\u0434 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 HTML",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0426\u0432\u044f\u0442",
|
||||
"Right to left": "\u041e\u0442\u0434\u044f\u0441\u043d\u043e \u043d\u0430\u043b\u044f\u0432\u043e",
|
||||
"Left to right": "\u041e\u0442\u043b\u044f\u0432\u043e \u043d\u0430\u0434\u044f\u0441\u043d\u043e",
|
||||
"Emoticons": "\u0415\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0438",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438 \u043d\u0430 \u0443\u0435\u0431 \u0442\u044a\u0440\u0441\u0430\u0447\u043a\u0438",
|
||||
"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||
"Title": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0438 \u0434\u0443\u043c\u0438",
|
||||
"Encoding": "\u041a\u043e\u0434\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u043d\u0430\u0446\u0438\u0442\u0435",
|
||||
"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Fullscreen": "\u041d\u0430 \u0446\u044f\u043b \u0435\u043a\u0440\u0430\u043d",
|
||||
"Horizontal line": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u0430 \u0447\u0435\u0440\u0442\u0430",
|
||||
"Horizontal space": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e",
|
||||
"Insert\/edit image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430",
|
||||
"General": "\u041e\u0431\u0449\u043e",
|
||||
"Advanced": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e",
|
||||
"Source": "\u0410\u0434\u0440\u0435\u0441",
|
||||
"Border": "\u041a\u0430\u043d\u0442 (\u0440\u0430\u043c\u043a\u0430)",
|
||||
"Constrain proportions": "\u0417\u0430\u0432\u0430\u0437\u043d\u0430\u0432\u0435 \u043d\u0430 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438\u0442\u0435",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e",
|
||||
"Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430\u0442\u0430",
|
||||
"Style": "\u0421\u0442\u0438\u043b",
|
||||
"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440",
|
||||
"Insert image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"Zoom in": "\u041f\u0440\u0438\u0431\u043b\u0438\u0436\u0438",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Back": "\u041d\u0430\u0437\u0430\u0434",
|
||||
"Gamma": "\u0413\u0430\u043c\u0430",
|
||||
"Flip horizontally": "\u041e\u0431\u044a\u0440\u043d\u0438 \u0445\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e",
|
||||
"Resize": "\u041f\u0440\u0435\u043e\u0440\u0430\u0437\u043c\u0435\u0440\u044f\u0432\u0430\u043d\u0435",
|
||||
"Sharpen": "\u0418\u0437\u043e\u0441\u0442\u0440\u044f\u043d\u0435",
|
||||
"Zoom out": "\u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0438",
|
||||
"Image options": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
||||
"Apply": "\u041f\u0440\u0438\u043b\u043e\u0436\u0438",
|
||||
"Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442",
|
||||
"Rotate clockwise": "\u0417\u0430\u0432\u044a\u0440\u0442\u0430\u043d\u0435 \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u043a\u0430",
|
||||
"Rotate counterclockwise": "\u0417\u0430\u0432\u044a\u0440\u0442\u0430\u043d\u0435 \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u043d\u0430 \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u043a\u0430",
|
||||
"Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
||||
"Color levels": "\u0426\u0432\u0435\u0442\u043d\u0438 \u043d\u0438\u0432\u0430",
|
||||
"Crop": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435",
|
||||
"Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
|
||||
"Flip vertically": "\u041e\u0431\u044a\u0440\u043d\u0438 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e",
|
||||
"Invert": "\u0418\u043d\u0432\u0435\u0440\u0441\u0438\u044f",
|
||||
"Insert date\/time": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u0430\u0442\u0430\/\u0447\u0430\u0441",
|
||||
"Remove link": "\u041f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430",
|
||||
"Url": "\u0410\u0434\u0440\u0435\u0441 (URL)",
|
||||
"Text to display": "\u0422\u0435\u043a\u0441\u0442",
|
||||
"Anchors": "\u041a\u043e\u0442\u0432\u0438",
|
||||
"Insert link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)",
|
||||
"New window": "\u0412 \u043d\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446 (\u043f\u043e\u0434\u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446)",
|
||||
"None": "\u0411\u0435\u0437",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u0432\u044a\u043d\u0448\u0435\u043d \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f http:\/\/ \u043f\u0440\u0435\u0444\u0438\u043a\u0441?",
|
||||
"Target": "\u0426\u0435\u043b \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u043d\u0430 \u0435-\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441?",
|
||||
"Insert\/edit link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)",
|
||||
"Insert\/edit video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
|
||||
"Poster": "\u041f\u043e\u0441\u0442\u0435\u0440",
|
||||
"Alternative source": "\u0410\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0435\u043d \u0430\u0434\u0440\u0435\u0441",
|
||||
"Paste your embed code below:": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043a\u043e\u0434\u0430 \u0437\u0430 \u0432\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0432 \u043f\u043e\u043b\u0435\u0442\u043e \u043f\u043e-\u0434\u043e\u043b\u0443:",
|
||||
"Insert video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
|
||||
"Embed": "\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435",
|
||||
"Nonbreaking space": "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||
"Page break": "\u041d\u043e\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430",
|
||||
"Paste as text": "\u041f\u043e\u0441\u0442\u0430\u0432\u0438 \u043a\u0430\u0442\u043e \u0442\u0435\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434",
|
||||
"Print": "\u041f\u0435\u0447\u0430\u0442",
|
||||
"Save": "\u0421\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Could not find the specified string.": "\u0422\u044a\u0440\u0441\u0435\u043d\u0438\u044f\u0442 \u0442\u0435\u043a\u0441\u0442 \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d.",
|
||||
"Replace": "\u0417\u0430\u043c\u044f\u043d\u0430",
|
||||
"Next": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",
|
||||
"Whole words": "\u0421\u0430\u043c\u043e \u0446\u0435\u043b\u0438 \u0434\u0443\u043c\u0438",
|
||||
"Find and replace": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0438 \u0437\u0430\u043c\u044f\u043d\u0430",
|
||||
"Replace with": "\u0417\u0430\u043c\u044f\u043d\u0430 \u0441",
|
||||
"Find": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0437\u0430",
|
||||
"Replace all": "\u0417\u0430\u043c\u044f\u043d\u0430 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0441\u0440\u0435\u0449\u0430\u043d\u0438\u044f",
|
||||
"Match case": "\u0421\u044a\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u044a\u0440\u0430 (\u043c\u0430\u043b\u043a\u0438\/\u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438)",
|
||||
"Prev": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d",
|
||||
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430",
|
||||
"Finish": "\u041a\u0440\u0430\u0439",
|
||||
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u043e",
|
||||
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435",
|
||||
"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u0440\u0435\u0447\u043d\u0438\u043a\u0430",
|
||||
"Insert row before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438",
|
||||
"Rows": "\u0420\u0435\u0434\u043e\u0432\u0435",
|
||||
"Height": "\u0412\u0438\u0441\u043e\u0447\u0438\u043d\u0430",
|
||||
"Paste row after": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434",
|
||||
"Alignment": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Border color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0440\u0430\u043c\u043a\u0430\u0442\u0430",
|
||||
"Column group": "Column group",
|
||||
"Row": "\u0420\u0435\u0434",
|
||||
"Insert column before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u043f\u0440\u0435\u0434\u0438",
|
||||
"Split cell": "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430",
|
||||
"Cell padding": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e",
|
||||
"Cell spacing": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435",
|
||||
"Row type": "\u0422\u0438\u043f \u043d\u0430 \u0440\u0435\u0434\u0430",
|
||||
"Insert table": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430",
|
||||
"Body": "\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 (body)",
|
||||
"Caption": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043f\u0440\u0435\u0434\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
||||
"Footer": "\u0414\u043e\u043b\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (footer)",
|
||||
"Delete row": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434\u0430",
|
||||
"Paste row before": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438",
|
||||
"Scope": "\u041e\u0431\u0445\u0432\u0430\u0442",
|
||||
"Delete table": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
||||
"H Align": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Top": "\u0413\u043e\u0440\u0435",
|
||||
"Header cell": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430 (\u0430\u043d\u0442\u0435\u0442\u043a\u0430)",
|
||||
"Column": "\u041a\u043e\u043b\u043e\u043d\u0430",
|
||||
"Row group": "Row group",
|
||||
"Cell": "\u041a\u043b\u0435\u0442\u043a\u0430",
|
||||
"Middle": "\u041f\u043e \u0441\u0440\u0435\u0434\u0430\u0442\u0430",
|
||||
"Cell type": "\u0422\u0438\u043f \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430",
|
||||
"Copy row": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434",
|
||||
"Row properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0435\u0434\u0430",
|
||||
"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
||||
"Bottom": "\u0414\u043e\u043b\u0443",
|
||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Header": "\u0413\u043e\u0440\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (header)",
|
||||
"Right": "\u0414\u044f\u0441\u043d\u043e",
|
||||
"Insert column after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u0441\u043b\u0435\u0434",
|
||||
"Cols": "\u041a\u043e\u043b\u043e\u043d\u0438",
|
||||
"Insert row after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434",
|
||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||
"Cell properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430",
|
||||
"Left": "\u041b\u044f\u0432\u043e",
|
||||
"Cut row": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434",
|
||||
"Delete column": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430\u0442\u0430",
|
||||
"Center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e",
|
||||
"Merge cells": "\u0421\u043b\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435",
|
||||
"Insert template": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
||||
"Background color": "\u0424\u043e\u043d\u043e\u0432 \u0446\u0432\u044f\u0442",
|
||||
"Custom...": "\u0418\u0437\u0431\u0440\u0430\u043d...",
|
||||
"Custom color": "\u0426\u0432\u044f\u0442 \u043f\u043e \u0438\u0437\u0431\u043e\u0440",
|
||||
"No color": "\u0411\u0435\u0437 \u0446\u0432\u044f\u0442",
|
||||
"Text color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0431\u043b\u043e\u043a\u043e\u0432\u0435\u0442\u0435",
|
||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0435\u043f\u0435\u0447\u0430\u0442\u0430\u0435\u043c\u0438 \u0437\u043d\u0430\u0446\u0438",
|
||||
"Words: {0}": "\u0411\u0440\u043e\u0439 \u0434\u0443\u043c\u0438: {0}",
|
||||
"Insert": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442. \u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 Alt+F9 \u0437\u0430 \u043c\u0435\u043d\u044e; Alt+F10 \u0437\u0430 \u043b\u0435\u043d\u0442\u0430 \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438; Alt+0 \u0437\u0430 \u043f\u043e\u043c\u043e\u0449.",
|
||||
"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438",
|
||||
"View": "\u0418\u0437\u0433\u043b\u0435\u0434",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/bs.js
Normal file
219
data/web/rc/program/js/tinymce/langs/bs.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('bs',{
|
||||
"Cut": "Izre\u017ei",
|
||||
"Heading 5": "Naslov 5",
|
||||
"Header 2": "Zaglavlje 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Va\u0161 browser ne podr\u017eava direktan pristup me\u0111umemoriji. Molimo vas da koristite pre\u010dice Ctrl+X\/C\/V na tastaturi.",
|
||||
"Heading 4": "Naslov 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Naslov 2",
|
||||
"Paste": "Zalijepi",
|
||||
"Close": "Zatvori",
|
||||
"Font Family": "Familija fonta",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Poravnaj desno",
|
||||
"New document": "Novi dokument",
|
||||
"Blockquote": "Blok citat",
|
||||
"Numbered list": "Numerisana lista",
|
||||
"Heading 1": "Naslov 1",
|
||||
"Headings": "Naslovi",
|
||||
"Increase indent": "Pove\u0107aj uvlaku",
|
||||
"Formats": "Formati",
|
||||
"Headers": "Zaglavlja",
|
||||
"Select all": "Ozna\u010di sve",
|
||||
"Header 3": "Zaglavlje 3",
|
||||
"Blocks": "Blokovi",
|
||||
"Undo": "Nazad",
|
||||
"Strikethrough": "Precrtano",
|
||||
"Bullet list": "Bullet lista",
|
||||
"Header 1": "Zaglavlje 1",
|
||||
"Superscript": "Eksponent",
|
||||
"Clear formatting": "Poni\u0161ti formatiranje",
|
||||
"Font Sizes": "Veli\u010dine fonta",
|
||||
"Subscript": "Indeks",
|
||||
"Header 6": "Zaglavlje 6",
|
||||
"Redo": "Naprijed",
|
||||
"Paragraph": "Paragraf",
|
||||
"Ok": "U redu",
|
||||
"Bold": "Podebljano",
|
||||
"Code": "Kod",
|
||||
"Italic": "Nakrivljen",
|
||||
"Align center": "Centriraj",
|
||||
"Header 5": "Zaglavlje 5",
|
||||
"Heading 6": "Naslov 6",
|
||||
"Heading 3": "Naslov 3",
|
||||
"Decrease indent": "Smanji uvlaku",
|
||||
"Header 4": "Zaglavlje 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Lijepljenje je sada u modu obi\u010dnog teksta. Sadr\u017eaj \u0107e sada biti zalijepljen kao obi\u010dni tekst sve dok ovu opciju ne ugasite.",
|
||||
"Underline": "Podvu\u010deno",
|
||||
"Cancel": "Otka\u017ei",
|
||||
"Justify": "Obostrano poravnanje",
|
||||
"Inline": "U liniji",
|
||||
"Copy": "Kopiraj",
|
||||
"Align left": "Poravnaj lijevo",
|
||||
"Visual aids": "Vizualna pomo\u0107",
|
||||
"Lower Greek": "Mala gr\u010dka slova",
|
||||
"Square": "Kvadrat",
|
||||
"Default": "Po\u010detno",
|
||||
"Lower Alpha": "Mala slova",
|
||||
"Circle": "Krug",
|
||||
"Disc": "Disk",
|
||||
"Upper Alpha": "Velika slova",
|
||||
"Upper Roman": "Velika rimska slova",
|
||||
"Lower Roman": "Mala rimska slova",
|
||||
"Name": "Ime",
|
||||
"Anchor": "Anchor",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Niste sa\u010duvali izmjene. Jeste li sigurni da \u017eelite napustiti stranicu?",
|
||||
"Restore last draft": "Vrati posljednju skicu",
|
||||
"Special character": "Specijalni znak",
|
||||
"Source code": "Izvorni kod",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Boja",
|
||||
"Right to left": "S desna na lijevo",
|
||||
"Left to right": "S lijeva na desno",
|
||||
"Emoticons": "Smajliji",
|
||||
"Robots": "Roboti",
|
||||
"Document properties": "Svojstva dokumenta",
|
||||
"Title": "Naslov",
|
||||
"Keywords": "Klju\u010dne rije\u010di",
|
||||
"Encoding": "Kodiranje",
|
||||
"Description": "Opis",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Cijeli ekran",
|
||||
"Horizontal line": "Vodoravna linija",
|
||||
"Horizontal space": "Horizontalni razmak",
|
||||
"Insert\/edit image": "Umetni\/uredi sliku",
|
||||
"General": "Op\u0107enito",
|
||||
"Advanced": "Napredno",
|
||||
"Source": "Izvor",
|
||||
"Border": "Okvir",
|
||||
"Constrain proportions": "Ograni\u010di proporcije",
|
||||
"Vertical space": "Vertikalni razmak",
|
||||
"Image description": "Opis slike",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Dimenzije",
|
||||
"Insert image": "Umetni sliku",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "Umetni datum\/vrijeme",
|
||||
"Remove link": "Ukloni link",
|
||||
"Url": "URL",
|
||||
"Text to display": "Tekst za prikaz",
|
||||
"Anchors": "Anchori",
|
||||
"Insert link": "Umetni link",
|
||||
"New window": "Novi prozor",
|
||||
"None": "Ni\u0161ta",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Izgleda je URL koji ste upisali vanjski link. \u017delite li da dodate obavezni http:\/\/ prefiks?",
|
||||
"Target": "Odredi\u0161te",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Izgleda da je URL koji ste upisali ustvari email adresa. \u017delite li da dodate obavezni mailto: prefiks?",
|
||||
"Insert\/edit link": "Umetni\/uredi link",
|
||||
"Insert\/edit video": "Umetni\/uredi video",
|
||||
"Poster": "Objavio",
|
||||
"Alternative source": "Alternativni izvor",
|
||||
"Paste your embed code below:": "Zalijepite va\u0161 ugradbeni kod ispod:",
|
||||
"Insert video": "Umetni video",
|
||||
"Embed": "Ugradi",
|
||||
"Nonbreaking space": "Neprijelomni razmak",
|
||||
"Page break": "Prijelom stranice",
|
||||
"Paste as text": "Zalijepi kao tekst",
|
||||
"Preview": "Pregled",
|
||||
"Print": "\u0160tampaj",
|
||||
"Save": "Sa\u010duvaj",
|
||||
"Could not find the specified string.": "Tra\u017eeni string nije prona\u0111en.",
|
||||
"Replace": "Zamijeni",
|
||||
"Next": "Sljede\u0107e",
|
||||
"Whole words": "Cijele rije\u010di",
|
||||
"Find and replace": "Prona\u0111i i zamijeni",
|
||||
"Replace with": "Zamijena sa",
|
||||
"Find": "Prona\u0111i",
|
||||
"Replace all": "Zamijeni sve",
|
||||
"Match case": "Razlikuj mala i velika slova",
|
||||
"Prev": "Prethodno",
|
||||
"Spellcheck": "Provjera pravopisa",
|
||||
"Finish": "Zavr\u0161i",
|
||||
"Ignore all": "Zanemari sve",
|
||||
"Ignore": "Zanemari",
|
||||
"Add to Dictionary": "Dodaj u rje\u010dnik",
|
||||
"Insert row before": "Umetni red iznad",
|
||||
"Rows": "Redovi",
|
||||
"Height": "Visina",
|
||||
"Paste row after": "Zalijepi red iznad",
|
||||
"Alignment": "Poravnanje",
|
||||
"Border color": "Boja okvira",
|
||||
"Column group": "Grupa kolone",
|
||||
"Row": "Red",
|
||||
"Insert column before": "Umetni kolonu iznad",
|
||||
"Split cell": "Podijeli \u0107eliju",
|
||||
"Cell padding": "Ispunjenje \u0107elije",
|
||||
"Cell spacing": "Razmak \u0107elija",
|
||||
"Row type": "Vrsta reda",
|
||||
"Insert table": "Umetni tabelu",
|
||||
"Body": "Tijelo",
|
||||
"Caption": "Natpis",
|
||||
"Footer": "Podno\u017eje",
|
||||
"Delete row": "Obri\u0161i red",
|
||||
"Paste row before": "Zalijepi red ispod",
|
||||
"Scope": "Opseg",
|
||||
"Delete table": "Obri\u0161i tabelu",
|
||||
"H Align": "H poravnanje",
|
||||
"Top": "Vrh",
|
||||
"Header cell": "\u0106elija zaglavlja",
|
||||
"Column": "Kolona",
|
||||
"Row group": "Grupa reda",
|
||||
"Cell": "\u0106elija",
|
||||
"Middle": "Sredina",
|
||||
"Cell type": "Vrsta \u0107elije",
|
||||
"Copy row": "Kopiraj red",
|
||||
"Row properties": "Svojstva reda",
|
||||
"Table properties": "Svojstva tabele",
|
||||
"Bottom": "Dno",
|
||||
"V Align": "V poravnanje",
|
||||
"Header": "Zaglavlje",
|
||||
"Right": "Desno",
|
||||
"Insert column after": "Umetni kolonu ispod",
|
||||
"Cols": "Kolone",
|
||||
"Insert row after": "Umetni red ispod",
|
||||
"Width": "\u0160irina",
|
||||
"Cell properties": "Svojstva \u0107elije",
|
||||
"Left": "Lijevo",
|
||||
"Cut row": "Izre\u017ei red",
|
||||
"Delete column": "Obri\u0161i kolonu",
|
||||
"Center": "Centrirano",
|
||||
"Merge cells": "Spoji \u0107elije",
|
||||
"Insert template": "Umetni predlo\u017eak",
|
||||
"Templates": "Predlo\u0161ci",
|
||||
"Background color": "Boja pozadine",
|
||||
"Custom...": "Prilago\u0111eno...",
|
||||
"Custom color": "Korisni\u010dka boja",
|
||||
"No color": "Bez boje",
|
||||
"Text color": "Boja tekst",
|
||||
"Show blocks": "Prika\u017ei blokove",
|
||||
"Show invisible characters": "Prika\u017ei nevidljive znakove",
|
||||
"Words: {0}": "Rije\u010di: {0}",
|
||||
"Insert": "Umetni",
|
||||
"File": "Datoteka",
|
||||
"Edit": "Uredi",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Oblast za ure\u0111ivanje teksta. Pritisnite ALT-F9 za meni. Pritisnite ALT-F10 za prikaz alatne trake. Pritisnite ALT-0 za pomo\u0107.",
|
||||
"Tools": "Alati",
|
||||
"View": "Pregled",
|
||||
"Table": "Tabela",
|
||||
"Format": "Formatiranje"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ca.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ca.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ca',{
|
||||
"Cut": "Retalla",
|
||||
"Heading 5": "Encap\u00e7alament 5",
|
||||
"Header 2": "Cap\u00e7alera 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "El vostre navegador no suporta l'acc\u00e9s directe al portaobjectes. Si us plau, feu servir les dreceres de teclat Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Encap\u00e7alament 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Encap\u00e7alament 2",
|
||||
"Paste": "Enganxa",
|
||||
"Close": "Tanca",
|
||||
"Font Family": "Fam\u00edlia de la font",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Aliniat a la dreta",
|
||||
"New document": "Nou document",
|
||||
"Blockquote": "Cita",
|
||||
"Numbered list": "Llista enumerada",
|
||||
"Heading 1": "Encap\u00e7alament 1",
|
||||
"Headings": "Encap\u00e7alaments",
|
||||
"Increase indent": "Augmentar sagnat",
|
||||
"Formats": "Formats",
|
||||
"Headers": "Cap\u00e7aleres",
|
||||
"Select all": "Seleccionar-ho tot",
|
||||
"Header 3": "Cap\u00e7alera 3",
|
||||
"Blocks": "Blocs",
|
||||
"Undo": "Desfer",
|
||||
"Strikethrough": "Ratllat",
|
||||
"Bullet list": "Llista no ordenada",
|
||||
"Header 1": "Cap\u00e7alera 1",
|
||||
"Superscript": "Super\u00edndex",
|
||||
"Clear formatting": "Eliminar format",
|
||||
"Font Sizes": "Mides de la font",
|
||||
"Subscript": "Sub\u00edndex",
|
||||
"Header 6": "Cap\u00e7alera 6",
|
||||
"Redo": "Refer",
|
||||
"Paragraph": "Par\u00e0graf",
|
||||
"Ok": "Acceptar",
|
||||
"Bold": "Negreta",
|
||||
"Code": "Codi",
|
||||
"Italic": "Cursiva",
|
||||
"Align center": "Centrat",
|
||||
"Header 5": "Cap\u00e7alera 5",
|
||||
"Heading 6": "Encap\u00e7alament 6",
|
||||
"Heading 3": "Encap\u00e7alament 3",
|
||||
"Decrease indent": "Disminuir sagnat",
|
||||
"Header 4": "Cap\u00e7alera 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Enganxar ara est\u00e0 en mode text pla. Els continguts s'enganxaran com a text pla fins que desactivis aquesta opci\u00f3. ",
|
||||
"Underline": "Subratllat",
|
||||
"Cancel": "Cancel\u00b7la",
|
||||
"Justify": "Justificat",
|
||||
"Inline": "En l\u00ednia",
|
||||
"Copy": "Copia",
|
||||
"Align left": "Aliniat a l'esquerra",
|
||||
"Visual aids": "Assist\u00e8ncia visual",
|
||||
"Lower Greek": "Grec menor",
|
||||
"Square": "Quadrat",
|
||||
"Default": "Per defecte",
|
||||
"Lower Alpha": "Alfa menor",
|
||||
"Circle": "Cercle",
|
||||
"Disc": "Disc",
|
||||
"Upper Alpha": "Alfa major",
|
||||
"Upper Roman": "Roman major",
|
||||
"Lower Roman": "Roman menor",
|
||||
"Name": "Nom",
|
||||
"Anchor": "\u00c0ncora",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Teniu canvis sense desar, esteu segur que voleu deixar-ho ara?",
|
||||
"Restore last draft": "Restaurar l'\u00faltim esborrany",
|
||||
"Special character": "Car\u00e0cter especial",
|
||||
"Source code": "Codi font",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Color",
|
||||
"Right to left": "De dreta a esquerra",
|
||||
"Left to right": "D'esquerra a dreta",
|
||||
"Emoticons": "Emoticones",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Propietats del document",
|
||||
"Title": "T\u00edtol",
|
||||
"Keywords": "Paraules clau",
|
||||
"Encoding": "Codificaci\u00f3",
|
||||
"Description": "Descripci\u00f3",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Pantalla completa",
|
||||
"Horizontal line": "L\u00ednia horitzontal",
|
||||
"Horizontal space": "Espai horitzontal",
|
||||
"Insert\/edit image": "Inserir\/editar imatge",
|
||||
"General": "General",
|
||||
"Advanced": "Avan\u00e7at",
|
||||
"Source": "Font",
|
||||
"Border": "Vora",
|
||||
"Constrain proportions": "Mantenir proporcions",
|
||||
"Vertical space": "Espai vertical",
|
||||
"Image description": "Descripci\u00f3 de la imatge",
|
||||
"Style": "Estil",
|
||||
"Dimensions": "Dimensions",
|
||||
"Insert image": "Inserir imatge",
|
||||
"Zoom in": "Ampliar",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Tornar",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Capgirar horitzontalment",
|
||||
"Resize": "Canviar mida",
|
||||
"Sharpen": "Remarcar vores",
|
||||
"Zoom out": "Empetitir",
|
||||
"Image options": "Opcions d'imatge",
|
||||
"Apply": "Aplicar",
|
||||
"Brightness": "Brillantor",
|
||||
"Rotate clockwise": "Girar a la dreta",
|
||||
"Rotate counterclockwise": "Girar a l'esquerra",
|
||||
"Edit image": "Editar imatge",
|
||||
"Color levels": "Nivells de color",
|
||||
"Crop": "Escap\u00e7ar",
|
||||
"Orientation": "Orientaci\u00f3",
|
||||
"Flip vertically": "Capgirar verticalment",
|
||||
"Invert": "Invertir",
|
||||
"Insert date\/time": "Inserir data\/hora",
|
||||
"Remove link": "Treure enlla\u00e7",
|
||||
"Url": "URL",
|
||||
"Text to display": "Text per mostrar",
|
||||
"Anchors": "\u00c0ncores",
|
||||
"Insert link": "Inserir enlla\u00e7",
|
||||
"New window": "Finestra nova",
|
||||
"None": "Cap",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que has escrit sembla un enlla\u00e7 extern. Vols afegir-li el prefix obligatori http:\/\/ ?",
|
||||
"Target": "Dest\u00ed",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que has escrit sembla una adre\u00e7a de correu electr\u00f2nic. Vols afegir-li el prefix obligatori mailto: ?",
|
||||
"Insert\/edit link": "Inserir\/editar enlla\u00e7",
|
||||
"Insert\/edit video": "Inserir\/editar v\u00eddeo",
|
||||
"Poster": "P\u00f3ster",
|
||||
"Alternative source": "Font alternativa",
|
||||
"Paste your embed code below:": "Enganxau el codi a sota:",
|
||||
"Insert video": "Inserir v\u00eddeo",
|
||||
"Embed": "Incloure",
|
||||
"Nonbreaking space": "Espai fixe",
|
||||
"Page break": "Salt de p\u00e0gina",
|
||||
"Paste as text": "Enganxar com a text",
|
||||
"Preview": "Previsualitzaci\u00f3",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Desa",
|
||||
"Could not find the specified string.": "No es pot trobar el text especificat.",
|
||||
"Replace": "Rempla\u00e7ar",
|
||||
"Next": "Seg\u00fcent",
|
||||
"Whole words": "Paraules senceres",
|
||||
"Find and replace": "Buscar i rempla\u00e7ar",
|
||||
"Replace with": "Rempla\u00e7ar amb",
|
||||
"Find": "Buscar",
|
||||
"Replace all": "Rempla\u00e7ar-ho tot",
|
||||
"Match case": "Coincidir maj\u00fascules",
|
||||
"Prev": "Anterior",
|
||||
"Spellcheck": "Comprovar ortrografia",
|
||||
"Finish": "Finalitzar",
|
||||
"Ignore all": "Ignorar tots",
|
||||
"Ignore": "Ignorar",
|
||||
"Add to Dictionary": "Afegir al diccionari",
|
||||
"Insert row before": "Inserir fila a sobre",
|
||||
"Rows": "Files",
|
||||
"Height": "Al\u00e7ada",
|
||||
"Paste row after": "Enganxar fila a sota",
|
||||
"Alignment": "Aliniament",
|
||||
"Border color": "Color de vora",
|
||||
"Column group": "Grup de columna",
|
||||
"Row": "Fila",
|
||||
"Insert column before": "Inserir columna abans",
|
||||
"Split cell": "Dividir cel\u00b7les",
|
||||
"Cell padding": "Marge intern",
|
||||
"Cell spacing": "Espai entre cel\u00b7les",
|
||||
"Row type": "Tipus de fila",
|
||||
"Insert table": "Inserir taula",
|
||||
"Body": "Cos",
|
||||
"Caption": "Encap\u00e7alament",
|
||||
"Footer": "Peu",
|
||||
"Delete row": "Esborrar fila",
|
||||
"Paste row before": "Enganxar fila a sobre",
|
||||
"Scope": "\u00c0mbit",
|
||||
"Delete table": "Esborrar taula",
|
||||
"H Align": "Al\u00edniament H",
|
||||
"Top": "Superior",
|
||||
"Header cell": "Cel\u00b7la de cap\u00e7alera",
|
||||
"Column": "Columna",
|
||||
"Row group": "Grup de fila",
|
||||
"Cell": "Cel\u00b7la",
|
||||
"Middle": "Mitj\u00e0",
|
||||
"Cell type": "Tipus de cel\u00b7la",
|
||||
"Copy row": "Copiar fila",
|
||||
"Row properties": "Propietats de fila",
|
||||
"Table properties": "Propietats de taula",
|
||||
"Bottom": "Inferior",
|
||||
"V Align": "Al\u00edniament V",
|
||||
"Header": "Cap\u00e7alera",
|
||||
"Right": "A la dreta",
|
||||
"Insert column after": "Inserir columna despr\u00e9s",
|
||||
"Cols": "Cols",
|
||||
"Insert row after": "Inserir fila a sota",
|
||||
"Width": "Amplada",
|
||||
"Cell properties": "Propietats de cel\u00b7la",
|
||||
"Left": "A l'esquerra",
|
||||
"Cut row": "Retallar fila",
|
||||
"Delete column": "Esborrar columna",
|
||||
"Center": "Centrat",
|
||||
"Merge cells": "Fusionar cel\u00b7les",
|
||||
"Insert template": "Inserir plantilla",
|
||||
"Templates": "Plantilles",
|
||||
"Background color": "Color del fons",
|
||||
"Custom...": "Personalitzar...",
|
||||
"Custom color": "Personalitzar el color",
|
||||
"No color": "Sense color",
|
||||
"Text color": "Color del text",
|
||||
"Show blocks": "Mostrar blocs",
|
||||
"Show invisible characters": "Mostrar car\u00e0cters invisibles",
|
||||
"Words: {0}": "Paraules: {0}",
|
||||
"Insert": "Inserir",
|
||||
"File": "Arxiu",
|
||||
"Edit": "Edici\u00f3",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c0rea de text amb format. Premeu ALT-F9 per mostrar el men\u00fa, ALT F10 per la barra d'eines i ALT-0 per ajuda.",
|
||||
"Tools": "Eines",
|
||||
"View": "Veure",
|
||||
"Table": "Taula",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/cs.js
Normal file
219
data/web/rc/program/js/tinymce/langs/cs.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('cs',{
|
||||
"Cut": "Vyjmout",
|
||||
"Heading 5": "Nadpis 5",
|
||||
"Header 2": "Nadpis 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Nadpis 4",
|
||||
"Div": "Div (blok)",
|
||||
"Heading 2": "Nadpis 2",
|
||||
"Paste": "Vlo\u017eit",
|
||||
"Close": "Zav\u0159\u00edt",
|
||||
"Font Family": "Typ p\u00edsma",
|
||||
"Pre": "Pre (p\u0159edform\u00e1tov\u00e1no)",
|
||||
"Align right": "Zarovnat vpravo",
|
||||
"New document": "Nov\u00fd dokument",
|
||||
"Blockquote": "Citace",
|
||||
"Numbered list": "\u010c\u00edslov\u00e1n\u00ed",
|
||||
"Heading 1": "Nadpis 1",
|
||||
"Headings": "Nadpisy",
|
||||
"Increase indent": "Zv\u011bt\u0161it odsazen\u00ed",
|
||||
"Formats": "Form\u00e1ty",
|
||||
"Headers": "Nadpisy",
|
||||
"Select all": "Vybrat v\u0161e",
|
||||
"Header 3": "Nadpis 3",
|
||||
"Blocks": "Blokov\u00e9 zobrazen\u00ed (block)",
|
||||
"Undo": "Zp\u011bt",
|
||||
"Strikethrough": "P\u0159e\u0161rktnut\u00e9",
|
||||
"Bullet list": "Odr\u00e1\u017eky",
|
||||
"Header 1": "Nadpis 1",
|
||||
"Superscript": "Horn\u00ed index",
|
||||
"Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed",
|
||||
"Font Sizes": "Velikost p\u00edsma",
|
||||
"Subscript": "Doln\u00ed index",
|
||||
"Header 6": "Nadpis 6",
|
||||
"Redo": "Znovu",
|
||||
"Paragraph": "Odstavec",
|
||||
"Ok": "OK",
|
||||
"Bold": "Tu\u010dn\u00e9",
|
||||
"Code": "Code (k\u00f3d)",
|
||||
"Italic": "Kurz\u00edva",
|
||||
"Align center": "Zarovnat na st\u0159ed",
|
||||
"Header 5": "Nadpis 5",
|
||||
"Heading 6": "Nadpis 6",
|
||||
"Heading 3": "Nadpis 3",
|
||||
"Decrease indent": "Zmen\u0161it odsazen\u00ed",
|
||||
"Header 4": "Nadpis 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.",
|
||||
"Underline": "Podtr\u017een\u00e9",
|
||||
"Cancel": "Zru\u0161it",
|
||||
"Justify": "Zarovnat do bloku",
|
||||
"Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)",
|
||||
"Copy": "Kop\u00edrovat",
|
||||
"Align left": "Zarovnat vlevo",
|
||||
"Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky",
|
||||
"Lower Greek": "Mal\u00e9 p\u00edsmenkov\u00e1n\u00ed",
|
||||
"Square": "\u010ctvere\u010dek",
|
||||
"Default": "V\u00fdchoz\u00ed",
|
||||
"Lower Alpha": "Norm\u00e1ln\u00ed \u010d\u00edslov\u00e1n\u00ed",
|
||||
"Circle": "Kole\u010dko",
|
||||
"Disc": "Punt\u00edk",
|
||||
"Upper Alpha": "velk\u00e9 p\u00edsmenkov\u00e1n\u00ed",
|
||||
"Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice",
|
||||
"Lower Roman": "Mal\u00e9 \u0159\u00edmsk\u00e9 \u010d\u00edslice",
|
||||
"Name": "N\u00e1zev",
|
||||
"Anchor": "Kotva",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?",
|
||||
"Restore last draft": "Obnovit posledn\u00ed koncept",
|
||||
"Special character": "Speci\u00e1ln\u00ed znak",
|
||||
"Source code": "Zdrojov\u00fd k\u00f3d",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Barva",
|
||||
"Right to left": "Zprava doleva",
|
||||
"Left to right": "Zleva doprava",
|
||||
"Emoticons": "Emotikony",
|
||||
"Robots": "Roboti",
|
||||
"Document properties": "Vlastnosti dokumentu",
|
||||
"Title": "Titulek",
|
||||
"Keywords": "Kl\u00ed\u010dov\u00e1 slova",
|
||||
"Encoding": "K\u00f3dov\u00e1n\u00ed",
|
||||
"Description": "Popis",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Na celou obrazovku",
|
||||
"Horizontal line": "Vodorovn\u00e1 \u010d\u00e1ra",
|
||||
"Horizontal space": "Horizont\u00e1ln\u00ed mezera",
|
||||
"Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek",
|
||||
"General": "Obecn\u00e9",
|
||||
"Advanced": "Pokro\u010dil\u00e9",
|
||||
"Source": "URL",
|
||||
"Border": "R\u00e1me\u010dek",
|
||||
"Constrain proportions": "Zachovat proporce",
|
||||
"Vertical space": "Vertik\u00e1ln\u00ed mezera",
|
||||
"Image description": "Popis obr\u00e1zku",
|
||||
"Style": "Styl",
|
||||
"Dimensions": "Rozm\u011bry",
|
||||
"Insert image": "Vlo\u017eit obr\u00e1zek",
|
||||
"Zoom in": "P\u0159ibl\u00ed\u017eit",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Zp\u011bt",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "P\u0159evr\u00e1tit vodorovn\u011b",
|
||||
"Resize": "Zm\u011bnit velikost",
|
||||
"Sharpen": "Ostrost",
|
||||
"Zoom out": "Odd\u00e1lit",
|
||||
"Image options": "Vlastnosti obr\u00e1zku",
|
||||
"Apply": "Pou\u017e\u00edt",
|
||||
"Brightness": "Jas",
|
||||
"Rotate clockwise": "Oto\u010dit doprava",
|
||||
"Rotate counterclockwise": "Oto\u010dit doleva",
|
||||
"Edit image": "Upravit obr\u00e1zek",
|
||||
"Color levels": "\u00darovn\u011b barev",
|
||||
"Crop": "O\u0159\u00edznout",
|
||||
"Orientation": "Transformovat",
|
||||
"Flip vertically": "P\u0159evr\u00e1tit svisle",
|
||||
"Invert": "Invertovat",
|
||||
"Insert date\/time": "Vlo\u017eit datum \/ \u010das",
|
||||
"Remove link": "Odstranit odkaz",
|
||||
"Url": "URL",
|
||||
"Text to display": "Text k zobrazen\u00ed",
|
||||
"Anchors": "Kotvy",
|
||||
"Insert link": "Vlo\u017eit odkaz",
|
||||
"New window": "Nov\u00e9 okno",
|
||||
"None": "\u017d\u00e1dn\u00e9",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?",
|
||||
"Target": "C\u00edl",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?",
|
||||
"Insert\/edit link": "Vlo\u017eit \/ upravit odkaz",
|
||||
"Insert\/edit video": "Vlo\u017eit \/ upravit video",
|
||||
"Poster": "N\u00e1hled",
|
||||
"Alternative source": "Alternativn\u00ed zdroj",
|
||||
"Paste your embed code below:": "Vlo\u017ete k\u00f3d pro vlo\u017een\u00ed n\u00ed\u017ee:",
|
||||
"Insert video": "Vlo\u017eit video",
|
||||
"Embed": "Vlo\u017eit",
|
||||
"Nonbreaking space": "Pevn\u00e1 mezera",
|
||||
"Page break": "Konec str\u00e1nky",
|
||||
"Paste as text": "Vlo\u017eit jako \u010dist\u00fd text",
|
||||
"Preview": "N\u00e1hled",
|
||||
"Print": "Tisk",
|
||||
"Save": "Ulo\u017eit",
|
||||
"Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.",
|
||||
"Replace": "Nahradit",
|
||||
"Next": "Dal\u0161\u00ed",
|
||||
"Whole words": "Pouze cel\u00e1 slova",
|
||||
"Find and replace": "Naj\u00edt a nahradit",
|
||||
"Replace with": "Nahradit za",
|
||||
"Find": "Naj\u00edt",
|
||||
"Replace all": "Nahradit v\u0161e",
|
||||
"Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena",
|
||||
"Prev": "P\u0159edchoz\u00ed",
|
||||
"Spellcheck": "Kontrola pravopisu",
|
||||
"Finish": "Ukon\u010dit",
|
||||
"Ignore all": "Ignorovat v\u0161e",
|
||||
"Ignore": "Ignorovat",
|
||||
"Add to Dictionary": "P\u0159idat do slovn\u00edku",
|
||||
"Insert row before": "Vlo\u017eit \u0159\u00e1dek nad",
|
||||
"Rows": "\u0158\u00e1dek",
|
||||
"Height": "V\u00fd\u0161ka",
|
||||
"Paste row after": "Vlo\u017eit \u0159\u00e1dek pod",
|
||||
"Alignment": "Zarovn\u00e1n\u00ed",
|
||||
"Border color": "Barva r\u00e1me\u010dku",
|
||||
"Column group": "Skupina sloupc\u016f",
|
||||
"Row": "\u0158\u00e1dek",
|
||||
"Insert column before": "Vlo\u017eit sloupec vlevo",
|
||||
"Split cell": "Rozd\u011blit bu\u0148ky",
|
||||
"Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk",
|
||||
"Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk",
|
||||
"Row type": "Typ \u0159\u00e1dku",
|
||||
"Insert table": "Vlo\u017eit tabulku",
|
||||
"Body": "T\u011blo",
|
||||
"Caption": "Nadpis",
|
||||
"Footer": "Pati\u010dka",
|
||||
"Delete row": "Smazat \u0159\u00e1dek",
|
||||
"Paste row before": "Vlo\u017eit \u0159\u00e1dek nad",
|
||||
"Scope": "Rozsah",
|
||||
"Delete table": "Smazat tabulku",
|
||||
"H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
||||
"Top": "Nahoru",
|
||||
"Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka",
|
||||
"Column": "Sloupec",
|
||||
"Row group": "Skupina \u0159\u00e1dk\u016f",
|
||||
"Cell": "Bu\u0148ka",
|
||||
"Middle": "Uprost\u0159ed",
|
||||
"Cell type": "Typ bu\u0148ky",
|
||||
"Copy row": "Kop\u00edrovat \u0159\u00e1dek",
|
||||
"Row properties": "Vlastnosti \u0159\u00e1dku",
|
||||
"Table properties": "Vlastnosti tabulky",
|
||||
"Bottom": "Dol\u016f",
|
||||
"V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
||||
"Header": "Hlavi\u010dka",
|
||||
"Right": "Vpravo",
|
||||
"Insert column after": "Vlo\u017eit sloupec vpravo",
|
||||
"Cols": "Sloupc\u016f",
|
||||
"Insert row after": "Vlo\u017eit \u0159\u00e1dek pod",
|
||||
"Width": "\u0160\u00ed\u0159ka",
|
||||
"Cell properties": "Vlastnosti bu\u0148ky",
|
||||
"Left": "Vlevo",
|
||||
"Cut row": "Vyjmout \u0159\u00e1dek",
|
||||
"Delete column": "Smazat sloupec",
|
||||
"Center": "Na st\u0159ed",
|
||||
"Merge cells": "Slou\u010dit bu\u0148ky",
|
||||
"Insert template": "Vlo\u017eit \u0161ablonu",
|
||||
"Templates": "\u0160ablony",
|
||||
"Background color": "Barva pozad\u00ed",
|
||||
"Custom...": "Vlastn\u00ed...",
|
||||
"Custom color": "Vlastn\u00ed barva",
|
||||
"No color": "Bez barvy",
|
||||
"Text color": "Barva p\u00edsma",
|
||||
"Show blocks": "Uk\u00e1zat bloky",
|
||||
"Show invisible characters": "Zobrazit speci\u00e1ln\u00ed znaky",
|
||||
"Words: {0}": "Po\u010det slov: {0}",
|
||||
"Insert": "Vlo\u017eit",
|
||||
"File": "Soubor",
|
||||
"Edit": "\u00dapravy",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Editor. Stiskn\u011bte ALT-F9 pro menu, ALT-F10 pro n\u00e1strojovou li\u0161tu a ALT-0 pro n\u00e1pov\u011bdu.",
|
||||
"Tools": "N\u00e1stroje",
|
||||
"View": "Zobrazit",
|
||||
"Table": "Tabulka",
|
||||
"Format": "Form\u00e1t"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/cs_CZ.js
Normal file
219
data/web/rc/program/js/tinymce/langs/cs_CZ.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('cs_CZ',{
|
||||
"Cut": "Vyjmout",
|
||||
"Heading 5": "Nadpis 5",
|
||||
"Header 2": "Nadpis 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Nadpis 4",
|
||||
"Div": "Div (blok)",
|
||||
"Heading 2": "Nadpis 2",
|
||||
"Paste": "Vlo\u017eit",
|
||||
"Close": "Zav\u0159\u00edt",
|
||||
"Font Family": "Rodina p\u00edsma",
|
||||
"Pre": "Pre (p\u0159edform\u00e1tov\u00e1no)",
|
||||
"Align right": "Vpravo",
|
||||
"New document": "Nov\u00fd dokument",
|
||||
"Blockquote": "Citace",
|
||||
"Numbered list": "\u010c\u00edslov\u00e1n\u00ed",
|
||||
"Heading 1": "Nadpis 1",
|
||||
"Headings": "Nadpisy",
|
||||
"Increase indent": "Zv\u011b\u0161it odsazen\u00ed",
|
||||
"Formats": "Form\u00e1ty",
|
||||
"Headers": "Nadpisy",
|
||||
"Select all": "Vybrat v\u0161e",
|
||||
"Header 3": "Nadpis 3",
|
||||
"Blocks": "Blokov\u00e9 zobrazen\u00ed (block)",
|
||||
"Undo": "Zp\u011bt",
|
||||
"Strikethrough": "P\u0159e\u0161krtnut\u00e9",
|
||||
"Bullet list": "Odr\u00e1\u017eky",
|
||||
"Header 1": "Nadpis 1",
|
||||
"Superscript": "Horn\u00ed index",
|
||||
"Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed",
|
||||
"Font Sizes": "Velikost p\u00edsma",
|
||||
"Subscript": "Doln\u00ed index",
|
||||
"Header 6": "Nadpis 6",
|
||||
"Redo": "Znovu",
|
||||
"Paragraph": "Odstavec",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Tu\u010dn\u011b",
|
||||
"Code": "Code (k\u00f3d)",
|
||||
"Italic": "Kurz\u00edva",
|
||||
"Align center": "Na st\u0159ed",
|
||||
"Header 5": "Nadpis 5",
|
||||
"Heading 6": "Nadpis 6",
|
||||
"Heading 3": "Nadpis 3",
|
||||
"Decrease indent": "Zmen\u0161it odsazen\u00ed",
|
||||
"Header 4": "Nadpis 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.",
|
||||
"Underline": "Podtr\u017een\u00e9",
|
||||
"Cancel": "Zru\u0161it",
|
||||
"Justify": "Zarovnat do bloku",
|
||||
"Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)",
|
||||
"Copy": "Kop\u00edrovat",
|
||||
"Align left": "Vlevo",
|
||||
"Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky",
|
||||
"Lower Greek": "\u0158eck\u00e1 p\u00edsmena",
|
||||
"Square": "\u010ctvere\u010dek",
|
||||
"Default": "V\u00fdchoz\u00ed",
|
||||
"Lower Alpha": "Mal\u00e1 p\u00edsmena",
|
||||
"Circle": "Kole\u010dko",
|
||||
"Disc": "Punt\u00edk",
|
||||
"Upper Alpha": "Velk\u00e1 p\u00edsmena",
|
||||
"Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice",
|
||||
"Lower Roman": "Mal\u00e9 \u0159\u00edmsl\u00e9 \u010d\u00edslice",
|
||||
"Name": "N\u00e1zev",
|
||||
"Anchor": "Kotva",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?",
|
||||
"Restore last draft": "Obnovit posledn\u00ed koncept.",
|
||||
"Special character": "Speci\u00e1ln\u00ed znak",
|
||||
"Source code": "Zdrojov\u00fd k\u00f3d",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Barva",
|
||||
"Right to left": "Zprava doleva",
|
||||
"Left to right": "Zleva doprava",
|
||||
"Emoticons": "Emotikony",
|
||||
"Robots": "Roboti",
|
||||
"Document properties": "Vlastnosti dokumentu",
|
||||
"Title": "Titulek",
|
||||
"Keywords": "Kl\u00ed\u010dov\u00e1 slova",
|
||||
"Encoding": "K\u00f3dov\u00e1n\u00ed",
|
||||
"Description": "Popis",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Celk\u00e1 obrazovka",
|
||||
"Horizontal line": "Vodorovn\u00e1 linka",
|
||||
"Horizontal space": "Horizont\u00e1ln\u00ed mezera",
|
||||
"Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek",
|
||||
"General": "Obecn\u00e9",
|
||||
"Advanced": "Pokro\u010dil\u00e9",
|
||||
"Source": "URL",
|
||||
"Border": "R\u00e1me\u010dek",
|
||||
"Constrain proportions": "Zachovat proporce",
|
||||
"Vertical space": "Vertik\u00e1ln\u00ed mezera",
|
||||
"Image description": "Popis obr\u00e1zku",
|
||||
"Style": "Styl",
|
||||
"Dimensions": "Rozm\u011bry",
|
||||
"Insert image": "Vlo\u017eit obr\u00e1zek",
|
||||
"Zoom in": "P\u0159ibl\u00ed\u017eit",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Zp\u011bt",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "P\u0159evr\u00e1tit vodorovn\u011b",
|
||||
"Resize": "Zm\u011bnit velikost",
|
||||
"Sharpen": "Ostrost",
|
||||
"Zoom out": "Odd\u00e1lit",
|
||||
"Image options": "Vlastnosti obr\u00e1zku",
|
||||
"Apply": "Pou\u017e\u00edt",
|
||||
"Brightness": "Jas",
|
||||
"Rotate clockwise": "Oto\u010dit doprava",
|
||||
"Rotate counterclockwise": "Oto\u010dit doleva",
|
||||
"Edit image": "Upravit obr\u00e1zek",
|
||||
"Color levels": "\u00darovn\u011b barev",
|
||||
"Crop": "O\u0159\u00edznout",
|
||||
"Orientation": "Orientace",
|
||||
"Flip vertically": "P\u0159evr\u00e1tit svisle",
|
||||
"Invert": "Invertovat",
|
||||
"Insert date\/time": "Vlo\u017eit datum \/ \u010das",
|
||||
"Remove link": "Odstranit odkaz",
|
||||
"Url": "URL",
|
||||
"Text to display": "Text odkazu",
|
||||
"Anchors": "Kotvy",
|
||||
"Insert link": "Vlo\u017eit odkaz",
|
||||
"New window": "Nov\u00e9 okno",
|
||||
"None": "\u017d\u00e1dn\u00fd",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?",
|
||||
"Target": "C\u00edl",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?",
|
||||
"Insert\/edit link": "Vlo\u017eit \/ upravit odkaz",
|
||||
"Insert\/edit video": "Vlo\u017eit \/ upravit video",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternativn\u00ed zdroj",
|
||||
"Paste your embed code below:": "Vlo\u017ete k\u00f3d pro vlo\u017een\u00ed",
|
||||
"Insert video": "Vlo\u017eit video",
|
||||
"Embed": "Vlo\u017een\u00fd",
|
||||
"Nonbreaking space": "Pevn\u00e1 mezera",
|
||||
"Page break": "Konec str\u00e1nky",
|
||||
"Paste as text": "Vlo\u017eit jako \u010dist\u00fd text",
|
||||
"Preview": "N\u00e1hled",
|
||||
"Print": "Tisk",
|
||||
"Save": "Ulo\u017eit",
|
||||
"Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.",
|
||||
"Replace": "Nahradit",
|
||||
"Next": "Dal\u0161\u00ed",
|
||||
"Whole words": "Pouze cel\u00e1 slova",
|
||||
"Find and replace": "Naj\u00edt a nahradit",
|
||||
"Replace with": "Nahradit za",
|
||||
"Find": "Naj\u00edt",
|
||||
"Replace all": "Nahradit v\u0161e",
|
||||
"Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena",
|
||||
"Prev": "P\u0159edchoz\u00ed",
|
||||
"Spellcheck": "Kontrola pravopisu",
|
||||
"Finish": "Dokon\u010dit",
|
||||
"Ignore all": "Ignorovat v\u0161e",
|
||||
"Ignore": "Ignorovat",
|
||||
"Add to Dictionary": "P\u0159idat do slovn\u00edku",
|
||||
"Insert row before": "Vlo\u017eit \u0159\u00e1dek p\u0159ed",
|
||||
"Rows": "\u0158\u00e1dky",
|
||||
"Height": "V\u00fd\u0161ka",
|
||||
"Paste row after": "Vlo\u017eit \u0159\u00e1dek pod",
|
||||
"Alignment": "Zarovn\u00e1n\u00ed",
|
||||
"Border color": "Barva r\u00e1me\u010dku",
|
||||
"Column group": "Skupina sloupc\u016f",
|
||||
"Row": "\u0158\u00e1dek",
|
||||
"Insert column before": "Vlo\u017eit sloupec vlevo",
|
||||
"Split cell": "Rozd\u011blit bu\u0148ku",
|
||||
"Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk",
|
||||
"Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk",
|
||||
"Row type": "Typ \u0159\u00e1dku",
|
||||
"Insert table": "Vlo\u017eit tabulku",
|
||||
"Body": "T\u011blo",
|
||||
"Caption": "Titulek",
|
||||
"Footer": "Pati\u010dka",
|
||||
"Delete row": "Smazat \u0159\u00e1dek",
|
||||
"Paste row before": "Vlo\u017eit \u0159\u00e1dek nad",
|
||||
"Scope": "Rozsah",
|
||||
"Delete table": "Smazat tabulku",
|
||||
"H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
||||
"Top": "Nahoru",
|
||||
"Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka",
|
||||
"Column": "Sloupec",
|
||||
"Row group": "Skupina \u0159\u00e1dk\u016f",
|
||||
"Cell": "Bu\u0148ka",
|
||||
"Middle": "Na st\u0159ed",
|
||||
"Cell type": "Typ bu\u0148ky",
|
||||
"Copy row": "Kop\u00edrovat \u0159\u00e1dek",
|
||||
"Row properties": "Vlastnosti \u0159\u00e1dku",
|
||||
"Table properties": "Vlastnosti tabulky",
|
||||
"Bottom": "Dol\u016f",
|
||||
"V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
||||
"Header": "Hlavi\u010dka",
|
||||
"Right": "Vpravo",
|
||||
"Insert column after": "Vlo\u017eit sloupec vpravo",
|
||||
"Cols": "Sloupce",
|
||||
"Insert row after": "Vlo\u017eit \u0159\u00e1dek za",
|
||||
"Width": "\u0160\u00ed\u0159ka",
|
||||
"Cell properties": "Vlastnosti bu\u0148ky",
|
||||
"Left": "Vlevo",
|
||||
"Cut row": "Vyjmout \u0159\u00e1dek",
|
||||
"Delete column": "Smazat sloupec",
|
||||
"Center": "Na st\u0159ed",
|
||||
"Merge cells": "Slou\u010dit bu\u0148ky",
|
||||
"Insert template": "Vlo\u017eit ze \u0161ablony",
|
||||
"Templates": "\u0160ablony",
|
||||
"Background color": "Barva pozad\u00ed",
|
||||
"Custom...": "Vlastn\u00ed",
|
||||
"Custom color": "Vlastn\u00ed barva",
|
||||
"No color": "Bez barvy",
|
||||
"Text color": "Barva p\u00edsma",
|
||||
"Show blocks": "Uk\u00e1zat bloky",
|
||||
"Show invisible characters": "Uk\u00e1zat skryt\u00e9 znaky",
|
||||
"Words: {0}": "Slova: {0}",
|
||||
"Insert": "Vlo\u017eit",
|
||||
"File": "Soubor",
|
||||
"Edit": "\u00dapravy",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "RTF dokument. Stikn\u011bte ALT-F9 pro zobrazen\u00ed menu, ALT-F10 pro zobrazen\u00ed n\u00e1strojov\u00e9 li\u0161ty, ALT-0 pro n\u00e1pov\u011bdu.",
|
||||
"Tools": "N\u00e1stroje",
|
||||
"View": "Zobrazit",
|
||||
"Table": "Tabulka",
|
||||
"Format": "Form\u00e1t"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/cy.js
Normal file
219
data/web/rc/program/js/tinymce/langs/cy.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('cy',{
|
||||
"Cut": "Torri",
|
||||
"Heading 5": "Heading 5",
|
||||
"Header 2": "Pennawd 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Dyw eich porwr ddim yn cynnal mynediad uniongyrchol i'r clipfwrdd. Defnyddiwch yr allweddau llwybr brys Ctrl+X\/C\/V yn lle 'ny.",
|
||||
"Heading 4": "Heading 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Heading 2",
|
||||
"Paste": "Gludo",
|
||||
"Close": "Cau",
|
||||
"Font Family": "Teulu Ffont",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Aliniad dde",
|
||||
"New document": "Dogfen newydd",
|
||||
"Blockquote": "Dyfyniad bloc",
|
||||
"Numbered list": "Rhestr rifol",
|
||||
"Heading 1": "Heading 1",
|
||||
"Headings": "Headings",
|
||||
"Increase indent": "Cynyddu mewnoliad",
|
||||
"Formats": "Fformatiau",
|
||||
"Headers": "Penawdau",
|
||||
"Select all": "Dewis popeth",
|
||||
"Header 3": "Pennawd 3",
|
||||
"Blocks": "Blociau",
|
||||
"Undo": "Dadwneud",
|
||||
"Strikethrough": "Llinell drwodd",
|
||||
"Bullet list": "Rhestr fwled",
|
||||
"Header 1": "Pennawd 1",
|
||||
"Superscript": "Uwchsgript",
|
||||
"Clear formatting": "Clirio fformatio",
|
||||
"Font Sizes": "Meintiau Ffont",
|
||||
"Subscript": "Is-sgript",
|
||||
"Header 6": "Pennawd 6",
|
||||
"Redo": "AIlwneud",
|
||||
"Paragraph": "Paragraff",
|
||||
"Ok": "Iawn",
|
||||
"Bold": "Bras",
|
||||
"Code": "Cod",
|
||||
"Italic": "Italig",
|
||||
"Align center": "Aliniad canol",
|
||||
"Header 5": "Pennawd 5",
|
||||
"Heading 6": "Heading 6",
|
||||
"Heading 3": "Heading 3",
|
||||
"Decrease indent": "Lleinhau mewnoliad",
|
||||
"Header 4": "Pennawd 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Mae gludo o fewn modd testun plaen. Caiff y cynnwys ei ludo ar ffurf destun plaen tan gaiff yr opsiwn ei doglo bant.",
|
||||
"Underline": "Tanlinellu",
|
||||
"Cancel": "Canslo",
|
||||
"Justify": "Unioni",
|
||||
"Inline": "Mewn llinell",
|
||||
"Copy": "Cop\u00efo",
|
||||
"Align left": "Aliniad chwith",
|
||||
"Visual aids": "Cymorth gweledol",
|
||||
"Lower Greek": "Groeg Is",
|
||||
"Square": "Sgw\u00e2r",
|
||||
"Default": "Diofyn",
|
||||
"Lower Alpha": "Alffa Is",
|
||||
"Circle": "Cylch",
|
||||
"Disc": "Disg",
|
||||
"Upper Alpha": "Alffa Uwch",
|
||||
"Upper Roman": "Rhufeinig Uwch",
|
||||
"Lower Roman": "Rhufeinig Is",
|
||||
"Name": "Enw",
|
||||
"Anchor": "Angor",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Mae newidiadau heb eu cadw - ydych chi wir am symud i ffwrdd?",
|
||||
"Restore last draft": "Adfer y drafft olaf",
|
||||
"Special character": "Nod arbennig",
|
||||
"Source code": "Cod gwreiddiol",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Color",
|
||||
"Right to left": "Dde i'r chwith",
|
||||
"Left to right": "Chwith i'r dde",
|
||||
"Emoticons": "Gwenogluniau",
|
||||
"Robots": "Robotiaid",
|
||||
"Document properties": "Priodweddau'r ddogfen",
|
||||
"Title": "Teitl",
|
||||
"Keywords": "Allweddeiriau",
|
||||
"Encoding": "Amgodiad",
|
||||
"Description": "Disgrifiad",
|
||||
"Author": "Awdur",
|
||||
"Fullscreen": "Sgrin llawn",
|
||||
"Horizontal line": "Llinell lorweddol",
|
||||
"Horizontal space": "Gofod llorweddol",
|
||||
"Insert\/edit image": "Mewnosod\/golygu delwedd",
|
||||
"General": "Cyffredinol",
|
||||
"Advanced": "Uwch",
|
||||
"Source": "Ffynhonnell",
|
||||
"Border": "Ymyl",
|
||||
"Constrain proportions": "Gorfodi cyfrannedd",
|
||||
"Vertical space": "Gofod fertigol",
|
||||
"Image description": "Disgrifiad y ddelwedd",
|
||||
"Style": "Arddull",
|
||||
"Dimensions": "Dimensiynau",
|
||||
"Insert image": "Mewnosod delwedd",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "Mewnosod dyddiad\/amser",
|
||||
"Remove link": "Tynnu dolen",
|
||||
"Url": "Url",
|
||||
"Text to display": "Testun i'w ddangos",
|
||||
"Anchors": "Angorau",
|
||||
"Insert link": "Mewnosod dolen",
|
||||
"New window": "Ffenest newydd",
|
||||
"None": "Dim",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Mae'n debyg taw dolen allanol yw'r URL hwn. Ydych chi am ychwanegu'r rhagosodiad http:\/\/ ?",
|
||||
"Target": "Targed",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Mae'n debyg taw cyfeiriad ebost yw'r URL hwn. Ydych chi am ychwanegu'r rhagosodiad mailto:?",
|
||||
"Insert\/edit link": "Mewnosod\/golygu dolen",
|
||||
"Insert\/edit video": "Mewnosod\/golygu fideo",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Ffynhonnell amgen",
|
||||
"Paste your embed code below:": "Gludwch eich cod mewnosod isod:",
|
||||
"Insert video": "Mewnosod fideo",
|
||||
"Embed": "Mewnosod",
|
||||
"Nonbreaking space": "Bwlch heb dorri",
|
||||
"Page break": "Toriad tudalen",
|
||||
"Paste as text": "Gludo fel testun",
|
||||
"Preview": "Rhagolwg",
|
||||
"Print": "Argraffu",
|
||||
"Save": "Cadw",
|
||||
"Could not find the specified string.": "Methu ffeindio'r llinyn hwnnw.",
|
||||
"Replace": "Amnewid",
|
||||
"Next": "Nesaf",
|
||||
"Whole words": "Geiriau cyfan",
|
||||
"Find and replace": "Chwilio ac amnewid",
|
||||
"Replace with": "Amnewid gyda",
|
||||
"Find": "Chwilio",
|
||||
"Replace all": "Amnewid pob",
|
||||
"Match case": "Cydweddu'r un c\u00eas",
|
||||
"Prev": "Cynt",
|
||||
"Spellcheck": "Sillafydd",
|
||||
"Finish": "Gorffen",
|
||||
"Ignore all": "Amwybyddu pob",
|
||||
"Ignore": "Anwybyddu",
|
||||
"Add to Dictionary": "Add to Dictionary",
|
||||
"Insert row before": "Mewnosod rhes cyn",
|
||||
"Rows": "Rhesi",
|
||||
"Height": "Uchder",
|
||||
"Paste row after": "Gludo rhes ar \u00f4l",
|
||||
"Alignment": "Aliniad",
|
||||
"Border color": "Border color",
|
||||
"Column group": "Gr\u0175p colofn",
|
||||
"Row": "Rhes",
|
||||
"Insert column before": "Mewnosod colofn cyn",
|
||||
"Split cell": "Hollti celloedd",
|
||||
"Cell padding": "Padio cell",
|
||||
"Cell spacing": "Bylchiau cell",
|
||||
"Row type": "Math y rhes",
|
||||
"Insert table": "Mewnosod tabl",
|
||||
"Body": "Corff",
|
||||
"Caption": "Pennawd",
|
||||
"Footer": "Troedyn",
|
||||
"Delete row": "Dileu rhes",
|
||||
"Paste row before": "Gludo rhes cyn",
|
||||
"Scope": "Sgop",
|
||||
"Delete table": "Dileu'r tabl",
|
||||
"H Align": "H Align",
|
||||
"Top": "Top",
|
||||
"Header cell": "Cell bennawd",
|
||||
"Column": "Colofn",
|
||||
"Row group": "Gr\u0175p rhes",
|
||||
"Cell": "Cell",
|
||||
"Middle": "Middle",
|
||||
"Cell type": "Math y gell",
|
||||
"Copy row": "Cop\u00efo rhes",
|
||||
"Row properties": "Priodweddau rhes",
|
||||
"Table properties": "Priodweddau tabl",
|
||||
"Bottom": "Bottom",
|
||||
"V Align": "V Align",
|
||||
"Header": "Pennyn",
|
||||
"Right": "Dde",
|
||||
"Insert column after": "Mewnosod colofn ar \u00f4l",
|
||||
"Cols": "Col'u",
|
||||
"Insert row after": "Mewnosod rhes ar \u00f4l",
|
||||
"Width": "Lled",
|
||||
"Cell properties": "Priodweddau'r gell",
|
||||
"Left": "Chwith",
|
||||
"Cut row": "Torri rhes",
|
||||
"Delete column": "Dileu colofn",
|
||||
"Center": "Canol",
|
||||
"Merge cells": "Cyfuno celloedd",
|
||||
"Insert template": "Mewnosod templed",
|
||||
"Templates": "Templedi",
|
||||
"Background color": "Lliw cefndir",
|
||||
"Custom...": "Custom...",
|
||||
"Custom color": "Custom color",
|
||||
"No color": "No color",
|
||||
"Text color": "Lliw testun",
|
||||
"Show blocks": "Dangos blociau",
|
||||
"Show invisible characters": "Dangos nodau anweledig",
|
||||
"Words: {0}": "Geiriau: {0}",
|
||||
"Insert": "Mewnosod",
|
||||
"File": "Ffeil",
|
||||
"Edit": "Golygu",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Ardal Testun Uwch. Pwyswch ALT-F9 ar gyfer y ddewislen, Pwyswch ALT-F10 ar gyfer y bar offer. Pwyswch ALT-0 am gymorth",
|
||||
"Tools": "Offer",
|
||||
"View": "Dangos",
|
||||
"Table": "Tabl",
|
||||
"Format": "Fformat"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/da.js
Normal file
219
data/web/rc/program/js/tinymce/langs/da.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('da',{
|
||||
"Cut": "Klip",
|
||||
"Heading 5": "Overskrift 5",
|
||||
"Header 2": "Overskrift 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Din browser underst\u00f8tter ikke direkte adgang til clipboard. Benyt Ctrl+X\/C\/ keybord shortcuts i stedet for.",
|
||||
"Heading 4": "Overskrift 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Overskrift 2",
|
||||
"Paste": "Inds\u00e6t",
|
||||
"Close": "Luk",
|
||||
"Font Family": "Skrifttype",
|
||||
"Pre": "Pre",
|
||||
"Align right": "H\u00f8jrejusteret",
|
||||
"New document": "Nyt dokument",
|
||||
"Blockquote": "Indrykning",
|
||||
"Numbered list": "Nummerering",
|
||||
"Heading 1": "Overskrift 1",
|
||||
"Headings": "Overskrifter",
|
||||
"Increase indent": "For\u00f8g indrykning",
|
||||
"Formats": "Formater",
|
||||
"Headers": "Overskrifter",
|
||||
"Select all": "V\u00e6lg alle",
|
||||
"Header 3": "Overskrift 3",
|
||||
"Blocks": "Blokke",
|
||||
"Undo": "Fortryd",
|
||||
"Strikethrough": "Gennemstreg",
|
||||
"Bullet list": "Punkt tegn",
|
||||
"Header 1": "Overskrift 1",
|
||||
"Superscript": "H\u00e6vet",
|
||||
"Clear formatting": "Nulstil formattering",
|
||||
"Font Sizes": "Skriftst\u00f8rrelse",
|
||||
"Subscript": "S\u00e6nket",
|
||||
"Header 6": "Overskrift 6",
|
||||
"Redo": "Genopret",
|
||||
"Paragraph": "S\u00e6tning",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Fed",
|
||||
"Code": "Code",
|
||||
"Italic": "Kursiv",
|
||||
"Align center": "Centreret",
|
||||
"Header 5": "Overskrift 5",
|
||||
"Heading 6": "Overskrift 6",
|
||||
"Heading 3": "Overskrift 3",
|
||||
"Decrease indent": "Formindsk indrykning",
|
||||
"Header 4": "Overskrift 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "S\u00e6t ind er indstillet til at inds\u00e6tte som ren tekst. Indhold bliver nu indsat uden formatering indtil du \u00e6ndrer indstillingen.",
|
||||
"Underline": "Understreg",
|
||||
"Cancel": "Fortryd",
|
||||
"Justify": "Justering",
|
||||
"Inline": "Inline",
|
||||
"Copy": "Kopier",
|
||||
"Align left": "Venstrejusteret",
|
||||
"Visual aids": "Visuel hj\u00e6lp",
|
||||
"Lower Greek": "Lower Gr\u00e6sk",
|
||||
"Square": "Kvadrat",
|
||||
"Default": "Standard",
|
||||
"Lower Alpha": "Lower Alpha",
|
||||
"Circle": "Cirkel",
|
||||
"Disc": "Disk",
|
||||
"Upper Alpha": "Upper Alpha",
|
||||
"Upper Roman": "Upper Roman",
|
||||
"Lower Roman": "Lower Roman",
|
||||
"Name": "Navn",
|
||||
"Anchor": "Anchor",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Du har ikke gemte \u00e6ndringer. Er du sikker p\u00e5 at du vil forts\u00e6tte?",
|
||||
"Restore last draft": "Genopret sidste kladde",
|
||||
"Special character": "Specielle tegn",
|
||||
"Source code": "Kildekode",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Farve",
|
||||
"Right to left": "H\u00f8jre til venstre",
|
||||
"Left to right": "Venstre til h\u00f8jre",
|
||||
"Emoticons": "Emot-ikoner",
|
||||
"Robots": "Robotter",
|
||||
"Document properties": "Dokument egenskaber",
|
||||
"Title": "Titel",
|
||||
"Keywords": "S\u00f8geord",
|
||||
"Encoding": "Kodning",
|
||||
"Description": "Beskrivelse",
|
||||
"Author": "Forfatter",
|
||||
"Fullscreen": "Fuldsk\u00e6rm",
|
||||
"Horizontal line": "Vandret linie",
|
||||
"Horizontal space": "Vandret afstand",
|
||||
"Insert\/edit image": "Inds\u00e6t\/ret billede",
|
||||
"General": "Generet",
|
||||
"Advanced": "Avanceret",
|
||||
"Source": "Kilde",
|
||||
"Border": "Kant",
|
||||
"Constrain proportions": "Behold propertioner",
|
||||
"Vertical space": "Lodret afstand",
|
||||
"Image description": "Billede beskrivelse",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Dimensioner",
|
||||
"Insert image": "Inds\u00e6t billede",
|
||||
"Zoom in": "Zoom ind",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Tilbage",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horisontalt",
|
||||
"Resize": "Skaler",
|
||||
"Sharpen": "G\u00f8r skarpere",
|
||||
"Zoom out": "Zoom ud",
|
||||
"Image options": "Billede indstillinger",
|
||||
"Apply": "Anvend",
|
||||
"Brightness": "Lysstyrke",
|
||||
"Rotate clockwise": "Drej med urets retning",
|
||||
"Rotate counterclockwise": "Drej modsat urets retning",
|
||||
"Edit image": "Rediger billede",
|
||||
"Color levels": "Farve niveauer",
|
||||
"Crop": "Besk\u00e6r",
|
||||
"Orientation": "Retning",
|
||||
"Flip vertically": "Flip vertikalt",
|
||||
"Invert": "Inverter",
|
||||
"Insert date\/time": "Inds\u00e6t dato\/klokkeslet",
|
||||
"Remove link": "Fjern link",
|
||||
"Url": "Url",
|
||||
"Text to display": "Vis tekst",
|
||||
"Anchors": "Ankre",
|
||||
"Insert link": "Inds\u00e6t link",
|
||||
"New window": "Nyt vindue",
|
||||
"None": "Ingen",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URLen som du angav ser ud til at v\u00e6re et eksternt link. \u00d8nsker du at tilf\u00f8je det kr\u00e6vede prefiks http:\/\/ ?",
|
||||
"Target": "Target",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URLen som du angav ser ud til at v\u00e6re en email adresse. \u00d8nsker du at tilf\u00f8je det kr\u00e6vede prefiks mailto: ?",
|
||||
"Insert\/edit link": "Inds\u00e6t\/ret link",
|
||||
"Insert\/edit video": "Inds\u00e6t\/ret video",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternativ kilde",
|
||||
"Paste your embed code below:": "Inds\u00e6t din embed kode herunder:",
|
||||
"Insert video": "Inds\u00e6t video",
|
||||
"Embed": "Integrer",
|
||||
"Nonbreaking space": "H\u00e5rdt mellemrum",
|
||||
"Page break": "Sideskift",
|
||||
"Paste as text": "Inds\u00e6t som ren tekst",
|
||||
"Preview": "Forh\u00e5ndsvisning",
|
||||
"Print": "Udskriv",
|
||||
"Save": "Gem",
|
||||
"Could not find the specified string.": "Kunne ikke finde s\u00f8getekst",
|
||||
"Replace": "Erstat",
|
||||
"Next": "N\u00e6ste",
|
||||
"Whole words": "Hele ord",
|
||||
"Find and replace": "Find og erstat",
|
||||
"Replace with": "Erstat med",
|
||||
"Find": "Find",
|
||||
"Replace all": "Erstat alt",
|
||||
"Match case": "STORE og sm\u00e5 bogstaver",
|
||||
"Prev": "Forrige",
|
||||
"Spellcheck": "Stavekontrol",
|
||||
"Finish": "F\u00e6rdig",
|
||||
"Ignore all": "Ignorer alt",
|
||||
"Ignore": "Ignorer",
|
||||
"Add to Dictionary": "Tilf\u00f8j til ordbog",
|
||||
"Insert row before": "Inds\u00e6t r\u00e6kke f\u00f8r",
|
||||
"Rows": "R\u00e6kker",
|
||||
"Height": "H\u00f8jde",
|
||||
"Paste row after": "Inds\u00e6t r\u00e6kke efter",
|
||||
"Alignment": "Tilpasning",
|
||||
"Border color": "Kant farve",
|
||||
"Column group": "Kolonne gruppe",
|
||||
"Row": "R\u00e6kke",
|
||||
"Insert column before": "Inds\u00e6t kolonne f\u00f8r",
|
||||
"Split cell": "Split celle",
|
||||
"Cell padding": "Celle padding",
|
||||
"Cell spacing": "Celle afstand",
|
||||
"Row type": "R\u00e6kke type",
|
||||
"Insert table": "Inds\u00e6t tabel",
|
||||
"Body": "Krop",
|
||||
"Caption": "Tekst",
|
||||
"Footer": "Sidefod",
|
||||
"Delete row": "Slet r\u00e6kke",
|
||||
"Paste row before": "Inds\u00e6t r\u00e6kke f\u00f8r",
|
||||
"Scope": "Anvendelsesomr\u00e5de",
|
||||
"Delete table": "Slet tabel",
|
||||
"H Align": "H juster",
|
||||
"Top": "Top",
|
||||
"Header cell": "Sidehoved celle",
|
||||
"Column": "Kolonne",
|
||||
"Row group": "R\u00e6kke gruppe",
|
||||
"Cell": "Celle",
|
||||
"Middle": "Midt",
|
||||
"Cell type": "Celle type",
|
||||
"Copy row": "Kopier r\u00e6kke",
|
||||
"Row properties": "R\u00e6kke egenskaber",
|
||||
"Table properties": "Tabel egenskaber",
|
||||
"Bottom": "Bund",
|
||||
"V Align": "V juster",
|
||||
"Header": "Sidehoved",
|
||||
"Right": "H\u00f8jre",
|
||||
"Insert column after": "Inds\u00e6t kolonne efter",
|
||||
"Cols": "Kolonne",
|
||||
"Insert row after": "Inds\u00e6t r\u00e6kke efter",
|
||||
"Width": "Bredde",
|
||||
"Cell properties": "Celle egenskaber",
|
||||
"Left": "Venstre",
|
||||
"Cut row": "Klip r\u00e6kke",
|
||||
"Delete column": "Slet kolonne",
|
||||
"Center": "Centrering",
|
||||
"Merge cells": "Flet celler",
|
||||
"Insert template": "Inds\u00e6t skabelon",
|
||||
"Templates": "Skabeloner",
|
||||
"Background color": "Baggrunds farve",
|
||||
"Custom...": "Brugerdefineret...",
|
||||
"Custom color": "Brugerdefineret farve",
|
||||
"No color": "Ingen farve",
|
||||
"Text color": "Tekst farve",
|
||||
"Show blocks": "Vis klokke",
|
||||
"Show invisible characters": "Vis usynlige tegn",
|
||||
"Words: {0}": "Ord: {0}",
|
||||
"Insert": "Inds\u00e6t",
|
||||
"File": "Fil",
|
||||
"Edit": "Rediger",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text omr\u00e5de. Tryk ALT-F9 for menu. Tryk ALT-F10 for toolbar. Tryk ALT-0 for hj\u00e6lp",
|
||||
"Tools": "V\u00e6rkt\u00f8j",
|
||||
"View": "Vis",
|
||||
"Table": "Tabel",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/de.js
Normal file
219
data/web/rc/program/js/tinymce/langs/de.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('de',{
|
||||
"Cut": "Ausschneiden",
|
||||
"Heading 5": "\u00dcberschrift 5",
|
||||
"Header 2": "\u00dcberschrift 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Ihr Browser unterst\u00fctzt leider keinen direkten Zugriff auf die Zwischenablage. Bitte benutzen Sie die Strg + X \/ C \/ V Tastenkombinationen.",
|
||||
"Heading 4": "\u00dcberschrift 4",
|
||||
"Div": "Textblock",
|
||||
"Heading 2": "\u00dcberschrift 2",
|
||||
"Paste": "Einf\u00fcgen",
|
||||
"Close": "Schlie\u00dfen",
|
||||
"Font Family": "Schriftart",
|
||||
"Pre": "Vorformatierter Text",
|
||||
"Align right": "Rechtsb\u00fcndig ausrichten",
|
||||
"New document": "Neues Dokument",
|
||||
"Blockquote": "Zitat",
|
||||
"Numbered list": "Nummerierte Liste",
|
||||
"Heading 1": "\u00dcberschrift 1",
|
||||
"Headings": "\u00dcberschriften",
|
||||
"Increase indent": "Einzug vergr\u00f6\u00dfern",
|
||||
"Formats": "Formate",
|
||||
"Headers": "\u00dcberschriften",
|
||||
"Select all": "Alles ausw\u00e4hlen",
|
||||
"Header 3": "\u00dcberschrift 3",
|
||||
"Blocks": "Absatzformate",
|
||||
"Undo": "R\u00fcckg\u00e4ngig",
|
||||
"Strikethrough": "Durchgestrichen",
|
||||
"Bullet list": "Aufz\u00e4hlung",
|
||||
"Header 1": "\u00dcberschrift 1",
|
||||
"Superscript": "Hochgestellt",
|
||||
"Clear formatting": "Formatierung entfernen",
|
||||
"Font Sizes": "Schriftgr\u00f6\u00dfe",
|
||||
"Subscript": "Tiefgestellt",
|
||||
"Header 6": "\u00dcberschrift 6",
|
||||
"Redo": "Wiederholen",
|
||||
"Paragraph": "Absatz",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Fett",
|
||||
"Code": "Quelltext",
|
||||
"Italic": "Kursiv",
|
||||
"Align center": "Zentriert ausrichten",
|
||||
"Header 5": "\u00dcberschrift 5",
|
||||
"Heading 6": "\u00dcberschrift 6",
|
||||
"Heading 3": "\u00dcberschrift 3",
|
||||
"Decrease indent": "Einzug verkleinern",
|
||||
"Header 4": "\u00dcberschrift 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\u00fcgen ist nun im einfachen Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\u00fcgt, bis Sie diese Einstellung wieder ausschalten!",
|
||||
"Underline": "Unterstrichen",
|
||||
"Cancel": "Abbrechen",
|
||||
"Justify": "Blocksatz",
|
||||
"Inline": "Zeichenformate",
|
||||
"Copy": "Kopieren",
|
||||
"Align left": "Linksb\u00fcndig ausrichten",
|
||||
"Visual aids": "Visuelle Hilfen",
|
||||
"Lower Greek": "Griechische Kleinbuchstaben",
|
||||
"Square": "Quadrat",
|
||||
"Default": "Standard",
|
||||
"Lower Alpha": "Kleinbuchstaben",
|
||||
"Circle": "Kreis",
|
||||
"Disc": "Punkt",
|
||||
"Upper Alpha": "Gro\u00dfbuchstaben",
|
||||
"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)",
|
||||
"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)",
|
||||
"Name": "Name",
|
||||
"Anchor": "Textmarke",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Die \u00c4nderungen wurden noch nicht gespeichert, sind Sie sicher, dass Sie diese Seite verlassen wollen?",
|
||||
"Restore last draft": "Letzten Entwurf wiederherstellen",
|
||||
"Special character": "Sonderzeichen",
|
||||
"Source code": "Quelltext",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Farbe",
|
||||
"Right to left": "Von rechts nach links",
|
||||
"Left to right": "Von links nach rechts",
|
||||
"Emoticons": "Emoticons",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Dokumenteigenschaften",
|
||||
"Title": "Titel",
|
||||
"Keywords": "Sch\u00fcsselw\u00f6rter",
|
||||
"Encoding": "Zeichenkodierung",
|
||||
"Description": "Beschreibung",
|
||||
"Author": "Verfasser",
|
||||
"Fullscreen": "Vollbild",
|
||||
"Horizontal line": "Horizontale Linie",
|
||||
"Horizontal space": "Horizontaler Abstand",
|
||||
"Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten",
|
||||
"General": "Allgemein",
|
||||
"Advanced": "Erweitert",
|
||||
"Source": "Quelle",
|
||||
"Border": "Rahmen",
|
||||
"Constrain proportions": "Seitenverh\u00e4ltnis beibehalten",
|
||||
"Vertical space": "Vertikaler Abstand",
|
||||
"Image description": "Bildbeschreibung",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Abmessungen",
|
||||
"Insert image": "Bild einf\u00fcgen",
|
||||
"Zoom in": "Ansicht vergr\u00f6\u00dfern",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Zur\u00fcck",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Horizontal spiegeln",
|
||||
"Resize": "Skalieren",
|
||||
"Sharpen": "Sch\u00e4rfen",
|
||||
"Zoom out": "Ansicht verkleinern",
|
||||
"Image options": "Bildeigenschaften",
|
||||
"Apply": "Anwenden",
|
||||
"Brightness": "Helligkeit",
|
||||
"Rotate clockwise": "Im Uhrzeigersinn drehen",
|
||||
"Rotate counterclockwise": "Gegen den Uhrzeigersinn drehen",
|
||||
"Edit image": "Bild bearbeiten",
|
||||
"Color levels": "Farbwerte",
|
||||
"Crop": "Bescheiden",
|
||||
"Orientation": "Ausrichtung",
|
||||
"Flip vertically": "Vertikal spiegeln",
|
||||
"Invert": "Invertieren",
|
||||
"Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ",
|
||||
"Remove link": "Link entfernen",
|
||||
"Url": "URL",
|
||||
"Text to display": "Anzuzeigender Text",
|
||||
"Anchors": "Textmarken",
|
||||
"Insert link": "Link einf\u00fcgen",
|
||||
"New window": "Neues Fenster",
|
||||
"None": "Keine",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?",
|
||||
"Target": "Ziel",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?",
|
||||
"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten",
|
||||
"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternative Quelle",
|
||||
"Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:",
|
||||
"Insert video": "Video einf\u00fcgen",
|
||||
"Embed": "Einbetten",
|
||||
"Nonbreaking space": "Gesch\u00fctztes Leerzeichen",
|
||||
"Page break": "Seitenumbruch",
|
||||
"Paste as text": "Als Text einf\u00fcgen",
|
||||
"Preview": "Vorschau",
|
||||
"Print": "Drucken",
|
||||
"Save": "Speichern",
|
||||
"Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.",
|
||||
"Replace": "Ersetzen",
|
||||
"Next": "Weiter",
|
||||
"Whole words": "Nur ganze W\u00f6rter",
|
||||
"Find and replace": "Suchen und ersetzen",
|
||||
"Replace with": "Ersetzen durch",
|
||||
"Find": "Suchen",
|
||||
"Replace all": "Alles ersetzen",
|
||||
"Match case": "Gro\u00df-\/Kleinschreibung beachten",
|
||||
"Prev": "Zur\u00fcck",
|
||||
"Spellcheck": "Rechtschreibpr\u00fcfung",
|
||||
"Finish": "Ende",
|
||||
"Ignore all": "Alles Ignorieren",
|
||||
"Ignore": "Ignorieren",
|
||||
"Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen",
|
||||
"Insert row before": "Neue Zeile davor einf\u00fcgen ",
|
||||
"Rows": "Zeilen",
|
||||
"Height": "H\u00f6he",
|
||||
"Paste row after": "Zeile danach einf\u00fcgen",
|
||||
"Alignment": "Ausrichtung",
|
||||
"Border color": "Rahmenfarbe",
|
||||
"Column group": "Spaltengruppe",
|
||||
"Row": "Zeile",
|
||||
"Insert column before": "Neue Spalte davor einf\u00fcgen",
|
||||
"Split cell": "Zelle aufteilen",
|
||||
"Cell padding": "Zelleninnenabstand",
|
||||
"Cell spacing": "Zellenabstand",
|
||||
"Row type": "Zeilentyp",
|
||||
"Insert table": "Tabelle einf\u00fcgen",
|
||||
"Body": "Inhalt",
|
||||
"Caption": "Beschriftung",
|
||||
"Footer": "Fu\u00dfzeile",
|
||||
"Delete row": "Zeile l\u00f6schen",
|
||||
"Paste row before": "Zeile davor einf\u00fcgen",
|
||||
"Scope": "G\u00fcltigkeitsbereich",
|
||||
"Delete table": "Tabelle l\u00f6schen",
|
||||
"H Align": "Horizontale Ausrichtung",
|
||||
"Top": "Oben",
|
||||
"Header cell": "Kopfzelle",
|
||||
"Column": "Spalte",
|
||||
"Row group": "Zeilengruppe",
|
||||
"Cell": "Zelle",
|
||||
"Middle": "Mitte",
|
||||
"Cell type": "Zellentyp",
|
||||
"Copy row": "Zeile kopieren",
|
||||
"Row properties": "Zeileneigenschaften",
|
||||
"Table properties": "Tabelleneigenschaften",
|
||||
"Bottom": "Unten",
|
||||
"V Align": "Vertikale Ausrichtung",
|
||||
"Header": "Kopfzeile",
|
||||
"Right": "Rechtsb\u00fcndig",
|
||||
"Insert column after": "Neue Spalte danach einf\u00fcgen",
|
||||
"Cols": "Spalten",
|
||||
"Insert row after": "Neue Zeile danach einf\u00fcgen",
|
||||
"Width": "Breite",
|
||||
"Cell properties": "Zelleneigenschaften",
|
||||
"Left": "Linksb\u00fcndig",
|
||||
"Cut row": "Zeile ausschneiden",
|
||||
"Delete column": "Spalte l\u00f6schen",
|
||||
"Center": "Zentriert",
|
||||
"Merge cells": "Zellen verbinden",
|
||||
"Insert template": "Vorlage einf\u00fcgen ",
|
||||
"Templates": "Vorlagen",
|
||||
"Background color": "Hintergrundfarbe",
|
||||
"Custom...": "Benutzerdefiniert...",
|
||||
"Custom color": "Benutzerdefinierte Farbe",
|
||||
"No color": "Keine Farbe",
|
||||
"Text color": "Textfarbe",
|
||||
"Show blocks": " Bl\u00f6cke anzeigen",
|
||||
"Show invisible characters": "Unsichtbare Zeichen anzeigen",
|
||||
"Words: {0}": "W\u00f6rter: {0}",
|
||||
"Insert": "Einf\u00fcgen",
|
||||
"File": "Datei",
|
||||
"Edit": "Bearbeiten",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe",
|
||||
"Tools": "Werkzeuge",
|
||||
"View": "Ansicht",
|
||||
"Table": "Tabelle",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/de_AT.js
Normal file
219
data/web/rc/program/js/tinymce/langs/de_AT.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('de_AT',{
|
||||
"Cut": "Ausschneiden",
|
||||
"Heading 5": "\u00dcberschrift 5",
|
||||
"Header 2": "\u00dcberschrift 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Ihr Browser unterst\u00fctzt keinen direkten Zugriff auf die Zwischenablage. Bitte nutzen Sie die Tastaturk\u00fcrzel Strg+X\/C\/V stattdessen.",
|
||||
"Heading 4": "\u00dcberschrift 4",
|
||||
"Div": "Block (div)",
|
||||
"Heading 2": "\u00dcberschrift 2",
|
||||
"Paste": "Einf\u00fcgen",
|
||||
"Close": "Schlie\u00dfen",
|
||||
"Font Family": "Schriftart",
|
||||
"Pre": "Vorformatierter Text (pre)",
|
||||
"Align right": "Rechtsb\u00fcndig",
|
||||
"New document": "Neues Dokument",
|
||||
"Blockquote": "Zitat (blockquote)",
|
||||
"Numbered list": "Sortierte Liste",
|
||||
"Heading 1": "\u00dcberschrift 1",
|
||||
"Headings": "\u00dcberschriften",
|
||||
"Increase indent": "Einr\u00fccken",
|
||||
"Formats": "Formate",
|
||||
"Headers": "\u00dcberschriften",
|
||||
"Select all": "Alles ausw\u00e4hlen",
|
||||
"Header 3": "\u00dcberschrift 3",
|
||||
"Blocks": "Bl\u00f6cke",
|
||||
"Undo": "R\u00fcckg\u00e4ngig",
|
||||
"Strikethrough": "Durchgestrichen",
|
||||
"Bullet list": "Unsortierte Liste",
|
||||
"Header 1": "\u00dcberschrift 1",
|
||||
"Superscript": "Hochgestellt",
|
||||
"Clear formatting": "Formatierungen zur\u00fccksetzen",
|
||||
"Font Sizes": "Schriftgr\u00f6\u00dfen",
|
||||
"Subscript": "Tiefgestellt",
|
||||
"Header 6": "\u00dcberschrift 6",
|
||||
"Redo": "Wiederholen",
|
||||
"Paragraph": "Absatz (p)",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Fett",
|
||||
"Code": "Code (code)",
|
||||
"Italic": "Kursiv",
|
||||
"Align center": "Zentriert",
|
||||
"Header 5": "\u00dcberschrift 5",
|
||||
"Heading 6": "\u00dcberschrift 6",
|
||||
"Heading 3": "\u00dcberschrift 3",
|
||||
"Decrease indent": "Ausr\u00fccken",
|
||||
"Header 4": "\u00dcberschrift 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Alle Texte werden nun ohne Formatierung eingef\u00fcgt, bis diese Einstellung wieder ge\u00e4ndert wird.",
|
||||
"Underline": "Unterstrichen",
|
||||
"Cancel": "Abbrechen",
|
||||
"Justify": "Blocksatz",
|
||||
"Inline": "Inline",
|
||||
"Copy": "Kopieren",
|
||||
"Align left": "Linksb\u00fcndig",
|
||||
"Visual aids": "Hilfslinien und unsichtbare Elemente einblenden",
|
||||
"Lower Greek": "Griechische Kleinbuchstaben",
|
||||
"Square": "Quadrat",
|
||||
"Default": "Standard",
|
||||
"Lower Alpha": "Kleinbuchstaben",
|
||||
"Circle": "Kreis",
|
||||
"Disc": "Gef\u00fcllter Kreis",
|
||||
"Upper Alpha": "Gro\u00dfbuchstaben",
|
||||
"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)",
|
||||
"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)",
|
||||
"Name": "Name",
|
||||
"Anchor": "Anker",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Sie haben ungespeicherte \u00c4nderungen. Sind Sie sicher, dass Sie die Seite verlassen wollen?",
|
||||
"Restore last draft": "Letzten Entwurf wiederherstellen.",
|
||||
"Special character": "Sonderzeichen",
|
||||
"Source code": "Quelltext",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Farbe",
|
||||
"Right to left": "Rechts nach links",
|
||||
"Left to right": "Links nach rechts",
|
||||
"Emoticons": "Emoticons",
|
||||
"Robots": "Suchmaschinen",
|
||||
"Document properties": "Dokumenteigenschaften",
|
||||
"Title": "Titel",
|
||||
"Keywords": "Schl\u00fcsselw\u00f6rter",
|
||||
"Encoding": "Enkodierung",
|
||||
"Description": "Beschreibung",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Vollbild",
|
||||
"Horizontal line": "Horizontale Trennlinie",
|
||||
"Horizontal space": "Horizontaler Abstand",
|
||||
"Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten",
|
||||
"General": "Allgemein",
|
||||
"Advanced": "Erweitert",
|
||||
"Source": "Adresse",
|
||||
"Border": "Rahmen",
|
||||
"Constrain proportions": "Seitenverh\u00e4ltnis beibehalten",
|
||||
"Vertical space": "Vertikaler Abstand",
|
||||
"Image description": "Bildbeschreibung",
|
||||
"Style": "Format",
|
||||
"Dimensions": "Ausma\u00dfe",
|
||||
"Insert image": "Bild einf\u00fcgen",
|
||||
"Zoom in": "Einzoomen",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Zur\u00fcck",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Horizontal kippen",
|
||||
"Resize": "Gr\u00f6\u00dfe \u00e4ndern",
|
||||
"Sharpen": "Sch\u00e4rfen",
|
||||
"Zoom out": "Auszoomen",
|
||||
"Image options": "Bildeinstellungen",
|
||||
"Apply": "Anwenden",
|
||||
"Brightness": "Helligkeit",
|
||||
"Rotate clockwise": "Im Uhrzeigersinn drehen",
|
||||
"Rotate counterclockwise": "Gegen den Uhrzeigersinn drehen",
|
||||
"Edit image": "Bild bearbeiten",
|
||||
"Color levels": "Farbwerte",
|
||||
"Crop": "Zuschneiden",
|
||||
"Orientation": "Orientierung",
|
||||
"Flip vertically": "Vertikal kippen",
|
||||
"Invert": "Invertieren",
|
||||
"Insert date\/time": "Zeit\/Datum einf\u00fcgen",
|
||||
"Remove link": "Link entfernen",
|
||||
"Url": "Url",
|
||||
"Text to display": "Angezeigter Text",
|
||||
"Anchors": "Anker",
|
||||
"Insert link": "Link einf\u00fcgen",
|
||||
"New window": "Neues Fenster",
|
||||
"None": "Keine",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Die eingegebene URL scheint eine externe Web-Adresse zu sein. Soll das notwendige \"http:\/\/\"-Pr\u00e4fix hinzugef\u00fcgt werden?",
|
||||
"Target": "Ziel",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Die eingegebene URL scheint eine E-Mail-Adresse zu sein. Soll das notwendige \"mailto:\"-Pr\u00e4fix hinzugef\u00fcgt werden?",
|
||||
"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten",
|
||||
"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternative Quelle",
|
||||
"Paste your embed code below:": "F\u00fcgen unten Sie Ihren Quellcode zum einbetten ein",
|
||||
"Insert video": "Video einf\u00fcgen",
|
||||
"Embed": "Einbetten",
|
||||
"Nonbreaking space": "gesch\u00fctztes Leerzeichen",
|
||||
"Page break": "Seitenumbruch",
|
||||
"Paste as text": "Als Text einf\u00fcgen",
|
||||
"Preview": "Vorschau",
|
||||
"Print": "Drucken",
|
||||
"Save": "Speichern",
|
||||
"Could not find the specified string.": "Keine \u00dcbereinstimmung gefunden",
|
||||
"Replace": "Ersetzen",
|
||||
"Next": "N\u00e4chstes",
|
||||
"Whole words": "Vollst\u00e4ndige W\u00f6rter",
|
||||
"Find and replace": "Suchen und ersetzen",
|
||||
"Replace with": "Ersetzen durch",
|
||||
"Find": "Suchen",
|
||||
"Replace all": "Alle ersetzen",
|
||||
"Match case": "Gro\u00df-\/Kleinschreibung beachten",
|
||||
"Prev": "Vorheriges",
|
||||
"Spellcheck": "Rechtschreibung \u00fcberpr\u00fcfen",
|
||||
"Finish": "Fertig",
|
||||
"Ignore all": "Alle ignorieren",
|
||||
"Ignore": "Ignorieren",
|
||||
"Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen",
|
||||
"Insert row before": "Neue Zeile oberhalb einf\u00fcgen",
|
||||
"Rows": "Zeilen",
|
||||
"Height": "H\u00f6he",
|
||||
"Paste row after": "Zeile unterhalb einf\u00fcgen",
|
||||
"Alignment": "Ausrichtung",
|
||||
"Border color": "Rahmenfarbe",
|
||||
"Column group": "Spaltengruppe",
|
||||
"Row": "Zeile",
|
||||
"Insert column before": "Neue Spalte links einf\u00fcgen",
|
||||
"Split cell": "Verbundene Zellen trennen",
|
||||
"Cell padding": "Abstand innerhalb der Zellen",
|
||||
"Cell spacing": "Zellenabstand",
|
||||
"Row type": "Zeilentyp",
|
||||
"Insert table": "Tabelle einf\u00fcgen",
|
||||
"Body": "Tabellenk\u00f6rper",
|
||||
"Caption": "Beschriftung der Tabelle",
|
||||
"Footer": "Tabellenfu\u00df",
|
||||
"Delete row": "Zeile l\u00f6schen",
|
||||
"Paste row before": "Zeile oberhalb einf\u00fcgen",
|
||||
"Scope": "Geltungsbereich",
|
||||
"Delete table": "Tabelle l\u00f6schen",
|
||||
"H Align": "Ausrichtung H",
|
||||
"Top": "Oben",
|
||||
"Header cell": "\u00dcberschrift",
|
||||
"Column": "Spalte",
|
||||
"Row group": "Zeilengruppe",
|
||||
"Cell": "Zelle",
|
||||
"Middle": "Mitte",
|
||||
"Cell type": "Zellentyp",
|
||||
"Copy row": "Zeile kopieren",
|
||||
"Row properties": "Zeileneigenschaften",
|
||||
"Table properties": "Tabelleneigenschaften",
|
||||
"Bottom": "Unten",
|
||||
"V Align": "Ausrichtung V",
|
||||
"Header": "Tabellen\u00fcberschrift",
|
||||
"Right": "Rechts",
|
||||
"Insert column after": "Neue Spalte rechts einf\u00fcgen",
|
||||
"Cols": "Spalten",
|
||||
"Insert row after": "Neue Zeile unterhalb einf\u00fcgen",
|
||||
"Width": "Breite",
|
||||
"Cell properties": "Zelleneigenschaften",
|
||||
"Left": "Links",
|
||||
"Cut row": "Zeile ausschneiden",
|
||||
"Delete column": "Spalte l\u00f6schen",
|
||||
"Center": "Zentriert",
|
||||
"Merge cells": "Zellen vereinen",
|
||||
"Insert template": "Vorlage einf\u00fcgen",
|
||||
"Templates": "Vorlagen",
|
||||
"Background color": "Hintergrundfarbe",
|
||||
"Custom...": "Benutzerdefiniert...",
|
||||
"Custom color": "Benutzerdefinierte Farbe",
|
||||
"No color": "Keine Farbe",
|
||||
"Text color": "Textfarbe",
|
||||
"Show blocks": "Blockelemente einblenden",
|
||||
"Show invisible characters": "Unsichtbare Zeichen einblenden",
|
||||
"Words: {0}": "W\u00f6rter: {0}",
|
||||
"Insert": "Einf\u00fcgen",
|
||||
"File": "Datei",
|
||||
"Edit": "Bearbeiten",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr die Werkzeugleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe",
|
||||
"Tools": "Extras",
|
||||
"View": "Ansicht",
|
||||
"Table": "Tabelle",
|
||||
"Format": "Format"
|
||||
});
|
||||
230
data/web/rc/program/js/tinymce/langs/el.js
Normal file
230
data/web/rc/program/js/tinymce/langs/el.js
Normal file
@@ -0,0 +1,230 @@
|
||||
tinymce.addI18n('el',{
|
||||
"Cut": "\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae",
|
||||
"Heading 5": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 5",
|
||||
"Header 2": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u039f \u03c0\u03b5\u03c1\u03b9\u03b7\u03b3\u03b7\u03c4\u03ae\u03c2 \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03b9 \u03ac\u03bc\u03b5\u03c3\u03b7 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03c0\u03c1\u03cc\u03c7\u03b5\u03b9\u03c1\u03bf. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03bd\u03c4\u03bf\u03bc\u03b5\u03cd\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5 Ctrl+X\/C\/V.",
|
||||
"Heading 4": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 2",
|
||||
"Paste": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7",
|
||||
"Close": "\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf",
|
||||
"Font Family": "\u0393\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03b4\u03b5\u03be\u03b9\u03ac",
|
||||
"New document": "\u039d\u03ad\u03bf \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf",
|
||||
"Blockquote": "\u03a0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03c0\u03b1\u03c1\u03ac\u03b8\u03b5\u03c3\u03b7\u03c2",
|
||||
"Numbered list": "\u0391\u03c1\u03b9\u03b8\u03bc\u03b7\u03bc\u03ad\u03bd\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1",
|
||||
"Heading 1": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 1",
|
||||
"Headings": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b5\u03c2",
|
||||
"Increase indent": "\u0391\u03cd\u03be\u03b7\u03c3\u03b7 \u03b5\u03c3\u03bf\u03c7\u03ae\u03c2",
|
||||
"Formats": "\u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7",
|
||||
"Headers": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b5\u03c2",
|
||||
"Select all": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03cc\u03bb\u03c9\u03bd",
|
||||
"Header 3": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 3",
|
||||
"Blocks": "\u03a4\u03bc\u03ae\u03bc\u03b1\u03c4\u03b1",
|
||||
"Undo": "\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7",
|
||||
"Strikethrough": "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03ae \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae",
|
||||
"Bullet list": "\u039b\u03af\u03c3\u03c4\u03b1 \u03bc\u03b5 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b5\u03c2",
|
||||
"Header 1": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 1",
|
||||
"Superscript": "\u0395\u03ba\u03b8\u03ad\u03c4\u03b7\u03c2",
|
||||
"Clear formatting": "\u0391\u03c0\u03b1\u03bb\u03bf\u03b9\u03c6\u03ae \u03bc\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2",
|
||||
"Font Sizes": "\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2",
|
||||
"Subscript": "\u0394\u03b5\u03af\u03ba\u03c4\u03b7\u03c2",
|
||||
"Header 6": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 6",
|
||||
"Redo": "\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7",
|
||||
"Paragraph": "\u03a0\u03b1\u03c1\u03ac\u03b3\u03c1\u03b1\u03c6\u03bf\u03c2",
|
||||
"Ok": "\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9",
|
||||
"Bold": "\u0388\u03bd\u03c4\u03bf\u03bd\u03b7",
|
||||
"Code": "\u039a\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2",
|
||||
"Italic": "\u03a0\u03bb\u03ac\u03b3\u03b9\u03b1",
|
||||
"Align center": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03c3\u03c4\u03bf \u03ba\u03ad\u03bd\u03c4\u03c1\u03bf",
|
||||
"Header 5": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 5",
|
||||
"Heading 6": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 6",
|
||||
"Heading 3": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 3",
|
||||
"Decrease indent": "\u039c\u03b5\u03af\u03c9\u03c3\u03b7 \u03b5\u03c3\u03bf\u03c7\u03ae\u03c2",
|
||||
"Header 4": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0397 \u03b5\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03ce\u03c1\u03b1 \u03c3\u03b5 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03c0\u03bb\u03bf\u03cd \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5. \u03a4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1 \u03bc\u03b9\u03b1\u03c2 \u03b5\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7\u03c2 \u03b8\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03b1\u03c0\u03bb\u03cc \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03cc\u03c3\u03bf \u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03c5\u03c4\u03ae \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03bd\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae.",
|
||||
"Underline": "\u03a5\u03c0\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b9\u03c3\u03b7",
|
||||
"Cancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7",
|
||||
"Justify": "\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7",
|
||||
"Inline": "\u0395\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b7",
|
||||
"Copy": "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae",
|
||||
"Align left": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac",
|
||||
"Visual aids": "O\u03c0\u03c4\u03b9\u03ba\u03ac \u03b2\u03bf\u03b7\u03b8\u03ae\u03bc\u03b1\u03c4\u03b1 ",
|
||||
"Lower Greek": "\u03a0\u03b5\u03b6\u03ac \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac",
|
||||
"Square": "\u03a4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03bf",
|
||||
"Default": "\u03a0\u03c1\u03bf\u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf",
|
||||
"Lower Alpha": "\u03a0\u03b5\u03b6\u03ac \u03bb\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ac",
|
||||
"Circle": "\u039a\u03cd\u03ba\u03bb\u03bf\u03c2",
|
||||
"Disc": "\u0394\u03af\u03c3\u03ba\u03bf\u03c2",
|
||||
"Upper Alpha": "\u039a\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03b1 \u03bb\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ac",
|
||||
"Upper Roman": "\u039a\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03b1 \u03c1\u03c9\u03bc\u03b1\u03ca\u03ba\u03ac",
|
||||
"Lower Roman": "\u03a0\u03b5\u03b6\u03ac \u03c1\u03c9\u03bc\u03b1\u03ca\u03ba\u03ac",
|
||||
"Name": "\u038c\u03bd\u03bf\u03bc\u03b1",
|
||||
"Anchor": "\u0391\u03b3\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7",
|
||||
"Id": "Id",
|
||||
"Id needs to be starting with a letter and be followed by letters, numbers, dashes, dots, colons or underscores.": "Id needs to be starting with a letter and be followed by letters, numbers, dashes, dots, colons or underscores.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0388\u03c7\u03b5\u03c4\u03b5 \u03bc\u03b7 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2. \u0395\u03af\u03c3\u03c4\u03b5 \u03b2\u03ad\u03b2\u03b1\u03b9\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c6\u03cd\u03b3\u03b5\u03c4\u03b5 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1;",
|
||||
"Restore last draft": "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5",
|
||||
"Special character": "\u0395\u03b9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b1\u03c2",
|
||||
"Source code": "\u03a0\u03b7\u03b3\u03b1\u03af\u03bf\u03c2 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2",
|
||||
"Language": "Language",
|
||||
"Insert\/Edit code sample": "Insert\/Edit code sample",
|
||||
"B": "\u039c",
|
||||
"R": "\u03ba",
|
||||
"G": "\u03a0",
|
||||
"Color": "\u03a7\u03c1\u03ce\u03bc\u03b1",
|
||||
"Right to left": "\u0391\u03c0\u03cc \u03b4\u03b5\u03be\u03b9\u03ac \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac",
|
||||
"Left to right": "\u0391\u03c0\u03cc \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03b4\u03b5\u03be\u03b9\u03ac",
|
||||
"Emoticons": "\u03a6\u03b1\u03c4\u03c3\u03bf\u03cd\u03bb\u03b5\u03c2",
|
||||
"Robots": "\u03a1\u03bf\u03bc\u03c0\u03cc\u03c4",
|
||||
"Document properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03b5\u03b3\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5",
|
||||
"Title": "\u03a4\u03af\u03c4\u03bb\u03bf\u03c2",
|
||||
"Keywords": "\u039b\u03ad\u03be\u03b5\u03b9\u03c2 \u03ba\u03bb\u03b5\u03b9\u03b4\u03b9\u03ac",
|
||||
"Encoding": "\u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7",
|
||||
"Description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae",
|
||||
"Author": "\u03a3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7\u03c2",
|
||||
"Fullscreen": "\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03bf\u03b8\u03cc\u03bd\u03b7",
|
||||
"Horizontal line": "\u039f\u03c1\u03b9\u03b6\u03cc\u03bd\u03c4\u03b9\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae",
|
||||
"Horizontal space": "\u039f\u03c1\u03b9\u03b6\u03cc\u03bd\u03c4\u03b9\u03bf \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1",
|
||||
"Insert\/edit image": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
|
||||
"General": "\u0393\u03b5\u03bd\u03b9\u03ba\u03ac",
|
||||
"Advanced": "\u0393\u03b9\u03b1 \u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2",
|
||||
"Source": "\u03a0\u03b7\u03b3\u03ae",
|
||||
"Border": "\u03a0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf",
|
||||
"Constrain proportions": "\u03a0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b1\u03bd\u03b1\u03bb\u03bf\u03b3\u03b9\u03ce\u03bd",
|
||||
"Vertical space": "\u039a\u03ac\u03b8\u03b5\u03c4\u03bf \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1",
|
||||
"Image description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
|
||||
"Style": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7",
|
||||
"Dimensions": "\u0394\u03b9\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2",
|
||||
"Insert image": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
|
||||
"Image": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b1",
|
||||
"Zoom in": "\u039c\u03b5\u03b3\u03ad\u03b8\u03c5\u03bd\u03c3\u03b7",
|
||||
"Contrast": "\u0391\u03bd\u03c4\u03af\u03b8\u03b5\u03c3\u03b7",
|
||||
"Back": "\u03a0\u03af\u03c3\u03c9",
|
||||
"Gamma": "\u0393\u03ac\u03bc\u03bc\u03b1",
|
||||
"Flip horizontally": "\u0391\u03bd\u03b1\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03bf\u03c1\u03b9\u03b6\u03bf\u03bd\u03c4\u03af\u03c9\u03c2",
|
||||
"Resize": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c5\u03c2",
|
||||
"Sharpen": "\u038c\u03be\u03c5\u03bd\u03c3\u03b7",
|
||||
"Zoom out": "\u03a3\u03bc\u03af\u03ba\u03c1\u03c5\u03bd\u03c3\u03b7",
|
||||
"Image options": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
|
||||
"Apply": "\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae",
|
||||
"Brightness": "\u03a6\u03c9\u03c4\u03b5\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1",
|
||||
"Rotate clockwise": "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03b4\u03b5\u03be\u03b9\u03cc\u03c3\u03c4\u03c1\u03bf\u03c6\u03b1",
|
||||
"Rotate counterclockwise": "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03cc\u03c3\u03c4\u03c1\u03bf\u03c6\u03b1",
|
||||
"Edit image": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
|
||||
"Color levels": "\u0395\u03c0\u03af\u03c0\u03b5\u03b4\u03b1 \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2",
|
||||
"Crop": "\u03a0\u03b5\u03c1\u03b9\u03ba\u03bf\u03c0\u03ae",
|
||||
"Orientation": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||
"Flip vertically": "\u0391\u03bd\u03b1\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03ba\u03b1\u03b8\u03ad\u03c4\u03c9\u03c2",
|
||||
"Invert": "\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae",
|
||||
"Date\/time": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\/\u03ce\u03c1\u03b1",
|
||||
"Insert date\/time": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2\/\u03ce\u03c1\u03b1\u03c2",
|
||||
"Remove link": "\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5",
|
||||
"Url": "URL",
|
||||
"Text to display": "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03b3\u03b9\u03b1 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7",
|
||||
"Anchors": "\u0386\u03b3\u03ba\u03c5\u03c1\u03b5\u03c2",
|
||||
"Insert link": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5",
|
||||
"Link": "Link",
|
||||
"New window": "\u039d\u03ad\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf",
|
||||
"None": "\u039a\u03b1\u03bc\u03af\u03b1",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0397 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c0\u03bf\u03c5 \u03b5\u03b9\u03c3\u03ac\u03c7\u03b8\u03b7\u03ba\u03b5 \u03c0\u03b9\u03b8\u03b1\u03bd\u03ce\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03c0\u03c1\u03cc\u03b8\u03b7\u03bc\u03b1 http:\/\/;",
|
||||
"Paste or type a link": "Paste or type a link",
|
||||
"Target": "\u03a0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0397 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c0\u03bf\u03c5 \u03b5\u03b9\u03c3\u03ac\u03c7\u03b8\u03b7\u03ba\u03b5 \u03c0\u03b9\u03b8\u03b1\u03bd\u03ce\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03c0\u03c1\u03cc\u03b8\u03b7\u03bc\u03b1 mailto:;",
|
||||
"Insert\/edit link": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5",
|
||||
"Insert\/edit video": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b2\u03af\u03bd\u03c4\u03b5\u03bf",
|
||||
"Media": "Media",
|
||||
"Alternative source": "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03ba\u03c4\u03b9\u03ba\u03ae \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7",
|
||||
"Paste your embed code below:": "\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03b5\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9:",
|
||||
"Insert video": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b2\u03af\u03bd\u03c4\u03b5\u03bf",
|
||||
"Poster": "\u0391\u03c6\u03af\u03c3\u03b1",
|
||||
"Insert\/edit media": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 media",
|
||||
"Embed": "\u0395\u03bd\u03c3\u03c9\u03bc\u03ac\u03c4\u03c9\u03c3\u03b7",
|
||||
"Nonbreaking space": "\u039a\u03b5\u03bd\u03cc \u03c7\u03c9\u03c1\u03af\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bf\u03c0\u03ae",
|
||||
"Page break": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2",
|
||||
"Paste as text": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03c9\u03c2 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf",
|
||||
"Preview": "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7",
|
||||
"Print": "\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7",
|
||||
"Save": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7",
|
||||
"Could not find the specified string.": "\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b1\u03bb\u03c6\u03b1\u03c1\u03b9\u03b8\u03bc\u03b7\u03c4\u03b9\u03ba\u03bf\u03cd.",
|
||||
"Replace": "\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7",
|
||||
"Next": "\u0395\u03c0\u03cc\u03bc.",
|
||||
"Whole words": "\u039f\u03bb\u03cc\u03ba\u03bb\u03b7\u03c1\u03b5\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2",
|
||||
"Find and replace": "\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7",
|
||||
"Replace with": "\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03bc\u03b5",
|
||||
"Find": "\u0395\u03cd\u03c1\u03b5\u03c3\u03b7",
|
||||
"Replace all": "\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd",
|
||||
"Match case": "\u03a4\u03b1\u03af\u03c1\u03b9\u03b1\u03c3\u03bc\u03b1 \u03c0\u03b5\u03b6\u03ce\u03bd\/\u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03bd",
|
||||
"Prev": "\u03a0\u03c1\u03bf\u03b7\u03b3.",
|
||||
"Spellcheck": "\u039f\u03c1\u03b8\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc\u03c2 \u03ad\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 ",
|
||||
"Finish": "\u03a4\u03ad\u03bb\u03bf\u03c2",
|
||||
"Ignore all": "\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03cc\u03bb\u03c9\u03bd",
|
||||
"Ignore": "\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7",
|
||||
"Add to Dictionary": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03bf \u039b\u03b5\u03be\u03b9\u03ba\u03cc",
|
||||
"Insert row before": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03b5\u03c0\u03ac\u03bd\u03c9",
|
||||
"Rows": "\u0393\u03c1\u03b1\u03bc\u03bc\u03ad\u03c2",
|
||||
"Height": "\u038e\u03c8\u03bf\u03c2",
|
||||
"Paste row after": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03ba\u03ac\u03c4\u03c9",
|
||||
"Alignment": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7",
|
||||
"Border color": "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c0\u03bb\u03b1\u03b9\u03c3\u03af\u03bf\u03c5",
|
||||
"Column group": "\u039f\u03bc\u03ac\u03b4\u03b1 \u03c3\u03c4\u03b7\u03bb\u03ce\u03bd",
|
||||
"Row": "\u0393\u03c1\u03b1\u03bc\u03bc\u03ae",
|
||||
"Insert column before": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac",
|
||||
"Split cell": "\u0394\u03b9\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd",
|
||||
"Cell padding": "\u0391\u03bd\u03b1\u03c0\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03ce\u03bd",
|
||||
"Cell spacing": "\u0391\u03c0\u03cc\u03c3\u03c4\u03b1\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03ce\u03bd",
|
||||
"Row type": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2",
|
||||
"Insert table": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c0\u03af\u03bd\u03b1\u03ba\u03b1",
|
||||
"Body": "\u03a3\u03ce\u03bc\u03b1",
|
||||
"Caption": "\u039b\u03b5\u03b6\u03ac\u03bd\u03c4\u03b1",
|
||||
"Footer": "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf",
|
||||
"Delete row": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2",
|
||||
"Paste row before": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03b5\u03c0\u03ac\u03bd\u03c9",
|
||||
"Scope": "\u0388\u03ba\u03c4\u03b1\u03c3\u03b7",
|
||||
"Delete table": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03af\u03bd\u03b1\u03ba\u03b1",
|
||||
"H Align": "\u039f\u03c1. \u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7",
|
||||
"Top": "\u039a\u03bf\u03c1\u03c5\u03c6\u03ae",
|
||||
"Header cell": "\u039a\u03b5\u03bb\u03af-\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1",
|
||||
"Column": "\u03a3\u03c4\u03ae\u03bb\u03b7",
|
||||
"Row group": "\u039f\u03bc\u03ac\u03b4\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ce\u03bd",
|
||||
"Cell": "\u039a\u03b5\u03bb\u03af",
|
||||
"Middle": "\u039c\u03ad\u03c3\u03b7",
|
||||
"Cell type": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd",
|
||||
"Copy row": "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2",
|
||||
"Row properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2",
|
||||
"Table properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03c0\u03af\u03bd\u03b1\u03ba\u03b1",
|
||||
"Bottom": "\u039a\u03ac\u03c4\u03c9",
|
||||
"V Align": "\u039a. \u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7",
|
||||
"Header": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1",
|
||||
"Right": "\u0394\u03b5\u03be\u03b9\u03ac",
|
||||
"Insert column after": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2 \u03b4\u03b5\u03be\u03b9\u03ac",
|
||||
"Cols": "\u03a3\u03c4\u03ae\u03bb\u03b5\u03c2",
|
||||
"Insert row after": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03ba\u03ac\u03c4\u03c9",
|
||||
"Width": "\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2",
|
||||
"Cell properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd",
|
||||
"Left": "\u0391\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac",
|
||||
"Cut row": "\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2",
|
||||
"Delete column": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2",
|
||||
"Center": "\u039a\u03b5\u03bd\u03c4\u03c1\u03b1\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7",
|
||||
"Merge cells": "\u03a3\u03c5\u03b3\u03c7\u03ce\u03bd\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03ce\u03bd",
|
||||
"Insert template": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 ",
|
||||
"Templates": "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03b1",
|
||||
"Background color": "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5",
|
||||
"Custom...": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae...",
|
||||
"Custom color": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1",
|
||||
"No color": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03c7\u03c1\u03ce\u03bc\u03b1",
|
||||
"Text color": "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 ",
|
||||
"Table of Contents": "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd",
|
||||
"Show blocks": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c4\u03bc\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd",
|
||||
"Show invisible characters": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ba\u03c1\u03c5\u03c6\u03ce\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03c9\u03bd",
|
||||
"Words: {0}": "\u039b\u03ad\u03be\u03b5\u03b9\u03c2: {0}",
|
||||
"Insert": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae",
|
||||
"File": "\u0391\u03c1\u03c7\u03b5\u03af\u03bf",
|
||||
"Edit": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u03a0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u0395\u03bc\u03c0\u03bb\u03bf\u03c5\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u039a\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 ALT-F9 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 ALT-F10 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 ALT-0 \u03b3\u03b9\u03b1 \u03b2\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1",
|
||||
"Tools": "\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1",
|
||||
"View": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae",
|
||||
"Table": "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2",
|
||||
"Format": "\u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/en_CA.js
Normal file
219
data/web/rc/program/js/tinymce/langs/en_CA.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('en_CA',{
|
||||
"Cut": "Cut",
|
||||
"Heading 5": "Heading 5",
|
||||
"Header 2": "Header 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.",
|
||||
"Heading 4": "Heading 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Heading 2",
|
||||
"Paste": "Paste",
|
||||
"Close": "Close",
|
||||
"Font Family": "Font Family",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Align right",
|
||||
"New document": "New document",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "Numbered list",
|
||||
"Heading 1": "Heading 1",
|
||||
"Headings": "Headings",
|
||||
"Increase indent": "Increase indent",
|
||||
"Formats": "Formats",
|
||||
"Headers": "Headers",
|
||||
"Select all": "Select all",
|
||||
"Header 3": "Header 3",
|
||||
"Blocks": "Blocks",
|
||||
"Undo": "Undo",
|
||||
"Strikethrough": "Strikethrough",
|
||||
"Bullet list": "Bullet list",
|
||||
"Header 1": "Header 1",
|
||||
"Superscript": "Superscript",
|
||||
"Clear formatting": "Clear formatting",
|
||||
"Font Sizes": "Font Sizes",
|
||||
"Subscript": "Subscript",
|
||||
"Header 6": "Header 6",
|
||||
"Redo": "Redo",
|
||||
"Paragraph": "Paragraph",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Bold",
|
||||
"Code": "Code",
|
||||
"Italic": "Italic",
|
||||
"Align center": "Align center",
|
||||
"Header 5": "Header 5",
|
||||
"Heading 6": "Heading 6",
|
||||
"Heading 3": "Heading 3",
|
||||
"Decrease indent": "Decrease indent",
|
||||
"Header 4": "Header 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.",
|
||||
"Underline": "Underline",
|
||||
"Cancel": "Cancel",
|
||||
"Justify": "Justify",
|
||||
"Inline": "Inline",
|
||||
"Copy": "Copy",
|
||||
"Align left": "Align left",
|
||||
"Visual aids": "Visual aids",
|
||||
"Lower Greek": "Lower Greek",
|
||||
"Square": "Square",
|
||||
"Default": "Default",
|
||||
"Lower Alpha": "Lower Alpha",
|
||||
"Circle": "Circle",
|
||||
"Disc": "Disc",
|
||||
"Upper Alpha": "Upper Alpha",
|
||||
"Upper Roman": "Upper Roman",
|
||||
"Lower Roman": "Lower Roman",
|
||||
"Name": "Name",
|
||||
"Anchor": "Anchor",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?",
|
||||
"Restore last draft": "Restore last draft",
|
||||
"Special character": "Special character",
|
||||
"Source code": "Source code",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Colour",
|
||||
"Right to left": "Right to left",
|
||||
"Left to right": "Left to right",
|
||||
"Emoticons": "Emoticons",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Document properties",
|
||||
"Title": "Title",
|
||||
"Keywords": "Keywords",
|
||||
"Encoding": "Encoding",
|
||||
"Description": "Description",
|
||||
"Author": "Author",
|
||||
"Fullscreen": "Fullscreen",
|
||||
"Horizontal line": "Horizontal line",
|
||||
"Horizontal space": "Horizontal space",
|
||||
"Insert\/edit image": "Insert\/edit image",
|
||||
"General": "General",
|
||||
"Advanced": "Advanced",
|
||||
"Source": "Source",
|
||||
"Border": "Border",
|
||||
"Constrain proportions": "Constrain proportions",
|
||||
"Vertical space": "Vertical space",
|
||||
"Image description": "Image description",
|
||||
"Style": "Style",
|
||||
"Dimensions": "Dimensions",
|
||||
"Insert image": "Insert image",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Colour levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "Insert date\/time",
|
||||
"Remove link": "Remove link",
|
||||
"Url": "Url",
|
||||
"Text to display": "Text to display",
|
||||
"Anchors": "Anchors",
|
||||
"Insert link": "Insert link",
|
||||
"New window": "New window",
|
||||
"None": "None",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?",
|
||||
"Target": "Target",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||
"Insert\/edit link": "Insert\/edit link",
|
||||
"Insert\/edit video": "Insert\/edit video",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternative source",
|
||||
"Paste your embed code below:": "Paste your embed code below:",
|
||||
"Insert video": "Insert video",
|
||||
"Embed": "Embed",
|
||||
"Nonbreaking space": "Nonbreaking space",
|
||||
"Page break": "Page break",
|
||||
"Paste as text": "Paste as text",
|
||||
"Preview": "Preview",
|
||||
"Print": "Print",
|
||||
"Save": "Save",
|
||||
"Could not find the specified string.": "Could not find the specified string.",
|
||||
"Replace": "Replace",
|
||||
"Next": "Next",
|
||||
"Whole words": "Whole words",
|
||||
"Find and replace": "Find and replace",
|
||||
"Replace with": "Replace with",
|
||||
"Find": "Find",
|
||||
"Replace all": "Replace all",
|
||||
"Match case": "Match case",
|
||||
"Prev": "Prev",
|
||||
"Spellcheck": "Spellcheck",
|
||||
"Finish": "Finish",
|
||||
"Ignore all": "Ignore all",
|
||||
"Ignore": "Ignore",
|
||||
"Add to Dictionary": "Add to Dictionary",
|
||||
"Insert row before": "Insert row before",
|
||||
"Rows": "Rows",
|
||||
"Height": "Height",
|
||||
"Paste row after": "Paste row after",
|
||||
"Alignment": "Alignment",
|
||||
"Border color": "Border colour",
|
||||
"Column group": "Column group",
|
||||
"Row": "Row",
|
||||
"Insert column before": "Insert column before",
|
||||
"Split cell": "Split cell",
|
||||
"Cell padding": "Cell padding",
|
||||
"Cell spacing": "Cell spacing",
|
||||
"Row type": "Row type",
|
||||
"Insert table": "Insert table",
|
||||
"Body": "Body",
|
||||
"Caption": "Caption",
|
||||
"Footer": "Footer",
|
||||
"Delete row": "Delete row",
|
||||
"Paste row before": "Paste row before",
|
||||
"Scope": "Scope",
|
||||
"Delete table": "Delete table",
|
||||
"H Align": "H Align",
|
||||
"Top": "Top",
|
||||
"Header cell": "Header cell",
|
||||
"Column": "Column",
|
||||
"Row group": "Row group",
|
||||
"Cell": "Cell",
|
||||
"Middle": "Middle",
|
||||
"Cell type": "Cell type",
|
||||
"Copy row": "Copy row",
|
||||
"Row properties": "Row properties",
|
||||
"Table properties": "Table properties",
|
||||
"Bottom": "Bottom",
|
||||
"V Align": "V Align",
|
||||
"Header": "Header",
|
||||
"Right": "Right",
|
||||
"Insert column after": "Insert column after",
|
||||
"Cols": "Cols",
|
||||
"Insert row after": "Insert row after",
|
||||
"Width": "Width",
|
||||
"Cell properties": "Cell properties",
|
||||
"Left": "Left",
|
||||
"Cut row": "Cut row",
|
||||
"Delete column": "Delete column",
|
||||
"Center": "Center",
|
||||
"Merge cells": "Merge cells",
|
||||
"Insert template": "Insert template",
|
||||
"Templates": "Templates",
|
||||
"Background color": "Background colour",
|
||||
"Custom...": "Custom...",
|
||||
"Custom color": "Custom colour",
|
||||
"No color": "No colour",
|
||||
"Text color": "Text colour",
|
||||
"Show blocks": "Show blocks",
|
||||
"Show invisible characters": "Show invisible characters",
|
||||
"Words: {0}": "Words: {0}",
|
||||
"Insert": "Insert",
|
||||
"File": "File",
|
||||
"Edit": "Edit",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help",
|
||||
"Tools": "Tools",
|
||||
"View": "View",
|
||||
"Table": "Table",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/en_GB.js
Normal file
219
data/web/rc/program/js/tinymce/langs/en_GB.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('en_GB',{
|
||||
"Cut": "Cut",
|
||||
"Heading 5": "Heading 5",
|
||||
"Header 2": "Header 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.",
|
||||
"Heading 4": "Heading 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Heading 2",
|
||||
"Paste": "Paste",
|
||||
"Close": "Close",
|
||||
"Font Family": "Font Family",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Align right",
|
||||
"New document": "New document",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "Numbered list",
|
||||
"Heading 1": "Heading 1",
|
||||
"Headings": "Headings",
|
||||
"Increase indent": "Increase indent",
|
||||
"Formats": "Formats",
|
||||
"Headers": "Headers",
|
||||
"Select all": "Select all",
|
||||
"Header 3": "Header 3",
|
||||
"Blocks": "Blocks",
|
||||
"Undo": "Undo",
|
||||
"Strikethrough": "Strike-through",
|
||||
"Bullet list": "Bullet list",
|
||||
"Header 1": "Header 1",
|
||||
"Superscript": "Superscript",
|
||||
"Clear formatting": "Clear formatting",
|
||||
"Font Sizes": "Font Sizes",
|
||||
"Subscript": "Subscript",
|
||||
"Header 6": "Header 6",
|
||||
"Redo": "Redo",
|
||||
"Paragraph": "Paragraph",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Bold",
|
||||
"Code": "Code",
|
||||
"Italic": "Italic",
|
||||
"Align center": "Align centre",
|
||||
"Header 5": "Header 5",
|
||||
"Heading 6": "Heading 6",
|
||||
"Heading 3": "Heading 3",
|
||||
"Decrease indent": "Decrease indent",
|
||||
"Header 4": "Header 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.",
|
||||
"Underline": "Underline",
|
||||
"Cancel": "Cancel",
|
||||
"Justify": "Justify",
|
||||
"Inline": "Inline",
|
||||
"Copy": "Copy",
|
||||
"Align left": "Align left",
|
||||
"Visual aids": "Visual aids",
|
||||
"Lower Greek": "Lower Greek",
|
||||
"Square": "Square",
|
||||
"Default": "Default",
|
||||
"Lower Alpha": "Lower Alpha",
|
||||
"Circle": "Circle",
|
||||
"Disc": "Disc",
|
||||
"Upper Alpha": "Upper Alpha",
|
||||
"Upper Roman": "Upper Roman",
|
||||
"Lower Roman": "Lower Roman",
|
||||
"Name": "Name",
|
||||
"Anchor": "Anchor",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?",
|
||||
"Restore last draft": "Restore last draft",
|
||||
"Special character": "Special character",
|
||||
"Source code": "Source code",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Color",
|
||||
"Right to left": "Right to left",
|
||||
"Left to right": "Left to right",
|
||||
"Emoticons": "Emoticons",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Document properties",
|
||||
"Title": "Title",
|
||||
"Keywords": "Keywords",
|
||||
"Encoding": "Encoding",
|
||||
"Description": "Description",
|
||||
"Author": "Author",
|
||||
"Fullscreen": "Full-screen",
|
||||
"Horizontal line": "Horizontal line",
|
||||
"Horizontal space": "Horizontal space",
|
||||
"Insert\/edit image": "Insert\/edit image",
|
||||
"General": "General",
|
||||
"Advanced": "Advanced",
|
||||
"Source": "Source",
|
||||
"Border": "Border",
|
||||
"Constrain proportions": "Constrain proportions",
|
||||
"Vertical space": "Vertical space",
|
||||
"Image description": "Image description",
|
||||
"Style": "Style",
|
||||
"Dimensions": "Dimensions",
|
||||
"Insert image": "Insert image",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "Insert date\/time",
|
||||
"Remove link": "Remove link",
|
||||
"Url": "URL",
|
||||
"Text to display": "Text to display",
|
||||
"Anchors": "Anchors",
|
||||
"Insert link": "Insert link",
|
||||
"New window": "New window",
|
||||
"None": "None",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?",
|
||||
"Target": "Target",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||
"Insert\/edit link": "Insert\/edit link",
|
||||
"Insert\/edit video": "Insert\/edit video",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternative source",
|
||||
"Paste your embed code below:": "Paste your embed code below:",
|
||||
"Insert video": "Insert video",
|
||||
"Embed": "Embed",
|
||||
"Nonbreaking space": "Non-breaking space",
|
||||
"Page break": "Page break",
|
||||
"Paste as text": "Paste as text",
|
||||
"Preview": "Preview",
|
||||
"Print": "Print",
|
||||
"Save": "Save",
|
||||
"Could not find the specified string.": "Could not find the specified string.",
|
||||
"Replace": "Replace",
|
||||
"Next": "Next",
|
||||
"Whole words": "Whole words",
|
||||
"Find and replace": "Find and replace",
|
||||
"Replace with": "Replace with",
|
||||
"Find": "Find",
|
||||
"Replace all": "Replace all",
|
||||
"Match case": "Match case",
|
||||
"Prev": "Prev",
|
||||
"Spellcheck": "Spell-check",
|
||||
"Finish": "Finish",
|
||||
"Ignore all": "Ignore all",
|
||||
"Ignore": "Ignore",
|
||||
"Add to Dictionary": "Add to Dictionary",
|
||||
"Insert row before": "Insert row before",
|
||||
"Rows": "Rows",
|
||||
"Height": "Height",
|
||||
"Paste row after": "Paste row after",
|
||||
"Alignment": "Alignment",
|
||||
"Border color": "Border color",
|
||||
"Column group": "Column group",
|
||||
"Row": "Row",
|
||||
"Insert column before": "Insert column before",
|
||||
"Split cell": "Split cell",
|
||||
"Cell padding": "Cell padding",
|
||||
"Cell spacing": "Cell spacing",
|
||||
"Row type": "Row type",
|
||||
"Insert table": "Insert table",
|
||||
"Body": "Body",
|
||||
"Caption": "Caption",
|
||||
"Footer": "Footer",
|
||||
"Delete row": "Delete row",
|
||||
"Paste row before": "Paste row before",
|
||||
"Scope": "Scope",
|
||||
"Delete table": "Delete table",
|
||||
"H Align": "H Align",
|
||||
"Top": "Top",
|
||||
"Header cell": "Header cell",
|
||||
"Column": "Column",
|
||||
"Row group": "Row group",
|
||||
"Cell": "Cell",
|
||||
"Middle": "Middle",
|
||||
"Cell type": "Cell type",
|
||||
"Copy row": "Copy row",
|
||||
"Row properties": "Row properties",
|
||||
"Table properties": "Table properties",
|
||||
"Bottom": "Bottom",
|
||||
"V Align": "V Align",
|
||||
"Header": "Header",
|
||||
"Right": "Right",
|
||||
"Insert column after": "Insert column after",
|
||||
"Cols": "Cols",
|
||||
"Insert row after": "Insert row after",
|
||||
"Width": "Width",
|
||||
"Cell properties": "Cell properties",
|
||||
"Left": "Left",
|
||||
"Cut row": "Cut row",
|
||||
"Delete column": "Delete column",
|
||||
"Center": "Centre",
|
||||
"Merge cells": "Merge cells",
|
||||
"Insert template": "Insert template",
|
||||
"Templates": "Templates",
|
||||
"Background color": "Background colour",
|
||||
"Custom...": "Custom...",
|
||||
"Custom color": "Custom color",
|
||||
"No color": "No color",
|
||||
"Text color": "Text colour",
|
||||
"Show blocks": "Show blocks",
|
||||
"Show invisible characters": "Show invisible characters",
|
||||
"Words: {0}": "Words: {0}",
|
||||
"Insert": "Insert",
|
||||
"File": "File",
|
||||
"Edit": "Edit",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help",
|
||||
"Tools": "Tools",
|
||||
"View": "View",
|
||||
"Table": "Table",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/eo.js
Normal file
219
data/web/rc/program/js/tinymce/langs/eo.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('eo',{
|
||||
"Cut": "Eltran\u0109i",
|
||||
"Heading 5": "Titolo 5",
|
||||
"Header 2": "\u0108apo 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Via retumilo ne subtenas rektan aliron al bufro. Bonvolu antata\u016de uzi klavarajn kombinojn Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Titolo 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Titolo 2",
|
||||
"Paste": "Englui",
|
||||
"Close": "Fermi",
|
||||
"Font Family": "Tipara familio",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Ordigu dekstren",
|
||||
"New document": "Nova dokumento",
|
||||
"Blockquote": "Mar\u011denigo",
|
||||
"Numbered list": "Numera listo",
|
||||
"Heading 1": "Titolo 1",
|
||||
"Headings": "Titoloj",
|
||||
"Increase indent": "Pliigu alineon",
|
||||
"Formats": "Formatoj",
|
||||
"Headers": "\u0108apoj",
|
||||
"Select all": "Elekti \u0109ion",
|
||||
"Header 3": "\u0108apo 3",
|
||||
"Blocks": "Blokoj",
|
||||
"Undo": "Malfari",
|
||||
"Strikethrough": "Trastreki",
|
||||
"Bullet list": "Punkta listo",
|
||||
"Header 1": "\u0108apo 1",
|
||||
"Superscript": "Superskribi",
|
||||
"Clear formatting": "Forigi formatigon",
|
||||
"Font Sizes": "Tiparaj grandoj",
|
||||
"Subscript": "Malsuperskribi",
|
||||
"Header 6": "\u0108apo 6",
|
||||
"Redo": "Refari",
|
||||
"Paragraph": "Alineo",
|
||||
"Ok": "Bone",
|
||||
"Bold": "Dika",
|
||||
"Code": "Kodo",
|
||||
"Italic": "Oblikva",
|
||||
"Align center": "Ordigu centren",
|
||||
"Header 5": "\u0108apo 5",
|
||||
"Heading 6": "Titolo 6",
|
||||
"Heading 3": "Titolo 3",
|
||||
"Decrease indent": "Malpliigu alineon",
|
||||
"Header 4": "\u0108apo 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "La engluado nun okazas en simpla teksta re\u011dimo. La enhavo estos engluata kiel simpla teksto \u011dis anta\u016d vi for\u015daltos tiun \u0109i opcion.",
|
||||
"Underline": "Substreki",
|
||||
"Cancel": "Nuligi",
|
||||
"Justify": "Ordigu la\u016dflanke",
|
||||
"Inline": "Enlinie",
|
||||
"Copy": "Kopii",
|
||||
"Align left": "Ordigu maldekstren",
|
||||
"Visual aids": "Videblaj helpiloj",
|
||||
"Lower Greek": "Minuskla greka",
|
||||
"Square": "Kvadrato",
|
||||
"Default": "Implicite",
|
||||
"Lower Alpha": "Minuskla alfabeta",
|
||||
"Circle": "Cirklo",
|
||||
"Disc": "Disko",
|
||||
"Upper Alpha": "Majuskla alfabeta",
|
||||
"Upper Roman": "Majuskla latina",
|
||||
"Lower Roman": "Minuskla latina",
|
||||
"Name": "Nomo",
|
||||
"Anchor": "Ankro",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Vi havas nekonservitajn \u015dan\u011dojn, \u0109u vi certe deziras eliri?",
|
||||
"Restore last draft": "Restarigu lastan malneton",
|
||||
"Special character": "Speciala karaktro",
|
||||
"Source code": "Fonta kodo",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Koloro",
|
||||
"Right to left": "Dekstro maldekstren",
|
||||
"Left to right": "Maldekstro dekstren",
|
||||
"Emoticons": "Emociikonoj",
|
||||
"Robots": "Robotoj",
|
||||
"Document properties": "Dokumentaj trajtoj",
|
||||
"Title": "Titolo",
|
||||
"Keywords": "\u015closilvortoj",
|
||||
"Encoding": "Enkodigo",
|
||||
"Description": "Priskribo",
|
||||
"Author": "A\u016dtoro",
|
||||
"Fullscreen": "Tutekrane",
|
||||
"Horizontal line": "Horizontala linio",
|
||||
"Horizontal space": "Horizontala spaco",
|
||||
"Insert\/edit image": "Enmetu\/redaktu bildon",
|
||||
"General": "\u011cenerale",
|
||||
"Advanced": "Por spertuloj",
|
||||
"Source": "Fonto",
|
||||
"Border": "Limo",
|
||||
"Constrain proportions": "Relativigu proporciojn",
|
||||
"Vertical space": "Vertikala spaco",
|
||||
"Image description": "Bilda priskribo",
|
||||
"Style": "Stilo",
|
||||
"Dimensions": "Dimensioj",
|
||||
"Insert image": "Enmetu bildon",
|
||||
"Zoom in": "Plilar\u011digu",
|
||||
"Contrast": "Kontrasto",
|
||||
"Back": "Reen",
|
||||
"Gamma": "Gamo",
|
||||
"Flip horizontally": "Respegulu horizontale",
|
||||
"Resize": "\u015can\u011du dimensiojn",
|
||||
"Sharpen": "Akrigu",
|
||||
"Zoom out": "Malplilar\u011digu",
|
||||
"Image options": "Bildaj opcioj",
|
||||
"Apply": "Apliku",
|
||||
"Brightness": "Heleco",
|
||||
"Rotate clockwise": "Rotaciu la\u016d horlo\u011do",
|
||||
"Rotate counterclockwise": "Rotaciu kontra\u016d horlo\u011do",
|
||||
"Edit image": "Redaktu bildon",
|
||||
"Color levels": "Kolorniveloj",
|
||||
"Crop": "Randtran\u0109u",
|
||||
"Orientation": "Orientigo",
|
||||
"Flip vertically": "Respegulu vertikale",
|
||||
"Invert": "Inversigu",
|
||||
"Insert date\/time": "Enmetu daton\/tempon",
|
||||
"Remove link": "Forigu ligilon",
|
||||
"Url": "Urlo",
|
||||
"Text to display": "Montrata teksto",
|
||||
"Anchors": "Ankroj",
|
||||
"Insert link": "Enmetu ligilon",
|
||||
"New window": "Nova fenestro",
|
||||
"None": "Nenio",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "La enmetita URLo \u015dajnas esti ekstera ligilo. \u0108u vi deziras aldoni nepran prefikson http:\/\/?",
|
||||
"Target": "Celo",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "La enmetita URLo \u015dajnas esti retadreso. \u0108u vi deziras aldoni prefikson mailto:?",
|
||||
"Insert\/edit link": "Enmetu\/redaktu ligilon",
|
||||
"Insert\/edit video": "Enmetu\/redaktu videon",
|
||||
"Poster": "Afi\u015do",
|
||||
"Alternative source": "Alternativa fonto",
|
||||
"Paste your embed code below:": "Engluu vian internan kodon \u0109i-sube:",
|
||||
"Insert video": "Enmetu videon",
|
||||
"Embed": "Enkonstruu",
|
||||
"Nonbreaking space": "Nerompebla spaco",
|
||||
"Page break": "Pa\u011da fino",
|
||||
"Paste as text": "Engluu kiel tekston",
|
||||
"Preview": "Provrigardo",
|
||||
"Print": "Presu",
|
||||
"Save": "Konservi",
|
||||
"Could not find the specified string.": "Malsukceso trovi la indikitan sinsekvon",
|
||||
"Replace": "Anstata\u016digi",
|
||||
"Next": "Posta",
|
||||
"Whole words": "Tutaj vortoj",
|
||||
"Find and replace": "Trovi kaj anstata\u016digi",
|
||||
"Replace with": "Anstata\u016digi per",
|
||||
"Find": "Trovi",
|
||||
"Replace all": "Anstata\u016digi\u0109ion",
|
||||
"Match case": "Sekvi usklecon",
|
||||
"Prev": "Anta\u016da",
|
||||
"Spellcheck": "Literumu",
|
||||
"Finish": "Finu",
|
||||
"Ignore all": "Ignoru \u0109ion",
|
||||
"Ignore": "Ignoru",
|
||||
"Add to Dictionary": "Aldonu al vortaro",
|
||||
"Insert row before": "Enmetu vicon anta\u016d",
|
||||
"Rows": "Vicoj",
|
||||
"Height": "Alto",
|
||||
"Paste row after": "Engluu vicon poste",
|
||||
"Alignment": "Aligo",
|
||||
"Border color": "Lima koloro",
|
||||
"Column group": "Kolumna grupo",
|
||||
"Row": "Vico",
|
||||
"Insert column before": "Enmetu kolumnon anta\u016d",
|
||||
"Split cell": "Disdividu \u0109elon",
|
||||
"Cell padding": "\u0108elmar\u011denoj",
|
||||
"Cell spacing": "\u0108elspacoj",
|
||||
"Row type": "Vica tipo",
|
||||
"Insert table": "Enmetu tabelon",
|
||||
"Body": "Korpo",
|
||||
"Caption": "Cita\u0135o",
|
||||
"Footer": "Piedo",
|
||||
"Delete row": "Forigu vicon",
|
||||
"Paste row before": "Engluu vicon anta\u016d",
|
||||
"Scope": "Amplekso",
|
||||
"Delete table": "Forigu tabelon",
|
||||
"H Align": "H aligo",
|
||||
"Top": "Supro",
|
||||
"Header cell": "\u0108apa \u0109elo",
|
||||
"Column": "Kolumno",
|
||||
"Row group": "Vica grupo",
|
||||
"Cell": "\u0108elo",
|
||||
"Middle": "Mezo",
|
||||
"Cell type": "\u0108ela tipo",
|
||||
"Copy row": "Kopiu vicon",
|
||||
"Row properties": "Vicaj ecoj",
|
||||
"Table properties": "Tabelaj ecoj",
|
||||
"Bottom": "Subo",
|
||||
"V Align": "V aligo",
|
||||
"Header": "\u0108apo",
|
||||
"Right": "Dekstro",
|
||||
"Insert column after": "Enmetu kolumnon poste",
|
||||
"Cols": "Kolumonoj",
|
||||
"Insert row after": "Enmetu vicon poste",
|
||||
"Width": "Lar\u011do",
|
||||
"Cell properties": "\u0108elaj ecoj",
|
||||
"Left": "Maldekstro",
|
||||
"Cut row": "Eltran\u0109u vicon",
|
||||
"Delete column": "Forigu kolumnon",
|
||||
"Center": "Centro",
|
||||
"Merge cells": "Kunigu \u0109elojn",
|
||||
"Insert template": "Enmetu \u015dablonon",
|
||||
"Templates": "\u015cablonoj",
|
||||
"Background color": "Fona koloro",
|
||||
"Custom...": "Propra...",
|
||||
"Custom color": "Propra koloro",
|
||||
"No color": "Neniu koloro",
|
||||
"Text color": "Teksta koloro",
|
||||
"Show blocks": "Montru blokojn",
|
||||
"Show invisible characters": "Montru nevideblajn karaktrojn",
|
||||
"Words: {0}": "Vortoj: {0}",
|
||||
"Insert": "Enmeti",
|
||||
"File": "Dokumento",
|
||||
"Edit": "Redakti",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Ri\u0109teksta Areo. Premu ALT-F9 por menuo. Premu ALT-F10 por menuejo. Premu ALT-0 por helpo",
|
||||
"Tools": "Iloj",
|
||||
"View": "Vidi",
|
||||
"Table": "Tabelo",
|
||||
"Format": "Aspektigi"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/es.js
Normal file
219
data/web/rc/program/js/tinymce/langs/es.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('es',{
|
||||
"Cut": "Cortar",
|
||||
"Heading 5": "Encabezado 5",
|
||||
"Header 2": "Encabezado 2 ",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tu navegador no soporta acceso directo al portapapeles. Por favor usa las teclas Crtl+X\/C\/V de tu teclado",
|
||||
"Heading 4": "Encabezado 4",
|
||||
"Div": "Capa",
|
||||
"Heading 2": "Encabezado 2",
|
||||
"Paste": "Pegar",
|
||||
"Close": "Cerrar",
|
||||
"Font Family": "Familia de fuentes",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Alinear a la derecha",
|
||||
"New document": "Nuevo documento",
|
||||
"Blockquote": "Bloque de cita",
|
||||
"Numbered list": "Lista numerada",
|
||||
"Heading 1": "Encabezado 1",
|
||||
"Headings": "Encabezados",
|
||||
"Increase indent": "Incrementar sangr\u00eda",
|
||||
"Formats": "Formatos",
|
||||
"Headers": "Encabezados",
|
||||
"Select all": "Seleccionar todo",
|
||||
"Header 3": "Encabezado 3",
|
||||
"Blocks": "Bloques",
|
||||
"Undo": "Deshacer",
|
||||
"Strikethrough": "Tachado",
|
||||
"Bullet list": "Lista de vi\u00f1etas",
|
||||
"Header 1": "Encabezado 1",
|
||||
"Superscript": "Super\u00edndice",
|
||||
"Clear formatting": "Limpiar formato",
|
||||
"Font Sizes": "Tama\u00f1os de fuente",
|
||||
"Subscript": "Sub\u00edndice",
|
||||
"Header 6": "Encabezado 6",
|
||||
"Redo": "Rehacer",
|
||||
"Paragraph": "P\u00e1rrafo",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Negrita",
|
||||
"Code": "C\u00f3digo",
|
||||
"Italic": "It\u00e1lica",
|
||||
"Align center": "Alinear al centro",
|
||||
"Header 5": "Encabezado 5 ",
|
||||
"Heading 6": "Encabezado 6",
|
||||
"Heading 3": "Encabezado 3",
|
||||
"Decrease indent": "Disminuir sangr\u00eda",
|
||||
"Header 4": "Encabezado 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Pegar est\u00e1 ahora en modo de texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.",
|
||||
"Underline": "Subrayado",
|
||||
"Cancel": "Cancelar",
|
||||
"Justify": "Justificar",
|
||||
"Inline": "en l\u00ednea",
|
||||
"Copy": "Copiar",
|
||||
"Align left": "Alinear a la izquierda",
|
||||
"Visual aids": "Ayudas visuales",
|
||||
"Lower Greek": "Inferior Griega",
|
||||
"Square": "Cuadrado",
|
||||
"Default": "Por defecto",
|
||||
"Lower Alpha": "Inferior Alfa",
|
||||
"Circle": "C\u00edrculo",
|
||||
"Disc": "Disco",
|
||||
"Upper Alpha": "Superior Alfa",
|
||||
"Upper Roman": "Superior Romana",
|
||||
"Lower Roman": "Inferior Romana",
|
||||
"Name": "Nombre",
|
||||
"Anchor": "Ancla",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?",
|
||||
"Restore last draft": "Restaurar el \u00faltimo borrador",
|
||||
"Special character": "Car\u00e1cter especial",
|
||||
"Source code": "C\u00f3digo fuente",
|
||||
"B": "A",
|
||||
"R": "R",
|
||||
"G": "V",
|
||||
"Color": "Color",
|
||||
"Right to left": "De derecha a izquierda",
|
||||
"Left to right": "De izquierda a derecha",
|
||||
"Emoticons": "Emoticonos",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Propiedades del documento",
|
||||
"Title": "T\u00edtulo",
|
||||
"Keywords": "Palabras clave",
|
||||
"Encoding": "Codificaci\u00f3n",
|
||||
"Description": "Descripci\u00f3n",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Pantalla completa",
|
||||
"Horizontal line": "L\u00ednea horizontal",
|
||||
"Horizontal space": "Espacio horizontal",
|
||||
"Insert\/edit image": "Insertar\/editar imagen",
|
||||
"General": "General",
|
||||
"Advanced": "Avanzado",
|
||||
"Source": "Enlace",
|
||||
"Border": "Borde",
|
||||
"Constrain proportions": "Restringir proporciones",
|
||||
"Vertical space": "Espacio vertical",
|
||||
"Image description": "Descripci\u00f3n de la imagen",
|
||||
"Style": "Estilo",
|
||||
"Dimensions": "Dimensiones",
|
||||
"Insert image": "Insertar imagen",
|
||||
"Zoom in": "Acercar",
|
||||
"Contrast": "Contraste",
|
||||
"Back": "Atr\u00e1s",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Invertir horizontalmente",
|
||||
"Resize": "Redimensionar",
|
||||
"Sharpen": "Forma",
|
||||
"Zoom out": "Alejar",
|
||||
"Image options": "Opciones de imagen",
|
||||
"Apply": "Aplicar",
|
||||
"Brightness": "Brillo",
|
||||
"Rotate clockwise": "Girar a la derecha",
|
||||
"Rotate counterclockwise": "Girar a la izquierda",
|
||||
"Edit image": "Editar imagen",
|
||||
"Color levels": "Niveles de color",
|
||||
"Crop": "Recortar",
|
||||
"Orientation": "Orientaci\u00f3n",
|
||||
"Flip vertically": "Invertir verticalmente",
|
||||
"Invert": "Invertir",
|
||||
"Insert date\/time": "Insertar fecha\/hora",
|
||||
"Remove link": "Quitar enlace",
|
||||
"Url": "URL",
|
||||
"Text to display": "Texto para mostrar",
|
||||
"Anchors": "Anclas",
|
||||
"Insert link": "Insertar enlace",
|
||||
"New window": "Nueva ventana",
|
||||
"None": "Ninguno",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El enlace que has introducido no parece ser una enlace externo. Quieres a\u00f1adir el prefijo necesario http:\/\/ ?",
|
||||
"Target": "Destino",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El enlace que has introducido no parece ser una direcci\u00f3n de correo electr\u00f3nico. Quieres a\u00f1adir el prefijo necesario mailto: ?",
|
||||
"Insert\/edit link": "Insertar\/editar enlace",
|
||||
"Insert\/edit video": "Insertar\/editar video",
|
||||
"Poster": "Miniatura",
|
||||
"Alternative source": "Enlace alternativo",
|
||||
"Paste your embed code below:": "Pega tu c\u00f3digo embebido debajo",
|
||||
"Insert video": "Insertar video",
|
||||
"Embed": "Incrustado",
|
||||
"Nonbreaking space": "Espacio fijo",
|
||||
"Page break": "Salto de p\u00e1gina",
|
||||
"Paste as text": "Pegar como texto",
|
||||
"Preview": "Previsualizar",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Guardar",
|
||||
"Could not find the specified string.": "No se encuentra la cadena de texto especificada",
|
||||
"Replace": "Reemplazar",
|
||||
"Next": "Siguiente",
|
||||
"Whole words": "Palabras completas",
|
||||
"Find and replace": "Buscar y reemplazar",
|
||||
"Replace with": "Reemplazar con",
|
||||
"Find": "Buscar",
|
||||
"Replace all": "Reemplazar todo",
|
||||
"Match case": "Coincidencia exacta",
|
||||
"Prev": "Anterior",
|
||||
"Spellcheck": "Corrector ortogr\u00e1fico",
|
||||
"Finish": "Finalizar",
|
||||
"Ignore all": "Ignorar todos",
|
||||
"Ignore": "Ignorar",
|
||||
"Add to Dictionary": "A\u00f1adir al Diccionario",
|
||||
"Insert row before": "Insertar fila antes",
|
||||
"Rows": "Filas",
|
||||
"Height": "Alto",
|
||||
"Paste row after": "Pegar la fila despu\u00e9s",
|
||||
"Alignment": "Alineaci\u00f3n",
|
||||
"Border color": "Color del borde",
|
||||
"Column group": "Grupo de columnas",
|
||||
"Row": "Fila",
|
||||
"Insert column before": "Insertar columna antes",
|
||||
"Split cell": "Dividir celdas",
|
||||
"Cell padding": "Relleno de celda",
|
||||
"Cell spacing": "Espacio entre celdas",
|
||||
"Row type": "Tipo de fila",
|
||||
"Insert table": "Insertar tabla",
|
||||
"Body": "Cuerpo",
|
||||
"Caption": "Subt\u00edtulo",
|
||||
"Footer": "Pie de p\u00e1gina",
|
||||
"Delete row": "Eliminar fila",
|
||||
"Paste row before": "Pegar la fila antes",
|
||||
"Scope": "\u00c1mbito",
|
||||
"Delete table": "Eliminar tabla",
|
||||
"H Align": "Alineamiento Horizontal",
|
||||
"Top": "Arriba",
|
||||
"Header cell": "Celda de la cebecera",
|
||||
"Column": "Columna",
|
||||
"Row group": "Grupo de filas",
|
||||
"Cell": "Celda",
|
||||
"Middle": "Centro",
|
||||
"Cell type": "Tipo de celda",
|
||||
"Copy row": "Copiar fila",
|
||||
"Row properties": "Propiedades de la fila",
|
||||
"Table properties": "Propiedades de la tabla",
|
||||
"Bottom": "Abajo",
|
||||
"V Align": "Alineamiento Vertical",
|
||||
"Header": "Cabecera",
|
||||
"Right": "Derecha",
|
||||
"Insert column after": "Insertar columna despu\u00e9s",
|
||||
"Cols": "Columnas",
|
||||
"Insert row after": "Insertar fila despu\u00e9s ",
|
||||
"Width": "Ancho",
|
||||
"Cell properties": "Propiedades de la celda",
|
||||
"Left": "Izquierda",
|
||||
"Cut row": "Cortar fila",
|
||||
"Delete column": "Eliminar columna",
|
||||
"Center": "Centrado",
|
||||
"Merge cells": "Combinar celdas",
|
||||
"Insert template": "Insertar plantilla",
|
||||
"Templates": "Plantillas",
|
||||
"Background color": "Color de fondo",
|
||||
"Custom...": "Personalizar...",
|
||||
"Custom color": "Color personalizado",
|
||||
"No color": "Sin color",
|
||||
"Text color": "Color del texto",
|
||||
"Show blocks": "Mostrar bloques",
|
||||
"Show invisible characters": "Mostrar caracteres invisibles",
|
||||
"Words: {0}": "Palabras: {0}",
|
||||
"Insert": "Insertar",
|
||||
"File": "Archivo",
|
||||
"Edit": "Editar",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto enriquecido. Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para ayuda",
|
||||
"Tools": "Herramientas",
|
||||
"View": "Ver",
|
||||
"Table": "Tabla",
|
||||
"Format": "Formato"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/es_MX.js
Normal file
219
data/web/rc/program/js/tinymce/langs/es_MX.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('es_MX',{
|
||||
"Cut": "Cortar",
|
||||
"Heading 5": "Encabezados 5",
|
||||
"Header 2": "Encabezado 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Su navegador no soporta acceso directo al portapapeles. Por favor haga uso de la combinaci\u00f3n de teclas Ctrl+X para cortar, Ctrl+C para copiar y Ctrl+V para pegar con el teclado. ",
|
||||
"Heading 4": "Encabezados 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Encabezados 2",
|
||||
"Paste": "Pegar",
|
||||
"Close": "Cerrar",
|
||||
"Font Family": "Tipo de letra",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Alinear a la derecha",
|
||||
"New document": "Nuevo documento",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "Lista numerada",
|
||||
"Heading 1": "Encabezados 1",
|
||||
"Headings": "Encabezados",
|
||||
"Increase indent": "Incrementar identado",
|
||||
"Formats": "Formato",
|
||||
"Headers": "Encabezado",
|
||||
"Select all": "Seleccionar todo",
|
||||
"Header 3": "Encabezado 3",
|
||||
"Blocks": "Bloque",
|
||||
"Undo": "Rehacer",
|
||||
"Strikethrough": "Tachado",
|
||||
"Bullet list": "Lista de vi\u00f1eta",
|
||||
"Header 1": "Encabezado 1",
|
||||
"Superscript": "\u00cdndice",
|
||||
"Clear formatting": "Limpiar formato",
|
||||
"Font Sizes": "Tama\u00f1o de letra",
|
||||
"Subscript": "Sub\u00edndice",
|
||||
"Header 6": "Encabezado 6",
|
||||
"Redo": "Deshacer",
|
||||
"Paragraph": "P\u00e1rrafo",
|
||||
"Ok": "Aceptar",
|
||||
"Bold": "Negrita",
|
||||
"Code": "C\u00f3digo",
|
||||
"Italic": "Cursiva",
|
||||
"Align center": "Centrar",
|
||||
"Header 5": "Encabezado 5",
|
||||
"Heading 6": "Encabezados 6",
|
||||
"Heading 3": "Encabezados 3",
|
||||
"Decrease indent": "Decrementar identado",
|
||||
"Header 4": "Encabezado 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Se pegar\u00e1 en texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.",
|
||||
"Underline": "Subrayado",
|
||||
"Cancel": "Cancelar",
|
||||
"Justify": "Justificar",
|
||||
"Inline": "En l\u00ednea",
|
||||
"Copy": "Copiar",
|
||||
"Align left": "Alinear a la izquierda",
|
||||
"Visual aids": "Ayuda visual",
|
||||
"Lower Greek": "Griega min\u00fascula",
|
||||
"Square": "Cuadro",
|
||||
"Default": "Por defecto",
|
||||
"Lower Alpha": "Alfa min\u00fascula",
|
||||
"Circle": "Circulo",
|
||||
"Disc": "Disco",
|
||||
"Upper Alpha": "Alfa may\u00fascula",
|
||||
"Upper Roman": "May\u00fascula Romana",
|
||||
"Lower Roman": "Romano min\u00fascula",
|
||||
"Name": "Nombre",
|
||||
"Anchor": "Anclar",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "No se han guardado los cambios. \u00bfSeguro que desea abandonar la p\u00e1gina?",
|
||||
"Restore last draft": "Restaurar el \u00faltimo borrador",
|
||||
"Special character": "Caracter especial",
|
||||
"Source code": "C\u00f3digo fuente",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Color",
|
||||
"Right to left": "Derecha a Izquierda",
|
||||
"Left to right": "Izquierda a derecha",
|
||||
"Emoticons": "Emoticones",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Propiedades del documento",
|
||||
"Title": "T\u00edtulo",
|
||||
"Keywords": "Palabras clave",
|
||||
"Encoding": "Codificaci\u00f3n",
|
||||
"Description": "Descripci\u00f3n ",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Pantalla completa",
|
||||
"Horizontal line": "L\u00ednea Horizontal",
|
||||
"Horizontal space": "Espacio horizontal",
|
||||
"Insert\/edit image": "Insertar\/editar imagen",
|
||||
"General": "General",
|
||||
"Advanced": "Avanzado",
|
||||
"Source": "Origen",
|
||||
"Border": "Borde",
|
||||
"Constrain proportions": "Restringir proporciones",
|
||||
"Vertical space": "Espacio vertical",
|
||||
"Image description": "Descripci\u00f3n de imagen",
|
||||
"Style": "Estilo",
|
||||
"Dimensions": "Dimensiones",
|
||||
"Insert image": "Insertar imagen",
|
||||
"Zoom in": "Acercar",
|
||||
"Contrast": "Contraste",
|
||||
"Back": "Regresar",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Volter horizontalmente",
|
||||
"Resize": "Cambiar tama\u00f1o",
|
||||
"Sharpen": "Nitidez",
|
||||
"Zoom out": "Alejar",
|
||||
"Image options": "Opciones de la imagen",
|
||||
"Apply": "Aplicar",
|
||||
"Brightness": "Brillo",
|
||||
"Rotate clockwise": "Rotar en sentido de las manecillas",
|
||||
"Rotate counterclockwise": "Rotar en sentido contrario a las manecillas",
|
||||
"Edit image": "Editar imagen",
|
||||
"Color levels": "Niveles de Color",
|
||||
"Crop": "Recortar",
|
||||
"Orientation": "Orientaci\u00f3n",
|
||||
"Flip vertically": "Voltear verticalmente",
|
||||
"Invert": "Invertir",
|
||||
"Insert date\/time": "Insertar fecha\/hora",
|
||||
"Remove link": "Eliminar elnace",
|
||||
"Url": "Url",
|
||||
"Text to display": "Texto a mostrar",
|
||||
"Anchors": "Anclas",
|
||||
"Insert link": "Insertar enlace",
|
||||
"New window": "Nueva ventana",
|
||||
"None": "Ninguno",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El URL que ha ingresado es un enlace externo. \u00bfDesea agregar el prefijo \"http:\/\/\"?",
|
||||
"Target": "Objetivo",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El URL que ha insertado tiene formato de correo electr\u00f3nico. \u00bfDesea agregar con prefijo \"mailto:\"?",
|
||||
"Insert\/edit link": "Inserta\/editar enlace",
|
||||
"Insert\/edit video": "Insertar\/editar video",
|
||||
"Poster": "Cartel",
|
||||
"Alternative source": "Fuente alternativa",
|
||||
"Paste your embed code below:": "Pegue su c\u00f3digo de inserci\u00f3n abajo:",
|
||||
"Insert video": "Insertar video",
|
||||
"Embed": "Incrustar",
|
||||
"Nonbreaking space": "Espacio de no separaci\u00f3n",
|
||||
"Page break": "Salto de p\u00e1gina ",
|
||||
"Paste as text": "Copiar como texto",
|
||||
"Preview": "Vista previa ",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Guardar",
|
||||
"Could not find the specified string.": "No se ha encontrado la cadena especificada.",
|
||||
"Replace": "Remplazar",
|
||||
"Next": "Siguiente",
|
||||
"Whole words": "Palabras completas",
|
||||
"Find and replace": "Buscar y reemplazar",
|
||||
"Replace with": "Remplazar con",
|
||||
"Find": "Buscar",
|
||||
"Replace all": "Remplazar todo",
|
||||
"Match case": "Coincidencia",
|
||||
"Prev": "Anterior",
|
||||
"Spellcheck": "Revisi\u00f3n ortogr\u00e1fica",
|
||||
"Finish": "Terminar",
|
||||
"Ignore all": "Ignorar todo",
|
||||
"Ignore": "Ignorar",
|
||||
"Add to Dictionary": "Agregar al diccionario ",
|
||||
"Insert row before": "Insertar rengl\u00f3n antes",
|
||||
"Rows": "Renglones ",
|
||||
"Height": "Alto",
|
||||
"Paste row after": "Pegar rengl\u00f3n despu\u00e9s",
|
||||
"Alignment": "Alineaci\u00f3n ",
|
||||
"Border color": "Color del borde",
|
||||
"Column group": "Grupo de columnas",
|
||||
"Row": "Rengl\u00f3n ",
|
||||
"Insert column before": "Insertar columna antes",
|
||||
"Split cell": "Dividir celdas",
|
||||
"Cell padding": "Relleno de la celda",
|
||||
"Cell spacing": "Espacio entre celdas",
|
||||
"Row type": "Tipo de rengl\u00f3n ",
|
||||
"Insert table": "Insertar tabla",
|
||||
"Body": "Cuerpo",
|
||||
"Caption": "Subt\u00edtulo",
|
||||
"Footer": "Pie",
|
||||
"Delete row": "Eliminar rengl\u00f3n ",
|
||||
"Paste row before": "Pegar rengl\u00f3n antes",
|
||||
"Scope": "Alcance",
|
||||
"Delete table": "Eliminar tabla",
|
||||
"H Align": "Alineaci\u00f3n Horizontal",
|
||||
"Top": "Arriba",
|
||||
"Header cell": "Celda de encabezado",
|
||||
"Column": "Columna",
|
||||
"Row group": "Grupo de renglones",
|
||||
"Cell": "Celda",
|
||||
"Middle": "Centrado",
|
||||
"Cell type": "Tipo de celda",
|
||||
"Copy row": "Copiar rengl\u00f3n ",
|
||||
"Row properties": "Propiedades del rengl\u00f3n ",
|
||||
"Table properties": "Propiedades de tabla",
|
||||
"Bottom": "Abajo",
|
||||
"V Align": "Alineaci\u00f3n Vertical",
|
||||
"Header": "Encabezado",
|
||||
"Right": "Derecha",
|
||||
"Insert column after": "Insertar columna despu\u00e9s",
|
||||
"Cols": "Columnas",
|
||||
"Insert row after": "Insertar rengl\u00f3n despu\u00e9s",
|
||||
"Width": "Ancho",
|
||||
"Cell properties": "Propiedades de celda",
|
||||
"Left": "Izquierda",
|
||||
"Cut row": "Cortar renglon",
|
||||
"Delete column": "Eliminar columna",
|
||||
"Center": "Centro",
|
||||
"Merge cells": "Unir celdas",
|
||||
"Insert template": "Insertar plantilla",
|
||||
"Templates": "Plantilla",
|
||||
"Background color": "Color de fondo",
|
||||
"Custom...": "Personalizar",
|
||||
"Custom color": "Perzonalizar color",
|
||||
"No color": "Sin color",
|
||||
"Text color": "Color de letra",
|
||||
"Show blocks": "Mostrar bloques",
|
||||
"Show invisible characters": "Mostrar caracteres invisibles",
|
||||
"Words: {0}": "Palabras:{0}",
|
||||
"Insert": "Insertar",
|
||||
"File": "Archivo",
|
||||
"Edit": "Editar",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Presione dentro del \u00e1rea de texto ALT-F9 para invocar el men\u00fa, ALT-F10 para la barra de herramientas y ALT-0 para la ayuda.",
|
||||
"Tools": "Herramientas",
|
||||
"View": "Vistas",
|
||||
"Table": "Tabla",
|
||||
"Format": "Formato"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/et.js
Normal file
219
data/web/rc/program/js/tinymce/langs/et.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('et',{
|
||||
"Cut": "L\u00f5ika",
|
||||
"Heading 5": "Pealkiri 5",
|
||||
"Header 2": "Pealkiri 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Sinu veebilehitseja ei toeta otsest ligip\u00e4\u00e4su l\u00f5ikelauale. Palun kasuta selle asemel klaviatuuri kiirk\u00e4sklusi Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Pealkiri 4",
|
||||
"Div": "Sektsioon",
|
||||
"Heading 2": "Pealkiri 2",
|
||||
"Paste": "Kleebi",
|
||||
"Close": "Sulge",
|
||||
"Font Family": "Kirjastiilid",
|
||||
"Pre": "Eelvormindatud",
|
||||
"Align right": "Joonda paremale",
|
||||
"New document": "Uus dokument",
|
||||
"Blockquote": "Plokktsitaat",
|
||||
"Numbered list": "J\u00e4rjestatud loend",
|
||||
"Heading 1": "Pealkiri 1",
|
||||
"Headings": "Pealkirjad",
|
||||
"Increase indent": "Suurenda taanet",
|
||||
"Formats": "Vormingud",
|
||||
"Headers": "P\u00e4ised",
|
||||
"Select all": "Vali k\u00f5ik",
|
||||
"Header 3": "Pealkiri 3",
|
||||
"Blocks": "Plokid",
|
||||
"Undo": "V\u00f5ta tagasi",
|
||||
"Strikethrough": "L\u00e4bikriipsutatud",
|
||||
"Bullet list": "J\u00e4rjestamata loend",
|
||||
"Header 1": "Pealkiri 1",
|
||||
"Superscript": "\u00dclaindeks",
|
||||
"Clear formatting": "Puhasta vorming",
|
||||
"Font Sizes": "Kirja suurused",
|
||||
"Subscript": "Alaindeks",
|
||||
"Header 6": "Pealkiri 6",
|
||||
"Redo": "Tee uuesti",
|
||||
"Paragraph": "L\u00f5ik",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Rasvane",
|
||||
"Code": "Kood",
|
||||
"Italic": "Kaldkiri",
|
||||
"Align center": "Joonda keskele",
|
||||
"Header 5": "Pealkiri 5",
|
||||
"Heading 6": "Pealkiri 6",
|
||||
"Heading 3": "Pealkiri 3",
|
||||
"Decrease indent": "V\u00e4henda taanet",
|
||||
"Header 4": "Pealkiri 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Asetamine on n\u00fc\u00fcd tekstire\u017eiimis. Sisu asetatakse n\u00fc\u00fcd lihttekstina, kuni sa l\u00fclitad selle valiku v\u00e4lja.",
|
||||
"Underline": "Allakriipsutatud",
|
||||
"Cancel": "Katkesta",
|
||||
"Justify": "Joonda r\u00f6\u00f6pselt",
|
||||
"Inline": "Reasisene",
|
||||
"Copy": "Kopeeri",
|
||||
"Align left": "Joonda vasakule",
|
||||
"Visual aids": "N\u00e4itevahendid",
|
||||
"Lower Greek": "Kreeka v\u00e4iket\u00e4hed (\u03b1, \u03b2, \u03b3)",
|
||||
"Square": "Ruut",
|
||||
"Default": "Vaikimisi",
|
||||
"Lower Alpha": "V\u00e4iket\u00e4hed (a, b, c)",
|
||||
"Circle": "Ring",
|
||||
"Disc": "Ketas",
|
||||
"Upper Alpha": "Suurt\u00e4hed (A, B, C)",
|
||||
"Upper Roman": "Rooma suurt\u00e4hed (I, II, III)",
|
||||
"Lower Roman": "Rooma v\u00e4iket\u00e4hed (i, ii, iii)",
|
||||
"Name": "Nimi",
|
||||
"Anchor": "Ankur",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Sul on salvestamata muudatusi. Oled Sa kindel, et soovid mujale navigeeruda?",
|
||||
"Restore last draft": "Taasta viimane mustand",
|
||||
"Special character": "Erim\u00e4rk",
|
||||
"Source code": "L\u00e4htekood",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "V\u00e4rv",
|
||||
"Right to left": "Paremalt vasakule",
|
||||
"Left to right": "Vasakult paremale",
|
||||
"Emoticons": "Emotikonid",
|
||||
"Robots": "Robotid",
|
||||
"Document properties": "Dokumendi omadused",
|
||||
"Title": "Pealkiri",
|
||||
"Keywords": "M\u00e4rks\u00f5nad",
|
||||
"Encoding": "M\u00e4rgistik",
|
||||
"Description": "Kirjeldus",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "T\u00e4isekraan",
|
||||
"Horizontal line": "Horisontaaljoon",
|
||||
"Horizontal space": "Reavahe",
|
||||
"Insert\/edit image": "Lisa\/muuda pilt",
|
||||
"General": "\u00dcldine",
|
||||
"Advanced": "T\u00e4iendavad seaded",
|
||||
"Source": "Allikas",
|
||||
"Border": "\u00c4\u00e4ris",
|
||||
"Constrain proportions": "S\u00e4ilita kuvasuhe",
|
||||
"Vertical space": "P\u00fcstine vahe",
|
||||
"Image description": "Pildi kirjeldus",
|
||||
"Style": "Stiil",
|
||||
"Dimensions": "M\u00f5\u00f5tmed",
|
||||
"Insert image": "Lisa pilt",
|
||||
"Zoom in": "Suumi sisse",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Tagasi",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Peegelda horisontaalselt",
|
||||
"Resize": "Muuda suurust",
|
||||
"Sharpen": "Teravamaks",
|
||||
"Zoom out": "Suumi v\u00e4lja",
|
||||
"Image options": "Pildi valikud",
|
||||
"Apply": "Rakenda",
|
||||
"Brightness": "Heledus",
|
||||
"Rotate clockwise": "P\u00f6\u00f6ra p\u00e4rip\u00e4eva",
|
||||
"Rotate counterclockwise": "P\u00f6\u00f6ra vastup\u00e4eva",
|
||||
"Edit image": "Muuda pilti",
|
||||
"Color levels": "V\u00e4rvi tasemed",
|
||||
"Crop": "L\u00f5ika",
|
||||
"Orientation": "Suund",
|
||||
"Flip vertically": "Peegelda vertikaalselt",
|
||||
"Invert": "P\u00f6\u00f6ra v\u00e4rvid",
|
||||
"Insert date\/time": "Lisa kuup\u00e4ev\/kellaaeg",
|
||||
"Remove link": "Eemalda link",
|
||||
"Url": "Viide (url)",
|
||||
"Text to display": "Kuvatav tekst",
|
||||
"Anchors": "Ankrud",
|
||||
"Insert link": "Lisa link",
|
||||
"New window": "Uus aken",
|
||||
"None": "Puudub",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL, mille sa sisestasid, n\u00e4ib olevat v\u00e4line link. Kas sa soovid lisada sellele eesliite http:\/\/ ?",
|
||||
"Target": "Sihtm\u00e4rk",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, mille sa sisestasid, n\u00e4ib olevat e-posti aadress. Kas sa soovid lisada sellele eesliite mailto: ?",
|
||||
"Insert\/edit link": "Lisa\/muuda link",
|
||||
"Insert\/edit video": "Lisa\/muuda video",
|
||||
"Poster": "Lisaja",
|
||||
"Alternative source": "Teine allikas",
|
||||
"Paste your embed code below:": "Kleebi oma manustamiskood siia alla:",
|
||||
"Insert video": "Lisa video",
|
||||
"Embed": "Manusta",
|
||||
"Nonbreaking space": "T\u00fchim\u00e4rk (nbsp)",
|
||||
"Page break": "Lehevahetus",
|
||||
"Paste as text": "Aseta tekstina",
|
||||
"Preview": "Eelvaade",
|
||||
"Print": "Tr\u00fcki",
|
||||
"Save": "Salvesta",
|
||||
"Could not find the specified string.": "Ei suutnud leida etteantud s\u00f5net.",
|
||||
"Replace": "Asenda",
|
||||
"Next": "J\u00e4rg",
|
||||
"Whole words": "Terviks\u00f5nad",
|
||||
"Find and replace": "Otsi ja asenda",
|
||||
"Replace with": "Asendus",
|
||||
"Find": "Otsi",
|
||||
"Replace all": "Asenda k\u00f5ik",
|
||||
"Match case": "Erista suur- ja v\u00e4iket\u00e4hti",
|
||||
"Prev": "Eelm",
|
||||
"Spellcheck": "\u00d5igekirja kontroll",
|
||||
"Finish": "L\u00f5peta",
|
||||
"Ignore all": "Eira k\u00f5iki",
|
||||
"Ignore": "Eira",
|
||||
"Add to Dictionary": "Lisa s\u00f5naraamatusse",
|
||||
"Insert row before": "Lisa rida enne",
|
||||
"Rows": "Read",
|
||||
"Height": "K\u00f5rgus",
|
||||
"Paste row after": "Kleebi rida j\u00e4rele",
|
||||
"Alignment": "Joondus",
|
||||
"Border color": "Piirjoone v\u00e4rv",
|
||||
"Column group": "Veergude r\u00fchm",
|
||||
"Row": "Rida",
|
||||
"Insert column before": "Lisa tulp enne",
|
||||
"Split cell": "T\u00fckelda lahter",
|
||||
"Cell padding": "Lahtri sisu ja tabeli \u00e4\u00e4rise vahe",
|
||||
"Cell spacing": "Lahtrivahe",
|
||||
"Row type": "Rea t\u00fc\u00fcp",
|
||||
"Insert table": "Lisa tabel",
|
||||
"Body": "P\u00f5hiosa",
|
||||
"Caption": "Alapealkiri",
|
||||
"Footer": "Jalus",
|
||||
"Delete row": "Kustuta rida",
|
||||
"Paste row before": "Kleebi rida enne",
|
||||
"Scope": "Ulatus",
|
||||
"Delete table": "Kustuta tabel",
|
||||
"H Align": "H Joondus",
|
||||
"Top": "\u00dcleval",
|
||||
"Header cell": "P\u00e4islahter",
|
||||
"Column": "Tulp",
|
||||
"Row group": "Ridade r\u00fchm",
|
||||
"Cell": "Lahter",
|
||||
"Middle": "Keskel",
|
||||
"Cell type": "Lahtri t\u00fc\u00fcp",
|
||||
"Copy row": "Kopeeri rida",
|
||||
"Row properties": "Rea omadused",
|
||||
"Table properties": "Tabeli omadused",
|
||||
"Bottom": "All",
|
||||
"V Align": "V Joondus",
|
||||
"Header": "P\u00e4is",
|
||||
"Right": "Paremal",
|
||||
"Insert column after": "Lisa tulp j\u00e4rele",
|
||||
"Cols": "Veerud",
|
||||
"Insert row after": "Lisa rida j\u00e4rele",
|
||||
"Width": "Laius",
|
||||
"Cell properties": "Lahtri omadused",
|
||||
"Left": "Vasakul",
|
||||
"Cut row": "L\u00f5ika rida",
|
||||
"Delete column": "Kustuta tulp",
|
||||
"Center": "Keskel",
|
||||
"Merge cells": "\u00dchenda lahtrid",
|
||||
"Insert template": "Lisa mall",
|
||||
"Templates": "Mallid",
|
||||
"Background color": "Tausta v\u00e4rv",
|
||||
"Custom...": "Kohandatud...",
|
||||
"Custom color": "Kohandatud v\u00e4rv",
|
||||
"No color": "V\u00e4rvi pole",
|
||||
"Text color": "Teksti v\u00e4rv",
|
||||
"Show blocks": "N\u00e4ita plokke",
|
||||
"Show invisible characters": "N\u00e4ita peidetud m\u00e4rke",
|
||||
"Words: {0}": "S\u00f5nu: {0}",
|
||||
"Insert": "Sisesta",
|
||||
"File": "Fail",
|
||||
"Edit": "Muuda",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rikastatud teksti ala. Men\u00fc\u00fc jaoks vajuta ALT-F9. T\u00f6\u00f6riistariba jaoks vajuta ALT-F10. Abi saamiseks vajuta ALT-0.",
|
||||
"Tools": "T\u00f6\u00f6riistad",
|
||||
"View": "Vaade",
|
||||
"Table": "Tabel",
|
||||
"Format": "Vorming"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/eu.js
Normal file
219
data/web/rc/program/js/tinymce/langs/eu.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('eu',{
|
||||
"Cut": "Ebaki",
|
||||
"Heading 5": "5. izenburua",
|
||||
"Header 2": "2 Goiburua",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Zure nabigatzaileak ez du arbela zuzenean erabiltzeko euskarririk. Mesedez erabili CTRL+X\/C\/V teklatuko lasterbideak.",
|
||||
"Heading 4": "4. izenburua",
|
||||
"Div": "Div",
|
||||
"Heading 2": "2. izenburua",
|
||||
"Paste": "Itsatsi",
|
||||
"Close": "Itxi",
|
||||
"Font Family": "Letra-tipo familia",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Lerrokatu eskuinean",
|
||||
"New document": "Dokumentu berria",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "Zerrenda zenbatua",
|
||||
"Heading 1": "1. izenburua",
|
||||
"Headings": "Izenburuak",
|
||||
"Increase indent": "Handitu koska",
|
||||
"Formats": "Formatuak",
|
||||
"Headers": "Goiburuak",
|
||||
"Select all": "Hautatu dena",
|
||||
"Header 3": "3 Goiburua",
|
||||
"Blocks": "Blokeak",
|
||||
"Undo": "Desegin",
|
||||
"Strikethrough": "Marratua",
|
||||
"Bullet list": "Bulet zerrenda",
|
||||
"Header 1": "1 Goiburua",
|
||||
"Superscript": "Goi-indize",
|
||||
"Clear formatting": "Garbitu formatua",
|
||||
"Font Sizes": "Letra-tamainak",
|
||||
"Subscript": "Azpiindize",
|
||||
"Header 6": "6 Goiburua",
|
||||
"Redo": "Berregin",
|
||||
"Paragraph": "Paragrafoa",
|
||||
"Ok": "Ondo",
|
||||
"Bold": "Lodia",
|
||||
"Code": "Kodea",
|
||||
"Italic": "Etzana",
|
||||
"Align center": "Lerrokatu erdian",
|
||||
"Header 5": "5 Goiburua",
|
||||
"Heading 6": "6. izenburua",
|
||||
"Heading 3": "3. izenburua",
|
||||
"Decrease indent": "Txikitu koska",
|
||||
"Header 4": "4 Goiburua",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Itsatsi testu arrunt moduan dago orain. Edukiak testu arruntak bezala itsatsiko dira aukera hau itzaltzen duzunera arte.",
|
||||
"Underline": "Azpimarratua",
|
||||
"Cancel": "Ezeztatu",
|
||||
"Justify": "Justifikatuta",
|
||||
"Inline": "Lerroan",
|
||||
"Copy": "Kopiatu",
|
||||
"Align left": "Lerrokatu ezkerrean",
|
||||
"Visual aids": "Laguntza bisualak",
|
||||
"Lower Greek": "Behe grekoa",
|
||||
"Square": "Karratua",
|
||||
"Default": "Lehenetstia",
|
||||
"Lower Alpha": "Behe alfa",
|
||||
"Circle": "Zirkulua",
|
||||
"Disc": "Diskoa",
|
||||
"Upper Alpha": "Goi alfa",
|
||||
"Upper Roman": "Goi erromatarra",
|
||||
"Lower Roman": "Behe erromatarra",
|
||||
"Name": "Izena",
|
||||
"Anchor": "Esteka",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Gorde gabeko aldaketak dituzu, zihur zaude hemendik irten nahi duzula?",
|
||||
"Restore last draft": "Leheneratu azken zirriborroa",
|
||||
"Special character": "Karaktere bereziak",
|
||||
"Source code": "Iturburu-kodea",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Kolorea",
|
||||
"Right to left": "Eskuinetik ezkerrera",
|
||||
"Left to right": "Ezkerretik eskuinera",
|
||||
"Emoticons": "Irrifartxoak",
|
||||
"Robots": "Robotak",
|
||||
"Document properties": "Dokumentuaren propietateak",
|
||||
"Title": "Titulua",
|
||||
"Keywords": "Hitz gakoak",
|
||||
"Encoding": "Encoding",
|
||||
"Description": "Deskribapena",
|
||||
"Author": "Egilea",
|
||||
"Fullscreen": "Pantaila osoa",
|
||||
"Horizontal line": "Marra horizontala",
|
||||
"Horizontal space": "Hutsune horizontala",
|
||||
"Insert\/edit image": "Irudia txertatu\/editatu",
|
||||
"General": "Orokorra",
|
||||
"Advanced": "Aurreratua",
|
||||
"Source": "Iturburua",
|
||||
"Border": "Ertza",
|
||||
"Constrain proportions": "Zerraditu proportzioak",
|
||||
"Vertical space": "Hutsune bertikala",
|
||||
"Image description": "Irudiaren deskribapena",
|
||||
"Style": "Estiloa",
|
||||
"Dimensions": "Neurriak",
|
||||
"Insert image": "Irudia txertatu",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "Data\/ordua txertatu",
|
||||
"Remove link": "Kendu esteka",
|
||||
"Url": "Url",
|
||||
"Text to display": "Bistaratzeko testua",
|
||||
"Anchors": "Estekak",
|
||||
"Insert link": "Esteka txertatu",
|
||||
"New window": "Lehio berria",
|
||||
"None": "Bat ere ez",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Sartu duzun URL-ak kanpoko esteka dela dirudi. Nahi duzu dagokion http:\/\/ aurrizkia gehitzea?",
|
||||
"Target": "Target",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Sartu duzun URL-ak e-posta helbidea dela dirudi. Nahi duzu dagokion mailto: aurrizkia gehitzea?",
|
||||
"Insert\/edit link": "Esteka txertatu\/editatu",
|
||||
"Insert\/edit video": "Bideoa txertatu\/editatu",
|
||||
"Poster": "Poster-a",
|
||||
"Alternative source": "Iturburu alternatiboa",
|
||||
"Paste your embed code below:": "Itsatsi hemen zure enkapsulatzeko kodea:",
|
||||
"Insert video": "Bideoa txertatu",
|
||||
"Embed": "Kapsulatu",
|
||||
"Nonbreaking space": "Zuriune zatiezina",
|
||||
"Page break": "Orrialde-jauzia",
|
||||
"Paste as text": "Itsatsi testu bezala",
|
||||
"Preview": "Aurrebista",
|
||||
"Print": "Inprimatu",
|
||||
"Save": "Gorde",
|
||||
"Could not find the specified string.": "Ezin izan da zehaztutako katea aurkitu.",
|
||||
"Replace": "Ordeztu",
|
||||
"Next": "Hurrengoa",
|
||||
"Whole words": "hitz osoak",
|
||||
"Find and replace": "Bilatu eta ordeztu",
|
||||
"Replace with": "Honekin ordeztu",
|
||||
"Find": "Bilatu",
|
||||
"Replace all": "Ordeztu dena",
|
||||
"Match case": "Maiuskula\/minuskula",
|
||||
"Prev": "Aurrekoa",
|
||||
"Spellcheck": "Egiaztapenak",
|
||||
"Finish": "Amaitu",
|
||||
"Ignore all": "Ez ikusi guztia",
|
||||
"Ignore": "Ez ikusi",
|
||||
"Add to Dictionary": "Gehitu hiztegira",
|
||||
"Insert row before": "Txertatu errenkada aurretik",
|
||||
"Rows": "Errenkadak",
|
||||
"Height": "Altuera",
|
||||
"Paste row after": "Itsatsi errenkada ostean",
|
||||
"Alignment": "Lerrokatzea",
|
||||
"Border color": "Bordearen kolorea",
|
||||
"Column group": "Zutabe taldea",
|
||||
"Row": "Errenkada",
|
||||
"Insert column before": "Txertatu zutabe aurretik",
|
||||
"Split cell": "Banatu gelaxkak",
|
||||
"Cell padding": "Gelaxken betegarria",
|
||||
"Cell spacing": "Gelaxka arteko tartea",
|
||||
"Row type": "Lerro mota",
|
||||
"Insert table": "Txertatu taula",
|
||||
"Body": "Gorputza",
|
||||
"Caption": "Epigrafea",
|
||||
"Footer": "Oina",
|
||||
"Delete row": "Ezabatu errenkada",
|
||||
"Paste row before": "Itsatsi errenkada aurretik",
|
||||
"Scope": "Esparrua",
|
||||
"Delete table": "Taula ezabatu",
|
||||
"H Align": "Lerrokatze horizontala",
|
||||
"Top": "Goian",
|
||||
"Header cell": "Goiburuko gelaxka",
|
||||
"Column": "Zutabea",
|
||||
"Row group": "Lerro taldea",
|
||||
"Cell": "Gelaxka",
|
||||
"Middle": "Erdian",
|
||||
"Cell type": "Gelaxka mota",
|
||||
"Copy row": "Kopiatu errenkada",
|
||||
"Row properties": "Errenkadaren propietateak",
|
||||
"Table properties": "Taularen propietateak",
|
||||
"Bottom": "Behean",
|
||||
"V Align": "Lerrokatze bertikala",
|
||||
"Header": "Goiburua",
|
||||
"Right": "Eskuina",
|
||||
"Insert column after": "Txertatu zutabea ostean",
|
||||
"Cols": "Zutabeak",
|
||||
"Insert row after": "Txertatu errenkada ostean",
|
||||
"Width": "Zabalera",
|
||||
"Cell properties": "Gelaxkaren propietateak",
|
||||
"Left": "Ezkerra",
|
||||
"Cut row": "Ebaki errenkada",
|
||||
"Delete column": "Ezabatu zutabea",
|
||||
"Center": "Erdia",
|
||||
"Merge cells": "Batu gelaxkak",
|
||||
"Insert template": "Txertatu txantiloia",
|
||||
"Templates": "Txantiloiak",
|
||||
"Background color": "Atzeko kolorea",
|
||||
"Custom...": "Pertsonalizatua...",
|
||||
"Custom color": "Kolore pertsonalizatua",
|
||||
"No color": "Kolorerik gabe",
|
||||
"Text color": "Testuaren kolorea",
|
||||
"Show blocks": "Erakutsi blokeak",
|
||||
"Show invisible characters": "Erakutsi karaktere izkutuak",
|
||||
"Words: {0}": "Hitzak: {0}",
|
||||
"Insert": "Sartu",
|
||||
"File": "Fitxategia",
|
||||
"Edit": "Editatu",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Testu aberastuko area. Sakatu ALT-F9 menurako. Sakatu ALT-F10 tresna-barrarako. Sakatu ALT-0 laguntzarako",
|
||||
"Tools": "Tresnak",
|
||||
"View": "Ikusi",
|
||||
"Table": "Taula",
|
||||
"Format": "Formatua"
|
||||
});
|
||||
220
data/web/rc/program/js/tinymce/langs/fa.js
Normal file
220
data/web/rc/program/js/tinymce/langs/fa.js
Normal file
@@ -0,0 +1,220 @@
|
||||
tinymce.addI18n('fa',{
|
||||
"Cut": "\u0628\u0631\u062f\u0627\u0634\u062a\u0646",
|
||||
"Heading 5": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 5",
|
||||
"Header 2": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u0627\u0632 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0647 \u062d\u0627\u0641\u0638\u0647 \u06a9\u067e\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc \u06a9\u0646\u062f. \u0644\u0637\u0641\u0627 \u0627\u0632 \u06a9\u0644\u06cc\u062f \u0647\u0627\u06cc Ctrl+X\/C\/V \u062f\u0631 \u06a9\u06cc\u0628\u0648\u0631\u062f \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0631 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f.",
|
||||
"Heading 4": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 4",
|
||||
"Div": "\u062a\u06af \u0628\u062e\u0634 - Div",
|
||||
"Heading 2": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 2",
|
||||
"Paste": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646",
|
||||
"Close": "\u0628\u0633\u062a\u0646",
|
||||
"Font Family": "\u0641\u0648\u0646\u062a",
|
||||
"Pre": "\u062a\u06af \u062a\u0628\u062f\u06cc\u0644 \u0628\u0647 \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 - Pre",
|
||||
"Align right": "\u0631\u0627\u0633\u062a \u0686\u06cc\u0646",
|
||||
"New document": "\u0633\u0646\u062f \u062c\u062f\u06cc\u062f",
|
||||
"Blockquote": "\u062a\u06af \u0646\u0642\u0644 \u0642\u0648\u0644 - Blockquote",
|
||||
"Numbered list": "\u0644\u06cc\u0633\u062a \u0634\u0645\u0627\u0631\u0647 \u0627\u06cc",
|
||||
"Heading 1": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 1",
|
||||
"Headings": "\u0639\u0646\u0648\u0627\u0646",
|
||||
"Increase indent": "\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648 \u0631\u0641\u062a\u06af\u06cc",
|
||||
"Formats": "\u0642\u0627\u0644\u0628",
|
||||
"Headers": "\u0633\u0631\u0622\u06cc\u0646\u062f",
|
||||
"Select all": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647",
|
||||
"Header 3": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 3",
|
||||
"Blocks": "\u0628\u0644\u0648\u06a9",
|
||||
"Undo": "\t\n\u0628\u0627\u0637\u0644 \u06a9\u0631\u062f\u0646",
|
||||
"Strikethrough": "\u062e\u0637 \u062e\u0648\u0631\u062f\u0647",
|
||||
"Bullet list": "\u0644\u06cc\u0633\u062a \u062f\u0627\u06cc\u0631\u0647 \u0627\u06cc",
|
||||
"Header 1": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 1",
|
||||
"Superscript": "\u0628\u0627\u0644\u0627\u0646\u0648\u06cc\u0633 - \u062d\u0627\u0644\u062a \u062a\u0648\u0627\u0646",
|
||||
"Clear formatting": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0644\u0628 \u0628\u0646\u062f\u06cc",
|
||||
"Font Sizes": "\u0627\u0646\u062f\u0627\u0632\u0647 \u0641\u0648\u0646\u062a",
|
||||
"Subscript": "\u0632\u06cc\u0631 \u0646\u0648\u06cc\u0633 - \u062d\u0627\u0644\u062a \u0627\u0646\u062f\u06cc\u0633",
|
||||
"Header 6": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 6",
|
||||
"Redo": "\u0627\u0646\u062c\u0627\u0645 \u062f\u0648\u0628\u0627\u0631\u0647",
|
||||
"Paragraph": "\u062a\u06af \u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641 - Paragraph",
|
||||
"Ok": "\u0628\u0627\u0634\u0647",
|
||||
"Bold": "\u062f\u0631\u0634\u062a",
|
||||
"Code": "\u062a\u06af \u06a9\u062f - Code",
|
||||
"Italic": "\u062e\u0637 \u06a9\u062c",
|
||||
"Align center": "\u0648\u0633\u0637 \u0686\u06cc\u0646",
|
||||
"Header 5": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 5",
|
||||
"Heading 6": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 6",
|
||||
"Heading 3": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 3",
|
||||
"Decrease indent": "\u06a9\u0627\u0647\u0634 \u062a\u0648 \u0631\u0641\u062a\u06af\u06cc",
|
||||
"Header 4": "\u0633\u0631\u200c\u0635\u0641\u062d\u0647 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0647\u0645 \u0627\u06a9\u0646\u0648\u0646 \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 \u0627\u0633\u062a. \u062a\u0627 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u0627\u06cc\u0646 \u062d\u0627\u0644\u062a \u0631\u0627 \u063a\u06cc\u0631\u200c\u0641\u0639\u0627\u0644 \u0646\u06a9\u0646\u06cc\u062f\u060c \u0645\u062d\u062a\u0648\u0627 \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 \u0627\u0636\u0627\u0641\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.",
|
||||
"Underline": "\u062e\u0637 \u0632\u06cc\u0631",
|
||||
"Cancel": "\u0644\u063a\u0648",
|
||||
"Justify": "\u0645\u0633\u0627\u0648\u06cc \u0627\u0632 \u0637\u0631\u0641\u06cc\u0646",
|
||||
"Inline": "\u062e\u0637\u06cc",
|
||||
"Copy": "\u06a9\u067e\u06cc",
|
||||
"Align left": "\u0686\u067e \u0686\u06cc\u0646",
|
||||
"Visual aids": "\u06a9\u0645\u06a9 \u0647\u0627\u06cc \u0628\u0635\u0631\u06cc",
|
||||
"Lower Greek": "\u06cc\u0648\u0646\u0627\u0646\u06cc \u06a9\u0648\u0686\u06a9",
|
||||
"Square": "\u0645\u0631\u0628\u0639",
|
||||
"Default": "\u067e\u06cc\u0634\u0641\u0631\u0636",
|
||||
"Lower Alpha": "\u0622\u0644\u0641\u0627\u0621 \u06a9\u0648\u0686\u06a9",
|
||||
"Circle": "\u062f\u0627\u06cc\u0631\u0647",
|
||||
"Disc": "\u062f\u06cc\u0633\u06a9",
|
||||
"Upper Alpha": "\u0622\u0644\u0641\u0627\u0621 \u0628\u0632\u0631\u06af",
|
||||
"Upper Roman": "\u0631\u0648\u0645\u06cc \u0628\u0632\u0631\u06af",
|
||||
"Lower Roman": "\u0631\u0648\u0645\u06cc \u06a9\u0648\u0686\u06a9",
|
||||
"Name": "\u0646\u0627\u0645",
|
||||
"Anchor": "\u0644\u0646\u06af\u0631 - \u0644\u06cc\u0646\u06a9",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0634\u0645\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0630\u062e\u06cc\u0631\u0647 \u0646\u0634\u062f\u0647 \u0627\u06cc \u062f\u0627\u0631\u06cc\u062f\u060c \u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0628\u0631\u0648\u06cc\u062f\u061f",
|
||||
"Restore last draft": "\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646 \u0622\u062e\u0631\u06cc\u0646 \u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633",
|
||||
"Special character": "\u06a9\u0627\u0631\u0627\u06a9\u062a\u0631 \u0647\u0627\u06cc \u062e\u0627\u0635",
|
||||
"Source code": "\u06a9\u062f \u0645\u0646\u0628\u0639",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Color",
|
||||
"Right to left": "\u0631\u0627\u0633\u062a \u0628\u0647 \u0686\u067e",
|
||||
"Left to right": "\u0686\u067e \u0628\u0647 \u0631\u0627\u0633\u062a",
|
||||
"Emoticons": "\u0634\u06a9\u0644\u06a9\u200c\u0647\u0627",
|
||||
"Robots": "\u0631\u0628\u0627\u062a\u200c\u0647\u0627",
|
||||
"Document properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0646\u062f",
|
||||
"Title": "\u0639\u0646\u0648\u0627\u0646",
|
||||
"Keywords": "\u06a9\u0644\u0645\u0627\u062a \u06a9\u0644\u06cc\u062f\u06cc",
|
||||
"Encoding": "\u06a9\u062f \u06af\u0630\u0627\u0631\u06cc",
|
||||
"Description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a",
|
||||
"Author": "\u0646\u0648\u06cc\u0633\u0646\u062f\u0647",
|
||||
"Fullscreen": "\u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647",
|
||||
"Horizontal line": "\u062e\u0637 \u0627\u0641\u0642\u06cc",
|
||||
"Horizontal space": "\u0641\u0636\u0627\u06cc \u0627\u0641\u0642\u06cc",
|
||||
"Insert\/edit image": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0648\u06cc\u0631",
|
||||
"General": "\u0639\u0645\u0648\u0645\u06cc",
|
||||
"Advanced": "\u067e\u06cc\u0634\u0631\u0641\u062a\u0647",
|
||||
"Source": "\u0645\u0646\u0628\u0639",
|
||||
"Border": "\u062d\u0627\u0634\u06cc\u0647",
|
||||
"Constrain proportions": "\u062d\u0641\u0638 \u062a\u0646\u0627\u0633\u0628",
|
||||
"Vertical space": "\u0641\u0636\u0627\u06cc \u0639\u0645\u0648\u062f\u06cc",
|
||||
"Image description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0639\u06a9\u0633",
|
||||
"Style": "\u0633\u0628\u06a9",
|
||||
"Dimensions": "\u0627\u0628\u0639\u0627\u062f",
|
||||
"Insert image": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0648\u06cc\u0631",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0627\u0631\u06cc\u062e\/\u0632\u0645\u0627\u0646",
|
||||
"Remove link": "\u062d\u0630\u0641 \u0644\u06cc\u0646\u06a9",
|
||||
"Url": "\u0627\u062f\u0631\u0633 \u0644\u06cc\u0646\u06a9",
|
||||
"Text to display": "\u0645\u062a\u0646 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634",
|
||||
"Anchors": "\u0644\u0646\u06af\u0631 - \u0644\u06cc\u0646\u06a9 \u062f\u0627\u062e\u0644 \u0635\u0641\u062d\u0647",
|
||||
"Insert link": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0644\u06cc\u0646\u06a9",
|
||||
"New window": "\u067e\u0646\u062c\u0631\u0647 \u062c\u062f\u06cc\u062f",
|
||||
"None": "\u0647\u06cc\u0686 \u06a9\u062f\u0627\u0645",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?",
|
||||
"Target": "\u0646\u062d\u0648\u0647 \u0628\u0627\u0632 \u0634\u062f\u0646 \u062f\u0631 \u0645\u0631\u0648\u0631\u06af\u0631",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||
"Insert\/edit link": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u0644\u06cc\u0646\u06a9",
|
||||
"Insert\/edit video": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644 \u062a\u0635\u0648\u06cc\u0631\u06cc",
|
||||
"Poster": "\u067e\u0648\u0633\u062a\u0631",
|
||||
"Alternative source": "\u0645\u0646\u0628\u0639 \u062f\u06cc\u06af\u0631",
|
||||
"Paste your embed code below:": "\u06a9\u062f \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u062c\u0627 \u062f\u0627\u062f\u0646 \u062f\u0631 \u0633\u0627\u06cc\u062a - embed - \u060c \u062f\u0631 \u0632\u06cc\u0631 \u0642\u0631\u0627\u0631 \u062f\u0647\u06cc\u062f:",
|
||||
"Insert video": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644 \u062a\u0635\u0648\u06cc\u0631\u06cc",
|
||||
"Embed": "\u062c\u0627 \u062f\u0627\u062f\u0646",
|
||||
"Nonbreaking space": "\u0641\u0636\u0627\u06cc \u063a\u06cc\u0631 \u0634\u06a9\u0633\u062a\u0646",
|
||||
"Page break": "\u0634\u06a9\u0633\u062a\u0646 \u0635\u0641\u062d\u0647",
|
||||
"Paste as text": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0645\u062a\u0646",
|
||||
"Preview": "\u067e\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0634",
|
||||
"Print": "\u0686\u0627\u067e",
|
||||
"Save": "\u0630\u062e\u06cc\u0631\u0647",
|
||||
"Could not find the specified string.": "\u0631\u0634\u062a\u0647 \u0645\u062a\u0646\u06cc \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f.",
|
||||
"Replace": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646",
|
||||
"Next": "\u0628\u0639\u062f\u06cc",
|
||||
"Whole words": "\u0647\u0645\u0647 \u06a9\u0644\u0645\u0647\u200c\u0647\u0627",
|
||||
"Find and replace": "\u062c\u0633\u062a\u200c\u0648\u200c\u062c\u0648 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646",
|
||||
"Replace with": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0628\u0627",
|
||||
"Find": "\u062c\u0633\u062a\u200c\u0648\u200c\u062c\u0648",
|
||||
"Replace all": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0647\u0645\u0647",
|
||||
"Match case": "\u062d\u0633\u0627\u0633 \u0628\u0647 \u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9 \u0648 \u0628\u0632\u0631\u06af",
|
||||
"Prev": "\u0642\u0628\u0644\u06cc",
|
||||
"Spellcheck": "\u0628\u0631\u0631\u0633\u06cc \u0627\u0645\u0644\u0627\u06cc\u06cc",
|
||||
"Finish": "\u067e\u0627\u06cc\u0627\u0646",
|
||||
"Ignore all": "\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u0647\u0645\u0647",
|
||||
"Ignore": "\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646",
|
||||
"Add to Dictionary": "Add to Dictionary",
|
||||
"Insert row before": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u0637\u0631 \u062c\u062f\u06cc\u062f \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631",
|
||||
"Rows": "\u062a\u0639\u062f\u0627\u062f \u0633\u0637\u0631\u200c\u0647\u0627",
|
||||
"Height": "\u0627\u0631\u062a\u0641\u0627\u0639",
|
||||
"Paste row after": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631\u060c \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631",
|
||||
"Alignment": "\u0631\u062f\u06cc\u0641 \u0628\u0646\u062f\u06cc \u0646\u0648\u0634\u062a\u0647",
|
||||
"Border color": "Border color",
|
||||
"Column group": "\u06af\u0631\u0648\u0647 \u0633\u062a\u0648\u0646",
|
||||
"Row": "\u0633\u0637\u0631",
|
||||
"Insert column before": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646 \u062c\u062f\u06cc\u062f \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u062a\u0648\u0646",
|
||||
"Split cell": "\u062a\u0642\u0633\u06cc\u0645 \u0633\u0644\u0648\u0644 \u062c\u062f\u0648\u0644",
|
||||
"Cell padding": "\u062d\u0627\u0634\u06cc\u0647 \u0633\u0644\u0648\u0644 \u0647\u0627",
|
||||
"Cell spacing": "\u0641\u0627\u0635\u0644\u0647\u200c\u06cc \u0628\u06cc\u0646 \u0633\u0644\u0648\u0644 \u0647\u0627",
|
||||
"Row type": "\u0646\u0648\u0639 \u0633\u0637\u0631",
|
||||
"Insert table": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062c\u062f\u0648\u0644",
|
||||
"Body": "\u0628\u062f\u0646\u0647",
|
||||
"Caption": "\u0639\u0646\u0648\u0627\u0646",
|
||||
"Footer": "\u067e\u0627\u0646\u0648\u06cc\u0633",
|
||||
"Delete row": "\u062d\u0630\u0641 \u0633\u0637\u0631",
|
||||
"Paste row before": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631\u060c \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631",
|
||||
"Scope": "\u0645\u062d\u062f\u0648\u062f\u0647\u200c\u06cc \u0639\u0646\u0648\u0627\u0646",
|
||||
"Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644",
|
||||
"H Align": "H Align",
|
||||
"Top": "Top",
|
||||
"Header cell": "\u0633\u0631\u0622\u06cc\u0646\u062f \u0633\u0644\u0648\u0644",
|
||||
"Column": "\u0633\u062a\u0648\u0646",
|
||||
"Row group": "\u06af\u0631\u0648\u0647 \u0633\u0637\u0631",
|
||||
"Cell": "\u0633\u0644\u0648\u0644",
|
||||
"Middle": "Middle",
|
||||
"Cell type": "\u0646\u0648\u0639 \u0633\u0644\u0648\u0644",
|
||||
"Copy row": "\u06a9\u067e\u06cc \u0633\u0637\u0631",
|
||||
"Row properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0637\u0631",
|
||||
"Table properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u062c\u062f\u0648\u0644",
|
||||
"Bottom": "Bottom",
|
||||
"V Align": "V Align",
|
||||
"Header": "\u0633\u0631\u0622\u06cc\u0646\u062f",
|
||||
"Right": "\u0631\u0627\u0633\u062a",
|
||||
"Insert column after": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646 \u062c\u062f\u06cc\u062f \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u062a\u0648\u0646",
|
||||
"Cols": "\u062a\u0639\u062f\u0627\u062f \u0633\u062a\u0648\u0646\u200c\u0647\u0627",
|
||||
"Insert row after": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u0637\u0631 \u062c\u062f\u06cc\u062f \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631",
|
||||
"Width": "\u0639\u0631\u0636",
|
||||
"Cell properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0644\u0648\u0644",
|
||||
"Left": "\u0686\u067e",
|
||||
"Cut row": "\u0628\u0631\u0634 \u0633\u0637\u0631",
|
||||
"Delete column": "\u062d\u0630\u0641 \u0633\u062a\u0648\u0646",
|
||||
"Center": "\u0648\u0633\u0637",
|
||||
"Merge cells": "\u0627\u062f\u063a\u0627\u0645 \u0633\u0644\u0648\u0644\u200c\u0647\u0627",
|
||||
"Insert template": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0627\u0644\u06af\u0648",
|
||||
"Templates": "\u0627\u0644\u06af\u0648\u200c\u0647\u0627",
|
||||
"Background color": "\u0631\u0646\u06af \u0632\u0645\u06cc\u0646\u0647 \u0645\u062a\u0646",
|
||||
"Custom...": "Custom...",
|
||||
"Custom color": "Custom color",
|
||||
"No color": "No color",
|
||||
"Text color": "\u0631\u0646\u06af \u0645\u062a\u0646",
|
||||
"Show blocks": "\u0646\u0645\u0627\u06cc\u0634 \u0628\u062e\u0634\u200c\u0647\u0627",
|
||||
"Show invisible characters": "\u0646\u0645\u0627\u06cc\u0634 \u06a9\u0627\u0631\u0627\u06a9\u062a\u0631\u0647\u0627\u06cc \u063a\u06cc\u0631 \u0642\u0627\u0628\u0644 \u0686\u0627\u067e",
|
||||
"Words: {0}": "\u06a9\u0644\u0645\u0627\u062a : {0}",
|
||||
"Insert": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646",
|
||||
"File": "\u067e\u0631\u0648\u0646\u062f\u0647",
|
||||
"Edit": "\u0648\u06cc\u0631\u0627\u06cc\u0634",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u067e\u06cc\u0634\u0631\u0641\u062a\u0647\u200c\u06cc \u0645\u062a\u0646. \u0628\u0631\u0627\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u0646\u0648 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc ALT-F9\u060c \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 ALT-F10 \u0648 \u0628\u0631\u0627\u06cc \u0645\u0634\u0627\u0647\u062f\u0647\u200c\u06cc \u0631\u0627\u0647\u0646\u0645\u0627 ALT-0 \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f.",
|
||||
"Tools": "\u0627\u0628\u0632\u0627\u0631\u0647\u0627",
|
||||
"View": "\u0646\u0645\u0627\u06cc\u0634",
|
||||
"Table": "\u062c\u062f\u0648\u0644",
|
||||
"Format": "\u0642\u0627\u0644\u0628",
|
||||
"_dir": "rtl"
|
||||
});
|
||||
220
data/web/rc/program/js/tinymce/langs/fa_IR.js
Normal file
220
data/web/rc/program/js/tinymce/langs/fa_IR.js
Normal file
@@ -0,0 +1,220 @@
|
||||
tinymce.addI18n('fa_IR',{
|
||||
"Cut": "\u0628\u0631\u0634",
|
||||
"Heading 5": "\u0639\u0646\u0648\u0627\u0646 5",
|
||||
"Header 2": "\u0633\u0631 \u0622\u0645\u062f 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0647 \u06a9\u0644\u06cc\u067e \u0628\u0648\u0631\u062f \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc \u06a9\u0646\u062f\u060c \u0644\u0637\u0641\u0627 \u0627\u0632 \u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc Ctrl+X\/C\/V \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f . ",
|
||||
"Heading 4": "\u0639\u0646\u0648\u0627\u0646 4",
|
||||
"Div": "\u0628\u0644\u0648\u06a9 \u062c\u062f\u0627 \u0633\u0627\u0632 (\u062a\u06af Div)",
|
||||
"Heading 2": "\u0639\u0646\u0648\u0627\u0646 2",
|
||||
"Paste": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646",
|
||||
"Close": "\u0628\u0633\u062a\u0646",
|
||||
"Font Family": "\u0646\u0648\u0639 \u0642\u0644\u0645",
|
||||
"Pre": "\u0628\u0644\u0648\u06a9 \u0645\u062a\u0646 \u0642\u0627\u0644\u0628 \u062f\u0627\u0631 (\u062a\u06af Pre)",
|
||||
"Align right": "\u0631\u0627\u0633\u062a \u0686\u06cc\u0646",
|
||||
"New document": "\u0633\u0646\u062f \u062c\u062f\u06cc\u062f",
|
||||
"Blockquote": "\u0628\u0644\u0648\u06a9 \u0646\u0642\u0644 \u0642\u0648\u0644 (\u062a\u06af BlockQuote)",
|
||||
"Numbered list": "\u0641\u0647\u0631\u0633\u062a \u0634\u0645\u0627\u0631\u0647 \u062f\u0627\u0631",
|
||||
"Heading 1": "\u0639\u0646\u0648\u0627\u0646 1",
|
||||
"Headings": "\u0639\u0646\u0627\u0648\u06cc\u0646",
|
||||
"Increase indent": "\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc",
|
||||
"Formats": "\u0642\u0627\u0644\u0628 \u0647\u0627",
|
||||
"Headers": "\u0633\u0631 \u0622\u0645\u062f\u0647\u0627",
|
||||
"Select all": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647",
|
||||
"Header 3": "\u0633\u0631 \u0622\u0645\u062f 3",
|
||||
"Blocks": "\u0628\u0644\u0648\u06a9 \u0647\u0627",
|
||||
"Undo": "\u0628\u0627\u0632 \u06af\u0631\u062f\u0627\u0646",
|
||||
"Strikethrough": "\u062e\u0637 \u062e\u0648\u0631\u062f\u0647",
|
||||
"Bullet list": "\u0641\u0647\u0631\u0633\u062a \u0646\u0634\u0627\u0646\u0647 \u062f\u0627\u0631",
|
||||
"Header 1": "\u0633\u0631 \u0622\u0645\u062f 1",
|
||||
"Superscript": "\u0646\u0645\u0627",
|
||||
"Clear formatting": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0644\u0628 \u0628\u0646\u062f\u06cc",
|
||||
"Font Sizes": "\u0627\u0646\u062f\u0627\u0632\u0647\u0621 \u0642\u0644\u0645",
|
||||
"Subscript": "\u067e\u0627\u06cc\u0647",
|
||||
"Header 6": "\u0633\u0631 \u0622\u0645\u062f 6",
|
||||
"Redo": "\u0628\u0627\u0632 \u0646\u0634\u0627\u0646",
|
||||
"Paragraph": "\u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641 (\u062a\u06af P)",
|
||||
"Ok": "\u062a\u0627\u06cc\u06cc\u062f",
|
||||
"Bold": "\u062f\u0631\u0634\u062a",
|
||||
"Code": "\u0628\u0644\u0648\u06a9 \u06a9\u062f\u0646\u0648\u06cc\u0633\u06cc (\u062a\u06a9 Code)",
|
||||
"Italic": "\u06a9\u062c",
|
||||
"Align center": "\u0648\u0633\u0637 \u0686\u06cc\u0646",
|
||||
"Header 5": "\u0633\u0631 \u0622\u0645\u062f 5",
|
||||
"Heading 6": "\u0639\u0646\u0648\u0627\u0646 6",
|
||||
"Heading 3": "\u0639\u0646\u0648\u0627\u0646 3",
|
||||
"Decrease indent": "\u06a9\u0627\u0647\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc",
|
||||
"Header 4": "\u0633\u0631 \u0622\u0645\u062f 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0627\u0645\u06a9\u0627\u0646 \u0686\u0633\u0628\u0627\u0646\u062f\u0646\u060c \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u062e\u0627\u0644\u0635 \u062a\u0646\u0638\u06cc\u0645 \u06af\u0634\u062a\u0647. \u062a\u0627 \u0632\u0645\u0627\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u0627\u06cc\u0646 \u062d\u0627\u0644\u062a\u060c \u0645\u062d\u062a\u0648\u0627\u06cc \u0645\u0648\u0631\u062f \u0686\u0633\u0628\u0627\u0646\u062f\u0646\u060c \u0628\u0647 \u0635\u0648\u0631\u062a \u0645\u062a\u0646 \u062e\u0627\u0644\u0635 \u062e\u0648\u0627\u0647\u062f \u0686\u0633\u0628\u06cc\u062f.",
|
||||
"Underline": "\u0632\u06cc\u0631 \u062e\u0637",
|
||||
"Cancel": "\u0627\u0646\u0635\u0631\u0627\u0641",
|
||||
"Justify": "\u062a\u0631\u0627\u0632 \u062f\u0648 \u0637\u0631\u0641\u0647",
|
||||
"Inline": "\u0631\u0648 \u062e\u0637",
|
||||
"Copy": "\u0631\u0648\u0646\u0648\u06cc\u0633\u06cc",
|
||||
"Align left": "\u0686\u067e \u0686\u06cc\u0646",
|
||||
"Visual aids": "\u06a9\u0645\u06a9 \u0628\u0635\u0631\u06cc",
|
||||
"Lower Greek": "\u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9 \u06cc\u0648\u0646\u0627\u0646\u06cc",
|
||||
"Square": "\u0686\u0647\u0627\u0631 \u06af\u0648\u0634",
|
||||
"Default": "\u067e\u06cc\u0634 \u0641\u0631\u0636",
|
||||
"Lower Alpha": "\u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9",
|
||||
"Circle": "\u062f\u0627\u06cc\u0631\u0647",
|
||||
"Disc": "\u062f\u0627\u06cc\u0631\u0647\u0621 \u062a\u0648\u067e\u0631",
|
||||
"Upper Alpha": "\u062d\u0631\u0648\u0641 \u0628\u0632\u0631\u06af",
|
||||
"Upper Roman": "\u0627\u0631\u0642\u0627\u0645 \u0628\u0632\u0631\u06af \u0631\u0648\u0645\u06cc",
|
||||
"Lower Roman": "\u0627\u0631\u0642\u0627\u0645 \u06a9\u0648\u0686\u06a9 \u0631\u0648\u0645\u06cc",
|
||||
"Name": "\u0646\u0627\u0645",
|
||||
"Anchor": "\u0642\u0644\u0627\u0628",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0634\u0645\u0627 \u0630\u062e\u06cc\u0631\u0647 \u0646\u0634\u062f\u0647 \u0627\u0646\u062f\u060c \u0622\u06cc\u0627 \u062c\u0647\u062a \u062e\u0631\u0648\u062c \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u062f\u0627\u0631\u06cc\u062f\u061f",
|
||||
"Restore last draft": "\u0628\u0627\u0632\u06cc\u0627\u0628\u06cc \u0622\u062e\u0631\u06cc\u0646 \u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633",
|
||||
"Special character": "\u0646\u0648\u06cc\u0633\u0647 \u0647\u0627\u06cc \u062e\u0627\u0635",
|
||||
"Source code": "\u0645\u062a\u0646 \u06a9\u062f \u0645\u0646\u0628\u0639",
|
||||
"B": "\u0622\u0628\u06cc",
|
||||
"R": "\u0642\u0631\u0645\u0632",
|
||||
"G": "\u0633\u0628\u0632",
|
||||
"Color": "\u0631\u0646\u06af",
|
||||
"Right to left": "\u0631\u0627\u0633\u062a \u0628\u0647 \u0686\u067e",
|
||||
"Left to right": "\u0686\u067e \u0628\u0647 \u0631\u0627\u0633\u062a",
|
||||
"Emoticons": "\u0635\u0648\u0631\u062a\u06a9 \u0647\u0627",
|
||||
"Robots": "\u0631\u0648\u0628\u0627\u062a\u0647\u0627",
|
||||
"Document properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0646\u062f",
|
||||
"Title": "\u0639\u0646\u0648\u0627\u0646",
|
||||
"Keywords": "\u0648\u0627\u0698\u06af\u0627\u0646 \u06a9\u0644\u06cc\u062f\u06cc",
|
||||
"Encoding": "\u06a9\u062f\u06af\u0632\u0627\u0631\u06cc \u0645\u062a\u0646",
|
||||
"Description": "\u062a\u0648\u0636\u06cc\u062d",
|
||||
"Author": "\u0645\u0648\u0644\u0641",
|
||||
"Fullscreen": "\u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647",
|
||||
"Horizontal line": "\u062e\u0637 \u0627\u0641\u0642\u06cc",
|
||||
"Horizontal space": "\u0641\u0636\u0627\u06cc \u0627\u0641\u0642\u06cc",
|
||||
"Insert\/edit image": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u062a\u0635\u0648\u06cc\u0631",
|
||||
"General": "\u0639\u0645\u0648\u0645\u06cc",
|
||||
"Advanced": "\u067e\u06cc\u0634\u0631\u0641\u062a\u0647",
|
||||
"Source": "\u0645\u0646\u0628\u0639",
|
||||
"Border": "\u0644\u0628\u0647",
|
||||
"Constrain proportions": "\u062d\u0641\u0638 \u062a\u0646\u0627\u0633\u0628",
|
||||
"Vertical space": "\u0641\u0636\u0627\u06cc \u0639\u0645\u0648\u062f\u06cc",
|
||||
"Image description": "\u062a\u0648\u0635\u06cc\u0641 \u062a\u0635\u0648\u06cc\u0631",
|
||||
"Style": "\u0633\u0628\u06a9",
|
||||
"Dimensions": "\u0627\u0628\u0639\u0627\u062f",
|
||||
"Insert image": "\u062f\u0631\u062c \u062a\u0635\u0648\u06cc\u0631",
|
||||
"Zoom in": "\u0628\u0632\u0631\u06af \u0646\u0645\u0627\u06cc\u06cc",
|
||||
"Contrast": "\u062a\u0636\u0627\u062f \u0631\u0646\u06af",
|
||||
"Back": "\u0628\u0627\u0632\u06af\u0634\u062a",
|
||||
"Gamma": "\u06af\u0627\u0645\u0627",
|
||||
"Flip horizontally": "\u0642\u0631\u06cc\u0646\u0647 \u0627\u0641\u0642\u06cc",
|
||||
"Resize": "\u062a\u063a\u06cc\u06cc\u0631 \u0627\u0646\u062f\u0627\u0632\u0647",
|
||||
"Sharpen": "\u0628\u0647\u0628\u0648\u062f \u0644\u0628\u0647",
|
||||
"Zoom out": "\u06a9\u0648\u0686\u06a9 \u0646\u0645\u0627\u06cc\u06cc",
|
||||
"Image options": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062a\u0635\u0648\u06cc\u0631",
|
||||
"Apply": "\u0627\u0650\u0639\u0645\u0627\u0644",
|
||||
"Brightness": "\u0631\u0648\u0634\u0646\u0627\u06cc\u06cc",
|
||||
"Rotate clockwise": "\u062f\u064e\u0648\u064e\u0631\u0627\u0646 \u0633\u0627\u0639\u062a \u06af\u0631\u062f",
|
||||
"Rotate counterclockwise": "\u062f\u064e\u0648\u064e\u0631\u0627\u0646 \u067e\u0627\u062f \u0633\u0627\u0639\u062a \u06af\u0631\u062f",
|
||||
"Edit image": "\u0648\u06cc\u0631\u0627\u0633\u062a \u062a\u0635\u0648\u06cc\u0631",
|
||||
"Color levels": "\u0633\u0637\u0648\u062d \u0631\u0646\u06af",
|
||||
"Crop": "\u0628\u064f\u0631\u0634 \u062f\u064f\u0648\u0631",
|
||||
"Orientation": "\u06af\u0650\u0631\u0627",
|
||||
"Flip vertically": "\u0642\u0631\u06cc\u0646\u0647 \u0639\u0645\u0648\u062f\u06cc",
|
||||
"Invert": "\u0628\u0631\u06af\u0634\u062a \u0631\u0646\u06af",
|
||||
"Insert date\/time": "\u062f\u0631\u062c \u062a\u0627\u0631\u06cc\u062e\/\u0632\u0645\u0627\u0646",
|
||||
"Remove link": "\u062d\u0630\u0641 \u067e\u06cc\u0648\u0646\u062f",
|
||||
"Url": "\u0622\u062f\u0631\u0633",
|
||||
"Text to display": "\u0645\u062a\u0646 \u0646\u0645\u0627\u06cc\u0634\u06cc",
|
||||
"Anchors": "\u0642\u0644\u0627\u0628 \u0647\u0627",
|
||||
"Insert link": "\u062f\u0631\u062c \u067e\u06cc\u0648\u0646\u062f",
|
||||
"New window": "\u067e\u0646\u062c\u0631\u0647\u0621 \u062c\u062f\u06cc\u062f",
|
||||
"None": "\u0647\u06cc\u0686",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc \u0631\u0633\u062f \u0622\u062f\u0631\u0633 \u0648\u0631\u0648\u062f\u06cc \u0627\u0631\u062c\u0627\u0639\u06cc \u0628\u0647 \u062e\u0627\u0631\u062c \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0627\u06cc\u062a \u0645\u06cc \u0628\u0627\u0634\u062f. \u0622\u06cc\u0627 \u062a\u0645\u0627\u06cc\u0644 \u0628\u0647 \u0627\u0641\u0632\u0648\u0631\u062f\u0646 \u067e\u06cc\u0634\u0648\u0646\u062f http:\/\/ \u062f\u0627\u0631\u06cc\u062f\u061f",
|
||||
"Target": "\u0645\u0642\u0635\u062f",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc \u0631\u0633\u062f \u0622\u062f\u0631\u0633 \u0648\u0631\u0648\u062f\u06cc \u06cc\u06a9 \u0631\u0627\u06cc\u0627\u0646\u0627\u0645\u0647 \u0628\u0627\u0634\u062f. \u0622\u06cc\u0627 \u062a\u0645\u0627\u06cc\u0644 \u0628\u0647 \u0627\u0641\u0632\u0648\u0631\u062f\u0646 \u067e\u06cc\u0634\u0648\u0646\u062f mailto: \u062f\u0627\u0631\u06cc\u062f\u061f",
|
||||
"Insert\/edit link": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u067e\u06cc\u0648\u0646\u062f",
|
||||
"Insert\/edit video": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0648\u06cc\u062f\u06cc\u0648",
|
||||
"Poster": "\u067e\u0648\u0633\u062a\u0631",
|
||||
"Alternative source": "\u0645\u0646\u0628\u0639 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646",
|
||||
"Paste your embed code below:": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u06a9\u062f \u062c\u0627\u0633\u0627\u0632\u06cc \u0634\u0645\u0627 \u062f\u0631 \u0632\u06cc\u0631: ",
|
||||
"Insert video": "\u062f\u0631\u062c \u0648\u06cc\u062f\u06cc\u0648",
|
||||
"Embed": "\u062c\u0627\u0633\u0627\u0632\u06cc",
|
||||
"Nonbreaking space": "\u0641\u0636\u0627\u06cc \u062e\u0627\u0644\u06cc \u0628\u0631\u0634 \u0646\u0627\u067e\u0630\u06cc\u0631",
|
||||
"Page break": "\u0628\u0631\u0634 \u0635\u0641\u062d\u0647",
|
||||
"Paste as text": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0645\u062a\u0646",
|
||||
"Preview": "\u067e\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0634",
|
||||
"Print": "\u0686\u0627\u067e",
|
||||
"Save": "\u0630\u062e\u06cc\u0631\u0647",
|
||||
"Could not find the specified string.": "\u0631\u0634\u062a\u0647\u0621 \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u06cc\u0627\u0641\u062a \u0646\u06af\u0631\u062f\u06cc\u062f.",
|
||||
"Replace": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc",
|
||||
"Next": "\u0628\u0639\u062f\u06cc",
|
||||
"Whole words": "\u062a\u0645\u0627\u0645 \u0648\u0627\u0698\u06af\u0627\u0646",
|
||||
"Find and replace": "\u062c\u0633\u062a\u062c\u0648 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc",
|
||||
"Replace with": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0628\u0627",
|
||||
"Find": "\u062c\u0633\u062a\u062c\u0648",
|
||||
"Replace all": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u0647\u0645\u0647",
|
||||
"Match case": "\u062a\u0637\u0627\u0628\u0642 \u062d\u0631\u0648\u0641",
|
||||
"Prev": "\u0642\u0628\u0644\u06cc",
|
||||
"Spellcheck": "\u0628\u0631\u0631\u0633\u06cc \u0627\u0645\u0644\u0627\u0621",
|
||||
"Finish": "\u0627\u062a\u0645\u0627\u0645",
|
||||
"Ignore all": "\u0628\u06cc \u062e\u06cc\u0627\u0644 \u0647\u0645\u0647",
|
||||
"Ignore": "\u0628\u06cc \u062e\u06cc\u0627\u0644",
|
||||
"Add to Dictionary": "\u0628\u0647 \u0648\u0627\u0698\u0647 \u0646\u0627\u0645\u0647 \u0628\u06cc \u0627\u0641\u0632\u0627",
|
||||
"Insert row before": "\u062f\u0631\u062c \u0633\u0637\u0631 \u062f\u0631 \u0628\u0627\u0644\u0627",
|
||||
"Rows": "\u0633\u0637\u0631 \u0647\u0627",
|
||||
"Height": "\u0627\u0631\u062a\u0641\u0627\u0639",
|
||||
"Paste row after": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631 \u062f\u0631 \u067e\u0627\u06cc\u06cc\u0646",
|
||||
"Alignment": "\u0647\u0645 \u062a\u0631\u0627\u0632\u06cc",
|
||||
"Border color": "\u0631\u0646\u06af \u0644\u0628\u0647",
|
||||
"Column group": "\u06af\u0631\u0648\u0647 \u0633\u062a\u0648\u0646\u06cc",
|
||||
"Row": "\u0633\u0637\u0631",
|
||||
"Insert column before": "\u062f\u0631\u062c \u0633\u062a\u0648\u0646 \u0642\u0628\u0644",
|
||||
"Split cell": "\u062c\u062f\u0627 \u0633\u0627\u0632\u06cc \u0633\u0644\u0648\u0644",
|
||||
"Cell padding": "\u062d\u0627\u0634\u06cc\u0647 \u062f\u0631\u0648\u0646 \u0633\u0644\u0648\u0644\u06cc",
|
||||
"Cell spacing": "\u0641\u0627\u0635\u0644\u0647 \u0645\u06cc\u0627\u0646 \u0633\u0644\u0648\u0644\u06cc",
|
||||
"Row type": "\u0646\u0648\u0639 \u0633\u0637\u0631",
|
||||
"Insert table": "\u062f\u0631\u062c \u062c\u062f\u0648\u0644",
|
||||
"Body": "\u0628\u062f\u0646\u0647",
|
||||
"Caption": "\u0639\u0646\u0648\u0627\u0646",
|
||||
"Footer": "\u067e\u0627 \u0646\u0648\u0634\u062a",
|
||||
"Delete row": "\u062d\u0630\u0641 \u0633\u0637\u0631",
|
||||
"Paste row before": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631 \u062f\u0631 \u0628\u0627\u0644\u0627",
|
||||
"Scope": "\u062d\u0648\u0632\u0647",
|
||||
"Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644",
|
||||
"H Align": "\u062a\u0631\u0627\u0632 \u0627\u0641\u0642\u06cc",
|
||||
"Top": "\u0628\u0627\u0644\u0627",
|
||||
"Header cell": "\u0633\u0644\u0648\u0644 \u0633\u0631 \u0633\u062a\u0648\u0646",
|
||||
"Column": "\u0633\u062a\u0648\u0646",
|
||||
"Row group": "\u06af\u0631\u0648\u0647 \u0633\u0637\u0631\u06cc",
|
||||
"Cell": "\u0633\u0644\u0648\u0644",
|
||||
"Middle": "\u0645\u06cc\u0627\u0646\u0647",
|
||||
"Cell type": "\u0646\u0648\u0639 \u0633\u0644\u0648\u0644",
|
||||
"Copy row": "\u0631\u0648\u0646\u0648\u06cc\u0633\u06cc \u0633\u0637\u0631",
|
||||
"Row properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0637\u0631",
|
||||
"Table properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062c\u062f\u0648\u0644",
|
||||
"Bottom": "\u067e\u0627\u06cc\u06cc\u0646",
|
||||
"V Align": "\u062a\u0631\u0627\u0632 \u0639\u0645\u0648\u062f\u06cc",
|
||||
"Header": "\u0633\u0631 \u0622\u0645\u062f",
|
||||
"Right": "\u0631\u0627\u0633\u062a",
|
||||
"Insert column after": "\u062f\u0631\u062c \u0633\u062a\u0648\u0646 \u0628\u0639\u062f",
|
||||
"Cols": "\u0633\u062a\u0648\u0646 \u0647\u0627",
|
||||
"Insert row after": "\u062f\u0631\u062c \u0633\u0637\u0631 \u062f\u0631 \u067e\u0627\u06cc\u06cc\u0646",
|
||||
"Width": "\u0639\u0631\u0636",
|
||||
"Cell properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0644\u0648\u0644",
|
||||
"Left": "\u0686\u067e",
|
||||
"Cut row": "\u0628\u0631\u0634 \u0633\u0637\u0631",
|
||||
"Delete column": "\u062d\u0630\u0641 \u0633\u062a\u0648\u0646",
|
||||
"Center": "\u0645\u06cc\u0627\u0646\u0647",
|
||||
"Merge cells": "\u067e\u06cc\u0648\u0646\u062f \u0633\u0644\u0648\u0644 \u0647\u0627",
|
||||
"Insert template": "\u062f\u0631\u062c \u0627\u0644\u06af\u0648",
|
||||
"Templates": "\u0627\u0644\u06af\u0648\u0647\u0627",
|
||||
"Background color": "\u0631\u0646\u06af \u067e\u0633 \u0632\u0645\u06cc\u0646\u0647",
|
||||
"Custom...": "\u062f\u0644\u062e\u0648\u0627\u0647...",
|
||||
"Custom color": "\u0631\u0646\u06af \u062f\u0644\u062e\u0648\u0627\u0647",
|
||||
"No color": "\u0628\u062f\u0648\u0646 \u0631\u0646\u06af",
|
||||
"Text color": "\u0631\u0646\u06af \u0645\u062a\u0646",
|
||||
"Show blocks": "\u0646\u0645\u0627\u06cc\u0634 \u0628\u0644\u0648\u06a9 \u0647\u0627",
|
||||
"Show invisible characters": "\u0646\u0645\u0627\u06cc\u0634 \u0646\u0648\u06cc\u0633\u0647 \u0647\u0627\u06cc \u0646\u0627\u067e\u06cc\u062f\u0627",
|
||||
"Words: {0}": "\u0648\u0627\u0698\u0647 \u0647\u0627: {0}",
|
||||
"Insert": "\u062f\u0631\u062c",
|
||||
"File": "\u067e\u0631\u0648\u0646\u062f\u0647",
|
||||
"Edit": "\u0648\u06cc\u0631\u0627\u06cc\u0634",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0646\u0627\u062d\u06cc\u0647 \u0645\u062a\u0646 \u063a\u0646\u06cc.\n\u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u0645\u0646\u0648 \u0627\u0632 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u062a\u0631\u06a9\u06cc\u0628\u06cc ALT + F9 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.\n\u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u0627\u0632 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u062a\u0631\u06a9\u06cc\u0628\u06cc ALT + F10 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.\n\u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u0631\u0627\u0647\u0646\u0645\u0627 \u0627\u0632 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u062a\u0631\u06a9\u06cc\u0628\u06cc ALT + 0 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.",
|
||||
"Tools": "\u0627\u0628\u0632\u0627\u0631\u0647\u0627",
|
||||
"View": "\u0646\u0645\u0627\u06cc\u0634",
|
||||
"Table": "\u062c\u062f\u0648\u0644",
|
||||
"Format": "\u0642\u0627\u0644\u0628",
|
||||
"_dir": "rtl"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/fi.js
Normal file
219
data/web/rc/program/js/tinymce/langs/fi.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('fi',{
|
||||
"Cut": "Leikkaa",
|
||||
"Heading 5": "Otsikko 5",
|
||||
"Header 2": "Otsikko 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Selaimesi ei tue leikep\u00f6yd\u00e4n suoraa k\u00e4ytt\u00e4mist\u00e4. Ole hyv\u00e4 ja k\u00e4yt\u00e4 n\u00e4pp\u00e4imist\u00f6n Ctrl+X\/C\/V n\u00e4pp\u00e4inyhdistelmi\u00e4.",
|
||||
"Heading 4": "Otsikko 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Otsikko 2",
|
||||
"Paste": "Liit\u00e4",
|
||||
"Close": "Sulje",
|
||||
"Font Family": "Fontti",
|
||||
"Pre": "Esimuotoiltu",
|
||||
"Align right": "Tasaa oikealle",
|
||||
"New document": "Uusi dokumentti",
|
||||
"Blockquote": "Lainauslohko",
|
||||
"Numbered list": "J\u00e4rjestetty lista",
|
||||
"Heading 1": "Otsikko 1",
|
||||
"Headings": "Otsikot",
|
||||
"Increase indent": "Loitonna",
|
||||
"Formats": "Muotoilut",
|
||||
"Headers": "Otsikot",
|
||||
"Select all": "Valitse kaikki",
|
||||
"Header 3": "Otsikko 3",
|
||||
"Blocks": "Lohkot",
|
||||
"Undo": "Peru",
|
||||
"Strikethrough": "Yliviivaus",
|
||||
"Bullet list": "J\u00e4rjest\u00e4m\u00e4t\u00f6n lista",
|
||||
"Header 1": "Otsikko 1",
|
||||
"Superscript": "Yl\u00e4indeksi",
|
||||
"Clear formatting": "Poista muotoilu",
|
||||
"Font Sizes": "Fonttikoko",
|
||||
"Subscript": "Alaindeksi",
|
||||
"Header 6": "Otsikko 6",
|
||||
"Redo": "Tee uudelleen",
|
||||
"Paragraph": "Kappale",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Lihavointi",
|
||||
"Code": "Koodi",
|
||||
"Italic": "Kursivointi",
|
||||
"Align center": "Keskit\u00e4",
|
||||
"Header 5": "Otsikko 5",
|
||||
"Heading 6": "Otsikko 6",
|
||||
"Heading 3": "Otsikko 3",
|
||||
"Decrease indent": "Sisenn\u00e4",
|
||||
"Header 4": "Otsikko 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Liitt\u00e4minen on nyt pelk\u00e4n tekstin -tilassa. Sis\u00e4ll\u00f6t liitet\u00e4\u00e4n nyt pelkk\u00e4n\u00e4 tekstin\u00e4, kunnes otat vaihtoehdon pois k\u00e4yt\u00f6st\u00e4.",
|
||||
"Underline": "Alleviivaus",
|
||||
"Cancel": "Peruuta",
|
||||
"Justify": "Tasaa",
|
||||
"Inline": "Samalla rivill\u00e4",
|
||||
"Copy": "Kopioi",
|
||||
"Align left": "Tasaa vasemmalle",
|
||||
"Visual aids": "Visuaaliset neuvot",
|
||||
"Lower Greek": "pienet kirjaimet: \u03b1, \u03b2, \u03b3",
|
||||
"Square": "Neli\u00f6",
|
||||
"Default": "Oletus",
|
||||
"Lower Alpha": "pienet kirjaimet: a, b, c",
|
||||
"Circle": "Pallo",
|
||||
"Disc": "Ympyr\u00e4",
|
||||
"Upper Alpha": "isot kirjaimet: A, B, C",
|
||||
"Upper Roman": "isot kirjaimet: I, II, III",
|
||||
"Lower Roman": "pienet kirjaimet: i, ii, iii",
|
||||
"Name": "Nimi",
|
||||
"Anchor": "Ankkuri",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Sinulla on tallentamattomia muutoksia, haluatko varmasti siirty\u00e4 toiselle sivulle?",
|
||||
"Restore last draft": "Palauta aiempi luonnos",
|
||||
"Special character": "Erikoismerkki",
|
||||
"Source code": "L\u00e4hdekoodi",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "V\u00e4ri",
|
||||
"Right to left": "Oikealta vasemmalle",
|
||||
"Left to right": "Vasemmalta oikealle",
|
||||
"Emoticons": "Hymi\u00f6t",
|
||||
"Robots": "Robotit",
|
||||
"Document properties": "Dokumentin ominaisuudet",
|
||||
"Title": "Otsikko",
|
||||
"Keywords": "Avainsanat",
|
||||
"Encoding": "Merkist\u00f6",
|
||||
"Description": "Kuvaus",
|
||||
"Author": "Tekij\u00e4",
|
||||
"Fullscreen": "Koko ruutu",
|
||||
"Horizontal line": "Vaakasuora viiva",
|
||||
"Horizontal space": "Horisontaalinen tila",
|
||||
"Insert\/edit image": "Lis\u00e4\u00e4\/muokkaa kuva",
|
||||
"General": "Yleiset",
|
||||
"Advanced": "Lis\u00e4asetukset",
|
||||
"Source": "L\u00e4hde",
|
||||
"Border": "Reunus",
|
||||
"Constrain proportions": "S\u00e4ilyt\u00e4 mittasuhteet",
|
||||
"Vertical space": "Vertikaalinen tila",
|
||||
"Image description": "Kuvaus",
|
||||
"Style": "Tyyli",
|
||||
"Dimensions": "Mittasuhteet",
|
||||
"Insert image": "Lis\u00e4\u00e4 kuva",
|
||||
"Zoom in": "L\u00e4henn\u00e4",
|
||||
"Contrast": "Kontrasti",
|
||||
"Back": "Takaisin",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "K\u00e4\u00e4nn\u00e4 vaakasuunnassa",
|
||||
"Resize": "Kuvan koon muutos",
|
||||
"Sharpen": "Ter\u00e4vyys",
|
||||
"Zoom out": "Loitonna",
|
||||
"Image options": "Kuvan asetukset",
|
||||
"Apply": "Aseta",
|
||||
"Brightness": "Kirkkaus",
|
||||
"Rotate clockwise": "Kierr\u00e4 my\u00f6t\u00e4p\u00e4iv\u00e4\u00e4n",
|
||||
"Rotate counterclockwise": "Kierr\u00e4 vastap\u00e4iv\u00e4\u00e4n",
|
||||
"Edit image": "Muokkaa kuvaa",
|
||||
"Color levels": "V\u00e4ritasot",
|
||||
"Crop": "Rajaa valintaan",
|
||||
"Orientation": "Suunta",
|
||||
"Flip vertically": "K\u00e4\u00e4nn\u00e4 pystysuunnassa",
|
||||
"Invert": "K\u00e4\u00e4nteinen",
|
||||
"Insert date\/time": "Lis\u00e4\u00e4 p\u00e4iv\u00e4m\u00e4\u00e4r\u00e4 tai aika",
|
||||
"Remove link": "Poista linkki",
|
||||
"Url": "Osoite",
|
||||
"Text to display": "N\u00e4ytett\u00e4v\u00e4 teksti",
|
||||
"Anchors": "Ankkurit",
|
||||
"Insert link": "Lis\u00e4\u00e4 linkki",
|
||||
"New window": "Uusi ikkuna",
|
||||
"None": "Ei mit\u00e4\u00e4n",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Antamasi osoite n\u00e4ytt\u00e4\u00e4 olevan ulkoinen linkki. Haluatko lis\u00e4t\u00e4 osoitteeseen vaaditun http:\/\/ -etuliitteen?",
|
||||
"Target": "Kohde",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Antamasi osoite n\u00e4ytt\u00e4\u00e4 olevan s\u00e4hk\u00f6postiosoite. Haluatko lis\u00e4t\u00e4 osoitteeseen vaaditun mailto: -etuliitteen?",
|
||||
"Insert\/edit link": "Lis\u00e4\u00e4\/muokkaa linkki",
|
||||
"Insert\/edit video": "Lis\u00e4\u00e4\/muokkaa video",
|
||||
"Poster": "L\u00e4hett\u00e4j\u00e4",
|
||||
"Alternative source": "Vaihtoehtoinen l\u00e4hde",
|
||||
"Paste your embed code below:": "Liit\u00e4 upotuskoodisi alapuolelle:",
|
||||
"Insert video": "Lis\u00e4\u00e4 video",
|
||||
"Embed": "Upota",
|
||||
"Nonbreaking space": "Sitova v\u00e4lily\u00f6nti",
|
||||
"Page break": "Sivunvaihto",
|
||||
"Paste as text": "Liit\u00e4 tekstin\u00e4",
|
||||
"Preview": "Esikatselu",
|
||||
"Print": "Tulosta",
|
||||
"Save": "Tallenna",
|
||||
"Could not find the specified string.": "Haettua merkkijonoa ei l\u00f6ytynyt.",
|
||||
"Replace": "Korvaa",
|
||||
"Next": "Seur.",
|
||||
"Whole words": "Koko sanat",
|
||||
"Find and replace": "Etsi ja korvaa",
|
||||
"Replace with": "Korvaa",
|
||||
"Find": "Etsi",
|
||||
"Replace all": "Korvaa kaikki",
|
||||
"Match case": "Erota isot ja pienet kirjaimet",
|
||||
"Prev": "Edel.",
|
||||
"Spellcheck": "Oikolue",
|
||||
"Finish": "Lopeta",
|
||||
"Ignore all": "\u00c4l\u00e4 huomioi mit\u00e4\u00e4n",
|
||||
"Ignore": "\u00c4l\u00e4 huomioi",
|
||||
"Add to Dictionary": "Lis\u00e4\u00e4 sanakirjaan",
|
||||
"Insert row before": "Lis\u00e4\u00e4 rivi ennen",
|
||||
"Rows": "Rivit",
|
||||
"Height": "Korkeus",
|
||||
"Paste row after": "Liit\u00e4 rivi j\u00e4lkeen",
|
||||
"Alignment": "Tasaus",
|
||||
"Border color": "Reunuksen v\u00e4ri",
|
||||
"Column group": "Sarakeryhm\u00e4",
|
||||
"Row": "Rivi",
|
||||
"Insert column before": "Lis\u00e4\u00e4 rivi ennen",
|
||||
"Split cell": "Jaa solu",
|
||||
"Cell padding": "Solun tyhj\u00e4 tila",
|
||||
"Cell spacing": "Solun v\u00e4li",
|
||||
"Row type": "Rivityyppi",
|
||||
"Insert table": "Lis\u00e4\u00e4 taulukko",
|
||||
"Body": "Runko",
|
||||
"Caption": "Seloste",
|
||||
"Footer": "Alaosa",
|
||||
"Delete row": "Poista rivi",
|
||||
"Paste row before": "Liit\u00e4 rivi ennen",
|
||||
"Scope": "Laajuus",
|
||||
"Delete table": "Poista taulukko",
|
||||
"H Align": "H tasaus",
|
||||
"Top": "Yl\u00e4reuna",
|
||||
"Header cell": "Otsikkosolu",
|
||||
"Column": "Sarake",
|
||||
"Row group": "Riviryhm\u00e4",
|
||||
"Cell": "Solu",
|
||||
"Middle": "Keskikohta",
|
||||
"Cell type": "Solun tyyppi",
|
||||
"Copy row": "Kopioi rivi",
|
||||
"Row properties": "Rivin ominaisuudet",
|
||||
"Table properties": "Taulukon ominaisuudet",
|
||||
"Bottom": "Alareuna",
|
||||
"V Align": "V tasaus",
|
||||
"Header": "Otsikko",
|
||||
"Right": "Oikea",
|
||||
"Insert column after": "Lis\u00e4\u00e4 rivi j\u00e4lkeen",
|
||||
"Cols": "Sarakkeet",
|
||||
"Insert row after": "Lis\u00e4\u00e4 rivi j\u00e4lkeen",
|
||||
"Width": "Leveys",
|
||||
"Cell properties": "Solun ominaisuudet",
|
||||
"Left": "Vasen",
|
||||
"Cut row": "Leikkaa rivi",
|
||||
"Delete column": "Poista sarake",
|
||||
"Center": "Keskell\u00e4",
|
||||
"Merge cells": "Yhdist\u00e4 solut",
|
||||
"Insert template": "Lis\u00e4\u00e4 pohja",
|
||||
"Templates": "Pohjat",
|
||||
"Background color": "Taustan v\u00e4ri",
|
||||
"Custom...": "Mukauta...",
|
||||
"Custom color": "Mukautettu v\u00e4ri",
|
||||
"No color": "Ei v\u00e4ri\u00e4",
|
||||
"Text color": "Tekstin v\u00e4ri",
|
||||
"Show blocks": "N\u00e4yt\u00e4 lohkot",
|
||||
"Show invisible characters": "N\u00e4yt\u00e4 n\u00e4kym\u00e4tt\u00f6m\u00e4t merkit",
|
||||
"Words: {0}": "Sanat: {0}",
|
||||
"Insert": "Lis\u00e4\u00e4",
|
||||
"File": "Tiedosto",
|
||||
"Edit": "Muokkaa",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rikastetun tekstin alue. Paina ALT-F9 valikkoon. Paina ALT-F10 ty\u00f6kaluriviin. Paina ALT-0 ohjeeseen.",
|
||||
"Tools": "Ty\u00f6kalut",
|
||||
"View": "N\u00e4yt\u00e4",
|
||||
"Table": "Taulukko",
|
||||
"Format": "Muotoilu"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/fo.js
Normal file
219
data/web/rc/program/js/tinymce/langs/fo.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('fo',{
|
||||
"Cut": "Klipp",
|
||||
"Heading 5": "Yvirskrift 5",
|
||||
"Header 2": "H\u00f8vd 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "T\u00edn kagi hevur ikki beinlei\u00f0is atgongd til setibor\u00f0i\u00f0. Vinarliga br\u00faka CTRL+X\/C\/V snarvegirnar \u00edsta\u00f0in.",
|
||||
"Heading 4": "Yvirskrift 4",
|
||||
"Div": "DIv",
|
||||
"Heading 2": "Yvirskrift 2",
|
||||
"Paste": "L\u00edma",
|
||||
"Close": "Lat aftur",
|
||||
"Font Family": "Stav familja",
|
||||
"Pre": "Pre",
|
||||
"Align right": "H\u00f8gra stilla",
|
||||
"New document": "N\u00fdtt skjal",
|
||||
"Blockquote": "Blokksitat",
|
||||
"Numbered list": "Tal listi",
|
||||
"Heading 1": "Yvirskrift 1",
|
||||
"Headings": "Yvirskriftir",
|
||||
"Increase indent": "Vaks inndr\u00e1tt",
|
||||
"Formats": "Sni\u00f0",
|
||||
"Headers": "H\u00f8vd",
|
||||
"Select all": "Vel alt",
|
||||
"Header 3": "H\u00f8vd 3",
|
||||
"Blocks": "Blokkar",
|
||||
"Undo": "Angra ger",
|
||||
"Strikethrough": "Strika \u00edgj\u00f8gnum",
|
||||
"Bullet list": "Punkt listi",
|
||||
"Header 1": "H\u00f8vd 1",
|
||||
"Superscript": "H\u00e1skrift",
|
||||
"Clear formatting": "Strika sni\u00f0",
|
||||
"Font Sizes": "Stav st\u00f8dd",
|
||||
"Subscript": "L\u00e1gskrift",
|
||||
"Header 6": "H\u00f8vd 6",
|
||||
"Redo": "Ger aftur",
|
||||
"Paragraph": "T\u00e1ttur",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Feit",
|
||||
"Code": "Kota",
|
||||
"Italic": "Sk\u00e1ktekstur",
|
||||
"Align center": "Mi\u00f0set",
|
||||
"Header 5": "H\u00f8vd 5",
|
||||
"Heading 6": "Yvirskrift 6",
|
||||
"Heading 3": "Yvirskrift 3",
|
||||
"Decrease indent": "Minka inndr\u00e1tt",
|
||||
"Header 4": "H\u00f8vd 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Klistra er n\u00fa \u00ed vanligum tekst standi. Innihald ver\u00f0ur n\u00fa klistra sum vanligur tekstur, inntil t\u00fa sl\u00f8kkir hendan standin.",
|
||||
"Underline": "Undirstrika",
|
||||
"Cancel": "\u00d3gilda",
|
||||
"Justify": "L\u00edka breddar",
|
||||
"Inline": "\u00cd linju",
|
||||
"Copy": "Avrita",
|
||||
"Align left": "Vinstra stilla",
|
||||
"Visual aids": "Sj\u00f3nhj\u00e1lp",
|
||||
"Lower Greek": "L\u00edti Grikskt",
|
||||
"Square": "Fj\u00f3rhyrningur",
|
||||
"Default": "Forsettur",
|
||||
"Lower Alpha": "L\u00edti Alfa",
|
||||
"Circle": "Ringur",
|
||||
"Disc": "Skiva",
|
||||
"Upper Alpha": "St\u00f3rt Alfa",
|
||||
"Upper Roman": "St\u00f3rt R\u00f3mverskt",
|
||||
"Lower Roman": "L\u00edti R\u00f3mverskt",
|
||||
"Name": "Navn",
|
||||
"Anchor": "Akker",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "T\u00fa hevur broytingar, i\u00f0 ikki eru goymdar. Ert t\u00fa v\u00edsur \u00ed at t\u00fa vilt halda fram?",
|
||||
"Restore last draft": "Endurskapa seinasta uppkast",
|
||||
"Special character": "Serst\u00f8k tekn",
|
||||
"Source code": "keldukota",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Litur",
|
||||
"Right to left": "H\u00f8gra til vinstra",
|
||||
"Left to right": "Vinstra til h\u00f8gra",
|
||||
"Emoticons": "Emotikonur",
|
||||
"Robots": "Robottar",
|
||||
"Document properties": "Skjal eginleikar",
|
||||
"Title": "Heiti",
|
||||
"Keywords": "Leitior\u00f0",
|
||||
"Encoding": "Koding",
|
||||
"Description": "L\u00fdsing",
|
||||
"Author": "H\u00f8vundur",
|
||||
"Fullscreen": "Fullan sk\u00edggja",
|
||||
"Horizontal line": "Vatnr\u00f8tt linja",
|
||||
"Horizontal space": "Vatnr\u00e6tt fr\u00e1st\u00f8\u00f0a",
|
||||
"Insert\/edit image": "Innset\/r\u00e6tta mynd",
|
||||
"General": "Vanligt",
|
||||
"Advanced": "Framkomi",
|
||||
"Source": "Kelda",
|
||||
"Border": "Rammi",
|
||||
"Constrain proportions": "Var\u00f0veit lutfall",
|
||||
"Vertical space": "Loddr\u00e6t fr\u00e1st\u00f8\u00f0a",
|
||||
"Image description": "L\u00fdsing av mynd",
|
||||
"Style": "St\u00edlur",
|
||||
"Dimensions": "St\u00f8dd",
|
||||
"Insert image": "Innset mynd",
|
||||
"Zoom in": "Draga inn",
|
||||
"Contrast": "M\u00f3tsetningur",
|
||||
"Back": "Aftur",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Vippa vatnr\u00e6tt",
|
||||
"Resize": "Broyt st\u00f8dd",
|
||||
"Sharpen": "Skerpa",
|
||||
"Zoom out": "Draga \u00fat",
|
||||
"Image options": "Mynda valm\u00f8guleikar",
|
||||
"Apply": "Set \u00e1",
|
||||
"Brightness": "Lj\u00f3s",
|
||||
"Rotate clockwise": "Mal runt vi\u00f0 klokkuni",
|
||||
"Rotate counterclockwise": "Mal runt \u00edm\u00f3ti klokkuni",
|
||||
"Edit image": "R\u00e6tta mynd",
|
||||
"Color levels": "Lit stig",
|
||||
"Crop": "Klipp av",
|
||||
"Orientation": "Helling",
|
||||
"Flip vertically": "Vippa loddr\u00e6tt",
|
||||
"Invert": "Vend \u00f8vut",
|
||||
"Insert date\/time": "Innset dag\/t\u00ed\u00f0",
|
||||
"Remove link": "Strika leinki",
|
||||
"Url": "Url",
|
||||
"Text to display": "Tekstur at v\u00edsa",
|
||||
"Anchors": "Akker",
|
||||
"Insert link": "Innset leinki",
|
||||
"New window": "N\u00fdggjan glugga",
|
||||
"None": "Eingin",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Tann URL t\u00fa skriva\u00f0i s\u00e6r \u00fat til at ver\u00f0a ein uttanh\u00fdsis adressa. Ynskir t\u00fa at seta ta\u00f0 kravda http:\/\/ forskoyti frammanfyri?",
|
||||
"Target": "M\u00e1l",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Tann URL t\u00fa skriva\u00f0i s\u00e6r \u00fat til at vera ein teldupost adressa. Ynskir t\u00fa at seta ta\u00f0 kravda mailto: forskoyti frammanfyri?",
|
||||
"Insert\/edit link": "Innset\/r\u00e6tta leinki",
|
||||
"Insert\/edit video": "Innset\/r\u00e6tta kykmynd",
|
||||
"Poster": "Uppslag",
|
||||
"Alternative source": "Onnur kelda",
|
||||
"Paste your embed code below:": "Innset ta\u00f0 kodu, sum skal leggjast inn \u00ed, ni\u00f0anfyri:",
|
||||
"Insert video": "Innset kykmynd",
|
||||
"Embed": "Legg inn \u00ed",
|
||||
"Nonbreaking space": "Hart millumr\u00fam",
|
||||
"Page break": "S\u00ed\u00f0uskift",
|
||||
"Paste as text": "Klistra sum tekst",
|
||||
"Preview": "V\u00eds frammanundan",
|
||||
"Print": "Prenta",
|
||||
"Save": "Goym",
|
||||
"Could not find the specified string.": "Kundi ikki finna leititekst",
|
||||
"Replace": "Skift \u00fat",
|
||||
"Next": "N\u00e6sta",
|
||||
"Whole words": "Heil or\u00f0",
|
||||
"Find and replace": "Finn og skift \u00fat",
|
||||
"Replace with": "Set \u00edsta\u00f0in",
|
||||
"Find": "Finn",
|
||||
"Replace all": "Skift alt \u00fat",
|
||||
"Match case": "Samsvara st\u00f3rar og l\u00edtlar b\u00f3kstavir",
|
||||
"Prev": "Fyrra",
|
||||
"Spellcheck": "R\u00e6ttstavari",
|
||||
"Finish": "Enda",
|
||||
"Ignore all": "Leyp alt um",
|
||||
"Ignore": "Leyp um",
|
||||
"Add to Dictionary": "Legg til or\u00f0ab\u00f3k",
|
||||
"Insert row before": "Innset ra\u00f0 \u00e1\u00f0renn",
|
||||
"Rows": "R\u00f8\u00f0",
|
||||
"Height": "H\u00e6dd",
|
||||
"Paste row after": "L\u00edma ra\u00f0 aftan\u00e1",
|
||||
"Alignment": "Stilling",
|
||||
"Border color": "Kant litur",
|
||||
"Column group": "Teig b\u00f3lkur",
|
||||
"Row": "Ra\u00f0",
|
||||
"Insert column before": "Innset teig \u00e1\u00f0renn",
|
||||
"Split cell": "Syndra puntar",
|
||||
"Cell padding": "Punt fylling",
|
||||
"Cell spacing": "Punt fr\u00e1st\u00f8\u00f0a",
|
||||
"Row type": "Ra\u00f0 slag",
|
||||
"Insert table": "Innset talvu",
|
||||
"Body": "Likam",
|
||||
"Caption": "Tekstur",
|
||||
"Footer": "F\u00f3tur",
|
||||
"Delete row": "Skrika ra\u00f0",
|
||||
"Paste row before": "L\u00edma ra\u00f0 \u00e1\u00f0renn",
|
||||
"Scope": "N\u00fdtslu\u00f8ki",
|
||||
"Delete table": "Strika talvu",
|
||||
"H Align": "Vatnr\u00e6tt stilla",
|
||||
"Top": "Ovast",
|
||||
"Header cell": "H\u00f8vd puntur",
|
||||
"Column": "Teigur",
|
||||
"Row group": "Ra\u00f0 b\u00f3lkur",
|
||||
"Cell": "Puntur",
|
||||
"Middle": "\u00cd mi\u00f0juni",
|
||||
"Cell type": "Punt slag",
|
||||
"Copy row": "Avrita ra\u00f0",
|
||||
"Row properties": "Ra\u00f0 eginleikar",
|
||||
"Table properties": "Talvu eginleikar",
|
||||
"Bottom": "Ni\u00f0ast",
|
||||
"V Align": "Loddr\u00e6tt stilla",
|
||||
"Header": "H\u00f8vd",
|
||||
"Right": "H\u00f8gra",
|
||||
"Insert column after": "Innset teig aftan\u00e1",
|
||||
"Cols": "Teigar",
|
||||
"Insert row after": "Innset ra\u00f0 aftan\u00e1",
|
||||
"Width": "Breidd",
|
||||
"Cell properties": "Punt eginleikar",
|
||||
"Left": "Vinstra",
|
||||
"Cut row": "Klipp ra\u00f0",
|
||||
"Delete column": "Strika teig",
|
||||
"Center": "Mi\u00f0a",
|
||||
"Merge cells": "Fl\u00e6tta puntar",
|
||||
"Insert template": "Innset form",
|
||||
"Templates": "Formur",
|
||||
"Background color": "Bakgrundslitur",
|
||||
"Custom...": "Laga til...",
|
||||
"Custom color": "Tillaga lit",
|
||||
"No color": "Eingin litur",
|
||||
"Text color": "Tekst litur",
|
||||
"Show blocks": "V\u00eds blokkar",
|
||||
"Show invisible characters": "V\u00eds \u00f3sj\u00f3nlig tekn",
|
||||
"Words: {0}": "Or\u00f0: {0}",
|
||||
"Insert": "Innset",
|
||||
"File": "F\u00edla",
|
||||
"Edit": "Ritstj\u00f3rna",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "R\u00edkt Tekst \u00d8ki. Tr\u00fdst ALT-F9 fyri valmynd. Tr\u00fdst ALT-F10 fyri ambo\u00f0slinju. Tr\u00fdst ALT-0 fyri hj\u00e1lp",
|
||||
"Tools": "Ambo\u00f0",
|
||||
"View": "V\u00eds",
|
||||
"Table": "Talva",
|
||||
"Format": "Sni\u00f0"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/fr_CH.js
Normal file
219
data/web/rc/program/js/tinymce/langs/fr_CH.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('fr_CH',{
|
||||
"Cut": "Couper",
|
||||
"Heading 5": "Rubrique 5",
|
||||
"Header 2": "Titre 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Votre navigateur ne supporte pas la copie directe. Merci d'utiliser les touches Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Rubrique 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Rubrique 2",
|
||||
"Paste": "Coller",
|
||||
"Close": "Fermer",
|
||||
"Font Family": "Polices de caract\u00e8res",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Aligner \u00e0 droite",
|
||||
"New document": "Nouveau document",
|
||||
"Blockquote": "Citation",
|
||||
"Numbered list": "Num\u00e9rotation",
|
||||
"Heading 1": "Rubrique 1",
|
||||
"Headings": "Rubriques",
|
||||
"Increase indent": "Augmenter le retrait",
|
||||
"Formats": "Formats",
|
||||
"Headers": "Titres",
|
||||
"Select all": "Tout s\u00e9lectionner",
|
||||
"Header 3": "Titre 3",
|
||||
"Blocks": "Blocs",
|
||||
"Undo": "Annuler",
|
||||
"Strikethrough": "Barr\u00e9",
|
||||
"Bullet list": "Puces",
|
||||
"Header 1": "Titre 1",
|
||||
"Superscript": "Exposant",
|
||||
"Clear formatting": "Effacer la mise en forme",
|
||||
"Font Sizes": "Tailles de la police",
|
||||
"Subscript": "Indice",
|
||||
"Header 6": "Titre 6",
|
||||
"Redo": "R\u00e9tablir",
|
||||
"Paragraph": "Paragraphe",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Gras",
|
||||
"Code": "Code",
|
||||
"Italic": "Italique",
|
||||
"Align center": "Aligner au centre",
|
||||
"Header 5": "Titre 5",
|
||||
"Heading 6": "Rubrique 6",
|
||||
"Heading 3": "Rubrique 3",
|
||||
"Decrease indent": "Diminuer le retrait",
|
||||
"Header 4": "Titre 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.",
|
||||
"Underline": "Souligner",
|
||||
"Cancel": "Annuler",
|
||||
"Justify": "Justifier",
|
||||
"Inline": "En ligne",
|
||||
"Copy": "Copier",
|
||||
"Align left": "Aligner \u00e0 gauche",
|
||||
"Visual aids": "Aides visuelles",
|
||||
"Lower Greek": "Grecque inf\u00e9rieur",
|
||||
"Square": "Carr\u00e9",
|
||||
"Default": "D\u00e9faut",
|
||||
"Lower Alpha": "Alpha inf\u00e9rieur",
|
||||
"Circle": "Cercle",
|
||||
"Disc": "Disque",
|
||||
"Upper Alpha": "Alpha sup\u00e9rieur",
|
||||
"Upper Roman": "Romain sup\u00e9rieur",
|
||||
"Lower Roman": "Romain inf\u00e9rieur",
|
||||
"Name": "Nom",
|
||||
"Anchor": "Ancre",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?",
|
||||
"Restore last draft": "Restaurer le dernier brouillon",
|
||||
"Special character": "Caract\u00e8re sp\u00e9cial",
|
||||
"Source code": "Code source",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "V",
|
||||
"Color": "Couleur",
|
||||
"Right to left": "Droite \u00e0 gauche",
|
||||
"Left to right": "Gauche \u00e0 droite",
|
||||
"Emoticons": "\u00c9motic\u00f4nes",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Propri\u00e9t\u00e9s du document",
|
||||
"Title": "Titre",
|
||||
"Keywords": "Mots cl\u00e9s",
|
||||
"Encoding": "Encodage",
|
||||
"Description": "Description",
|
||||
"Author": "Auteur",
|
||||
"Fullscreen": "Plein \u00e9cran",
|
||||
"Horizontal line": "Ligne horizontale",
|
||||
"Horizontal space": "Espacement horizontal",
|
||||
"Insert\/edit image": "Ins\u00e9rer\/\u00e9diter image",
|
||||
"General": "G\u00e9n\u00e9ral",
|
||||
"Advanced": "Avanc\u00e9",
|
||||
"Source": "Source",
|
||||
"Border": "Bordure",
|
||||
"Constrain proportions": "Conserver les proportions",
|
||||
"Vertical space": "Espacement vertical",
|
||||
"Image description": "Description de l'image",
|
||||
"Style": "Style",
|
||||
"Dimensions": "Dimensions",
|
||||
"Insert image": "Ins\u00e9rer une image",
|
||||
"Zoom in": "Zoomer",
|
||||
"Contrast": "Contraste",
|
||||
"Back": "Retour",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Miroir horizontal",
|
||||
"Resize": "Redimensionner",
|
||||
"Sharpen": "Nettet\u00e9",
|
||||
"Zoom out": "D\u00e9zoomer",
|
||||
"Image options": "Options de l'image",
|
||||
"Apply": "Appliquer",
|
||||
"Brightness": "Luminosit\u00e9",
|
||||
"Rotate clockwise": "Tourner dans le sens inverse des aiguilles",
|
||||
"Rotate counterclockwise": "Tourner dans le sens des aiguilles",
|
||||
"Edit image": "Modifier l'image",
|
||||
"Color levels": "Niveau de couleurs",
|
||||
"Crop": "Recadrer",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Miroir vertical",
|
||||
"Invert": "Inverser",
|
||||
"Insert date\/time": "Ins\u00e9rer date\/heure",
|
||||
"Remove link": "Supprimer le lien",
|
||||
"Url": "Url",
|
||||
"Text to display": "Texte \u00e0 afficher",
|
||||
"Anchors": "Ancres",
|
||||
"Insert link": "Ins\u00e9rer un lien",
|
||||
"New window": "Nouvelle fen\u00eatre",
|
||||
"None": "n\/a",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?",
|
||||
"Target": "Cible",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?",
|
||||
"Insert\/edit link": "Ins\u00e9rer\/\u00e9diter lien",
|
||||
"Insert\/edit video": "Ins\u00e9rer\/modifier une vid\u00e9o",
|
||||
"Poster": "Publier",
|
||||
"Alternative source": "Source alternative",
|
||||
"Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :",
|
||||
"Insert video": "Ins\u00e9rer une vid\u00e9o",
|
||||
"Embed": "Int\u00e9grer",
|
||||
"Nonbreaking space": "Espace ins\u00e9cable",
|
||||
"Page break": "Saut de page",
|
||||
"Paste as text": "Coller comme texte",
|
||||
"Preview": "Pr\u00e9visualiser",
|
||||
"Print": "Imprimer",
|
||||
"Save": "Enregistrer",
|
||||
"Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.",
|
||||
"Replace": "Remplacer",
|
||||
"Next": "Suiv",
|
||||
"Whole words": "Mots entiers",
|
||||
"Find and replace": "Trouver et remplacer",
|
||||
"Replace with": "Remplacer par",
|
||||
"Find": "Chercher",
|
||||
"Replace all": "Remplacer tout",
|
||||
"Match case": "Respecter la casse",
|
||||
"Prev": "Pr\u00e9c",
|
||||
"Spellcheck": "V\u00e9rification orthographique",
|
||||
"Finish": "Finie",
|
||||
"Ignore all": "Tout ignorer",
|
||||
"Ignore": "Ignorer",
|
||||
"Add to Dictionary": "Ajouter au dictionnaire",
|
||||
"Insert row before": "Ins\u00e9rer une ligne avant",
|
||||
"Rows": "Lignes",
|
||||
"Height": "Hauteur",
|
||||
"Paste row after": "Coller la ligne apr\u00e8s",
|
||||
"Alignment": "Alignement",
|
||||
"Border color": "Couleur de la bordure",
|
||||
"Column group": "Groupe de colonnes",
|
||||
"Row": "Ligne",
|
||||
"Insert column before": "Ins\u00e9rer une colonne avant",
|
||||
"Split cell": "Diviser la cellule",
|
||||
"Cell padding": "Espacement interne cellule",
|
||||
"Cell spacing": "Espacement inter-cellulles",
|
||||
"Row type": "Type de ligne",
|
||||
"Insert table": "Ins\u00e9rer un tableau",
|
||||
"Body": "Corps",
|
||||
"Caption": "Titre",
|
||||
"Footer": "Pied",
|
||||
"Delete row": "Effacer la ligne",
|
||||
"Paste row before": "Coller la ligne avant",
|
||||
"Scope": "Etendue",
|
||||
"Delete table": "Supprimer le tableau",
|
||||
"H Align": "Alignement H",
|
||||
"Top": "Haut",
|
||||
"Header cell": "Cellule d'en-t\u00eate",
|
||||
"Column": "Colonne",
|
||||
"Row group": "Groupe de lignes",
|
||||
"Cell": "Cellule",
|
||||
"Middle": "Milieu",
|
||||
"Cell type": "Type de cellule",
|
||||
"Copy row": "Copier la ligne",
|
||||
"Row properties": "Propri\u00e9t\u00e9s de la ligne",
|
||||
"Table properties": "Propri\u00e9t\u00e9s du tableau",
|
||||
"Bottom": "Bas",
|
||||
"V Align": "Alignement V",
|
||||
"Header": "En-t\u00eate",
|
||||
"Right": "Droite",
|
||||
"Insert column after": "Ins\u00e9rer une colonne apr\u00e8s",
|
||||
"Cols": "Colonnes",
|
||||
"Insert row after": "Ins\u00e9rer une ligne apr\u00e8s",
|
||||
"Width": "Largeur",
|
||||
"Cell properties": "Propri\u00e9t\u00e9s de la cellule",
|
||||
"Left": "Gauche",
|
||||
"Cut row": "Couper la ligne",
|
||||
"Delete column": "Effacer la colonne",
|
||||
"Center": "Centr\u00e9",
|
||||
"Merge cells": "Fusionner les cellules",
|
||||
"Insert template": "Ajouter un th\u00e8me",
|
||||
"Templates": "Th\u00e8mes",
|
||||
"Background color": "Couleur d'arri\u00e8re-plan",
|
||||
"Custom...": "Personnalis\u00e9...",
|
||||
"Custom color": "Couleur personnalis\u00e9e",
|
||||
"No color": "Aucune couleur",
|
||||
"Text color": "Couleur du texte",
|
||||
"Show blocks": "Afficher les blocs",
|
||||
"Show invisible characters": "Afficher les caract\u00e8res invisibles",
|
||||
"Words: {0}": "Mots : {0}",
|
||||
"Insert": "Ins\u00e9rer",
|
||||
"File": "Fichier",
|
||||
"Edit": "Editer",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide.",
|
||||
"Tools": "Outils",
|
||||
"View": "Voir",
|
||||
"Table": "Tableau",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/fr_FR.js
Normal file
219
data/web/rc/program/js/tinymce/langs/fr_FR.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('fr_FR',{
|
||||
"Cut": "Couper",
|
||||
"Heading 5": "En-t\u00eate 5",
|
||||
"Header 2": "Titre 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Votre navigateur ne supporte pas la copie directe. Merci d'utiliser les touches Ctrl+X\/C\/V.",
|
||||
"Heading 4": "En-t\u00eate 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "En-t\u00eate 2",
|
||||
"Paste": "Coller",
|
||||
"Close": "Fermer",
|
||||
"Font Family": "Police",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Aligner \u00e0 droite",
|
||||
"New document": "Nouveau document",
|
||||
"Blockquote": "Citation",
|
||||
"Numbered list": "Num\u00e9rotation",
|
||||
"Heading 1": "En-t\u00eate 1",
|
||||
"Headings": "En-t\u00eates",
|
||||
"Increase indent": "Augmenter le retrait",
|
||||
"Formats": "Formats",
|
||||
"Headers": "Titres",
|
||||
"Select all": "Tout s\u00e9lectionner",
|
||||
"Header 3": "Titre 3",
|
||||
"Blocks": "Blocs",
|
||||
"Undo": "Annuler",
|
||||
"Strikethrough": "Barr\u00e9",
|
||||
"Bullet list": "Puces",
|
||||
"Header 1": "Titre 1",
|
||||
"Superscript": "Exposant",
|
||||
"Clear formatting": "Effacer la mise en forme",
|
||||
"Font Sizes": "Taille de police",
|
||||
"Subscript": "Indice",
|
||||
"Header 6": "Titre 6",
|
||||
"Redo": "R\u00e9tablir",
|
||||
"Paragraph": "Paragraphe",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Gras",
|
||||
"Code": "Code",
|
||||
"Italic": "Italique",
|
||||
"Align center": "Centrer",
|
||||
"Header 5": "Titre 5",
|
||||
"Heading 6": "En-t\u00eate 6",
|
||||
"Heading 3": "En-t\u00eate 3",
|
||||
"Decrease indent": "Diminuer le retrait",
|
||||
"Header 4": "Titre 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.",
|
||||
"Underline": "Soulign\u00e9",
|
||||
"Cancel": "Annuler",
|
||||
"Justify": "Justifier",
|
||||
"Inline": "En ligne",
|
||||
"Copy": "Copier",
|
||||
"Align left": "Aligner \u00e0 gauche",
|
||||
"Visual aids": "Aides visuelle",
|
||||
"Lower Greek": "Grec minuscule",
|
||||
"Square": "Carr\u00e9",
|
||||
"Default": "Par d\u00e9faut",
|
||||
"Lower Alpha": "Alpha minuscule",
|
||||
"Circle": "Cercle",
|
||||
"Disc": "Disque",
|
||||
"Upper Alpha": "Alpha majuscule",
|
||||
"Upper Roman": "Romain majuscule",
|
||||
"Lower Roman": "Romain minuscule",
|
||||
"Name": "Nom",
|
||||
"Anchor": "Ancre",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?",
|
||||
"Restore last draft": "Restaurer le dernier brouillon",
|
||||
"Special character": "Caract\u00e8res sp\u00e9ciaux",
|
||||
"Source code": "Code source",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "V",
|
||||
"Color": "Couleur",
|
||||
"Right to left": "Droite \u00e0 gauche",
|
||||
"Left to right": "Gauche \u00e0 droite",
|
||||
"Emoticons": "Emotic\u00f4nes",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Propri\u00e9t\u00e9 du document",
|
||||
"Title": "Titre",
|
||||
"Keywords": "Mots-cl\u00e9s",
|
||||
"Encoding": "Encodage",
|
||||
"Description": "Description",
|
||||
"Author": "Auteur",
|
||||
"Fullscreen": "Plein \u00e9cran",
|
||||
"Horizontal line": "Ligne horizontale",
|
||||
"Horizontal space": "Espacement horizontal",
|
||||
"Insert\/edit image": "Ins\u00e9rer\/modifier une image",
|
||||
"General": "G\u00e9n\u00e9ral",
|
||||
"Advanced": "Avanc\u00e9",
|
||||
"Source": "Source",
|
||||
"Border": "Bordure",
|
||||
"Constrain proportions": "Conserver les proportions",
|
||||
"Vertical space": "Espacement vertical",
|
||||
"Image description": "Description de l'image",
|
||||
"Style": "Style",
|
||||
"Dimensions": "Dimensions",
|
||||
"Insert image": "Ins\u00e9rer une image",
|
||||
"Zoom in": "Zoomer",
|
||||
"Contrast": "Contraste",
|
||||
"Back": "Retour",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Retournement horizontal",
|
||||
"Resize": "Redimensionner",
|
||||
"Sharpen": "Affiner",
|
||||
"Zoom out": "D\u00e9zoomer",
|
||||
"Image options": "Options de l'image",
|
||||
"Apply": "Appliquer",
|
||||
"Brightness": "Luminosit\u00e9",
|
||||
"Rotate clockwise": "Rotation horaire",
|
||||
"Rotate counterclockwise": "Rotation anti-horaire",
|
||||
"Edit image": "Modifier l'image",
|
||||
"Color levels": "Niveaux de couleur",
|
||||
"Crop": "Rogner",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Retournement vertical",
|
||||
"Invert": "Inverser",
|
||||
"Insert date\/time": "Ins\u00e9rer date\/heure",
|
||||
"Remove link": "Enlever le lien",
|
||||
"Url": "Url",
|
||||
"Text to display": "Texte \u00e0 afficher",
|
||||
"Anchors": "Ancres",
|
||||
"Insert link": "Ins\u00e9rer un lien",
|
||||
"New window": "Nouvelle fen\u00eatre",
|
||||
"None": "n\/a",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?",
|
||||
"Target": "Cible",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?",
|
||||
"Insert\/edit link": "Ins\u00e9rer\/modifier un lien",
|
||||
"Insert\/edit video": "Ins\u00e9rer\/modifier une vid\u00e9o",
|
||||
"Poster": "Publier",
|
||||
"Alternative source": "Source alternative",
|
||||
"Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :",
|
||||
"Insert video": "Ins\u00e9rer une vid\u00e9o",
|
||||
"Embed": "Int\u00e9grer",
|
||||
"Nonbreaking space": "Espace ins\u00e9cable",
|
||||
"Page break": "Saut de page",
|
||||
"Paste as text": "Coller comme texte",
|
||||
"Preview": "Pr\u00e9visualiser",
|
||||
"Print": "Imprimer",
|
||||
"Save": "Enregistrer",
|
||||
"Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.",
|
||||
"Replace": "Remplacer",
|
||||
"Next": "Suiv",
|
||||
"Whole words": "Mots entiers",
|
||||
"Find and replace": "Trouver et remplacer",
|
||||
"Replace with": "Remplacer par",
|
||||
"Find": "Chercher",
|
||||
"Replace all": "Tout remplacer",
|
||||
"Match case": "Respecter la casse",
|
||||
"Prev": "Pr\u00e9c ",
|
||||
"Spellcheck": "V\u00e9rification orthographique",
|
||||
"Finish": "Finie",
|
||||
"Ignore all": "Tout ignorer",
|
||||
"Ignore": "Ignorer",
|
||||
"Add to Dictionary": "Ajouter au dictionnaire",
|
||||
"Insert row before": "Ins\u00e9rer une ligne avant",
|
||||
"Rows": "Lignes",
|
||||
"Height": "Hauteur",
|
||||
"Paste row after": "Coller la ligne apr\u00e8s",
|
||||
"Alignment": "Alignement",
|
||||
"Border color": "Couleur de la bordure",
|
||||
"Column group": "Groupe de colonnes",
|
||||
"Row": "Ligne",
|
||||
"Insert column before": "Ins\u00e9rer une colonne avant",
|
||||
"Split cell": "Diviser la cellule",
|
||||
"Cell padding": "Espacement interne cellule",
|
||||
"Cell spacing": "Espacement inter-cellulles",
|
||||
"Row type": "Type de ligne",
|
||||
"Insert table": "Ins\u00e9rer un tableau",
|
||||
"Body": "Corps",
|
||||
"Caption": "Titre",
|
||||
"Footer": "Pied",
|
||||
"Delete row": "Effacer la ligne",
|
||||
"Paste row before": "Coller la ligne avant",
|
||||
"Scope": "Etendue",
|
||||
"Delete table": "Supprimer le tableau",
|
||||
"H Align": "Alignement H",
|
||||
"Top": "Haut",
|
||||
"Header cell": "Cellule d'en-t\u00eate",
|
||||
"Column": "Colonne",
|
||||
"Row group": "Groupe de lignes",
|
||||
"Cell": "Cellule",
|
||||
"Middle": "Milieu",
|
||||
"Cell type": "Type de cellule",
|
||||
"Copy row": "Copier la ligne",
|
||||
"Row properties": "Propri\u00e9t\u00e9s de la ligne",
|
||||
"Table properties": "Propri\u00e9t\u00e9s du tableau",
|
||||
"Bottom": "Bas",
|
||||
"V Align": "Alignement V",
|
||||
"Header": "En-t\u00eate",
|
||||
"Right": "Droite",
|
||||
"Insert column after": "Ins\u00e9rer une colonne apr\u00e8s",
|
||||
"Cols": "Colonnes",
|
||||
"Insert row after": "Ins\u00e9rer une ligne apr\u00e8s",
|
||||
"Width": "Largeur",
|
||||
"Cell properties": "Propri\u00e9t\u00e9s de la cellule",
|
||||
"Left": "Gauche",
|
||||
"Cut row": "Couper la ligne",
|
||||
"Delete column": "Effacer la colonne",
|
||||
"Center": "Centr\u00e9",
|
||||
"Merge cells": "Fusionner les cellules",
|
||||
"Insert template": "Ajouter un th\u00e8me",
|
||||
"Templates": "Th\u00e8mes",
|
||||
"Background color": "Couleur d'arri\u00e8re-plan",
|
||||
"Custom...": "Personnalis\u00e9...",
|
||||
"Custom color": "Couleur personnalis\u00e9e",
|
||||
"No color": "Aucune couleur",
|
||||
"Text color": "Couleur du texte",
|
||||
"Show blocks": "Afficher les blocs",
|
||||
"Show invisible characters": "Afficher les caract\u00e8res invisibles",
|
||||
"Words: {0}": "Mots : {0}",
|
||||
"Insert": "Ins\u00e9rer",
|
||||
"File": "Fichier",
|
||||
"Edit": "Editer",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide.",
|
||||
"Tools": "Outils",
|
||||
"View": "Voir",
|
||||
"Table": "Tableau",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ga.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ga.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ga',{
|
||||
"Cut": "Gearr",
|
||||
"Heading 5": "Ceannteideal 5",
|
||||
"Header 2": "Ceannt\u00e1sc 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "N\u00ed f\u00e9idir le do bhrabhs\u00e1la\u00ed teacht go d\u00edreach ar an ngearrthaisce. Bain \u00fas\u00e1id as na haicearra\u00ed Ctrl+X\/C\/V. ",
|
||||
"Heading 4": "Ceannteideal 4",
|
||||
"Div": "Deighilt",
|
||||
"Heading 2": "Ceannteideal 2",
|
||||
"Paste": "Greamaigh",
|
||||
"Close": "D\u00fan",
|
||||
"Font Family": "Cl\u00f3fhoireann",
|
||||
"Pre": "R\u00e9amh",
|
||||
"Align right": "Ail\u00ednigh ar dheis",
|
||||
"New document": "C\u00e1ip\u00e9is nua",
|
||||
"Blockquote": "Athfhriotal",
|
||||
"Numbered list": "Liosta Uimhrithe",
|
||||
"Heading 1": "Ceannteideal 1",
|
||||
"Headings": "Ceannteidil",
|
||||
"Increase indent": "M\u00e9adaigh eang",
|
||||
"Formats": "Form\u00e1id\u00ed",
|
||||
"Headers": "Ceannt\u00e1sca",
|
||||
"Select all": "Roghnaigh uile",
|
||||
"Header 3": "Ceannt\u00e1sc 3",
|
||||
"Blocks": "Blocanna",
|
||||
"Undo": "Cealaigh",
|
||||
"Strikethrough": "L\u00edne tr\u00edd",
|
||||
"Bullet list": "Liosta Urchar",
|
||||
"Header 1": "Ceannt\u00e1sc 1",
|
||||
"Superscript": "Forscript",
|
||||
"Clear formatting": "Glan form\u00e1idi\u00fa",
|
||||
"Font Sizes": "Cl\u00f3mh\u00e9ideanna",
|
||||
"Subscript": "Foscript",
|
||||
"Header 6": "Ceannt\u00e1sc 6",
|
||||
"Redo": "Athdh\u00e9an",
|
||||
"Paragraph": "Alt",
|
||||
"Ok": "OK",
|
||||
"Bold": "Trom",
|
||||
"Code": "C\u00f3d",
|
||||
"Italic": "Iod\u00e1lach",
|
||||
"Align center": "Ail\u00ednigh sa l\u00e1r",
|
||||
"Header 5": "Ceannt\u00e1sc 5",
|
||||
"Heading 6": "Ceannteideal 6",
|
||||
"Heading 3": "Ceannteideal 3",
|
||||
"Decrease indent": "Laghdaigh eang",
|
||||
"Header 4": "Ceannt\u00e1sc 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Sa m\u00f3d gn\u00e1th-th\u00e9acs anois. Gream\u00f3far \u00e1bhar mar ghn\u00e1th-th\u00e9acs go dt\u00ed go m\u00fachfaidh t\u00fa an rogha seo.",
|
||||
"Underline": "Fol\u00edne",
|
||||
"Cancel": "Cealaigh",
|
||||
"Justify": "Comhfhadaigh",
|
||||
"Inline": "Inl\u00edne",
|
||||
"Copy": "C\u00f3ipe\u00e1il",
|
||||
"Align left": "Ail\u00ednigh ar chl\u00e9",
|
||||
"Visual aids": "\u00c1iseanna amhairc",
|
||||
"Lower Greek": "Litir Bheag Ghr\u00e9agach",
|
||||
"Square": "Cearn\u00f3g",
|
||||
"Default": "R\u00e9amhshocr\u00fa",
|
||||
"Lower Alpha": "Alfa Beag",
|
||||
"Circle": "Ciorcal",
|
||||
"Disc": "Diosca",
|
||||
"Upper Alpha": "Alfa M\u00f3r",
|
||||
"Upper Roman": "Litir Mh\u00f3r R\u00f3mh\u00e1nach",
|
||||
"Lower Roman": "Litir Bheag R\u00f3mh\u00e1nach",
|
||||
"Name": "Ainm",
|
||||
"Anchor": "Ancaire",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "T\u00e1 athruithe gan s\u00e1bh\u00e1il ann. An bhfuil t\u00fa cinnte gur mhaith leat imeacht amach as seo?",
|
||||
"Restore last draft": "Oscail an dr\u00e9acht is d\u00e9ana\u00ed",
|
||||
"Special character": "Carachtar speisialta",
|
||||
"Source code": "C\u00f3d foinseach",
|
||||
"B": "G",
|
||||
"R": "D",
|
||||
"G": "U",
|
||||
"Color": "Dath",
|
||||
"Right to left": "Deas-go-cl\u00e9",
|
||||
"Left to right": "Cl\u00e9-go-deas",
|
||||
"Emoticons": "Straoiseoga",
|
||||
"Robots": "R\u00f3bait",
|
||||
"Document properties": "Air\u00edonna na C\u00e1ip\u00e9ise",
|
||||
"Title": "Teideal",
|
||||
"Keywords": "Lorgfhocail",
|
||||
"Encoding": "Ionch\u00f3d\u00fa",
|
||||
"Description": "Cur S\u00edos",
|
||||
"Author": "\u00dadar",
|
||||
"Fullscreen": "L\u00e1nsc\u00e1ile\u00e1n",
|
||||
"Horizontal line": "L\u00edne chothrom\u00e1nach",
|
||||
"Horizontal space": "Sp\u00e1s cothrom\u00e1nach",
|
||||
"Insert\/edit image": "Cuir \u00edomh\u00e1 isteach\/in eagar",
|
||||
"General": "Ginear\u00e1lta",
|
||||
"Advanced": "Casta",
|
||||
"Source": "Foinse",
|
||||
"Border": "Iml\u00edne",
|
||||
"Constrain proportions": "Comhr\u00e9ir faoi ghlas",
|
||||
"Vertical space": "Sp\u00e1s ingearach",
|
||||
"Image description": "Cur s\u00edos ar an \u00edomh\u00e1",
|
||||
"Style": "St\u00edl",
|
||||
"Dimensions": "Tois\u00ed",
|
||||
"Insert image": "Cuir \u00edomh\u00e1 isteach",
|
||||
"Zoom in": "Z\u00fam\u00e1il isteach",
|
||||
"Contrast": "Codarsnacht",
|
||||
"Back": "Siar",
|
||||
"Gamma": "G\u00e1ma",
|
||||
"Flip horizontally": "Cas go cothrom\u00e1nach",
|
||||
"Resize": "Athraigh m\u00e9id",
|
||||
"Sharpen": "G\u00e9araigh",
|
||||
"Zoom out": "Z\u00fam\u00e1il amach",
|
||||
"Image options": "Roghanna \u00edomh\u00e1",
|
||||
"Apply": "Cuir i bhfeidhm",
|
||||
"Brightness": "Gile",
|
||||
"Rotate clockwise": "Rothlaigh ar deiseal",
|
||||
"Rotate counterclockwise": "Rothlaigh ar tuathal",
|
||||
"Edit image": "Cuir an \u00edomh\u00e1 in eagar",
|
||||
"Color levels": "Leibh\u00e9il datha",
|
||||
"Crop": "Bear",
|
||||
"Orientation": "Treoshu\u00edomh",
|
||||
"Flip vertically": "Cas go hingearach",
|
||||
"Invert": "Inbh\u00e9artaigh",
|
||||
"Insert date\/time": "Cuir d\u00e1ta\/am isteach",
|
||||
"Remove link": "Bain an nasc",
|
||||
"Url": "URL",
|
||||
"Text to display": "T\u00e9acs le taispe\u00e1int",
|
||||
"Anchors": "Ancair\u00ed",
|
||||
"Insert link": "Cuir nasc isteach",
|
||||
"New window": "Fuinneog nua",
|
||||
"None": "Dada",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Is nasc seachtrach \u00e9 an URL a chuir t\u00fa isteach. An bhfuil fonn ort an r\u00e9im\u00edr riachtanach http:\/\/ a chur leis?",
|
||||
"Target": "Sprioc",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Is seoladh r\u00edomhphoist \u00e9 an URL a chuir t\u00fa isteach. An bhfuil fonn ort an r\u00e9im\u00edr riachtanach mailto: a chur leis?",
|
||||
"Insert\/edit link": "Cuir nasc isteach\/in eagar",
|
||||
"Insert\/edit video": "Cuir f\u00edse\u00e1n isteach\/in eagar",
|
||||
"Poster": "P\u00f3staer",
|
||||
"Alternative source": "Foinse mhalartach",
|
||||
"Paste your embed code below:": "Greamaigh do ch\u00f3d leabaithe th\u00edos:",
|
||||
"Insert video": "Cuir f\u00edse\u00e1n isteach",
|
||||
"Embed": "Leabaigh",
|
||||
"Nonbreaking space": "Sp\u00e1s neamhbhristeach",
|
||||
"Page break": "Briseadh leathanaigh",
|
||||
"Paste as text": "Greamaigh mar th\u00e9acs",
|
||||
"Preview": "R\u00e9amhamharc",
|
||||
"Print": "Priont\u00e1il",
|
||||
"Save": "S\u00e1bh\u00e1il",
|
||||
"Could not find the specified string.": "N\u00edor aims\u00edodh an teaghr\u00e1n.",
|
||||
"Replace": "Ionadaigh",
|
||||
"Next": "Ar aghaidh",
|
||||
"Whole words": "Focail ioml\u00e1na",
|
||||
"Find and replace": "Aimsigh agus ionadaigh",
|
||||
"Replace with": "Ionadaigh le",
|
||||
"Find": "Aimsigh",
|
||||
"Replace all": "Ionadaigh uile",
|
||||
"Match case": "C\u00e1s-\u00edogair",
|
||||
"Prev": "Siar",
|
||||
"Spellcheck": "Seice\u00e1il an litri\u00fa",
|
||||
"Finish": "Cr\u00edochnaigh",
|
||||
"Ignore all": "D\u00e9an neamhaird orthu go l\u00e9ir",
|
||||
"Ignore": "D\u00e9an neamhaird air",
|
||||
"Add to Dictionary": "Cuir leis an bhFocl\u00f3ir \u00e9",
|
||||
"Insert row before": "Ions\u00e1igh r\u00f3 os a chionn",
|
||||
"Rows": "R\u00f3nna",
|
||||
"Height": "Airde",
|
||||
"Paste row after": "Greamaigh r\u00f3 faoi",
|
||||
"Alignment": "Ail\u00edni\u00fa",
|
||||
"Border color": "Dath na himl\u00edne",
|
||||
"Column group": "Gr\u00fapa col\u00fan",
|
||||
"Row": "R\u00f3",
|
||||
"Insert column before": "Ions\u00e1igh col\u00fan ar chl\u00e9",
|
||||
"Split cell": "Roinn cill",
|
||||
"Cell padding": "Stu\u00e1il ceall",
|
||||
"Cell spacing": "Sp\u00e1s\u00e1il ceall",
|
||||
"Row type": "Cine\u00e1l an r\u00f3",
|
||||
"Insert table": "Ions\u00e1igh t\u00e1bla",
|
||||
"Body": "Corp",
|
||||
"Caption": "Fotheideal",
|
||||
"Footer": "Bunt\u00e1sc",
|
||||
"Delete row": "Scrios an r\u00f3",
|
||||
"Paste row before": "Greamaigh r\u00f3 os a chionn",
|
||||
"Scope": "Sc\u00f3ip",
|
||||
"Delete table": "Scrios an t\u00e1bla",
|
||||
"H Align": "Ail\u00edni\u00fa C.",
|
||||
"Top": "Barr",
|
||||
"Header cell": "Cill cheannt\u00e1isc",
|
||||
"Column": "Col\u00fan",
|
||||
"Row group": "Gr\u00fapa r\u00f3nna",
|
||||
"Cell": "Cill",
|
||||
"Middle": "L\u00e1r",
|
||||
"Cell type": "Cine\u00e1l na cille",
|
||||
"Copy row": "C\u00f3ipe\u00e1il an r\u00f3",
|
||||
"Row properties": "Air\u00edonna an r\u00f3",
|
||||
"Table properties": "Air\u00edonna an t\u00e1bla",
|
||||
"Bottom": "Bun",
|
||||
"V Align": "Ail\u00edni\u00fa I.",
|
||||
"Header": "Ceannt\u00e1sc",
|
||||
"Right": "Ar Dheis",
|
||||
"Insert column after": "Ions\u00e1igh col\u00fan ar dheis",
|
||||
"Cols": "Col\u00fain",
|
||||
"Insert row after": "Ions\u00e1igh r\u00f3 faoi",
|
||||
"Width": "Leithead",
|
||||
"Cell properties": "Air\u00edonna na cille",
|
||||
"Left": "Ar Chl\u00e9",
|
||||
"Cut row": "Gearr an r\u00f3",
|
||||
"Delete column": "Scrios an col\u00fan",
|
||||
"Center": "Sa L\u00e1r",
|
||||
"Merge cells": "Cumaisc cealla",
|
||||
"Insert template": "Ions\u00e1igh teimpl\u00e9ad",
|
||||
"Templates": "Teimpl\u00e9id",
|
||||
"Background color": "Dath an ch\u00falra",
|
||||
"Custom...": "Saincheap...",
|
||||
"Custom color": "Dath saincheaptha",
|
||||
"No color": "Gan dath",
|
||||
"Text color": "Dath an t\u00e9acs",
|
||||
"Show blocks": "Taispe\u00e1in blocanna",
|
||||
"Show invisible characters": "Taispe\u00e1in carachtair dhofheicthe",
|
||||
"Words: {0}": "Focail: {0}",
|
||||
"Insert": "Ions\u00e1ig",
|
||||
"File": "Comhad",
|
||||
"Edit": "Eagar",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Limist\u00e9ar M\u00e9ith-Th\u00e9acs. Br\u00faigh ALT-F9 le haghaidh roghchl\u00e1ir, ALT-F10 le haghaidh barra uirlis\u00ed, agus ALT-0 le c\u00fanamh a fh\u00e1il",
|
||||
"Tools": "Uirlis\u00ed",
|
||||
"View": "Amharc",
|
||||
"Table": "T\u00e1bla",
|
||||
"Format": "Form\u00e1id"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/gd.js
Normal file
219
data/web/rc/program/js/tinymce/langs/gd.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('gd',{
|
||||
"Cut": "Gearr \u00e0s",
|
||||
"Heading 5": "Ceann-sgr\u00ecobhadh 5",
|
||||
"Header 2": "Bann-cinn 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Chan eil am brabhsair agad a' cur taic ri inntrigeadh d\u00ecreach dhan st\u00f2r-bh\u00f2rd. Cleachd ath-ghoiridean a' mheur-chl\u00e0ir, Ctrl+X\/V\/V 'nan \u00e0ite.",
|
||||
"Heading 4": "Ceann-sgr\u00ecobhadh 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Ceann-sgr\u00ecobhadh 2",
|
||||
"Paste": "Cuir ann",
|
||||
"Close": "D\u00f9in",
|
||||
"Font Family": "Teaghlach a' chrutha-chl\u00f2",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Co-thaobhaich ris an l\u00e0imh dheas",
|
||||
"New document": "Sgr\u00ecobhainn \u00f9r",
|
||||
"Blockquote": "Bloc-luaidh",
|
||||
"Numbered list": "Liosta \u00e0ireamhaichte",
|
||||
"Heading 1": "Ceann-sgr\u00ecobhadh 1",
|
||||
"Headings": "Ceann-sgr\u00ecobhaidhean",
|
||||
"Increase indent": "Meudaich an eag",
|
||||
"Formats": "F\u00f2rmatan",
|
||||
"Headers": "Bannan-cinn",
|
||||
"Select all": "Tagh na h-uile",
|
||||
"Header 3": "Bann-cinn 3",
|
||||
"Blocks": "Blocaichean",
|
||||
"Undo": "Neo-dh\u00e8an",
|
||||
"Strikethrough": "Loidhne troimhe",
|
||||
"Bullet list": "Liosta pheilearaichte",
|
||||
"Header 1": "Bann-cinn 1",
|
||||
"Superscript": "Os-sgr\u00ecobhte",
|
||||
"Clear formatting": "Falamhaich am f\u00f2rmatadh",
|
||||
"Font Sizes": "Meudan nan cruthan-chl\u00f2",
|
||||
"Subscript": "Bun-sgr\u00ecobhte",
|
||||
"Header 6": "Bann-cinn 6",
|
||||
"Redo": "Ath-dh\u00e8an",
|
||||
"Paragraph": "Paragraf",
|
||||
"Ok": "Ceart ma-th\u00e0",
|
||||
"Bold": "Trom",
|
||||
"Code": "C\u00f2d",
|
||||
"Italic": "Eadailteach",
|
||||
"Align center": "Co-thaobhaich ris a' mheadhan",
|
||||
"Header 5": "Bann-cinn 5",
|
||||
"Heading 6": "Ceann-sgr\u00ecobhadh 6",
|
||||
"Heading 3": "Ceann-sgr\u00ecobhadh 3",
|
||||
"Decrease indent": "Lughdaich an eag",
|
||||
"Header 4": "Bann-cinn 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Ma chuireas tu rud ann a-nis, th\u00e8id an t-susbaint a chur ann mar theacsa lom gus an cuir thu dheth an roghainn seo a-rithist.",
|
||||
"Underline": "Fo-loidhne",
|
||||
"Cancel": "Sguir dheth",
|
||||
"Justify": "Blocaich",
|
||||
"Inline": "Taobh a-staigh na loidhne",
|
||||
"Copy": "D\u00e8an lethbhreac",
|
||||
"Align left": "Co-thaobhaich ris an l\u00e0imh chl\u00ec",
|
||||
"Visual aids": "Taic l\u00e8irsinne",
|
||||
"Lower Greek": "Litrichean Greugach beaga",
|
||||
"Square": "Ce\u00e0rnag",
|
||||
"Default": "Bun-roghainn",
|
||||
"Lower Alpha": "Aibidileach is beag",
|
||||
"Circle": "Cearcall",
|
||||
"Disc": "Diosga",
|
||||
"Upper Alpha": "Aibidileach is m\u00f2r",
|
||||
"Upper Roman": "\u00c0ireamhan R\u00f2manach is m\u00f2r",
|
||||
"Lower Roman": "\u00c0ireamhan R\u00f2manach is beag",
|
||||
"Name": "Ainm",
|
||||
"Anchor": "Acair",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Tha atharraichean gun s\u00e0bhaladh agad, a bheil thu cinnteach gu bheil thu airson gluasad air falbh?",
|
||||
"Restore last draft": "Aisig an dreach mu dheireadh",
|
||||
"Special character": "Caractar s\u00f2nraichte",
|
||||
"Source code": "An c\u00f2d t\u00f9sail",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Dath",
|
||||
"Right to left": "Deas gu cl\u00ec",
|
||||
"Left to right": "Cl\u00ec gu deas",
|
||||
"Emoticons": "Samhlaidhean-gn\u00f9ise",
|
||||
"Robots": "Robotairean",
|
||||
"Document properties": "Roghainnean na sgr\u00ecobhainne",
|
||||
"Title": "Tiotal",
|
||||
"Keywords": "Faclan-luirg",
|
||||
"Encoding": "C\u00f2dachadh",
|
||||
"Description": "Tuairisgeul",
|
||||
"Author": "\u00d9ghdar",
|
||||
"Fullscreen": "L\u00e0n-sgr\u00ecn",
|
||||
"Horizontal line": "Loidhne ch\u00f2mhnard",
|
||||
"Horizontal space": "\u00c0ite c\u00f2mhnard",
|
||||
"Insert\/edit image": "Cuir a-steach\/Deasaich an dealbh",
|
||||
"General": "Coitcheann",
|
||||
"Advanced": "Adhartach",
|
||||
"Source": "T\u00f9s",
|
||||
"Border": "Iomall",
|
||||
"Constrain proportions": "Cuingich na co-r\u00e8irean",
|
||||
"Vertical space": "\u00c0ite inghearach",
|
||||
"Image description": "Tuairisgeul an deilbh",
|
||||
"Style": "Stoidhle",
|
||||
"Dimensions": "Meudachd",
|
||||
"Insert image": "Cuir a-steach dealbh",
|
||||
"Zoom in": "S\u00f9m a-steach",
|
||||
"Contrast": "Iomsgaradh",
|
||||
"Back": "Air ais",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Thoir flip air a\u2019 ch\u00f2mhnard",
|
||||
"Resize": "Atharraich am meud",
|
||||
"Sharpen": "Geuraich",
|
||||
"Zoom out": "S\u00f9m a-mach",
|
||||
"Image options": "Roghainnean an deilbh",
|
||||
"Apply": "Cuir an s\u00e0s",
|
||||
"Brightness": "Soilleireachd",
|
||||
"Rotate clockwise": "Cuairtich gu deiseil",
|
||||
"Rotate counterclockwise": "Cuairtich gu tuathail",
|
||||
"Edit image": "Deasaich an dealbh",
|
||||
"Color levels": "\u00ccrean nan dathan",
|
||||
"Crop": "Bearr",
|
||||
"Orientation": "Comhair",
|
||||
"Flip vertically": "Thoir flip gu inghearach",
|
||||
"Invert": "Ais-thionndaidh",
|
||||
"Insert date\/time": "Cuir a-steach ceann-l\u00e0\/\u00e0m",
|
||||
"Remove link": "Thoir air falbh an ceangal",
|
||||
"Url": "URL",
|
||||
"Text to display": "An teacsa a th\u00e8id a shealltainn",
|
||||
"Anchors": "Acraichean",
|
||||
"Insert link": "Cuir a-steach ceangal",
|
||||
"New window": "Uinneag \u00f9r",
|
||||
"None": "Chan eil gin",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Tha coltas gu bheil an URL a chuir thu a-steach 'na cheangal ris an taobh a-muigh. A bheil thu airson an ro-leasachan http:\/\/ a chur ris? Tha feum air.",
|
||||
"Target": "Targaid",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Tha coltas gu bheil an URL a chuir thu a-steach 'na she\u00f2ladh puist-d. A bheil thu airson an ro-leasachan mailto: a chur ris? Tha feum air.",
|
||||
"Insert\/edit link": "Cuir a-steach\/Deasaich an ceangal",
|
||||
"Insert\/edit video": "Cuir a-steach\/Deasaich a' video",
|
||||
"Poster": "P\u00f2stair",
|
||||
"Alternative source": "Roghainn eile de th\u00f9s",
|
||||
"Paste your embed code below:": "Cuir an c\u00f2d leabachaidh agad a-steach gu h-\u00ecosal:",
|
||||
"Insert video": "Cuir a-steach video",
|
||||
"Embed": "Leabaich",
|
||||
"Nonbreaking space": "Be\u00e0rn neo-bhristidh",
|
||||
"Page break": "Briseadh-duilleige",
|
||||
"Paste as text": "Cuir ann mar theacsa",
|
||||
"Preview": "Ro-shealladh",
|
||||
"Print": "Cl\u00f2-bhuail",
|
||||
"Save": "S\u00e0bhail",
|
||||
"Could not find the specified string.": "Cha b' urrainn dhuinn na dh'iarr thu a lorg.",
|
||||
"Replace": "Cuir 'na \u00e0ite",
|
||||
"Next": "Air adhart",
|
||||
"Whole words": "Faclan sl\u00e0na",
|
||||
"Find and replace": "Lorg is cuir 'na \u00e0ite",
|
||||
"Replace with": "Cuir na leanas 'na \u00e0ite",
|
||||
"Find": "Lorg",
|
||||
"Replace all": "Cuir an \u00e0ite na h-uile",
|
||||
"Match case": "Maids litrichean m\u00f2ra 's beaga",
|
||||
"Prev": "Air ais",
|
||||
"Spellcheck": "Dearbhaich an litreachadh",
|
||||
"Finish": "Cr\u00ecochnaich",
|
||||
"Ignore all": "Leig seachad na h-uile",
|
||||
"Ignore": "Leig seachad",
|
||||
"Add to Dictionary": "Cuir ris an fhaclair",
|
||||
"Insert row before": "Cuir a-steach r\u00e0gh roimhe",
|
||||
"Rows": "R\u00e0ghan",
|
||||
"Height": "\u00c0irde",
|
||||
"Paste row after": "Cuir ann r\u00e0gh 'na dh\u00e8idh",
|
||||
"Alignment": "Co-thaobhadh",
|
||||
"Border color": "Dath an iomaill",
|
||||
"Column group": "Buidheann cholbhan",
|
||||
"Row": "R\u00e0gh",
|
||||
"Insert column before": "Cuir a-steach colbh roimhe",
|
||||
"Split cell": "Sgoilt an cealla",
|
||||
"Cell padding": "Padadh nan ceallan",
|
||||
"Cell spacing": "Be\u00e0rnadh nan ceallan",
|
||||
"Row type": "Se\u00f2rsa an r\u00e0igh",
|
||||
"Insert table": "Cuir a-steach cl\u00e0r",
|
||||
"Body": "Bodhaig",
|
||||
"Caption": "Caipsean",
|
||||
"Footer": "Bann-coise",
|
||||
"Delete row": "Sguab \u00e0s an r\u00e0gh",
|
||||
"Paste row before": "Cuir ann r\u00e0gh roimhe",
|
||||
"Scope": "Sg\u00f2p",
|
||||
"Delete table": "Sguab \u00e0s an cl\u00e0r",
|
||||
"H Align": "Co-thaobhadh c\u00f2mhnard",
|
||||
"Top": "Barr",
|
||||
"Header cell": "Cealla a' bhanna-chinn",
|
||||
"Column": "Colbh",
|
||||
"Row group": "Buidheann r\u00e0ghan",
|
||||
"Cell": "Cealla",
|
||||
"Middle": "Meadhan",
|
||||
"Cell type": "Se\u00f2rsa a' chealla",
|
||||
"Copy row": "D\u00e8an lethbhreac dhen r\u00e0gh",
|
||||
"Row properties": "Roghainnean an r\u00e0igh",
|
||||
"Table properties": "Roghainnean a' chl\u00e0ir",
|
||||
"Bottom": "Bonn",
|
||||
"V Align": "Co-thaobhadh inghearach",
|
||||
"Header": "Bann-cinn",
|
||||
"Right": "Deas",
|
||||
"Insert column after": "Cuir a-steach colbh 'na dh\u00e8idh",
|
||||
"Cols": "Colbhan",
|
||||
"Insert row after": "Cuir a-steach r\u00e0gh 'na dh\u00e8idh",
|
||||
"Width": "Leud",
|
||||
"Cell properties": "Roghainnean a' chealla",
|
||||
"Left": "Cl\u00ec",
|
||||
"Cut row": "Gearr \u00e0s an r\u00e0gh",
|
||||
"Delete column": "Sguab \u00e0s an colbh",
|
||||
"Center": "Meadhan",
|
||||
"Merge cells": "Co-aonaich na ceallan",
|
||||
"Insert template": "Cuir a-steach teamplaid",
|
||||
"Templates": "Teamplaidean",
|
||||
"Background color": "Dath a\u2019 ch\u00f9laibh",
|
||||
"Custom...": "Gn\u00e0thaichte...",
|
||||
"Custom color": "Dath gn\u00e0thaichte",
|
||||
"No color": "Gun dath",
|
||||
"Text color": "Dath an teacsa",
|
||||
"Show blocks": "Seall na blocaichean",
|
||||
"Show invisible characters": "Seall na caractaran do-fhaicsinneach",
|
||||
"Words: {0}": "Faclan: {0}",
|
||||
"Insert": "Cuir a-steach",
|
||||
"File": "Faidhle",
|
||||
"Edit": "Deasaich",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Raon Rich Text. Br\u00f9th ALT-F9 airson a' chl\u00e0ir-thaice. Br\u00f9th ALT-F10 airson a' bh\u00e0r-inneal. Br\u00f9th ALT-0 airson na cobharach.",
|
||||
"Tools": "Innealan",
|
||||
"View": "Sealladh",
|
||||
"Table": "Cl\u00e0r",
|
||||
"Format": "F\u00f2rmat"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/gl.js
Normal file
219
data/web/rc/program/js/tinymce/langs/gl.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('gl',{
|
||||
"Cut": "Cortar",
|
||||
"Heading 5": "T\u00edtulo 5",
|
||||
"Header 2": "Cabeceira 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "O seu navegador non admite o acceso directo ao portapapeis. Empregue os atallos de teclado Ctrl+X\/C\/V no seu canto.",
|
||||
"Heading 4": "T\u00edtulo 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "T\u00edtulo 2",
|
||||
"Paste": "Pegar",
|
||||
"Close": "Pechar",
|
||||
"Font Family": "Tipo de letra",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Ali\u00f1ar \u00e1 dereita",
|
||||
"New document": "Novo documento",
|
||||
"Blockquote": "Bloque entre comi\u00f1as",
|
||||
"Numbered list": "Lista numerada",
|
||||
"Heading 1": "T\u00edtulo 1",
|
||||
"Headings": "T\u00edtulo",
|
||||
"Increase indent": "Aumentar a sangr\u00eda",
|
||||
"Formats": "Formatos",
|
||||
"Headers": "Cabeceiras",
|
||||
"Select all": "Seleccionar todo",
|
||||
"Header 3": "Cabeceira 3",
|
||||
"Blocks": "Bloques",
|
||||
"Undo": "Desfacer",
|
||||
"Strikethrough": "Riscado",
|
||||
"Bullet list": "Lista de vi\u00f1etas",
|
||||
"Header 1": "Cabeceira 1",
|
||||
"Superscript": "Super\u00edndice",
|
||||
"Clear formatting": "Limpar o formato",
|
||||
"Font Sizes": "Tama\u00f1o da letra",
|
||||
"Subscript": "Sub\u00edndice",
|
||||
"Header 6": "Cabeceira 6",
|
||||
"Redo": "Refacer",
|
||||
"Paragraph": "Par\u00e1grafo",
|
||||
"Ok": "Aceptar",
|
||||
"Bold": "Negra",
|
||||
"Code": "C\u00f3digo",
|
||||
"Italic": "Cursiva",
|
||||
"Align center": "Ali\u00f1ar ao centro",
|
||||
"Header 5": "Cabeceira 5",
|
||||
"Heading 6": "T\u00edtulo 6",
|
||||
"Heading 3": "T\u00edtulo 3",
|
||||
"Decrease indent": "Reducir a sangr\u00eda",
|
||||
"Header 4": "Cabeceira 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Neste momento o pegado est\u00e1 definido en modo de texto simple. Os contidos p\u00e9garanse como texto sen formato ata que se active esta opci\u00f3n.",
|
||||
"Underline": "Subli\u00f1ado",
|
||||
"Cancel": "Cancelar",
|
||||
"Justify": "Xustificar",
|
||||
"Inline": "En li\u00f1a",
|
||||
"Copy": "Copiar",
|
||||
"Align left": "Ali\u00f1ar \u00e1 esquerda",
|
||||
"Visual aids": "Axudas visuais",
|
||||
"Lower Greek": "Grega min\u00fascula",
|
||||
"Square": "Cadrado",
|
||||
"Default": "Predeterminada",
|
||||
"Lower Alpha": "Alfa min\u00fascula",
|
||||
"Circle": "Circulo",
|
||||
"Disc": "Disco",
|
||||
"Upper Alpha": "Alfa mai\u00fascula",
|
||||
"Upper Roman": "Romana mai\u00fascula",
|
||||
"Lower Roman": "Romana min\u00fascula",
|
||||
"Name": "Nome",
|
||||
"Anchor": "Ancoraxe",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Ten cambios sen gardar. Confirma que quere sa\u00edr?",
|
||||
"Restore last draft": "Restaurar o \u00faltimo borrador",
|
||||
"Special character": "Car\u00e1cter especial",
|
||||
"Source code": "C\u00f3digo fonte",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Color",
|
||||
"Right to left": "De dereita a esquerda",
|
||||
"Left to right": "De esquerda a dereita",
|
||||
"Emoticons": "Emoticonas",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Propiedades do documento",
|
||||
"Title": "T\u00edtulo",
|
||||
"Keywords": "Palabras clave",
|
||||
"Encoding": "Codificaci\u00f3n",
|
||||
"Description": "Descrici\u00f3n",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Pantalla completa",
|
||||
"Horizontal line": "Li\u00f1a horizontal",
|
||||
"Horizontal space": "Espazo horizontal",
|
||||
"Insert\/edit image": "Inserir\/editar imaxe",
|
||||
"General": "Xeral",
|
||||
"Advanced": "Avanzado",
|
||||
"Source": "Orixe",
|
||||
"Border": "Bordo",
|
||||
"Constrain proportions": "Restrinxir as proporci\u00f3ns",
|
||||
"Vertical space": "Espazo vertical",
|
||||
"Image description": "Descrici\u00f3n da imaxe",
|
||||
"Style": "Estilo",
|
||||
"Dimensions": "Dimensi\u00f3ns",
|
||||
"Insert image": "Inserir imaxe",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "Inserir data\/hora",
|
||||
"Remove link": "Retirar a ligaz\u00f3n",
|
||||
"Url": "URL",
|
||||
"Text to display": "Texto que amosar",
|
||||
"Anchors": "Ancoraxes",
|
||||
"Insert link": "Inserir ligaz\u00f3n",
|
||||
"New window": "Nova xanela",
|
||||
"None": "Ning\u00fan",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "O URL que introduciu semella seren unha ligaz\u00f3n externa. Quere engadirlle o prefixo http:\/\/ requirido?",
|
||||
"Target": "Destino",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "O URL que introduciu semella seren un enderezo de correo. Quere engadirlle o prefixo mailto: requirido?",
|
||||
"Insert\/edit link": "Inserir\/editar ligaz\u00f3n",
|
||||
"Insert\/edit video": "Inserir\/editar v\u00eddeo",
|
||||
"Poster": "Cartel",
|
||||
"Alternative source": "Orixe alternativa",
|
||||
"Paste your embed code below:": "Pegue embaixo o c\u00f3digo integrado:",
|
||||
"Insert video": "Inserir v\u00eddeo",
|
||||
"Embed": "Integrado",
|
||||
"Nonbreaking space": "Espazo irromp\u00edbel",
|
||||
"Page break": "Quebra de p\u00e1xina",
|
||||
"Paste as text": "Pegar como texto",
|
||||
"Preview": "Vista previa",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Gardar",
|
||||
"Could not find the specified string.": "Non foi pos\u00edbel atopar a cadea de texto especificada.",
|
||||
"Replace": "Substitu\u00edr",
|
||||
"Next": "Seguinte",
|
||||
"Whole words": "Palabras completas",
|
||||
"Find and replace": "Buscar e substitu\u00edr",
|
||||
"Replace with": "Substitu\u00edr con",
|
||||
"Find": "Buscar",
|
||||
"Replace all": "Substitu\u00edr todo",
|
||||
"Match case": "Distinguir mai\u00fasculas",
|
||||
"Prev": "Anterior",
|
||||
"Spellcheck": "Corrector ortogr\u00e1fico",
|
||||
"Finish": "Rematar",
|
||||
"Ignore all": "Ignorar todo",
|
||||
"Ignore": "Ignorar",
|
||||
"Add to Dictionary": "Add to Dictionary",
|
||||
"Insert row before": "Inserir unha fila enriba",
|
||||
"Rows": "Filas",
|
||||
"Height": "Alto",
|
||||
"Paste row after": "Pegar fila enriba",
|
||||
"Alignment": "Ali\u00f1amento",
|
||||
"Border color": "Border color",
|
||||
"Column group": "Grupo de columnas",
|
||||
"Row": "Fila",
|
||||
"Insert column before": "Inserir columna \u00e1 esquerda",
|
||||
"Split cell": "Dividir celas",
|
||||
"Cell padding": "Marxe interior da cela",
|
||||
"Cell spacing": "Marxe entre celas",
|
||||
"Row type": "Tipo de fila",
|
||||
"Insert table": "Inserir t\u00e1boa",
|
||||
"Body": "Corpo",
|
||||
"Caption": "Subt\u00edtulo",
|
||||
"Footer": "Rodap\u00e9",
|
||||
"Delete row": "Eliminar fila",
|
||||
"Paste row before": "Pegar fila embaixo",
|
||||
"Scope": "\u00c1mbito",
|
||||
"Delete table": "Eliminar t\u00e1boa",
|
||||
"H Align": "Ali\u00f1amento H",
|
||||
"Top": "Arriba",
|
||||
"Header cell": "Cela de cabeceira",
|
||||
"Column": "Columna",
|
||||
"Row group": "Grupo de filas",
|
||||
"Cell": "Cela",
|
||||
"Middle": "Medio",
|
||||
"Cell type": "Tipo de cela",
|
||||
"Copy row": "Copiar fila",
|
||||
"Row properties": "Propiedades das filas",
|
||||
"Table properties": "Propiedades da t\u00e1boa",
|
||||
"Bottom": "Abaixo",
|
||||
"V Align": "Ali\u00f1amento V",
|
||||
"Header": "Cabeceira",
|
||||
"Right": "Dereita",
|
||||
"Insert column after": "Inserir columna \u00e1 dereita",
|
||||
"Cols": "Cols.",
|
||||
"Insert row after": "Inserir unha fila embaixo",
|
||||
"Width": "Largo",
|
||||
"Cell properties": "Propiedades da cela",
|
||||
"Left": "Esquerda",
|
||||
"Cut row": "Cortar fila",
|
||||
"Delete column": "Eliminar columna",
|
||||
"Center": "Centro",
|
||||
"Merge cells": "Combinar celas",
|
||||
"Insert template": "Inserir modelo",
|
||||
"Templates": "Modelos",
|
||||
"Background color": "Cor do fondo",
|
||||
"Custom...": "Custom...",
|
||||
"Custom color": "Custom color",
|
||||
"No color": "No color",
|
||||
"Text color": "Cor do texto",
|
||||
"Show blocks": "Amosar os bloques",
|
||||
"Show invisible characters": "Amosar caracteres invis\u00edbeis",
|
||||
"Words: {0}": "Palabras: {0}",
|
||||
"Insert": "Inserir",
|
||||
"File": "Ficheiro",
|
||||
"Edit": "Editar",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto mellorado. Prema ALT-F9 para o men\u00fa. Prema ALT-F10 para a barra de ferramentas. Prema ALT-0 para a axuda",
|
||||
"Tools": "Ferramentas",
|
||||
"View": "Ver",
|
||||
"Table": "T\u00e1boa",
|
||||
"Format": "Formato"
|
||||
});
|
||||
220
data/web/rc/program/js/tinymce/langs/he_IL.js
Normal file
220
data/web/rc/program/js/tinymce/langs/he_IL.js
Normal file
@@ -0,0 +1,220 @@
|
||||
tinymce.addI18n('he_IL',{
|
||||
"Cut": "\u05d2\u05d6\u05d5\u05e8",
|
||||
"Heading 5": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 5",
|
||||
"Header 2": "\u05db\u05d5\u05ea\u05e8\u05ea 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u05d4\u05d3\u05e4\u05d3\u05e4\u05df \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \u05de\u05d0\u05e4\u05e9\u05e8 \u05d2\u05d9\u05e9\u05d4 \u05d9\u05e9\u05d9\u05e8\u05d4 \u05dc\u05dc\u05d5\u05d7. \u05d0\u05e0\u05d0 \u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e7\u05d9\u05e6\u05d5\u05e8\u05d9 \u05d4\u05de\u05e7\u05dc\u05d3\u05ea Ctrl+X\/C\/V \u05d1\u05de\u05e7\u05d5\u05dd.",
|
||||
"Heading 4": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 4",
|
||||
"Div": "\u05de\u05e7\u05d8\u05e2 \u05e7\u05d5\u05d3 Div",
|
||||
"Heading 2": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 2",
|
||||
"Paste": "\u05d4\u05d3\u05d1\u05e7",
|
||||
"Close": "\u05e1\u05d2\u05d5\u05e8",
|
||||
"Font Family": "\u05e1\u05d5\u05d2 \u05d2\u05d5\u05e4\u05df",
|
||||
"Pre": "\u05e7\u05d8\u05e2 \u05de\u05e7\u05d3\u05d9\u05dd Pre",
|
||||
"Align right": "\u05d9\u05d9\u05e9\u05e8 \u05dc\u05d9\u05de\u05d9\u05df",
|
||||
"New document": "\u05de\u05e1\u05de\u05da \u05d7\u05d3\u05e9",
|
||||
"Blockquote": "\u05de\u05e7\u05d8\u05e2 \u05e6\u05d9\u05d8\u05d5\u05d8",
|
||||
"Numbered list": "\u05e8\u05e9\u05d9\u05de\u05d4 \u05de\u05de\u05d5\u05e1\u05e4\u05e8\u05ea",
|
||||
"Heading 1": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 1",
|
||||
"Headings": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea",
|
||||
"Increase indent": "\u05d4\u05d2\u05d3\u05dc \u05d4\u05d6\u05d7\u05d4",
|
||||
"Formats": "\u05e2\u05d9\u05e6\u05d5\u05d1\u05d9\u05dd",
|
||||
"Headers": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea",
|
||||
"Select all": "\u05d1\u05d7\u05e8 \u05d4\u05db\u05dc",
|
||||
"Header 3": "\u05db\u05d5\u05ea\u05e8\u05ea 3",
|
||||
"Blocks": "\u05de\u05d1\u05e0\u05d9\u05dd",
|
||||
"Undo": "\u05d1\u05d8\u05dc \u05e4\u05e2\u05d5\u05dc\u05d4",
|
||||
"Strikethrough": "\u05e7\u05d5 \u05d7\u05d5\u05e6\u05d4",
|
||||
"Bullet list": "\u05e8\u05e9\u05d9\u05de\u05ea \u05ea\u05d1\u05dc\u05d9\u05d8\u05d9\u05dd",
|
||||
"Header 1": "\u05db\u05d5\u05ea\u05e8\u05ea 1",
|
||||
"Superscript": "\u05db\u05ea\u05d1 \u05e2\u05d9\u05dc\u05d9",
|
||||
"Clear formatting": "\u05e0\u05e7\u05d4 \u05e2\u05d9\u05e6\u05d5\u05d1",
|
||||
"Font Sizes": "\u05d2\u05d5\u05d3\u05dc \u05d2\u05d5\u05e4\u05df",
|
||||
"Subscript": "\u05db\u05ea\u05d1 \u05ea\u05d7\u05ea\u05d9",
|
||||
"Header 6": "\u05db\u05d5\u05ea\u05e8\u05ea 6",
|
||||
"Redo": "\u05d1\u05e6\u05e2 \u05e9\u05d5\u05d1",
|
||||
"Paragraph": "\u05e4\u05d9\u05e1\u05e7\u05d4",
|
||||
"Ok": "\u05d0\u05d9\u05e9\u05d5\u05e8",
|
||||
"Bold": "\u05de\u05d5\u05d3\u05d2\u05e9",
|
||||
"Code": "\u05e7\u05d5\u05d3",
|
||||
"Italic": "\u05e0\u05d8\u05d5\u05d9",
|
||||
"Align center": "\u05de\u05e8\u05db\u05d6",
|
||||
"Header 5": "\u05db\u05d5\u05ea\u05e8\u05ea 5",
|
||||
"Heading 6": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 6",
|
||||
"Heading 3": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 3",
|
||||
"Decrease indent": "\u05d4\u05e7\u05d8\u05df \u05d4\u05d6\u05d7\u05d4",
|
||||
"Header 4": "\u05db\u05d5\u05ea\u05e8\u05ea 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u05d4\u05d3\u05d1\u05e7\u05d4 \u05d1\u05de\u05e6\u05d1 \u05d8\u05e7\u05e1\u05d8 \u05e8\u05d2\u05d9\u05dc. \u05ea\u05db\u05e0\u05d9\u05dd \u05d9\u05d5\u05d3\u05d1\u05e7\u05d5 \u05de\u05e2\u05ea\u05d4 \u05db\u05d8\u05e7\u05e1\u05d8 \u05e8\u05d2\u05d9\u05dc \u05e2\u05d3 \u05e9\u05ea\u05db\u05d1\u05d4 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5.",
|
||||
"Underline": "\u05e7\u05d5 \u05ea\u05d7\u05ea\u05d9",
|
||||
"Cancel": "\u05d1\u05d8\u05dc",
|
||||
"Justify": "\u05de\u05ea\u05d7 \u05dc\u05e6\u05d3\u05d3\u05d9\u05dd",
|
||||
"Inline": "\u05d1\u05d2\u05d5\u05e3 \u05d4\u05d8\u05e7\u05e1\u05d8",
|
||||
"Copy": "\u05d4\u05e2\u05ea\u05e7",
|
||||
"Align left": "\u05d9\u05d9\u05e9\u05e8 \u05dc\u05e9\u05de\u05d0\u05dc",
|
||||
"Visual aids": "\u05e2\u05d6\u05e8\u05d9\u05dd \u05d7\u05d6\u05d5\u05ea\u05d9\u05d9\u05dd",
|
||||
"Lower Greek": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d9\u05d5\u05d5\u05e0\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea",
|
||||
"Square": "\u05e8\u05d9\u05d1\u05d5\u05e2",
|
||||
"Default": "\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc",
|
||||
"Lower Alpha": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d0\u05e0\u05d2\u05dc\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea",
|
||||
"Circle": "\u05e2\u05d9\u05d2\u05d5\u05dc",
|
||||
"Disc": "\u05d7\u05d9\u05e9\u05d5\u05e7",
|
||||
"Upper Alpha": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d0\u05e0\u05d2\u05dc\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc\u05d5\u05ea",
|
||||
"Upper Roman": "\u05e1\u05e4\u05e8\u05d5\u05ea \u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc\u05d5\u05ea",
|
||||
"Lower Roman": "\u05e1\u05e4\u05e8\u05d5\u05ea \u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea",
|
||||
"Name": "\u05e9\u05dd",
|
||||
"Anchor": "\u05de\u05e7\u05d5\u05dd \u05e2\u05d9\u05d2\u05d5\u05df",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05dc\u05d0 \u05e0\u05e9\u05de\u05e8\u05d5. \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05e6\u05d0\u05ea \u05de\u05d4\u05d3\u05e3?",
|
||||
"Restore last draft": "\u05e9\u05d7\u05d6\u05e8 \u05d8\u05d9\u05d5\u05d8\u05d4 \u05d0\u05d7\u05e8\u05d5\u05e0\u05d4",
|
||||
"Special character": "\u05ea\u05d5\u05d5\u05d9\u05dd \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd",
|
||||
"Source code": "\u05e7\u05d5\u05d3 \u05de\u05e7\u05d5\u05e8",
|
||||
"B": "\u05db'",
|
||||
"R": "\u05d0'",
|
||||
"G": "\u05d9'",
|
||||
"Color": "\u05e6\u05d1\u05e2",
|
||||
"Right to left": "\u05de\u05d9\u05de\u05d9\u05df \u05dc\u05e9\u05de\u05d0\u05dc",
|
||||
"Left to right": "\u05de\u05e9\u05de\u05d0\u05dc \u05dc\u05d9\u05de\u05d9\u05df",
|
||||
"Emoticons": "\u05de\u05d7\u05d5\u05d5\u05ea",
|
||||
"Robots": "\u05e8\u05d5\u05d1\u05d5\u05d8\u05d9\u05dd",
|
||||
"Document properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05de\u05e1\u05de\u05da",
|
||||
"Title": "\u05db\u05d5\u05ea\u05e8\u05ea",
|
||||
"Keywords": "\u05de\u05d9\u05dc\u05d5\u05ea \u05de\u05e4\u05ea\u05d7",
|
||||
"Encoding": "\u05e7\u05d9\u05d3\u05d5\u05d3",
|
||||
"Description": "\u05ea\u05d9\u05d0\u05d5\u05e8",
|
||||
"Author": "\u05de\u05d7\u05d1\u05e8",
|
||||
"Fullscreen": "\u05de\u05e1\u05da \u05de\u05dc\u05d0",
|
||||
"Horizontal line": "\u05e7\u05d5 \u05d0\u05d5\u05e4\u05e7\u05d9",
|
||||
"Horizontal space": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05d0\u05d5\u05e4\u05e7\u05d9",
|
||||
"Insert\/edit image": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05ea\u05de\u05d5\u05e0\u05d4",
|
||||
"General": "\u05db\u05dc\u05dc\u05d9",
|
||||
"Advanced": "\u05de\u05ea\u05e7\u05d3\u05dd",
|
||||
"Source": "\u05de\u05e7\u05d5\u05e8",
|
||||
"Border": "\u05de\u05e1\u05d2\u05e8\u05ea",
|
||||
"Constrain proportions": "\u05d4\u05d2\u05d1\u05dc\u05ea \u05e4\u05e8\u05d5\u05e4\u05d5\u05e8\u05e6\u05d9\u05d5\u05ea",
|
||||
"Vertical space": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05d0\u05e0\u05db\u05d9",
|
||||
"Image description": "\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05ea\u05de\u05d5\u05e0\u05d4",
|
||||
"Style": "\u05e1\u05d2\u05e0\u05d5\u05df",
|
||||
"Dimensions": "\u05de\u05d9\u05de\u05d3\u05d9\u05dd",
|
||||
"Insert image": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05de\u05d5\u05e0\u05d4",
|
||||
"Zoom in": "\u05d4\u05d2\u05d3\u05dc \u05ea\u05e6\u05d5\u05d2\u05d4",
|
||||
"Contrast": "\u05e0\u05d9\u05d2\u05d5\u05d3\u05d9\u05d5\u05ea",
|
||||
"Back": "\u05d7\u05d6\u05d5\u05e8",
|
||||
"Gamma": "\u05d2\u05d0\u05de\u05d4",
|
||||
"Flip horizontally": "\u05d4\u05e4\u05d5\u05da \u05d0\u05d5\u05e4\u05e7\u05d9\u05ea",
|
||||
"Resize": "\u05e9\u05e0\u05d4 \u05d2\u05d5\u05d3\u05dc",
|
||||
"Sharpen": "\u05d7\u05d3\u05d3",
|
||||
"Zoom out": "\u05d4\u05e7\u05d8\u05df \u05ea\u05e6\u05d5\u05d2\u05d4",
|
||||
"Image options": "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05ea\u05de\u05d5\u05e0\u05d4",
|
||||
"Apply": "\u05d9\u05d9\u05e9\u05dd",
|
||||
"Brightness": "\u05d1\u05d4\u05d9\u05e8\u05d5\u05ea",
|
||||
"Rotate clockwise": "\u05e1\u05d5\u05d1\u05d1 \u05d1\u05db\u05d9\u05d5\u05d5\u05df \u05d4\u05e9\u05e2\u05d5\u05df",
|
||||
"Rotate counterclockwise": "\u05e1\u05d5\u05d1\u05d1 \u05d1\u05db\u05d9\u05d5\u05d5\u05df \u05d4\u05e4\u05d5\u05da \u05dc\u05e9\u05e2\u05d5\u05df",
|
||||
"Edit image": "\u05e2\u05e8\u05d5\u05da \u05ea\u05de\u05d5\u05e0\u05d4",
|
||||
"Color levels": "\u05e8\u05de\u05d5\u05ea \u05e6\u05d1\u05e2\u05d9\u05dd",
|
||||
"Crop": "\u05e7\u05e6\u05e5",
|
||||
"Orientation": "\u05db\u05d9\u05d5\u05d5\u05df \u05dc\u05d0\u05d5\u05e8\u05da \/ \u05dc\u05e8\u05d5\u05d7\u05d1",
|
||||
"Flip vertically": "\u05d4\u05e4\u05d5\u05da \u05d0\u05e0\u05db\u05d9\u05ea",
|
||||
"Invert": "\u05d4\u05d9\u05e4\u05d5\u05da \u05e6\u05d1\u05e2\u05d9\u05dd",
|
||||
"Insert date\/time": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d0\u05e8\u05d9\u05da\/\u05e9\u05e2\u05d4",
|
||||
"Remove link": "\u05de\u05d7\u05e7 \u05e7\u05d9\u05e9\u05d5\u05e8",
|
||||
"Url": "\u05db\u05ea\u05d5\u05d1\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8",
|
||||
"Text to display": "\u05d8\u05e7\u05e1\u05d8 \u05dc\u05d4\u05e6\u05d2\u05d4",
|
||||
"Anchors": "\u05e2\u05d5\u05d2\u05e0\u05d9\u05dd",
|
||||
"Insert link": "\u05d4\u05db\u05e0\u05e1 \u05e7\u05d9\u05e9\u05d5\u05e8",
|
||||
"New window": "\u05d7\u05dc\u05d5\u05df \u05d7\u05d3\u05e9",
|
||||
"None": "\u05dc\u05dc\u05d0",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05e9\u05d4\u05db\u05e0\u05e1\u05ea \u05d4\u05d9\u05d0 \u05e7\u05d9\u05e9\u05d5\u05e8 \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9 \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05e7\u05d9\u05d3\u05d5\u05de\u05ea http:\/\/?",
|
||||
"Target": "\u05de\u05d8\u05e8\u05d4",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05e9\u05d4\u05db\u05e0\u05e1\u05ea \u05d4\u05d9\u05d0 \u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05d9\u05de\u05d9\u05d9\u05dc. \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05ea \u05d4\u05e7\u05d9\u05d3\u05d5\u05de\u05ea :mailto?",
|
||||
"Insert\/edit link": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e7\u05d9\u05e9\u05d5\u05e8",
|
||||
"Insert\/edit video": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e1\u05e8\u05d8\u05d5\u05df",
|
||||
"Poster": "\u05e4\u05d5\u05e1\u05d8\u05e8",
|
||||
"Alternative source": "\u05de\u05e7\u05d5\u05e8 \u05de\u05e9\u05e0\u05d9",
|
||||
"Paste your embed code below:": "\u05d4\u05d3\u05d1\u05e7 \u05e7\u05d5\u05d3 \u05d4\u05d8\u05de\u05e2\u05d4 \u05de\u05ea\u05d7\u05ea:",
|
||||
"Insert video": "\u05d4\u05db\u05e0\u05e1 \u05e1\u05e8\u05d8\u05d5\u05df",
|
||||
"Embed": "\u05d4\u05d8\u05de\u05e2",
|
||||
"Nonbreaking space": "\u05e8\u05d5\u05d5\u05d7 (\u05dc\u05dc\u05d0 \u05e9\u05d1\u05d9\u05e8\u05ea \u05e9\u05d5\u05e8\u05d4)",
|
||||
"Page break": "\u05d3\u05e3 \u05d7\u05d3\u05e9",
|
||||
"Paste as text": "\u05d4\u05d3\u05d1\u05e7 \u05db\u05d8\u05e7\u05e1\u05d8",
|
||||
"Preview": "\u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4",
|
||||
"Print": "\u05d4\u05d3\u05e4\u05e1",
|
||||
"Save": "\u05e9\u05de\u05d9\u05e8\u05d4",
|
||||
"Could not find the specified string.": "\u05de\u05d7\u05e8\u05d5\u05d6\u05ea \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d4",
|
||||
"Replace": "\u05d4\u05d7\u05dc\u05e3",
|
||||
"Next": "\u05d4\u05d1\u05d0",
|
||||
"Whole words": "\u05de\u05d9\u05dc\u05d4 \u05e9\u05dc\u05de\u05d4",
|
||||
"Find and replace": "\u05d7\u05e4\u05e9 \u05d5\u05d4\u05d7\u05dc\u05e3",
|
||||
"Replace with": "\u05d4\u05d7\u05dc\u05e3 \u05d1",
|
||||
"Find": "\u05d7\u05e4\u05e9",
|
||||
"Replace all": "\u05d4\u05d7\u05dc\u05e3 \u05d4\u05db\u05dc",
|
||||
"Match case": "\u05d4\u05d1\u05d7\u05df \u05d1\u05d9\u05df \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea \u05dc\u05d2\u05d3\u05d5\u05dc\u05d5\u05ea",
|
||||
"Prev": "\u05e7\u05d5\u05d3\u05dd",
|
||||
"Spellcheck": "\u05d1\u05d5\u05d3\u05e7 \u05d0\u05d9\u05d5\u05ea",
|
||||
"Finish": "\u05e1\u05d9\u05d9\u05dd",
|
||||
"Ignore all": "\u05d4\u05ea\u05e2\u05dc\u05dd \u05de\u05d4\u05db\u05dc",
|
||||
"Ignore": "\u05d4\u05ea\u05e2\u05dc\u05dd",
|
||||
"Add to Dictionary": "\u05d4\u05d5\u05e1\u05e3 \u05dc\u05de\u05d9\u05dc\u05d5\u05df",
|
||||
"Insert row before": "\u05d4\u05d5\u05e1\u05e3 \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9",
|
||||
"Rows": "\u05e9\u05d5\u05e8\u05d5\u05ea",
|
||||
"Height": "\u05d2\u05d5\u05d1\u05d4",
|
||||
"Paste row after": "\u05d4\u05e2\u05ea\u05e7 \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9",
|
||||
"Alignment": "\u05d9\u05d9\u05e9\u05d5\u05e8",
|
||||
"Border color": "\u05e6\u05d1\u05e2 \u05d2\u05d1\u05d5\u05dc",
|
||||
"Column group": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05e2\u05de\u05d5\u05d3\u05d5\u05ea",
|
||||
"Row": "\u05e9\u05d5\u05e8\u05d4",
|
||||
"Insert column before": "\u05d4\u05e2\u05ea\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4 \u05dc\u05e4\u05e0\u05d9",
|
||||
"Split cell": "\u05e4\u05e6\u05dc \u05ea\u05d0",
|
||||
"Cell padding": "\u05e9\u05d5\u05dc\u05d9\u05d9\u05dd \u05e4\u05e0\u05d9\u05de\u05d9\u05d9\u05dd \u05dc\u05ea\u05d0",
|
||||
"Cell spacing": "\u05e9\u05d5\u05dc\u05d9\u05d9\u05dd \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9\u05dd \u05dc\u05ea\u05d0",
|
||||
"Row type": "\u05e1\u05d5\u05d2 \u05e9\u05d5\u05e8\u05d4",
|
||||
"Insert table": "\u05d4\u05db\u05e0\u05e1 \u05d8\u05d1\u05dc\u05d4",
|
||||
"Body": "\u05d2\u05d5\u05e3 \u05d4\u05d8\u05d1\u05dc\u05d0",
|
||||
"Caption": "\u05db\u05d9\u05ea\u05d5\u05d1",
|
||||
"Footer": "\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05d7\u05ea\u05d5\u05e0\u05d4",
|
||||
"Delete row": "\u05de\u05d7\u05e7 \u05e9\u05d5\u05e8\u05d4",
|
||||
"Paste row before": "\u05d4\u05d3\u05d1\u05e7 \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9",
|
||||
"Scope": "\u05d4\u05d9\u05e7\u05e3",
|
||||
"Delete table": "\u05de\u05d7\u05e7 \u05d8\u05d1\u05dc\u05d4",
|
||||
"H Align": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05d0\u05d5\u05e4\u05e7\u05d9",
|
||||
"Top": "\u05e2\u05dc\u05d9\u05d5\u05df",
|
||||
"Header cell": "\u05db\u05d5\u05ea\u05e8\u05ea \u05dc\u05ea\u05d0",
|
||||
"Column": "\u05e2\u05de\u05d5\u05d3\u05d4",
|
||||
"Row group": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05e9\u05d5\u05e8\u05d5\u05ea",
|
||||
"Cell": "\u05ea\u05d0",
|
||||
"Middle": "\u05d0\u05de\u05e6\u05e2",
|
||||
"Cell type": "\u05e1\u05d5\u05d2 \u05ea\u05d0",
|
||||
"Copy row": "\u05d4\u05e2\u05ea\u05e7 \u05e9\u05d5\u05e8\u05d4",
|
||||
"Row properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05e9\u05d5\u05e8\u05d4",
|
||||
"Table properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05d8\u05d1\u05dc\u05d4",
|
||||
"Bottom": "\u05ea\u05d7\u05ea\u05d9\u05ea",
|
||||
"V Align": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05d0\u05e0\u05db\u05d9",
|
||||
"Header": "\u05db\u05d5\u05ea\u05e8\u05ea",
|
||||
"Right": "\u05d9\u05de\u05d9\u05df",
|
||||
"Insert column after": "\u05d4\u05e2\u05ea\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4 \u05d0\u05d7\u05e8\u05d9",
|
||||
"Cols": "\u05e2\u05de\u05d5\u05d3\u05d5\u05ea",
|
||||
"Insert row after": "\u05d4\u05d5\u05e1\u05e3 \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9",
|
||||
"Width": "\u05e8\u05d5\u05d7\u05d1",
|
||||
"Cell properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05ea\u05d0",
|
||||
"Left": "\u05e9\u05de\u05d0\u05dc",
|
||||
"Cut row": "\u05d2\u05d6\u05d5\u05e8 \u05e9\u05d5\u05e8\u05d4",
|
||||
"Delete column": "\u05de\u05d7\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4",
|
||||
"Center": "\u05de\u05e8\u05db\u05d6",
|
||||
"Merge cells": "\u05de\u05d6\u05d2 \u05ea\u05d0\u05d9\u05dd",
|
||||
"Insert template": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d1\u05e0\u05d9\u05ea",
|
||||
"Templates": "\u05ea\u05d1\u05e0\u05d9\u05d5\u05ea",
|
||||
"Background color": "\u05e6\u05d1\u05e2 \u05e8\u05e7\u05e2",
|
||||
"Custom...": "\u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea...",
|
||||
"Custom color": "\u05e6\u05d1\u05e2 \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea",
|
||||
"No color": "\u05dc\u05dc\u05d0 \u05e6\u05d1\u05e2",
|
||||
"Text color": "\u05e6\u05d1\u05e2 \u05d4\u05db\u05ea\u05d1",
|
||||
"Show blocks": "\u05d4\u05e6\u05d2 \u05ea\u05d9\u05d1\u05d5\u05ea",
|
||||
"Show invisible characters": "\u05d4\u05e6\u05d2 \u05ea\u05d5\u05d5\u05d9\u05dd \u05dc\u05d0 \u05e0\u05e8\u05d0\u05d9\u05dd",
|
||||
"Words: {0}": "\u05de\u05d9\u05dc\u05d9\u05dd: {0}",
|
||||
"Insert": "\u05d4\u05d5\u05e1\u05e4\u05d4",
|
||||
"File": "\u05e7\u05d5\u05d1\u05e5",
|
||||
"Edit": "\u05e2\u05e8\u05d9\u05db\u05d4",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u05ea\u05d9\u05d1\u05ea \u05e2\u05e8\u05d9\u05db\u05d4 \u05d7\u05db\u05de\u05d4. \u05dc\u05d7\u05e5 Alt-F9 \u05dc\u05ea\u05e4\u05e8\u05d9\u05d8. Alt-F10 \u05dc\u05ea\u05e6\u05d5\u05d2\u05ea \u05db\u05e4\u05ea\u05d5\u05e8\u05d9\u05dd, Alt-0 \u05dc\u05e2\u05d6\u05e8\u05d4",
|
||||
"Tools": "\u05db\u05dc\u05d9\u05dd",
|
||||
"View": "\u05ea\u05e6\u05d5\u05d2\u05d4",
|
||||
"Table": "\u05d8\u05d1\u05dc\u05d4",
|
||||
"Format": "\u05e4\u05d5\u05e8\u05de\u05d8",
|
||||
"_dir": "rtl"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/hi_IN.js
Normal file
219
data/web/rc/program/js/tinymce/langs/hi_IN.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('hi_IN',{
|
||||
"Cut": "\u0915\u093e\u091f\u0947\u0902",
|
||||
"Heading 5": "\u0936\u0940\u0930\u094d\u0937\u0915 5",
|
||||
"Header 2": "\u0936\u0940\u0930\u094d\u0937\u0915 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0906\u092a\u0915\u093e \u091c\u093e\u0932 \u0935\u093f\u091a\u093e\u0930\u0915 \u0938\u0940\u0927\u0947 \u0938\u092e\u0930\u094d\u0925\u0928 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0930\u0939\u093e \u0939\u0948\u0964 \u0915\u0943\u092a\u092f\u093e \u0915\u0941\u0902\u091c\u0940\u092a\u091f\u0932 \u0915\u0947 \u0926\u094d\u0935\u093e\u0930\u093e Ctrl+X\/C\/V \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0947\u0902\u0964",
|
||||
"Heading 4": "\u0936\u0940\u0930\u094d\u0937\u0915 4",
|
||||
"Div": "\u0921\u093f\u0935",
|
||||
"Heading 2": "\u0936\u0940\u0930\u094d\u0937\u0915 2",
|
||||
"Paste": "\u091a\u093f\u092a\u0915\u093e\u090f\u0901",
|
||||
"Close": "\u092c\u0902\u0926",
|
||||
"Font Family": "\u092b\u093c\u0949\u0928\u094d\u091f \u092a\u0930\u093f\u0935\u093e\u0930",
|
||||
"Pre": "\u092a\u0942\u0930\u094d\u0935",
|
||||
"Align right": "\u0926\u093e\u090f\u0901 \u0938\u0902\u0930\u0947\u0916\u0923",
|
||||
"New document": "\u0928\u092f\u093e \u0926\u0938\u094d\u0924\u093e\u0935\u0947\u091c\u093c",
|
||||
"Blockquote": "\u0916\u0902\u0921-\u0909\u0926\u094d\u0927\u0930\u0923",
|
||||
"Numbered list": "\u0915\u094d\u0930\u092e\u093e\u0902\u0915\u093f\u0924 \u0938\u0942\u091a\u0940",
|
||||
"Heading 1": "\u0936\u0940\u0930\u094d\u0937\u0915 1",
|
||||
"Headings": "\u0936\u0940\u0930\u094d\u0937\u0915",
|
||||
"Increase indent": "\u0916\u0930\u094b\u091c \u092c\u095d\u093e\u090f\u0901",
|
||||
"Formats": "\u092a\u094d\u0930\u093e\u0930\u0942\u092a",
|
||||
"Headers": "\u0936\u0940\u0930\u094d\u0937\u0915",
|
||||
"Select all": "\u0938\u092d\u0940 \u091a\u0941\u0928\u0947\u0902",
|
||||
"Header 3": "\u0936\u0940\u0930\u094d\u0937\u0915 3",
|
||||
"Blocks": "\u0916\u0902\u0921",
|
||||
"Undo": "\u092a\u0940\u091b\u0947",
|
||||
"Strikethrough": "\u092e\u0927\u094d\u092f \u0938\u0947 \u0915\u093e\u091f\u0947\u0902",
|
||||
"Bullet list": "\u0917\u094b\u0932\u0940 \u0938\u0942\u091a\u0940",
|
||||
"Header 1": "\u0936\u0940\u0930\u094d\u0937\u0915 1",
|
||||
"Superscript": "\u0909\u092a\u0930\u093f\u0932\u093f\u0916\u093f\u0924",
|
||||
"Clear formatting": "\u092a\u094d\u0930\u093e\u0930\u0942\u092a\u0923 \u0939\u091f\u093e\u090f\u0901",
|
||||
"Font Sizes": "\u092b\u093c\u0949\u0928\u094d\u091f \u0906\u0915\u093e\u0930",
|
||||
"Subscript": "\u0928\u093f\u091a\u0932\u0940\u0932\u093f\u0916\u093f\u0924",
|
||||
"Header 6": "\u0936\u0940\u0930\u094d\u0937\u0915 6",
|
||||
"Redo": "\u0906\u0917\u0947",
|
||||
"Paragraph": "\u0905\u0928\u0941\u091a\u094d\u091b\u0947\u0926",
|
||||
"Ok": "\u0920\u0940\u0915 \u0939\u0948",
|
||||
"Bold": "\u092e\u094b\u091f\u093e",
|
||||
"Code": "\u0938\u0902\u0915\u0947\u0924\u0932\u093f\u092a\u093f",
|
||||
"Italic": "\u091f\u0947\u095c\u093e",
|
||||
"Align center": "\u092e\u0927\u094d\u092f \u0938\u0902\u0930\u0947\u0916\u0923",
|
||||
"Header 5": "\u0936\u0940\u0930\u094d\u0937\u0915 5",
|
||||
"Heading 6": "\u0936\u0940\u0930\u094d\u0937\u0915 6",
|
||||
"Heading 3": "\u0936\u0940\u0930\u094d\u0937\u0915 3",
|
||||
"Decrease indent": "\u0916\u0930\u094b\u091c \u0915\u092e \u0915\u0930\u0947\u0902",
|
||||
"Header 4": "\u0936\u0940\u0930\u094d\u0937\u0915 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u091a\u093f\u092a\u0915\u093e\u0928\u0947 \u0915\u093e \u092a\u094d\u0930\u0915\u093e\u0930 \u0905\u092d\u0940 \u0938\u093e\u0926\u093e \u092a\u093e\u0920\u094d\u092f \u0939\u0948\u0964 \u0938\u093e\u092e\u0917\u094d\u0930\u0940 \u091a\u093f\u092a\u0915\u093e\u0928\u0947 \u092a\u0930 \u0935\u0939 \u0938\u093e\u0926\u0947 \u092a\u093e\u0920\u094d\u092f \u092e\u0947\u0902 \u0930\u0939\u0917\u0940 \u091c\u092c \u0924\u0915 \u0906\u092a \u0907\u0938 \u0935\u093f\u0915\u0932\u094d\u092a \u0915\u094b \u092c\u0902\u0926 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0926\u0947\u0924\u0947\u0964",
|
||||
"Underline": "\u0905\u0927\u094b\u0930\u0947\u0916\u093e\u0902\u0915\u0928",
|
||||
"Cancel": "\u0930\u0926\u094d\u0926",
|
||||
"Justify": "\u0938\u092e\u0915\u0930\u0923",
|
||||
"Inline": "\u0930\u0947\u0916\u093e \u092e\u0947\u0902",
|
||||
"Copy": "\u092a\u094d\u0930\u0924\u093f \u0915\u0930\u0947\u0902",
|
||||
"Align left": "\u092c\u093e\u090f\u0901 \u0938\u0902\u0930\u0947\u0916\u0923",
|
||||
"Visual aids": "\u0926\u0943\u0936\u094d\u092f \u0938\u093e\u0927\u0928",
|
||||
"Lower Greek": "\u0928\u093f\u092e\u094d\u0928 \u0917\u094d\u0930\u0940\u0915",
|
||||
"Square": "\u0935\u0930\u094d\u0917",
|
||||
"Default": "\u092a\u0939\u0932\u0947 \u0938\u0947 \u091a\u0941\u0928\u093e \u0939\u0941\u0906",
|
||||
"Lower Alpha": "\u0928\u093f\u092e\u094d\u0928 \u0905\u0932\u094d\u092b\u093e",
|
||||
"Circle": "\u0935\u0943\u0924\u094d\u0924",
|
||||
"Disc": "\u092c\u093f\u0902\u092c",
|
||||
"Upper Alpha": "\u0909\u091a\u094d\u091a \u0905\u0932\u094d\u092b\u093e",
|
||||
"Upper Roman": "\u0909\u091a\u094d\u091a \u0930\u094b\u092e\u0928",
|
||||
"Lower Roman": "\u0928\u093f\u092e\u094d\u0928 \u0930\u094b\u092e\u0928",
|
||||
"Name": "\u0928\u093e\u092e",
|
||||
"Anchor": "\u0932\u0902\u0917\u0930",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0906\u092a\u0915\u0947 \u0915\u0941\u091b \u0905\u0938\u0939\u0947\u091c\u0947 \u092c\u0926\u0932\u093e\u0935 \u0939\u0948\u0902, \u0915\u094d\u092f\u093e \u0906\u092a \u0928\u093f\u0936\u094d\u091a\u093f\u0924 \u0930\u0942\u092a \u0938\u0947 \u092f\u0939\u093e\u0901 \u0938\u0947 \u091c\u093e\u0928\u093e \u091a\u093e\u0939\u0924\u0947 \u0939\u094b?",
|
||||
"Restore last draft": "\u0906\u0916\u093f\u0930\u0940 \u092e\u0938\u094c\u0926\u093e \u092a\u0941\u0928\u0930\u094d\u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902",
|
||||
"Special character": "\u0935\u093f\u0936\u0947\u0937 \u0935\u0930\u094d\u0923",
|
||||
"Source code": "\u0938\u094d\u0924\u094d\u0930\u094b\u0924 \u0938\u0902\u0915\u0947\u0924\u0932\u093f\u092a\u093f",
|
||||
"B": "\u092c\u0940",
|
||||
"R": "\u0906\u0930",
|
||||
"G": "\u091c\u0940",
|
||||
"Color": "\u0930\u0902\u0917",
|
||||
"Right to left": "\u0926\u093e\u090f\u0901 \u0938\u0947 \u092c\u093e\u090f\u0901",
|
||||
"Left to right": "\u092c\u093e\u090f\u0901 \u0938\u0947 \u0926\u093e\u090f\u0901",
|
||||
"Emoticons": "\u092d\u093e\u0935\u0928\u093e-\u092a\u094d\u0930\u0924\u0940\u0915",
|
||||
"Robots": "\u092f\u0902\u0924\u094d\u0930\u092e\u093e\u0928\u0935",
|
||||
"Document properties": "\u0926\u0938\u094d\u0924\u093e\u0935\u0947\u091c\u093c \u0917\u0941\u0923",
|
||||
"Title": "\u0936\u0940\u0930\u094d\u0937\u0915",
|
||||
"Keywords": "\u0915\u0941\u0902\u091c\u0940\u0936\u092c\u094d\u0926",
|
||||
"Encoding": "\u0938\u0902\u0915\u0947\u0924\u0940\u0915\u0930\u0923",
|
||||
"Description": "\u0935\u093f\u0935\u0930\u0923",
|
||||
"Author": "\u0932\u0947\u0916\u0915",
|
||||
"Fullscreen": "\u092a\u0942\u0930\u094d\u0923 \u0938\u094d\u0915\u094d\u0930\u0940\u0928",
|
||||
"Horizontal line": "\u0915\u094d\u0937\u0948\u0924\u093f\u091c \u0930\u0947\u0916\u093e",
|
||||
"Horizontal space": "\u0915\u094d\u0937\u0948\u0924\u093f\u091c \u0938\u094d\u0925\u093e\u0928",
|
||||
"Insert\/edit image": "\u091b\u0935\u093f \u0921\u093e\u0932\u0947\u0902\/\u0938\u092e\u094d\u092a\u093e\u0926\u0928 \u0915\u0930\u0947\u0902",
|
||||
"General": "\u0938\u093e\u092e\u093e\u0928\u094d\u092f",
|
||||
"Advanced": "\u0909\u0928\u094d\u0928\u0924",
|
||||
"Source": "\u0938\u094d\u0924\u094d\u0930\u094b\u0924",
|
||||
"Border": "\u0938\u0940\u092e\u093e",
|
||||
"Constrain proportions": "\u0905\u0928\u0941\u092a\u093e\u0924 \u0935\u093f\u0935\u0936",
|
||||
"Vertical space": "\u090a\u0930\u094d\u0927\u094d\u0935\u093e\u0927\u0930 \u0938\u094d\u0925\u093e\u0928",
|
||||
"Image description": "\u091b\u0935\u093f \u0935\u093f\u0935\u0930\u0923",
|
||||
"Style": "\u0936\u0948\u0932\u0940",
|
||||
"Dimensions": "\u0906\u092f\u093e\u092e",
|
||||
"Insert image": "\u091b\u0935\u093f \u0921\u093e\u0932\u0947\u0902",
|
||||
"Zoom in": "\u0926\u0942\u0930\u0940 \u0915\u092e \u0915\u0930\u0947\u0902",
|
||||
"Contrast": "\u0935\u093f\u0937\u092e\u0924\u093e",
|
||||
"Back": "\u092a\u0940\u091b\u0947",
|
||||
"Gamma": "\u0917\u093e\u092e\u093e",
|
||||
"Flip horizontally": "\u0915\u094d\u0937\u0948\u0924\u093f\u091c \u0915\u0930\u0947\u0902",
|
||||
"Resize": "\u0906\u0915\u093e\u0930 \u092c\u0926\u0932\u0947\u0902",
|
||||
"Sharpen": "\u0928\u0941\u0915\u0940\u0932\u093e\u092a\u0928",
|
||||
"Zoom out": "\u0926\u0942\u0930\u0940 \u092c\u095d\u093e\u090f\u0901",
|
||||
"Image options": "\u091b\u0935\u093f \u0915\u0947 \u0935\u093f\u0915\u0932\u094d\u092a",
|
||||
"Apply": "\u0932\u093e\u0917\u0942 \u0915\u0930\u0947\u0902",
|
||||
"Brightness": "\u091a\u092e\u0915\u0940\u0932\u093e\u092a\u0928",
|
||||
"Rotate clockwise": "\u0918\u095c\u0940 \u0915\u0940 \u0926\u093f\u0936\u093e \u092e\u0947\u0902 \u0918\u0941\u092e\u093e\u0913",
|
||||
"Rotate counterclockwise": "\u0918\u095c\u0940 \u0915\u0947 \u0935\u093f\u092a\u0930\u0940\u0924 \u0918\u0941\u092e\u093e\u0913",
|
||||
"Edit image": "\u091b\u0935\u093f \u0938\u092e\u094d\u092a\u093e\u0926\u0928",
|
||||
"Color levels": "\u0930\u0902\u0917 \u0938\u094d\u0924\u0930",
|
||||
"Crop": "\u0915\u093e\u091f\u0947\u0902",
|
||||
"Orientation": "\u0928\u093f\u0930\u094d\u0926\u0947\u0936\u0915 \u0930\u0947\u0916\u093e",
|
||||
"Flip vertically": "\u0916\u095c\u093e \u0915\u0930\u0947\u0902",
|
||||
"Invert": "\u0909\u0932\u091f\u0947\u0902",
|
||||
"Insert date\/time": "\u0926\u093f\u0928\u093e\u0902\u0915\/\u0938\u092e\u092f \u0921\u093e\u0932\u0947\u0902",
|
||||
"Remove link": "\u0915\u095c\u0940 \u0939\u091f\u093e\u090f\u0901",
|
||||
"Url": "\u091c\u093e\u0932\u0938\u094d\u0925\u0932 \u092a\u0924\u093e",
|
||||
"Text to display": "\u0926\u093f\u0916\u093e\u0928\u0947 \u0939\u0947\u0924\u0941 \u092a\u093e\u0920\u094d\u092f",
|
||||
"Anchors": "\u0932\u0902\u0917\u0930",
|
||||
"Insert link": "\u0915\u095c\u0940 \u0921\u093e\u0932\u0947\u0902",
|
||||
"New window": "\u0928\u0908 \u0916\u093f\u095c\u0915\u0940",
|
||||
"None": "\u0915\u094b\u0908 \u0928\u0939\u0940\u0902",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0906\u092a\u0928\u0947 \u091c\u094b \u0915\u095c\u0940 \u0921\u093e\u0932\u0940 \u0939\u0948 \u0935\u0939 \u092c\u093e\u0939\u0930\u0940 \u0915\u095c\u0940 \u0915\u0947 \u091c\u0948\u0938\u0947 \u0926\u093f\u0916 \u0930\u0939\u093e \u0939\u0948\u0964 \u0915\u094d\u092f\u093e \u0906\u092a http:\/\/ \u092a\u0939\u0932\u0947 \u091c\u094b\u095c\u0928\u093e \u091a\u093e\u0939\u0924\u0947 \u0939\u0948?",
|
||||
"Target": "\u0932\u0915\u094d\u0937\u094d\u092f",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0906\u092a\u0928\u0947 \u091c\u094b \u0915\u095c\u0940 \u0921\u093e\u0932\u0940 \u0939\u0948 \u0935\u0939 \u0908\u092e\u0947\u0932 \u092a\u0924\u093e \u0915\u0947 \u091c\u0948\u0938\u0947 \u0926\u093f\u0916 \u0930\u0939\u093e \u0939\u0948\u0964 \u0915\u094d\u092f\u093e \u0906\u092a mailto: \u092a\u0939\u0932\u0947 \u091c\u094b\u095c\u0928\u093e \u091a\u093e\u0939\u0924\u0947 \u0939\u0948?",
|
||||
"Insert\/edit link": "\u0915\u095c\u0940 \u0921\u093e\u0932\u0947\u0902\/\u0938\u0902\u092a\u093e\u0926\u093f\u0924 \u0915\u0930\u0947\u0902",
|
||||
"Insert\/edit video": "\u091a\u0932\u091a\u093f\u0924\u094d\u0930 \u0921\u093e\u0932\u0947\u0902\/\u0938\u092e\u094d\u092a\u093e\u0926\u0928 \u0915\u0930\u0947\u0902",
|
||||
"Poster": "\u092a\u094b\u0938\u094d\u091f\u0930",
|
||||
"Alternative source": "\u0935\u0948\u0915\u0932\u094d\u092a\u093f\u0915 \u0938\u094d\u0930\u094b\u0924",
|
||||
"Paste your embed code below:": "\u0926\u093f\u0916\u093e\u0928\u0947 \u0935\u093e\u0932\u0947 \u0938\u0902\u0915\u0947\u0924 \u0915\u094b \u0928\u0940\u091a\u0947 \u0921\u093e\u0932\u0947\u0902:",
|
||||
"Insert video": "\u091a\u0932\u091a\u093f\u0924\u094d\u0930 \u0921\u093e\u0932\u0947\u0902",
|
||||
"Embed": "\u0926\u093f\u0916\u093e\u0928\u093e",
|
||||
"Nonbreaking space": "\u0905\u0935\u093f\u0930\u093e\u092e\u093f\u0924 \u091c\u0917\u0939",
|
||||
"Page break": "\u092a\u0943\u0937\u094d\u0920 \u0935\u093f\u0930\u093e\u092e",
|
||||
"Paste as text": "\u092a\u093e\u0920\u094d\u092f \u0915\u0947 \u0930\u0942\u092a \u092e\u0947\u0902 \u091a\u093f\u092a\u0915\u093e\u090f\u0901",
|
||||
"Preview": "\u092a\u0942\u0930\u094d\u0935\u093e\u0935\u0932\u094b\u0915\u0928",
|
||||
"Print": "\u092e\u0941\u0926\u094d\u0930\u0923",
|
||||
"Save": "\u0938\u0939\u0947\u091c\u0947\u0902",
|
||||
"Could not find the specified string.": "\u0928\u093f\u0930\u094d\u0926\u093f\u0937\u094d\u091f \u092a\u0902\u0915\u094d\u0924\u093f \u0928\u0939\u0940\u0902 \u092e\u093f\u0932 \u0938\u0915\u093e\u0964",
|
||||
"Replace": "\u092a\u094d\u0930\u0924\u093f\u0938\u094d\u0925\u093e\u092a\u0928",
|
||||
"Next": "\u0905\u0917\u0932\u093e",
|
||||
"Whole words": "\u0938\u0902\u092a\u0942\u0930\u094d\u0923 \u0936\u092c\u094d\u0926",
|
||||
"Find and replace": "\u0922\u0942\u0901\u0922\u0947\u0902 \u0914\u0930 \u092c\u0926\u0932\u0947\u0902",
|
||||
"Replace with": "\u092a\u094d\u0930\u0924\u093f\u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902",
|
||||
"Find": "\u0916\u094b\u091c",
|
||||
"Replace all": "\u0938\u092d\u0940 \u092a\u094d\u0930\u0924\u093f\u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902",
|
||||
"Match case": "\u092e\u093e\u092e\u0932\u0947 \u092e\u093f\u0932\u093e\u090f\u0901",
|
||||
"Prev": "\u092a\u093f\u091b\u0932\u093e",
|
||||
"Spellcheck": "\u0935\u0930\u094d\u0924\u0928\u0940\u0936\u094b\u0927\u0915",
|
||||
"Finish": "\u0938\u092e\u093e\u092a\u094d\u0924",
|
||||
"Ignore all": "\u0938\u092d\u0940 \u0915\u0940 \u0909\u092a\u0947\u0915\u094d\u0937\u093e",
|
||||
"Ignore": "\u0909\u092a\u0947\u0915\u094d\u0937\u093e",
|
||||
"Add to Dictionary": "\u0936\u092c\u094d\u0926\u0915\u094b\u0936 \u092e\u0947\u0902 \u091c\u094b\u095c\u0947\u0902",
|
||||
"Insert row before": "\u092a\u0939\u0932\u0947 \u092a\u0902\u0915\u094d\u0924\u093f \u0921\u093e\u0932\u0947\u0902",
|
||||
"Rows": "\u092a\u0902\u0915\u094d\u0924\u093f\u092f\u093e\u0901",
|
||||
"Height": "\u090a\u0901\u091a\u093e\u0908",
|
||||
"Paste row after": "\u092a\u0902\u0915\u094d\u0924\u093f \u0915\u0947 \u092c\u093e\u0926 \u091a\u093f\u092a\u0915\u093e\u090f\u0901",
|
||||
"Alignment": "\u0938\u0902\u0930\u0947\u0916\u0923",
|
||||
"Border color": "\u0938\u0940\u092e\u093e \u0930\u0902\u0917",
|
||||
"Column group": "\u0938\u094d\u0924\u0902\u092d \u0938\u092e\u0942\u0939",
|
||||
"Row": "\u092a\u0902\u0915\u094d\u0924\u093f",
|
||||
"Insert column before": "\u092a\u0939\u0932\u0947 \u0938\u094d\u0924\u0902\u092d \u0921\u093e\u0932\u0947\u0902",
|
||||
"Split cell": "\u0916\u093e\u0928\u0947\u0902 \u0935\u093f\u092d\u093e\u091c\u093f\u0924 \u0915\u0930\u0947\u0902",
|
||||
"Cell padding": "\u0916\u093e\u0928\u094b\u0902 \u092e\u0947\u0902 \u0926\u0942\u0930\u0940",
|
||||
"Cell spacing": "\u0916\u093e\u0928\u094b\u0902 \u092e\u0947\u0902 \u0930\u093f\u0915\u094d\u0924\u093f",
|
||||
"Row type": "\u092a\u0902\u0915\u094d\u0924\u093f \u092a\u094d\u0930\u0915\u093e\u0930",
|
||||
"Insert table": "\u0924\u093e\u0932\u093f\u0915\u093e \u0921\u093e\u0932\u0947\u0902",
|
||||
"Body": "\u0936\u0930\u0940\u0930",
|
||||
"Caption": "\u0905\u0928\u0941\u0936\u0940\u0930\u094d\u0937\u0915",
|
||||
"Footer": "\u092a\u093e\u0926 \u0932\u0947\u0916",
|
||||
"Delete row": "\u092a\u0902\u0915\u094d\u0924\u093f \u0939\u091f\u093e\u090f\u0902",
|
||||
"Paste row before": "\u092a\u0902\u0915\u094d\u0924\u093f \u0938\u0947 \u092a\u0939\u0932\u0947 \u091a\u093f\u092a\u0915\u093e\u090f\u0901",
|
||||
"Scope": "\u0915\u094d\u0937\u0947\u0924\u094d\u0930",
|
||||
"Delete table": "\u0924\u093e\u0932\u093f\u0915\u093e \u0939\u091f\u093e\u090f\u0901",
|
||||
"H Align": "\u0915\u094d\u0937\u0947\u0924\u093f\u091c \u0938\u0902\u0930\u0947\u0916\u093f\u0924",
|
||||
"Top": "\u0936\u0940\u0930\u094d\u0937",
|
||||
"Header cell": "\u0936\u0940\u0930\u094d\u0937 \u0916\u093e\u0928\u093e",
|
||||
"Column": "\u0938\u094d\u0924\u0902\u092d",
|
||||
"Row group": "\u092a\u0902\u0915\u094d\u0924\u093f \u0938\u092e\u0942\u0939",
|
||||
"Cell": "\u0915\u094b\u0936\u093f\u0915\u093e",
|
||||
"Middle": "\u092e\u0927\u094d\u092f",
|
||||
"Cell type": "\u0916\u093e\u0928\u0947 \u0915\u093e \u092a\u094d\u0930\u0915\u093e\u0930",
|
||||
"Copy row": "\u092a\u0902\u0915\u094d\u0924\u093f \u0915\u0940 \u092a\u094d\u0930\u0924\u093f\u0932\u093f\u092a\u093f \u0932\u0947\u0902",
|
||||
"Row properties": "\u092a\u0902\u0915\u094d\u0924\u093f \u0915\u0947 \u0917\u0941\u0923",
|
||||
"Table properties": "\u0924\u093e\u0932\u093f\u0915\u093e \u0915\u0947 \u0917\u0941\u0923",
|
||||
"Bottom": "\u0928\u0940\u091a\u0947",
|
||||
"V Align": "\u090a\u0930\u094d\u0927\u094d\u0935\u093e\u0927\u0930 \u0938\u0902\u0930\u0947\u0916\u093f\u0924",
|
||||
"Header": "\u0936\u0940\u0930\u094d\u0937\u0915",
|
||||
"Right": "\u0926\u093e\u092f\u093e\u0901",
|
||||
"Insert column after": "\u092c\u093e\u0926 \u0938\u094d\u0924\u0902\u092d \u0921\u093e\u0932\u0947\u0902",
|
||||
"Cols": "\u0938\u094d\u0924\u0902\u092d",
|
||||
"Insert row after": "\u092c\u093e\u0926 \u092a\u0902\u0915\u094d\u0924\u093f \u0921\u093e\u0932\u0947\u0902",
|
||||
"Width": "\u091a\u094c\u0921\u093c\u093e\u0908",
|
||||
"Cell properties": "\u0915\u094b\u0936\u093f\u0915\u093e \u0917\u0941\u0923",
|
||||
"Left": "\u092c\u093e\u092f\u093e\u0901",
|
||||
"Cut row": "\u092a\u0902\u0915\u094d\u0924\u093f \u0915\u093e\u091f\u0947\u0902",
|
||||
"Delete column": "\u0938\u094d\u0924\u0902\u092d \u0939\u091f\u093e\u090f\u0901",
|
||||
"Center": "\u092e\u0927\u094d\u092f",
|
||||
"Merge cells": "\u0916\u093e\u0928\u094b\u0902 \u0915\u094b \u092e\u093f\u0932\u093e\u090f\u0902",
|
||||
"Insert template": "\u0938\u093e\u0901\u091a\u093e \u0921\u093e\u0932\u0947\u0902",
|
||||
"Templates": "\u0938\u093e\u0901\u091a\u0947",
|
||||
"Background color": "\u092a\u0943\u0937\u094d\u0920\u092d\u0942\u092e\u093f \u0915\u093e \u0930\u0902\u0917",
|
||||
"Custom...": "\u0905\u0928\u0941\u0915\u0942\u0932\u093f\u0924...",
|
||||
"Custom color": "\u0905\u0928\u0941\u0915\u0942\u0932\u093f\u0924 \u0930\u0902\u0917",
|
||||
"No color": "\u0930\u0902\u0917\u0939\u0940\u0928",
|
||||
"Text color": "\u092a\u093e\u0920\u094d\u092f \u0930\u0902\u0917",
|
||||
"Show blocks": "\u0921\u092c\u094d\u092c\u0947 \u0926\u093f\u0916\u093e\u090f\u0901",
|
||||
"Show invisible characters": "\u0905\u0926\u0943\u0936\u094d\u092f \u0905\u0915\u094d\u0937\u0930\u094b\u0902 \u0915\u094b \u0926\u093f\u0916\u093e\u090f\u0901",
|
||||
"Words: {0}": "\u0936\u092c\u094d\u0926: {0}",
|
||||
"Insert": "\u0921\u093e\u0932\u0947\u0902",
|
||||
"File": "\u0928\u0924\u094d\u0925\u0940",
|
||||
"Edit": "\u0938\u092e\u094d\u092a\u093e\u0926\u0928",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0938\u0902\u092a\u0928\u094d\u0928 \u092a\u093e\u0920 \u0915\u094d\u0937\u0947\u0924\u094d\u0930\u0964 \u092e\u0947\u0928\u0942 \u0915\u0947 \u0932\u093f\u090f ALT-F9 \u0926\u092c\u093e\u090f\u0901\u0964 \u0909\u092a\u0915\u0930\u0923 \u092a\u091f\u094d\u091f\u0940 \u0915\u0947 \u0932\u093f\u090f ALT-F10 \u0926\u092c\u093e\u090f\u0901\u0964 \u0938\u0939\u093e\u092f\u0924\u093e \u0915\u0947 \u0932\u093f\u090f ALT-0 \u0926\u092c\u093e\u090f\u0901\u0964",
|
||||
"Tools": "\u0909\u092a\u0915\u0930\u0923",
|
||||
"View": "\u0926\u0947\u0916\u0947\u0902",
|
||||
"Table": "\u0924\u093e\u0932\u093f\u0915\u093e",
|
||||
"Format": "\u092a\u094d\u0930\u093e\u0930\u0942\u092a"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/hr.js
Normal file
219
data/web/rc/program/js/tinymce/langs/hr.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('hr',{
|
||||
"Cut": "Izre\u017ei",
|
||||
"Heading 5": "Naslov 5",
|
||||
"Header 2": "Zaglavlje 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Va\u0161 preglednik ne podr\u017eava direktan pristup me\u0111uspremniku. Molimo Vas da umjesto toga koristite tipkovni\u010dke kratice Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Naslov 4",
|
||||
"Div": "DIV",
|
||||
"Heading 2": "Naslov 2",
|
||||
"Paste": "Zalijepi",
|
||||
"Close": "Zatvori",
|
||||
"Font Family": "Obitelj fonta",
|
||||
"Pre": "PRE",
|
||||
"Align right": "Poravnaj desno",
|
||||
"New document": "Novi dokument",
|
||||
"Blockquote": "BLOCKQUOTE",
|
||||
"Numbered list": "Numerirana lista",
|
||||
"Heading 1": "Naslov 1",
|
||||
"Headings": "Naslovi",
|
||||
"Increase indent": "Pove\u0107aj uvla\u010denje",
|
||||
"Formats": "Formati",
|
||||
"Headers": "Zaglavlja",
|
||||
"Select all": "Ozna\u010di sve",
|
||||
"Header 3": "Zaglavlje 3",
|
||||
"Blocks": "Blokovi",
|
||||
"Undo": "Poni\u0161ti",
|
||||
"Strikethrough": "Crta kroz sredinu",
|
||||
"Bullet list": "Lista",
|
||||
"Header 1": "Zaglavlje 1",
|
||||
"Superscript": "Eksponent",
|
||||
"Clear formatting": "Ukloni oblikovanje",
|
||||
"Font Sizes": "Veli\u010dine fonta",
|
||||
"Subscript": "Indeks",
|
||||
"Header 6": "Zaglavlje 6",
|
||||
"Redo": "Vrati",
|
||||
"Paragraph": "Paragraf",
|
||||
"Ok": "U redu",
|
||||
"Bold": "Podebljano",
|
||||
"Code": "CODE oznaka",
|
||||
"Italic": "Kurziv",
|
||||
"Align center": "Poravnaj po sredini",
|
||||
"Header 5": "Zaglavlje 5",
|
||||
"Heading 6": "Naslov 6",
|
||||
"Heading 3": "Naslov 3",
|
||||
"Decrease indent": "Smanji uvla\u010denje",
|
||||
"Header 4": "Zaglavlje 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Akcija zalijepi od sada lijepi \u010disti tekst. Sadr\u017eaj \u0107e biti zaljepljen kao \u010disti tekst sve dok ne isklju\u010dite ovu opciju.",
|
||||
"Underline": "Crta ispod",
|
||||
"Cancel": "Odustani",
|
||||
"Justify": "Obostrano poravnanje",
|
||||
"Inline": "Unutarnje",
|
||||
"Copy": "Kopiraj",
|
||||
"Align left": "Poravnaj lijevo",
|
||||
"Visual aids": "Vizualna pomo\u0107",
|
||||
"Lower Greek": "Mala gr\u010dka slova",
|
||||
"Square": "Kvadrat",
|
||||
"Default": "Zadano",
|
||||
"Lower Alpha": "Mala slova",
|
||||
"Circle": "Krug",
|
||||
"Disc": "To\u010dka",
|
||||
"Upper Alpha": "Velika slova",
|
||||
"Upper Roman": "Velika rimska slova",
|
||||
"Lower Roman": "Mala rimska slova",
|
||||
"Name": "Ime",
|
||||
"Anchor": "Sidro",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Postoje ne pohranjene izmjene, jeste li sigurni da \u017eelite oti\u0107i?",
|
||||
"Restore last draft": "Vrati posljednju skicu",
|
||||
"Special character": "Poseban znak",
|
||||
"Source code": "Izvorni kod",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Boja",
|
||||
"Right to left": "S desna na lijevo",
|
||||
"Left to right": "S lijeva na desno",
|
||||
"Emoticons": "Emotikoni",
|
||||
"Robots": "Roboti pretra\u017eiva\u010da",
|
||||
"Document properties": "Svojstva dokumenta",
|
||||
"Title": "Naslov",
|
||||
"Keywords": "Klju\u010dne rije\u010di",
|
||||
"Encoding": "Kodna stranica",
|
||||
"Description": "Opis",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Cijeli ekran",
|
||||
"Horizontal line": "Horizontalna linija",
|
||||
"Horizontal space": "Horizontalan razmak",
|
||||
"Insert\/edit image": "Umetni\/izmijeni sliku",
|
||||
"General": "Op\u0107enito",
|
||||
"Advanced": "Napredno",
|
||||
"Source": "Izvor",
|
||||
"Border": "Rub",
|
||||
"Constrain proportions": "Zadr\u017ei proporcije",
|
||||
"Vertical space": "Okomit razmak",
|
||||
"Image description": "Opis slike",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Dimenzije",
|
||||
"Insert image": "Umetni sliku",
|
||||
"Zoom in": "Pove\u0107aj",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Natrag",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Obrni horizontalno",
|
||||
"Resize": "Promjeni veli\u010dinu",
|
||||
"Sharpen": "Izo\u0161travanje",
|
||||
"Zoom out": "Smanji",
|
||||
"Image options": "Opcije slike",
|
||||
"Apply": "Primijeni",
|
||||
"Brightness": "Svjetlina",
|
||||
"Rotate clockwise": "Rotiraj desno",
|
||||
"Rotate counterclockwise": "Rotiraj lijevo",
|
||||
"Edit image": "Uredi sliku",
|
||||
"Color levels": "Razine boje",
|
||||
"Crop": "Obre\u017ei",
|
||||
"Orientation": "Orijentacija",
|
||||
"Flip vertically": "Obrni vertikalno",
|
||||
"Invert": "Invertiraj",
|
||||
"Insert date\/time": "Umetni datum\/vrijeme",
|
||||
"Remove link": "Ukloni poveznicu",
|
||||
"Url": "Url",
|
||||
"Text to display": "Tekst za prikaz",
|
||||
"Anchors": "Kra\u0107e poveznice",
|
||||
"Insert link": "Umetni poveznicu",
|
||||
"New window": "Novi prozor",
|
||||
"None": "Ni\u0161ta",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Izgleda da je URL koji ste upisali vanjski link. \u017delite li dodati obavezan http:\/\/ prefiks?",
|
||||
"Target": "Meta",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Izgleda da je URL koji ste upisali e-mail adresa. \u017delite li dodati obavezan mailto: prefiks?",
|
||||
"Insert\/edit link": "Umetni\/izmijeni poveznicu",
|
||||
"Insert\/edit video": "Umetni\/izmijeni video",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternativni izvor",
|
||||
"Paste your embed code below:": "Umetnite va\u0161 kod za ugradnju ispod:",
|
||||
"Insert video": "Umetni video",
|
||||
"Embed": "Ugradi",
|
||||
"Nonbreaking space": "Neprekidaju\u0107i razmak",
|
||||
"Page break": "Prijelom stranice",
|
||||
"Paste as text": "Zalijepi kao tekst",
|
||||
"Preview": "Pregled",
|
||||
"Print": "Ispis",
|
||||
"Save": "Spremi",
|
||||
"Could not find the specified string.": "Tra\u017eeni tekst nije prona\u0111en",
|
||||
"Replace": "Zamijeni",
|
||||
"Next": "Slijede\u0107i",
|
||||
"Whole words": "Cijele rije\u010di",
|
||||
"Find and replace": "Prona\u0111i i zamijeni",
|
||||
"Replace with": "Zamijeni s",
|
||||
"Find": "Tra\u017ei",
|
||||
"Replace all": "Zamijeni sve",
|
||||
"Match case": "Pazi na mala i velika slova",
|
||||
"Prev": "Prethodni",
|
||||
"Spellcheck": "Provjeri pravopis",
|
||||
"Finish": "Zavr\u0161i",
|
||||
"Ignore all": "Zanemari sve",
|
||||
"Ignore": "Zanemari",
|
||||
"Add to Dictionary": "Dodaj u rje\u010dnik",
|
||||
"Insert row before": "Umetni redak prije",
|
||||
"Rows": "Redci",
|
||||
"Height": "Visina",
|
||||
"Paste row after": "Zalijepi redak nakon",
|
||||
"Alignment": "Poravnanje",
|
||||
"Border color": "Boja ruba",
|
||||
"Column group": "Grupirani stupci",
|
||||
"Row": "Redak",
|
||||
"Insert column before": "Umetni stupac prije",
|
||||
"Split cell": "Razdvoji polja",
|
||||
"Cell padding": "Razmak unutar polja",
|
||||
"Cell spacing": "Razmak izme\u0111u polja",
|
||||
"Row type": "Vrsta redka",
|
||||
"Insert table": "Umetni tablicu",
|
||||
"Body": "Sadr\u017eaj",
|
||||
"Caption": "Natpis",
|
||||
"Footer": "Podno\u017eje",
|
||||
"Delete row": "Izbri\u0161i redak",
|
||||
"Paste row before": "Zalijepi redak prije",
|
||||
"Scope": "Doseg",
|
||||
"Delete table": "Izbri\u0161i tablicu",
|
||||
"H Align": "H Poravnavanje",
|
||||
"Top": "Vrh",
|
||||
"Header cell": "Polje zaglavlja",
|
||||
"Column": "Stupac",
|
||||
"Row group": "Grupirani redci",
|
||||
"Cell": "Polje",
|
||||
"Middle": "Sredina",
|
||||
"Cell type": "Vrsta polja",
|
||||
"Copy row": "Kopiraj redak",
|
||||
"Row properties": "Svojstva redka",
|
||||
"Table properties": "Svojstva tablice",
|
||||
"Bottom": "Dno",
|
||||
"V Align": "V Poravnavanje",
|
||||
"Header": "Zaglavlje",
|
||||
"Right": "Desno",
|
||||
"Insert column after": "Umetni stupac nakon",
|
||||
"Cols": "Stupci",
|
||||
"Insert row after": "Umetni redak nakon",
|
||||
"Width": "\u0160irina",
|
||||
"Cell properties": "Svojstva polja",
|
||||
"Left": "Lijevo",
|
||||
"Cut row": "Izre\u017ei redak",
|
||||
"Delete column": "Izbri\u0161i stupac",
|
||||
"Center": "Sredina",
|
||||
"Merge cells": "Spoji polja",
|
||||
"Insert template": "Umetni predlo\u017eak",
|
||||
"Templates": "Predlo\u0161ci",
|
||||
"Background color": "Boja pozadine",
|
||||
"Custom...": "Prilago\u0111eno...",
|
||||
"Custom color": "Prilago\u0111ena boja",
|
||||
"No color": "Bez boje",
|
||||
"Text color": "Boja teksta",
|
||||
"Show blocks": "Prika\u017ei blokove",
|
||||
"Show invisible characters": "Prika\u017ei nevidljive znakove",
|
||||
"Words: {0}": "Rije\u010di: {0}",
|
||||
"Insert": "Umetni",
|
||||
"File": "Datoteka",
|
||||
"Edit": "Izmijeni",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Pritisni ALT-F9 za izbornik. Pritisni ALT-F10 za alatnu traku. Pritisni ALT-0 za pomo\u0107",
|
||||
"Tools": "Alati",
|
||||
"View": "Pogled",
|
||||
"Table": "Tablica",
|
||||
"Format": "Oblikuj"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/hu_HU.js
Normal file
219
data/web/rc/program/js/tinymce/langs/hu_HU.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('hu_HU',{
|
||||
"Cut": "Kiv\u00e1g\u00e1s",
|
||||
"Heading 5": "Fejl\u00e9c 5",
|
||||
"Header 2": "C\u00edmsor 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a k\u00f6zvetlen hozz\u00e1f\u00e9r\u00e9st a v\u00e1g\u00f3laphoz. K\u00e9rlek haszn\u00e1ld a Ctrl+X\/C\/V billenty\u0171ket.",
|
||||
"Heading 4": "Fejl\u00e9c 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Fejl\u00e9c 2",
|
||||
"Paste": "Beilleszt\u00e9s",
|
||||
"Close": "Bez\u00e1r",
|
||||
"Font Family": "Bet\u0171t\u00edpus",
|
||||
"Pre": "El\u0151",
|
||||
"Align right": "Jobbra igaz\u00edt",
|
||||
"New document": "\u00daj dokumentum",
|
||||
"Blockquote": "Id\u00e9zetblokk",
|
||||
"Numbered list": "Sz\u00e1moz\u00e1s",
|
||||
"Heading 1": "Fejl\u00e9c 1",
|
||||
"Headings": "Fejl\u00e9cek",
|
||||
"Increase indent": "Beh\u00faz\u00e1s n\u00f6vel\u00e9se",
|
||||
"Formats": "Form\u00e1tumok",
|
||||
"Headers": "C\u00edmsorok",
|
||||
"Select all": "Minden kijel\u00f6l\u00e9se",
|
||||
"Header 3": "C\u00edmsor 3",
|
||||
"Blocks": "Blokkok",
|
||||
"Undo": "Visszavon\u00e1s",
|
||||
"Strikethrough": "\u00c1th\u00fazott",
|
||||
"Bullet list": "Felsorol\u00e1s",
|
||||
"Header 1": "C\u00edmsor 1",
|
||||
"Superscript": "Fels\u0151 index",
|
||||
"Clear formatting": "Form\u00e1z\u00e1s t\u00f6rl\u00e9se",
|
||||
"Font Sizes": "Bet\u0171m\u00e9retek",
|
||||
"Subscript": "Als\u00f3 index",
|
||||
"Header 6": "C\u00edmsor 6",
|
||||
"Redo": "Ism\u00e9t",
|
||||
"Paragraph": "Bekezd\u00e9s",
|
||||
"Ok": "Rendben",
|
||||
"Bold": "F\u00e9lk\u00f6v\u00e9r",
|
||||
"Code": "K\u00f3d",
|
||||
"Italic": "D\u0151lt",
|
||||
"Align center": "K\u00f6z\u00e9pre z\u00e1r",
|
||||
"Header 5": "C\u00edmsor 5",
|
||||
"Heading 6": "Fejl\u00e9c 6",
|
||||
"Heading 3": "Fejl\u00e9c 3",
|
||||
"Decrease indent": "Beh\u00faz\u00e1s cs\u00f6kkent\u00e9se",
|
||||
"Header 4": "C\u00edmsor 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Beilleszt\u00e9s mostant\u00f3l egyszer\u0171 sz\u00f6veg m\u00f3dban. A tartalmak mostant\u00f3l egyszer\u0171 sz\u00f6vegk\u00e9nt lesznek beillesztve, am\u00edg nem kapcsolod ki ezt az opci\u00f3t.",
|
||||
"Underline": "Al\u00e1h\u00fazott",
|
||||
"Cancel": "M\u00e9gse",
|
||||
"Justify": "Sorkiz\u00e1r\u00e1s",
|
||||
"Inline": "Vonalon bel\u00fcl",
|
||||
"Copy": "M\u00e1sol\u00e1s",
|
||||
"Align left": "Balra igaz\u00edt",
|
||||
"Visual aids": "Vizu\u00e1lis seg\u00e9deszk\u00f6z\u00f6k",
|
||||
"Lower Greek": "Kis g\u00f6r\u00f6g sz\u00e1m",
|
||||
"Square": "N\u00e9gyzet",
|
||||
"Default": "Alap\u00e9rtelmezett",
|
||||
"Lower Alpha": "Kisbet\u0171",
|
||||
"Circle": "K\u00f6r",
|
||||
"Disc": "Pont",
|
||||
"Upper Alpha": "Nagybet\u0171",
|
||||
"Upper Roman": "Nagy r\u00f3mai sz\u00e1m",
|
||||
"Lower Roman": "Kis r\u00f3mai sz\u00e1m",
|
||||
"Name": "N\u00e9v",
|
||||
"Anchor": "Horgony",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Nem mentett m\u00f3dos\u00edt\u00e1said vannak, biztos hogy el akarsz navig\u00e1lni?",
|
||||
"Restore last draft": "Utols\u00f3 piszkozat vissza\u00e1ll\u00edt\u00e1sa",
|
||||
"Special character": "Speci\u00e1lis karakter",
|
||||
"Source code": "Forr\u00e1sk\u00f3d",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Sz\u00edn",
|
||||
"Right to left": "Jobbr\u00f3l balra",
|
||||
"Left to right": "Balr\u00f3l jobbra",
|
||||
"Emoticons": "Vigyorok",
|
||||
"Robots": "Robotok",
|
||||
"Document properties": "Dokumentum tulajdons\u00e1gai",
|
||||
"Title": "C\u00edm",
|
||||
"Keywords": "Kulcsszavak",
|
||||
"Encoding": "K\u00f3dol\u00e1s",
|
||||
"Description": "Le\u00edr\u00e1s",
|
||||
"Author": "Szerz\u0151",
|
||||
"Fullscreen": "Teljes k\u00e9perny\u0151",
|
||||
"Horizontal line": "V\u00edzszintes vonal",
|
||||
"Horizontal space": "Horizont\u00e1lis hely",
|
||||
"Insert\/edit image": "K\u00e9p beilleszt\u00e9se\/szerkeszt\u00e9se",
|
||||
"General": "\u00c1ltal\u00e1nos",
|
||||
"Advanced": "Halad\u00f3",
|
||||
"Source": "Forr\u00e1s",
|
||||
"Border": "Szeg\u00e9ly",
|
||||
"Constrain proportions": "M\u00e9retar\u00e1ny",
|
||||
"Vertical space": "Vertik\u00e1lis hely",
|
||||
"Image description": "K\u00e9p le\u00edr\u00e1sa",
|
||||
"Style": "St\u00edlus",
|
||||
"Dimensions": "M\u00e9retek",
|
||||
"Insert image": "K\u00e9p besz\u00far\u00e1sa",
|
||||
"Zoom in": "Nagy\u00edt\u00e1s",
|
||||
"Contrast": "Kontraszt",
|
||||
"Back": "Vissza",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "V\u00edzszintes t\u00fckr\u00f6z\u00e9s",
|
||||
"Resize": "\u00c1tm\u00e9retez\u00e9s",
|
||||
"Sharpen": "\u00c9less\u00e9g",
|
||||
"Zoom out": "Kicsiny\u00edt\u00e9s",
|
||||
"Image options": "K\u00e9p be\u00e1ll\u00edt\u00e1sok",
|
||||
"Apply": "Ment\u00e9s",
|
||||
"Brightness": "F\u00e9nyer\u0151",
|
||||
"Rotate clockwise": "Forgat\u00e1s az \u00f3ramutat\u00f3 j\u00e1r\u00e1s\u00e1val megegyez\u0151en",
|
||||
"Rotate counterclockwise": "Forgat\u00e1s az \u00f3ramutat\u00f3 j\u00e1r\u00e1s\u00e1val ellent\u00e9tesen",
|
||||
"Edit image": "K\u00e9p szerkeszt\u00e9se",
|
||||
"Color levels": "Sz\u00ednszint",
|
||||
"Crop": "K\u00e9p v\u00e1g\u00e1s",
|
||||
"Orientation": "K\u00e9p t\u00e1jol\u00e1s",
|
||||
"Flip vertically": "F\u00fcgg\u0151leges t\u00fckr\u00f6z\u00e9s",
|
||||
"Invert": "Inverz k\u00e9p",
|
||||
"Insert date\/time": "D\u00e1tum\/id\u0151 beilleszt\u00e9se",
|
||||
"Remove link": "Hivatkoz\u00e1s t\u00f6rl\u00e9se",
|
||||
"Url": "Url",
|
||||
"Text to display": "Megjelen\u0151 sz\u00f6veg",
|
||||
"Anchors": "Horgonyok",
|
||||
"Insert link": "Link beilleszt\u00e9se",
|
||||
"New window": "\u00daj ablak",
|
||||
"None": "Nincs",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Az URL amit megadt\u00e1l k\u00fcls\u0151 c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges http:\/\/ el\u0151tagot?",
|
||||
"Target": "C\u00e9l",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Az URL amit megadt\u00e1l email c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges mailto: el\u0151tagot?",
|
||||
"Insert\/edit link": "Link beilleszt\u00e9se\/szerkeszt\u00e9se",
|
||||
"Insert\/edit video": "Vide\u00f3 beilleszt\u00e9se\/szerkeszt\u00e9se",
|
||||
"Poster": "El\u0151n\u00e9zeti k\u00e9p",
|
||||
"Alternative source": "Alternat\u00edv forr\u00e1s",
|
||||
"Paste your embed code below:": "Illeszd be a be\u00e1gyaz\u00f3 k\u00f3dot alulra:",
|
||||
"Insert video": "Vide\u00f3 beilleszt\u00e9se",
|
||||
"Embed": "Be\u00e1gyaz\u00e1s",
|
||||
"Nonbreaking space": "Nem t\u00f6rhet\u0151 hely",
|
||||
"Page break": "Oldalt\u00f6r\u00e9s",
|
||||
"Paste as text": "Beilleszt\u00e9s sz\u00f6vegk\u00e9nt",
|
||||
"Preview": "El\u0151n\u00e9zet",
|
||||
"Print": "Nyomtat\u00e1s",
|
||||
"Save": "Ment\u00e9s",
|
||||
"Could not find the specified string.": "A be\u00edrt kifejez\u00e9s nem tal\u00e1lhat\u00f3.",
|
||||
"Replace": "Csere",
|
||||
"Next": "K\u00f6vetkez\u0151",
|
||||
"Whole words": "Csak ha ez a teljes sz\u00f3",
|
||||
"Find and replace": "Keres\u00e9s \u00e9s csere",
|
||||
"Replace with": "Csere erre",
|
||||
"Find": "Keres\u00e9s",
|
||||
"Replace all": "Az \u00f6sszes cser\u00e9je",
|
||||
"Match case": "Kis \u00e9s nagybet\u0171k megk\u00fcl\u00f6nb\u00f6ztet\u00e9se",
|
||||
"Prev": "El\u0151z\u0151",
|
||||
"Spellcheck": "Helyes\u00edr\u00e1s ellen\u0151rz\u00e9s",
|
||||
"Finish": "Befejez\u00e9s",
|
||||
"Ignore all": "Mindent figyelmen k\u00edv\u00fcl hagy",
|
||||
"Ignore": "Figyelmen k\u00edv\u00fcl hagy",
|
||||
"Add to Dictionary": "Sz\u00f3t\u00e1rhoz ad",
|
||||
"Insert row before": "Sor besz\u00far\u00e1sa el\u00e9",
|
||||
"Rows": "Sorok",
|
||||
"Height": "Magass\u00e1g",
|
||||
"Paste row after": "Sor beilleszt\u00e9se m\u00f6g\u00e9",
|
||||
"Alignment": "Igaz\u00edt\u00e1s",
|
||||
"Border color": "Szeg\u00e9ly sz\u00edne",
|
||||
"Column group": "Oszlop csoport",
|
||||
"Row": "Sor",
|
||||
"Insert column before": "Oszlop besz\u00far\u00e1sa el\u00e9",
|
||||
"Split cell": "Cell\u00e1k sz\u00e9tv\u00e1laszt\u00e1sa",
|
||||
"Cell padding": "Cella m\u00e9rete",
|
||||
"Cell spacing": "Cell\u00e1k t\u00e1vols\u00e1ga",
|
||||
"Row type": "Sor t\u00edpus",
|
||||
"Insert table": "T\u00e1bl\u00e1zat beilleszt\u00e9se",
|
||||
"Body": "Sz\u00f6vegt\u00f6rzs",
|
||||
"Caption": "Felirat",
|
||||
"Footer": "L\u00e1bl\u00e9c",
|
||||
"Delete row": "Sor t\u00f6rl\u00e9se",
|
||||
"Paste row before": "Sor beilleszt\u00e9se el\u00e9",
|
||||
"Scope": "Hat\u00f3k\u00f6r",
|
||||
"Delete table": "T\u00e1bl\u00e1zat t\u00f6rl\u00e9se",
|
||||
"H Align": "V\u00edzszintes igaz\u00edt\u00e1s",
|
||||
"Top": "Fel\u00fcl",
|
||||
"Header cell": "Fejl\u00e9c cella",
|
||||
"Column": "Oszlop",
|
||||
"Row group": "Sor csoport",
|
||||
"Cell": "Cella",
|
||||
"Middle": "K\u00f6z\u00e9pen",
|
||||
"Cell type": "Cella t\u00edpusa",
|
||||
"Copy row": "Sor m\u00e1sol\u00e1sa",
|
||||
"Row properties": "Sor tulajdons\u00e1gai",
|
||||
"Table properties": "T\u00e1bl\u00e1zat tulajdons\u00e1gok",
|
||||
"Bottom": "Alul",
|
||||
"V Align": "F\u00fcgg\u0151leges igaz\u00edt\u00e1s",
|
||||
"Header": "Fejl\u00e9c",
|
||||
"Right": "Jobb",
|
||||
"Insert column after": "Oszlop besz\u00far\u00e1sa m\u00f6g\u00e9",
|
||||
"Cols": "Oszlopok",
|
||||
"Insert row after": "Sor besz\u00far\u00e1sa m\u00f6g\u00e9",
|
||||
"Width": "Sz\u00e9less\u00e9g",
|
||||
"Cell properties": "Cella tulajdons\u00e1gok",
|
||||
"Left": "Bal",
|
||||
"Cut row": "Sor kiv\u00e1g\u00e1sa",
|
||||
"Delete column": "Oszlop t\u00f6rl\u00e9se",
|
||||
"Center": "K\u00f6z\u00e9p",
|
||||
"Merge cells": "Cell\u00e1k egyes\u00edt\u00e9se",
|
||||
"Insert template": "Sablon beilleszt\u00e9se",
|
||||
"Templates": "Sablonok",
|
||||
"Background color": "H\u00e1tt\u00e9r sz\u00edn",
|
||||
"Custom...": "Egy\u00e9ni...",
|
||||
"Custom color": "Egy\u00e9ni sz\u00edn",
|
||||
"No color": "Nincs sz\u00edn",
|
||||
"Text color": "Sz\u00f6veg sz\u00edne",
|
||||
"Show blocks": "Blokkok mutat\u00e1sa",
|
||||
"Show invisible characters": "L\u00e1thatatlan karakterek mutat\u00e1sa",
|
||||
"Words: {0}": "Szavak: {0}",
|
||||
"Insert": "Beilleszt\u00e9s",
|
||||
"File": "F\u00e1jl",
|
||||
"Edit": "Szerkeszt\u00e9s",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text ter\u00fclet. Nyomj ALT-F9-et a men\u00fch\u00f6z. Nyomj ALT-F10-et az eszk\u00f6zt\u00e1rhoz. Nyomj ALT-0-t a s\u00fag\u00f3hoz",
|
||||
"Tools": "Eszk\u00f6z\u00f6k",
|
||||
"View": "N\u00e9zet",
|
||||
"Table": "T\u00e1bl\u00e1zat",
|
||||
"Format": "Form\u00e1tum"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/hy.js
Normal file
219
data/web/rc/program/js/tinymce/langs/hy.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('hy',{
|
||||
"Cut": "\u053f\u057f\u0580\u0565\u056c",
|
||||
"Heading 5": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 5",
|
||||
"Header 2": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0541\u0565\u0580 \u0562\u0580\u0561\u0578\u0582\u0566\u0565\u0580\u0568 \u0579\u056b \u0561\u057a\u0561\u0570\u0578\u057e\u0578\u0582\u0574 \u0561\u0576\u0574\u056b\u057b\u0561\u056f\u0561\u0576 \u0565\u056c\u0584 \u0583\u0578\u056d\u0561\u0576\u0561\u056f\u0574\u0561\u0576 \u0562\u0578\u0582\u0586\u0565\u0580\u056b\u0576\u0589 \u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0585\u0563\u057f\u057e\u0565\u056c Ctrl+X\/C\/V \u057d\u057f\u0565\u0572\u0576\u0565\u0580\u056b\u0581\u0589",
|
||||
"Heading 4": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 2",
|
||||
"Paste": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c",
|
||||
"Close": "\u0553\u0561\u056f\u0565\u056c",
|
||||
"Font Family": "\u054f\u0561\u057c\u0561\u057f\u0565\u057d\u0561\u056f",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u0531\u057b\u0561\u056f\u0578\u0572\u0574\u0575\u0561 \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"New document": "\u0546\u0578\u0580 \u0583\u0561\u057d\u057f\u0561\u0569\u0578\u0582\u0572\u0569",
|
||||
"Blockquote": "\u0544\u0565\u057b\u0562\u0565\u0580\u0578\u0582\u0574",
|
||||
"Numbered list": "\u0540\u0561\u0574\u0561\u0580\u0561\u056f\u0561\u056c\u057e\u0561\u056e \u0581\u0578\u0582\u0581\u0561\u056f",
|
||||
"Heading 1": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 1",
|
||||
"Headings": "\u054e\u0565\u0580\u0576\u0561\u0563\u0580\u0565\u0580",
|
||||
"Increase indent": "\u0544\u0565\u056e\u0561\u0581\u0576\u0565\u056c \u0571\u0561\u056d \u0565\u0566\u0580\u056b \u0570\u0565\u057c\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568",
|
||||
"Formats": "\u0556\u0578\u0580\u0574\u0561\u057f\u0576\u0565\u0580",
|
||||
"Headers": "\u054e\u0565\u0580\u0576\u0561\u0563\u0580\u0565\u0580",
|
||||
"Select all": "\u0546\u0577\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568",
|
||||
"Header 3": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 3",
|
||||
"Blocks": "\u0532\u056c\u0578\u056f\u0576\u0565\u0580",
|
||||
"Undo": "\u0546\u0561\u056d\u0578\u0580\u0564 \u0584\u0561\u0575\u056c",
|
||||
"Strikethrough": "\u0531\u0580\u057f\u0561\u0563\u056e\u057e\u0561\u056e",
|
||||
"Bullet list": "\u0549\u0570\u0561\u0574\u0561\u0580\u0561\u056f\u0561\u056c\u057e\u0561\u056e \u0581\u0578\u0582\u0581\u0561\u056f",
|
||||
"Header 1": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 1",
|
||||
"Superscript": "\u054e\u0565\u0580\u056b\u0576 \u056b\u0576\u0564\u0565\u0584\u057d",
|
||||
"Clear formatting": "\u0544\u0561\u0584\u0580\u0565\u056c \u0586\u0578\u0580\u0574\u0561\u057f\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568",
|
||||
"Font Sizes": "\u054f\u0561\u057c\u056b \u0579\u0561\u0583",
|
||||
"Subscript": "\u054d\u057f\u0578\u0580\u056b\u0576 \u056b\u0576\u0564\u0565\u0584\u057d",
|
||||
"Header 6": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 6",
|
||||
"Redo": "\u0540\u0561\u057b\u0578\u0580\u0564 \u0584\u0561\u0575\u056c",
|
||||
"Paragraph": "\u054a\u0561\u0580\u0562\u0565\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Ok": "Ok",
|
||||
"Bold": "\u0539\u0561\u057e\u0561\u057f\u0561\u057c",
|
||||
"Code": "\u053f\u0578\u0564",
|
||||
"Italic": "\u0547\u0565\u0572\u0561\u057f\u0561\u057c",
|
||||
"Align center": "\u053f\u0565\u0576\u057f\u0580\u0578\u0576\u0561\u056f\u0561\u0576 \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Header 5": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 5",
|
||||
"Heading 6": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 6",
|
||||
"Heading 3": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 3",
|
||||
"Decrease indent": "\u0553\u0578\u0584\u0580\u0561\u0581\u0576\u0565\u056c \u0571\u0561\u056d \u0565\u0566\u0580\u056b \u0570\u0565\u057c\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568",
|
||||
"Header 4": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u054f\u0565\u0584\u057d\u057f\u056b \u057f\u0565\u0572\u0561\u0564\u0580\u0578\u0582\u0574\u0568 \u056f\u0561\u057f\u0561\u0580\u057e\u0565\u056c\u0578\u0582 \u0567 \u0570\u0561\u057d\u0561\u0580\u0561\u056f \u057f\u0565\u0584\u057d\u057f\u056b \u057c\u0565\u056a\u056b\u0574\u0578\u057e\u0589 \u054a\u0561\u057f\u0573\u0565\u0576\u057e\u0561\u056e \u057f\u0565\u0584\u057d\u057f\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0565\u056c\u0578\u0582 \u0567 \u0570\u0561\u057d\u0561\u0580\u0561\u056f \u057f\u0565\u0584\u057d\u057f\u056b \u0571\u0587\u0578\u057e \u0574\u056b\u0576\u0579\u0587 \u0561\u0575\u057d \u057c\u0565\u056a\u056b\u0574\u056b \u0561\u0576\u057b\u0561\u057f\u0578\u0582\u0574\u0568\u0589",
|
||||
"Underline": "\u0538\u0576\u0564\u0563\u056e\u057e\u0561\u056e",
|
||||
"Cancel": "\u0553\u0561\u056f\u0565\u056c",
|
||||
"Justify": "\u0535\u0580\u056f\u056f\u0578\u0572\u0574\u0561\u0576\u056b \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Inline": "\u054f\u0578\u0572\u0561\u0575\u056b\u0576",
|
||||
"Copy": "\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c",
|
||||
"Align left": "\u0541\u0561\u056d\u0561\u056f\u0578\u0572\u0574\u0575\u0561 \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Visual aids": "\u0551\u0578\u0582\u0581\u0561\u0564\u0580\u0565\u056c \u056f\u0578\u0576\u057f\u0578\u0582\u0580\u0576\u0565\u0580\u0568",
|
||||
"Lower Greek": "\u0553\u0578\u0584\u0580\u0561\u057f\u0561\u057c \u0570\u0578\u0582\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u057c\u0565\u0580",
|
||||
"Square": "\u0554\u0561\u057c\u0561\u056f\u0578\u0582\u057d\u056b",
|
||||
"Default": "\u054d\u057f\u0561\u0576\u0564\u0561\u0580\u057f",
|
||||
"Lower Alpha": "\u0553\u0578\u0584\u0580\u0561\u057f\u0561\u057c \u056c\u0561\u057f\u056b\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u057c\u0565\u0580",
|
||||
"Circle": "\u0547\u0580\u057b\u0561\u0576",
|
||||
"Disc": "\u053f\u056c\u0578\u0580",
|
||||
"Upper Alpha": "\u0544\u0565\u056e\u0561\u057f\u0561\u057c \u056c\u0561\u057f\u056b\u0576\u0565\u0580\u0565\u0576 \u057f\u0561\u057c\u0565\u0580",
|
||||
"Upper Roman": "\u0544\u0565\u056e\u0561\u057f\u0561\u057c \u0570\u057c\u0578\u0574\u0565\u0561\u056f\u0561\u0576 \u0569\u057e\u0565\u0580",
|
||||
"Lower Roman": "\u0553\u0578\u0584\u0580\u0561\u057f\u0561\u057c \u0570\u057c\u0578\u0574\u0565\u0561\u056f\u0561\u0576 \u0569\u057e\u0565\u0580",
|
||||
"Name": "\u0531\u0576\u0578\u0582\u0576",
|
||||
"Anchor": "\u053d\u0561\u0580\u056b\u057d\u056d",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u053f\u0561\u0576 \u0579\u057a\u0561\u0570\u057a\u0561\u0576\u057e\u0561\u056e \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0589 \u0534\u0578\u0582\u0584 \u056b\u0580\u0578\u055e\u0584 \u0578\u0582\u0566\u0578\u0582\u0574 \u0565\u0584 \u0564\u0578\u0582\u0580\u057d \u0563\u0561\u056c",
|
||||
"Restore last draft": "\u054e\u0565\u0580\u0561\u056f\u0561\u0576\u0563\u0576\u0565\u056c \u057e\u0565\u0580\u057b\u056b\u0576 \u0576\u0561\u056d\u0561\u0563\u056b\u056e\u0568",
|
||||
"Special character": "\u0540\u0561\u057f\u0578\u0582\u056f \u057d\u056b\u0574\u057e\u0578\u056c\u0576\u0565\u0580",
|
||||
"Source code": "\u053e\u0580\u0561\u0563\u0580\u0561\u0575\u056b\u0576 \u056f\u0578\u0564",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0533\u0578\u0582\u0575\u0576",
|
||||
"Right to left": "\u0531\u057b\u056b\u0581 \u0571\u0561\u056d",
|
||||
"Left to right": "\u0541\u0561\u056d\u056b\u0581 \u0561\u057b",
|
||||
"Emoticons": "\u054d\u0574\u0561\u0575\u056c\u056b\u056f\u0576\u0565\u0580",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "\u0553\u0561\u057d\u057f\u0561\u0569\u0572\u0569\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568",
|
||||
"Title": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580",
|
||||
"Keywords": "\u0548\u0580\u0578\u0576\u0578\u0572\u0561\u056f\u0561\u0576 \u0562\u0561\u057c\u0565\u0580",
|
||||
"Encoding": "\u053f\u0578\u0564\u0561\u057e\u0578\u0580\u0578\u0582\u0574",
|
||||
"Description": "\u0546\u056f\u0561\u0580\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Author": "\u0540\u0565\u0572\u056b\u0576\u0561\u056f",
|
||||
"Fullscreen": "\u0531\u0574\u0562\u0578\u0572\u057b \u0567\u056f\u0580\u0561\u0576\u0578\u057e",
|
||||
"Horizontal line": "\u0540\u0578\u0580\u056b\u0566\u0578\u0576\u0561\u056f\u0561\u0576 \u0563\u056b\u056e",
|
||||
"Horizontal space": "\u0540\u0578\u0580\u056b\u0566\u0578\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Insert\/edit image": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\/\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u0576\u056f\u0561\u0580",
|
||||
"General": "\u0533\u056c\u056d\u0561\u057e\u0578\u0580",
|
||||
"Advanced": "\u053c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579",
|
||||
"Source": "\u0546\u056f\u0561\u0580\u056b \u0570\u0561\u057d\u0581\u0565",
|
||||
"Border": "\u0535\u0566\u0580\u0561\u0563\u056b\u056e",
|
||||
"Constrain proportions": "\u054a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0574\u0561\u0577\u057f\u0561\u0562\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568",
|
||||
"Vertical space": "\u0548\u0582\u0572\u0572\u0561\u0570\u0561\u0575\u0561\u0581 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Image description": "\u0546\u056f\u0561\u0580\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Style": "\u0548\u0573",
|
||||
"Dimensions": "\u0549\u0561\u0583\u0565\u0580",
|
||||
"Insert image": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0576\u056f\u0561\u0580",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0561\u0574\u057d\u0561\u0569\u056b\u057e\/\u056a\u0561\u0574\u0561\u0576\u0561\u056f",
|
||||
"Remove link": "\u054b\u0576\u057b\u0565\u056c \u0570\u0572\u0578\u0582\u0574\u0568",
|
||||
"Url": "Url",
|
||||
"Text to display": "\u0540\u0572\u0574\u0561\u0576 \u057f\u0565\u0584\u057d\u057f",
|
||||
"Anchors": "\u053d\u0561\u0580\u056b\u057d\u056d\u0576\u0565\u0580",
|
||||
"Insert link": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0570\u0572\u0578\u0582\u0574",
|
||||
"New window": "\u0546\u0578\u0580 \u057a\u0561\u057f\u0578\u0582\u0570\u0561\u0576",
|
||||
"None": "\u0548\u0579\u056b\u0576\u0579",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0544\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u057e\u0561\u056e \u0570\u0572\u0578\u0582\u0574\u0568 \u056f\u0561\u0580\u056e\u0565\u057d \u0561\u0580\u057f\u0561\u0584\u056b\u0576 \u0570\u0572\u0578\u0582\u0574 \u0567: \u0534\u0578\u0582\u0584 \u056f\u0581\u0561\u0576\u056f\u0561\u0576\u0561\u0584 \u0561\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c http:\/\/ \u0570\u0572\u0574\u0561\u0576 \u057d\u056f\u0566\u0562\u0578\u0582\u0574",
|
||||
"Target": "\u0539\u056b\u0580\u0561\u056d",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0544\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u057e\u0561\u056e \u0570\u0572\u0578\u0582\u0574\u0568 \u056f\u0561\u0580\u056e\u0565\u057d \u0537\u056c. \u0583\u0578\u057d\u057f\u056b \u0570\u0561\u057d\u0581\u0565 \u0567: \u0534\u0578\u0582\u0584 \u056f\u0581\u0561\u0576\u056f\u0561\u0576\u0561\u0584 \u0561\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c mailto: \u0570\u0572\u0574\u0561\u0576 \u057d\u056f\u0566\u0562\u0578\u0582\u0574",
|
||||
"Insert\/edit link": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\/\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u0570\u0572\u0578\u0582\u0574",
|
||||
"Insert\/edit video": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\/\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u057e\u056b\u0564\u0565\u0578",
|
||||
"Poster": "\u054a\u0561\u057d\u057f\u0561\u057c",
|
||||
"Alternative source": "\u0531\u0575\u056c\u0568\u0576\u057f\u0580\u0561\u0576\u0584\u0561\u0575\u056b\u0576 \u056f\u0578\u0564",
|
||||
"Paste your embed code below:": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u0584 \u0541\u0565\u0580 \u056f\u0578\u0564\u0568 \u0561\u0575\u057d\u057f\u0565\u0572\u055d",
|
||||
"Insert video": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u057e\u056b\u0564\u0565\u0578",
|
||||
"Embed": "\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0572 \u056f\u0578\u0564",
|
||||
"Nonbreaking space": "\u0531\u057c\u0561\u0576\u0581 \u0576\u0578\u0580 \u057f\u0578\u0572\u056b \u0562\u0561\u0581\u0561\u057f",
|
||||
"Page break": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0567\u057b\u056b \u0561\u0576\u057b\u0561\u057f\u056b\u0579",
|
||||
"Paste as text": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0578\u0580\u057a\u0565\u057d \u057f\u0565\u0584\u057d\u057f",
|
||||
"Preview": "\u0546\u0561\u056d\u0576\u0561\u056f\u0561\u0576 \u0564\u056b\u057f\u0578\u0582\u0574",
|
||||
"Print": "\u054f\u057a\u0565\u056c",
|
||||
"Save": "\u054a\u0561\u0570\u057a\u0561\u0576\u0565\u056c",
|
||||
"Could not find the specified string.": "\u0546\u0577\u057e\u0561\u056e \u057f\u0565\u0584\u057d\u057f\u0568 \u0579\u056b \u0563\u057f\u0576\u057e\u0565\u056c",
|
||||
"Replace": "\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c",
|
||||
"Next": "\u0540\u0561\u057b\u0578\u0580\u0564",
|
||||
"Whole words": "\u0532\u0561\u057c\u0565\u0580\u0568 \u0561\u0574\u0562\u0578\u0572\u057b\u0578\u0582\u0569\u0575\u0561\u0574\u0562",
|
||||
"Find and replace": "\u0553\u0576\u057f\u0580\u0565\u056c \u0587 \u0583\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c",
|
||||
"Replace with": "\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c",
|
||||
"Find": "\u0553\u0576\u057f\u0580\u0565\u056c",
|
||||
"Replace all": "\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568",
|
||||
"Match case": "\u0540\u0561\u0577\u057e\u056b \u0561\u057c\u0576\u0565\u056c \u057c\u0565\u0563\u056b\u057d\u057f\u0578\u0580\u0568",
|
||||
"Prev": "\u0546\u0561\u056d\u0578\u0580\u0564",
|
||||
"Spellcheck": "\u0548\u0582\u0572\u0572\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Finish": "\u0531\u057e\u0561\u0580\u057f\u0565\u056c",
|
||||
"Ignore all": "\u0531\u0576\u057f\u0565\u057d\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568",
|
||||
"Ignore": "\u0531\u0576\u057f\u0565\u057d\u0565\u056c",
|
||||
"Add to Dictionary": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0562\u0561\u057c\u0561\u0580\u0561\u0576\u0578\u0582\u0574",
|
||||
"Insert row before": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u057f\u0578\u0572 \u057e\u0565\u0580\u0587\u0578\u0582\u0574",
|
||||
"Rows": "\u054f\u0578\u0572\u0565\u0580",
|
||||
"Height": "\u0532\u0561\u0580\u0571\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Paste row after": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u057f\u0578\u0572\u0568 \u0576\u0565\u0580\u0584\u0587\u0578\u0582\u0574",
|
||||
"Alignment": "\u0540\u0561\u057e\u0561\u057d\u0561\u0580\u0565\u0581\u0578\u0582\u0574",
|
||||
"Border color": "\u0535\u0566\u0580\u0561\u0563\u056b\u056e",
|
||||
"Column group": "\u054d\u0575\u0578\u0582\u0576\u0575\u0561\u056f\u0576\u0565\u0580\u056b \u056d\u0578\u0582\u0574\u0562",
|
||||
"Row": "\u054f\u0578\u0572",
|
||||
"Insert column before": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u0578\u0580 \u057d\u0575\u0578\u0582\u0576 \u0571\u0561\u056d\u056b\u0581",
|
||||
"Split cell": "\u0532\u0561\u056a\u0561\u0576\u0565\u056c \u057e\u0561\u0576\u0564\u0561\u056f\u0568",
|
||||
"Cell padding": "\u0546\u0565\u0580\u0584\u056b\u0576 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Cell spacing": "\u0531\u0580\u057f\u0561\u0584\u056b\u0576 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Row type": "\u054f\u0578\u0572\u056b \u057f\u056b\u057a",
|
||||
"Insert table": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0561\u0572\u0575\u0578\u0582\u057d\u0561\u056f",
|
||||
"Body": "\u054a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Caption": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580",
|
||||
"Footer": "\u0531\u0572\u0575\u0578\u0582\u057d\u0561\u056f\u056b \u057d\u057f\u0578\u0580\u056b\u0576 \u0570\u0561\u057f\u057e\u0561\u056e",
|
||||
"Delete row": "\u054b\u0576\u057b\u0565\u056c \u057f\u0578\u0572\u0568",
|
||||
"Paste row before": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u057f\u0578\u0572\u0568 \u057e\u0565\u0580\u0587\u0578\u0582\u0574",
|
||||
"Scope": "Scope",
|
||||
"Delete table": "\u054b\u0576\u057b\u0565\u056c \u0561\u0572\u0575\u0578\u0582\u057d\u0561\u056f\u0568",
|
||||
"H Align": "\u0540. \u0540\u0561\u057e\u0561\u057d\u0561\u0580\u0565\u0581\u0578\u0582\u0574",
|
||||
"Top": "\u054e\u0565\u0580\u0587",
|
||||
"Header cell": "\u054e\u0565\u0580\u0576\u0561\u0563\u0580\u056b \u057e\u0561\u0576\u0564\u0561\u056f\u0576\u0565\u0580",
|
||||
"Column": "\u054d\u0575\u0578\u0582\u0576\u0575\u0561\u056f",
|
||||
"Row group": "\u054f\u0578\u0572\u0565\u0580\u056b \u056d\u0578\u0582\u0574\u0562",
|
||||
"Cell": "\u054e\u0561\u0576\u0564\u0561\u056f",
|
||||
"Middle": "\u0544\u0565\u057b\u057f\u0565\u0572",
|
||||
"Cell type": "\u054e\u0561\u0576\u0564\u0561\u056f\u056b \u057f\u056b\u057a",
|
||||
"Copy row": "\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u057f\u0578\u0572\u0568",
|
||||
"Row properties": "\u054f\u0578\u0572\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568",
|
||||
"Table properties": "\u0531\u0572\u0575\u0578\u0582\u057d\u0561\u056f\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568",
|
||||
"Bottom": "\u0546\u0565\u0580\u0584\u0587",
|
||||
"V Align": "\u0548\u0582. \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0565\u0581\u0578\u0582\u0574",
|
||||
"Header": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580",
|
||||
"Right": "\u0531\u057b",
|
||||
"Insert column after": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u0578\u0580 \u057d\u0575\u0578\u0582\u0576 \u0561\u057b\u056b\u0581",
|
||||
"Cols": "\u054d\u0575\u0578\u0582\u0576\u0575\u0561\u056f\u0576\u0565\u0580",
|
||||
"Insert row after": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u057f\u0578\u0572 \u0576\u0565\u0580\u0584\u0587\u0578\u0582\u0574",
|
||||
"Width": "\u053c\u0561\u0575\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
|
||||
"Cell properties": "\u054e\u0561\u0576\u0564\u0561\u056f\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568",
|
||||
"Left": "\u0541\u0561\u056d",
|
||||
"Cut row": "\u053f\u057f\u0580\u0565\u056c \u057f\u0578\u0572\u0568",
|
||||
"Delete column": "\u0541\u0576\u057b\u0565\u056c \u057d\u0575\u0578\u0582\u0576\u0568",
|
||||
"Center": "\u053f\u0565\u0576\u057f\u0580\u0578\u0576",
|
||||
"Merge cells": "\u0544\u056b\u0561\u057e\u0578\u0580\u0565\u056c \u057e\u0561\u0576\u0564\u0561\u056f\u0576\u0565\u0580\u0568",
|
||||
"Insert template": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0571\u0587\u0561\u0576\u0574\u0578\u0582\u0577",
|
||||
"Templates": "\u0541\u0587\u0561\u0576\u0574\u0578\u0582\u0577\u0576\u0565\u0580",
|
||||
"Background color": "\u0556\u0578\u0576\u056b \u0563\u0578\u0582\u0575\u0576",
|
||||
"Custom...": "\u0531\u0575\u056c...",
|
||||
"Custom color": "\u0531\u0575\u056c \u0563\u0578\u0582\u0575\u0576",
|
||||
"No color": "\u0531\u0576\u0563\u0578\u0582\u0575\u0576",
|
||||
"Text color": "\u054f\u0561\u057c\u056b \u0563\u0578\u0582\u0575\u0576",
|
||||
"Show blocks": "\u0551\u0578\u0582\u0581\u0561\u0564\u0580\u0565\u056c \u0562\u056c\u0578\u056f\u0576\u0565\u0580\u0568",
|
||||
"Show invisible characters": "\u0551\u0578\u0582\u0575\u0581 \u057f\u0561\u056c \u0561\u0576\u057f\u0565\u057d\u0561\u0576\u0565\u056c\u056b \u057d\u056b\u0574\u057e\u0578\u056c\u0576\u0565\u0580\u0568",
|
||||
"Words: {0}": "\u0532\u0561\u057c\u0565\u0580\u056b \u0584\u0561\u0576\u0561\u056f: {0}",
|
||||
"Insert": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c",
|
||||
"File": "\u0556\u0561\u0575\u056c",
|
||||
"Edit": "\u053d\u0574\u0562\u0561\u0563\u0580\u0565\u056c",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u054f\u0565\u0584\u057d\u057f\u0561\u0575\u056b\u0576 \u0564\u0561\u0577\u057f\u0589 \u054d\u0565\u0572\u0574\u0565\u0584 ALT-F9 \u0574\u0565\u0576\u0575\u0578\u0582\u056b \u0570\u0561\u0574\u0561\u0580\u0589 ALT-F10 \u0563\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580\u056b \u057e\u0561\u0570\u0561\u0576\u0561\u056f\u0589 \u054d\u0565\u0572\u0574\u0565\u0584 ALT-0 \u0585\u0563\u0576\u0578\u0582\u0569\u0575\u0561\u0576 \u0570\u0561\u0574\u0561\u0580",
|
||||
"Tools": "\u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580",
|
||||
"View": "\u054f\u0565\u057d\u0584",
|
||||
"Table": "\u0531\u0572\u0575\u0578\u0582\u057d\u0561\u056f",
|
||||
"Format": "\u0556\u0578\u0580\u0574\u0561\u057f"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/id.js
Normal file
219
data/web/rc/program/js/tinymce/langs/id.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('id',{
|
||||
"Cut": "Penggal",
|
||||
"Heading 5": "Judul 5",
|
||||
"Header 2": "Judul 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browser anda tidak mendukung akses langsung ke clipboard. Silahkan gunakan Ctrl+X\/C\/V dari keyboard.",
|
||||
"Heading 4": "Judul 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Judul 2",
|
||||
"Paste": "Tempel",
|
||||
"Close": "Tutup",
|
||||
"Font Family": "Jenis Huruf",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Rata kanan",
|
||||
"New document": "Dokumen baru",
|
||||
"Blockquote": "Kutipan",
|
||||
"Numbered list": "Daftar bernomor",
|
||||
"Heading 1": "Judul 1",
|
||||
"Headings": "Judul",
|
||||
"Increase indent": "Tambah inden",
|
||||
"Formats": "Format",
|
||||
"Headers": "Judul",
|
||||
"Select all": "Pilih semua",
|
||||
"Header 3": "Judul 3",
|
||||
"Blocks": "Blok",
|
||||
"Undo": "Batal",
|
||||
"Strikethrough": "Coret",
|
||||
"Bullet list": "Daftar bersimbol",
|
||||
"Header 1": "Judul 1",
|
||||
"Superscript": "Superskrip",
|
||||
"Clear formatting": "Hapus format",
|
||||
"Font Sizes": "Ukuran Huruf",
|
||||
"Subscript": "Subskrip",
|
||||
"Header 6": "Judul 6",
|
||||
"Redo": "Ulang",
|
||||
"Paragraph": "Paragraf",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Tebal",
|
||||
"Code": "Kode",
|
||||
"Italic": "Miring",
|
||||
"Align center": "Rata tengah",
|
||||
"Header 5": "Judul 5",
|
||||
"Heading 6": "Judul 6",
|
||||
"Heading 3": "Judul 3",
|
||||
"Decrease indent": "Turunkan inden",
|
||||
"Header 4": "Judul 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Penempelan sekarang dalam modus teks biasa. Konten sekarang akan disisipkan sebagai teks biasa sampai Anda memadamkan pilihan ini.",
|
||||
"Underline": "Garis bawah",
|
||||
"Cancel": "Batal",
|
||||
"Justify": "Penuh",
|
||||
"Inline": "Baris",
|
||||
"Copy": "Salin",
|
||||
"Align left": "Rata kiri",
|
||||
"Visual aids": "Alat bantu visual",
|
||||
"Lower Greek": "Huruf Kecil Yunani",
|
||||
"Square": "Kotak",
|
||||
"Default": "Bawaan",
|
||||
"Lower Alpha": "Huruf Kecil",
|
||||
"Circle": "Lingkaran",
|
||||
"Disc": "Cakram",
|
||||
"Upper Alpha": "Huruf Besar",
|
||||
"Upper Roman": "Huruf Besar Romawi",
|
||||
"Lower Roman": "Huruf Kecil Romawi",
|
||||
"Name": "Nama",
|
||||
"Anchor": "Jangkar",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Anda memiliki perubahan yang belum disimpan, yakin ingin beralih ?",
|
||||
"Restore last draft": "Muat kembali draft sebelumnya",
|
||||
"Special character": "Spesial karakter",
|
||||
"Source code": "Kode sumber",
|
||||
"B": "B",
|
||||
"R": "M",
|
||||
"G": "H",
|
||||
"Color": "Warna",
|
||||
"Right to left": "Kanan ke kiri",
|
||||
"Left to right": "Kiri ke kanan",
|
||||
"Emoticons": "Emotikon",
|
||||
"Robots": "Robot",
|
||||
"Document properties": "Properti dokumwn",
|
||||
"Title": "Judul",
|
||||
"Keywords": "Kata kunci",
|
||||
"Encoding": "Enkoding",
|
||||
"Description": "Deskripsi",
|
||||
"Author": "Penulis",
|
||||
"Fullscreen": "Layar penuh",
|
||||
"Horizontal line": "Garis horisontal",
|
||||
"Horizontal space": "Spasi horisontal",
|
||||
"Insert\/edit image": "Sisip\/sunting gambar",
|
||||
"General": "Umum",
|
||||
"Advanced": "Lanjutan",
|
||||
"Source": "Sumber",
|
||||
"Border": "Batas",
|
||||
"Constrain proportions": "Samakan proporsi",
|
||||
"Vertical space": "Spasi vertikal",
|
||||
"Image description": "Deskripsi gambar",
|
||||
"Style": "Gaya",
|
||||
"Dimensions": "Dimensi",
|
||||
"Insert image": "Sisipkan gambar",
|
||||
"Zoom in": "Perbesar",
|
||||
"Contrast": "Kontras",
|
||||
"Back": "Kembali",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Balik horisontal",
|
||||
"Resize": "Ubah ukuran",
|
||||
"Sharpen": "Ketajaman",
|
||||
"Zoom out": "Perkecil",
|
||||
"Image options": "Opsi gambar",
|
||||
"Apply": "Terapkan",
|
||||
"Brightness": "Kecerahan",
|
||||
"Rotate clockwise": "Putar searahjarumjam",
|
||||
"Rotate counterclockwise": "Putar berlawananjarumjam",
|
||||
"Edit image": "Sunting gambar",
|
||||
"Color levels": "Tingakt warna",
|
||||
"Crop": "Krop",
|
||||
"Orientation": "Orientasi",
|
||||
"Flip vertically": "Balik vertikal",
|
||||
"Invert": "Kebalikan",
|
||||
"Insert date\/time": "Sisipkan tanggal\/waktu",
|
||||
"Remove link": "Buang tautan",
|
||||
"Url": "Tautan",
|
||||
"Text to display": "Teks yang ditampilkan",
|
||||
"Anchors": "Jangkar",
|
||||
"Insert link": "Sisipkan tautan",
|
||||
"New window": "Jendela baru",
|
||||
"None": "Tidak ada",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Tautan yang anda masukkan sepertinya adalah tautan eksternal. Apakah Anda ingin menambahkan prefiks http:\/\/ yang dibutuhkan?",
|
||||
"Target": "Jendela tujuan",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Tautan yang anda masukkan sepertinya adalah alamat email. Apakah Anda ingin menambahkan prefiks mailto: yang dibutuhkan?",
|
||||
"Insert\/edit link": "Sisip\/sunting tautan",
|
||||
"Insert\/edit video": "Sisip\/sunting video",
|
||||
"Poster": "Penulis",
|
||||
"Alternative source": "Sumber alternatif",
|
||||
"Paste your embed code below:": "Tempel kode yang diembed dibawah ini:",
|
||||
"Insert video": "Sisipkan video",
|
||||
"Embed": "Embed",
|
||||
"Nonbreaking space": "Spasi",
|
||||
"Page break": "Baris baru",
|
||||
"Paste as text": "Tempel sebagai teks biasa",
|
||||
"Preview": "Pratinjau",
|
||||
"Print": "Cetak",
|
||||
"Save": "Simpan",
|
||||
"Could not find the specified string.": "Tidak dapat menemukan string yang dimaksud.",
|
||||
"Replace": "Ganti",
|
||||
"Next": "Berikutnya",
|
||||
"Whole words": "Semua kata",
|
||||
"Find and replace": "Cari dan ganti",
|
||||
"Replace with": "Ganti dengan",
|
||||
"Find": "Cari",
|
||||
"Replace all": "Ganti semua",
|
||||
"Match case": "Samakan besar kecil huruf",
|
||||
"Prev": "Sebelumnya",
|
||||
"Spellcheck": "Periksa ejaan",
|
||||
"Finish": "Selesai",
|
||||
"Ignore all": "Abaikan semua",
|
||||
"Ignore": "Abaikan",
|
||||
"Add to Dictionary": "Tambahkan ke kamus",
|
||||
"Insert row before": "Sisipkan baris sebelum",
|
||||
"Rows": "Baris",
|
||||
"Height": "Tinggi",
|
||||
"Paste row after": "Tempel baris setelah",
|
||||
"Alignment": "Penjajaran",
|
||||
"Border color": "Warna batas",
|
||||
"Column group": "Kelompok kolom",
|
||||
"Row": "Baris",
|
||||
"Insert column before": "Sisipkan kolom sebelum",
|
||||
"Split cell": "Bagi sel",
|
||||
"Cell padding": "Lapisan sel",
|
||||
"Cell spacing": "Spasi sel ",
|
||||
"Row type": "Tipe baris",
|
||||
"Insert table": "Sisipkan tabel",
|
||||
"Body": "Body",
|
||||
"Caption": "Caption",
|
||||
"Footer": "Footer",
|
||||
"Delete row": "Hapus baris",
|
||||
"Paste row before": "Tempel baris sebelum",
|
||||
"Scope": "Skup",
|
||||
"Delete table": "Hapus tabel",
|
||||
"H Align": "Rata Samping",
|
||||
"Top": "Atas",
|
||||
"Header cell": "Judul sel",
|
||||
"Column": "Kolom",
|
||||
"Row group": "Kelompok baris",
|
||||
"Cell": "Sel",
|
||||
"Middle": "Tengah",
|
||||
"Cell type": "Tipe sel",
|
||||
"Copy row": "Salin baris",
|
||||
"Row properties": "Properti baris",
|
||||
"Table properties": "Properti tabel",
|
||||
"Bottom": "Bawah",
|
||||
"V Align": "Rata Atas",
|
||||
"Header": "Judul",
|
||||
"Right": "Kanan",
|
||||
"Insert column after": "Sisipkan kolom setelah",
|
||||
"Cols": "Kolom",
|
||||
"Insert row after": "Sisipkan baris setelah",
|
||||
"Width": "Lebar",
|
||||
"Cell properties": "Properti sel",
|
||||
"Left": "Kiri",
|
||||
"Cut row": "Penggal baris",
|
||||
"Delete column": "Hapus kolom",
|
||||
"Center": "Tengah",
|
||||
"Merge cells": "Gabung sel",
|
||||
"Insert template": "Sisipkan templat",
|
||||
"Templates": "Templat",
|
||||
"Background color": "Warna latar",
|
||||
"Custom...": "Atur sendiri...",
|
||||
"Custom color": "Warna sendiri",
|
||||
"No color": "Tidak berwarna",
|
||||
"Text color": "Warna teks",
|
||||
"Show blocks": "Tampilkan blok",
|
||||
"Show invisible characters": "Tampilkan karakter tak tampak",
|
||||
"Words: {0}": "Kata: {0}",
|
||||
"Insert": "Sisip",
|
||||
"File": "Berkas",
|
||||
"Edit": "Sunting",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Area teks kaya. Tekan ALT-F9 untuk menu. Tekan ALT-F10 untuk toolbar. Tekan ALT-0 untuk bantuan",
|
||||
"Tools": "Alat",
|
||||
"View": "Tampilan",
|
||||
"Table": "Tabel",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/is_IS.js
Normal file
219
data/web/rc/program/js/tinymce/langs/is_IS.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('is_IS',{
|
||||
"Cut": "Skera",
|
||||
"Heading 5": "Fyrirs\u00f6gn 5",
|
||||
"Header 2": "Fyrirs\u00f6gn 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Vafrinn \u00feinn sty\u00f0ur ekki beinann a\u00f0gang a\u00f0 klippibor\u00f0inu. Nota\u00f0u Ctrl-X\/C\/V \u00e1 lyklabor\u00f0inu \u00ed sta\u00f0inn.",
|
||||
"Heading 4": "Fyrirs\u00f6gn 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Fyrirs\u00f6gn 2",
|
||||
"Paste": "L\u00edma",
|
||||
"Close": "Loka",
|
||||
"Font Family": "Letur fj\u00f6lskylda",
|
||||
"Pre": "\u00d3st\u00edla\u00f0",
|
||||
"Align right": "H\u00e6grijafna",
|
||||
"New document": "N\u00fdtt skjal",
|
||||
"Blockquote": "Blokk",
|
||||
"Numbered list": "N\u00famera\u00f0ur listi",
|
||||
"Heading 1": "Fyrirs\u00f6gn 1",
|
||||
"Headings": "Fyrirsagnir",
|
||||
"Increase indent": "Auka inndr\u00e1tt",
|
||||
"Formats": "Sni\u00f0m\u00e1t",
|
||||
"Headers": "Fyrirsagnir",
|
||||
"Select all": "Velja allt",
|
||||
"Header 3": "Fyrirs\u00f6gn 3",
|
||||
"Blocks": "Blokkir",
|
||||
"Undo": "Afturkalla",
|
||||
"Strikethrough": "Yfirstrika\u00f0",
|
||||
"Bullet list": "K\u00falu listi",
|
||||
"Header 1": "Fyrirs\u00f6gn 1",
|
||||
"Superscript": "Uppskrift",
|
||||
"Clear formatting": "Hreinsa sni\u00f0",
|
||||
"Font Sizes": "Leturst\u00e6r\u00f0",
|
||||
"Subscript": "Ni\u00f0urskrifa\u00f0",
|
||||
"Header 6": "Fyrirs\u00f6gn 6",
|
||||
"Redo": "Endurkalla",
|
||||
"Paragraph": "M\u00e1lsgrein",
|
||||
"Ok": "Sta\u00f0festa",
|
||||
"Bold": "Feitletra\u00f0",
|
||||
"Code": "K\u00f3\u00f0i",
|
||||
"Italic": "Skr\u00e1letra\u00f0",
|
||||
"Align center": "Mi\u00f0jujafna",
|
||||
"Header 5": "Fyrirs\u00f6gn 5",
|
||||
"Heading 6": "Fyrirs\u00f6gn 6",
|
||||
"Heading 3": "Fyrirs\u00f6gn 3",
|
||||
"Decrease indent": "Minnka inndr\u00e1tt",
|
||||
"Header 4": "Fyrirs\u00f6gn 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "L\u00edming er \u00ed l\u00e1tlausum ham. Innihald ver\u00f0ur l\u00edmt sem l\u00e1tlaus texti \u00feanga\u00f0 til \u00fe\u00fa afvirkjar \u00feennan m\u00f6guleika.",
|
||||
"Underline": "Undirstrika\u00f0",
|
||||
"Cancel": "H\u00e6tta vi\u00f0",
|
||||
"Justify": "Jafna",
|
||||
"Inline": "Inndregi\u00f0",
|
||||
"Copy": "Afrita",
|
||||
"Align left": "Vinstrijafna",
|
||||
"Visual aids": "Sj\u00f3nr\u00e6n hj\u00e1lp",
|
||||
"Lower Greek": "L\u00e1gstafir Gr\u00edskir",
|
||||
"Square": "Ferningur",
|
||||
"Default": "Sj\u00e1lfgefi\u00f0",
|
||||
"Lower Alpha": "L\u00e1gstafir Alpha",
|
||||
"Circle": "Hringur",
|
||||
"Disc": "Diskur",
|
||||
"Upper Alpha": "H\u00e1stafir Alpha",
|
||||
"Upper Roman": "H\u00e1stafir R\u00f3mverskir",
|
||||
"Lower Roman": "L\u00e1gstafir R\u00f3mverskir",
|
||||
"Name": "Nafn",
|
||||
"Anchor": "Akkeri",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u00dea\u00f0 eru \u00f3vista\u00f0ar breytingar, ertu viss um a\u00f0 \u00fe\u00fa viljir vafra \u00ed burtu?",
|
||||
"Restore last draft": "Endurkalla s\u00ed\u00f0asta uppkast",
|
||||
"Special character": "S\u00e9rstakir stafir",
|
||||
"Source code": "Frumk\u00f3\u00f0i",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Litur",
|
||||
"Right to left": "H\u00e6gri til vinstri",
|
||||
"Left to right": "Vinstri til h\u00e6gri",
|
||||
"Emoticons": "Tilfinningar",
|
||||
"Robots": "Leitarv\u00e9lar",
|
||||
"Document properties": "Eigindi skjals",
|
||||
"Title": "Titill",
|
||||
"Keywords": "Lykilor\u00f0",
|
||||
"Encoding": "Umbreyting",
|
||||
"Description": "L\u00fdsing",
|
||||
"Author": "H\u00f6fundur",
|
||||
"Fullscreen": "Fylla skj\u00e1",
|
||||
"Horizontal line": "L\u00e1r\u00e9tt l\u00edna",
|
||||
"Horizontal space": "L\u00e1r\u00e9tt bil",
|
||||
"Insert\/edit image": "Setja inn\/breyta mynd",
|
||||
"General": "Almennt",
|
||||
"Advanced": "\u00cdtarlegt",
|
||||
"Source": "Sl\u00f3\u00f0i",
|
||||
"Border": "Rammi",
|
||||
"Constrain proportions": "Halda hlutf\u00f6llum",
|
||||
"Vertical space": "L\u00f3\u00f0r\u00e9tt bil",
|
||||
"Image description": "L\u00fdsing myndar",
|
||||
"Style": "St\u00edll",
|
||||
"Dimensions": "Hlutf\u00f6ll",
|
||||
"Insert image": "Setja inn mynd",
|
||||
"Zoom in": "\u00deysja inn",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Til baka",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Sn\u00faa l\u00f3\u00f0r\u00e9tt",
|
||||
"Resize": "Breyta st\u00e6r\u00f0",
|
||||
"Sharpen": "Skerpa",
|
||||
"Zoom out": "\u00deysja \u00fat",
|
||||
"Image options": "Valm\u00f6guleikar myndar",
|
||||
"Apply": "Sta\u00f0festa",
|
||||
"Brightness": "Birtustig",
|
||||
"Rotate clockwise": "Sn\u00faa r\u00e9tts\u00e6lis",
|
||||
"Rotate counterclockwise": "Sn\u00faa rangs\u00e6lis",
|
||||
"Edit image": "Breyta mynd",
|
||||
"Color levels": "Litastu\u00f0lar",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Sn\u00faa l\u00f3\u00f0r\u00e9tt",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "Setja inn dagsetningu\/t\u00edma",
|
||||
"Remove link": "Fjarl\u00e6gja hlekk",
|
||||
"Url": "Veffang",
|
||||
"Text to display": "Texti til a\u00f0 s\u00fdna",
|
||||
"Anchors": "Akkeri",
|
||||
"Insert link": "Setja inn hlekk",
|
||||
"New window": "N\u00fdr gluggi",
|
||||
"None": "Ekkert",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Hlekkurinn sem \u00fe\u00fa rita\u00f0ir inn l\u00fdtur \u00fat fyrir a\u00f0 vera ytri hlekkur. Viltu b\u00e6ta vi\u00f0 forskeytinu http:\/\/ ?",
|
||||
"Target": "Mi\u00f0",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Hlekkurinn sem \u00fe\u00fa rita\u00f0ir inn l\u00fdtur \u00fat fyrir a\u00f0 vera netfang. Viltu b\u00e6ta vi\u00f0 forskeytinu mailto: ?",
|
||||
"Insert\/edit link": "Setja inn\/breyta hlekk",
|
||||
"Insert\/edit video": "Setja inn\/fjarl\u00e6gja myndband",
|
||||
"Poster": "Plakat",
|
||||
"Alternative source": "Valkv\u00e6\u00f0ur frumk\u00f3\u00f0i",
|
||||
"Paste your embed code below:": "L\u00edma frumk\u00f3\u00f0a fyrir ne\u00f0an:",
|
||||
"Insert video": "Setja inn myndband",
|
||||
"Embed": "Hengja vi\u00f0",
|
||||
"Nonbreaking space": "Bil sem brotnar ekki",
|
||||
"Page break": "S\u00ed\u00f0ubrot",
|
||||
"Paste as text": "L\u00edma sem texta",
|
||||
"Preview": "Forsko\u00f0un",
|
||||
"Print": "Prenta",
|
||||
"Save": "Vista",
|
||||
"Could not find the specified string.": "Fann ekki umbe\u00f0inn streng.",
|
||||
"Replace": "Skipta \u00fat",
|
||||
"Next": "N\u00e6sti",
|
||||
"Whole words": "Heil or\u00f0",
|
||||
"Find and replace": "Finna og skipta \u00fat",
|
||||
"Replace with": "Skipta \u00fat me\u00f0",
|
||||
"Find": "Finna",
|
||||
"Replace all": "Skipta \u00f6llum \u00fat",
|
||||
"Match case": "Samanbur\u00f0ur",
|
||||
"Prev": "Fyrri",
|
||||
"Spellcheck": "Villuleit",
|
||||
"Finish": "Lj\u00faka",
|
||||
"Ignore all": "Hunsa allt",
|
||||
"Ignore": "Hunsa",
|
||||
"Add to Dictionary": "B\u00e6ta vi\u00f0 or\u00f0ab\u00f3k",
|
||||
"Insert row before": "Setja inn r\u00f6\u00f0 fyrir framan",
|
||||
"Rows": "Ra\u00f0ir",
|
||||
"Height": "H\u00e6\u00f0",
|
||||
"Paste row after": "L\u00edma r\u00f6\u00f0 fyrir aftan",
|
||||
"Alignment": "J\u00f6fnun",
|
||||
"Border color": "Litur \u00e1 ramma",
|
||||
"Column group": "H\u00f3pur d\u00e1lks",
|
||||
"Row": "R\u00f6\u00f0",
|
||||
"Insert column before": "Setja inn d\u00e1lk fyrir framan",
|
||||
"Split cell": "Deila reiti",
|
||||
"Cell padding": "R\u00fdmi reits",
|
||||
"Cell spacing": "Bil \u00ed reit",
|
||||
"Row type": "Tegund ra\u00f0ar",
|
||||
"Insert table": "Setja inn t\u00f6flu",
|
||||
"Body": "Innihald",
|
||||
"Caption": "Titill",
|
||||
"Footer": "Ne\u00f0anm\u00e1l",
|
||||
"Delete row": "Ey\u00f0a r\u00f6\u00f0",
|
||||
"Paste row before": "L\u00edma r\u00f6\u00f0 fyrir framan",
|
||||
"Scope": "Gildissvi\u00f0",
|
||||
"Delete table": "Ey\u00f0a t\u00f6flu",
|
||||
"H Align": "L\u00e1r\u00e9tt j\u00f6fnun",
|
||||
"Top": "Efst",
|
||||
"Header cell": "Reitarhaus",
|
||||
"Column": "D\u00e1lkur",
|
||||
"Row group": "H\u00f3pur ra\u00f0ar",
|
||||
"Cell": "Reitur",
|
||||
"Middle": "Mi\u00f0ja",
|
||||
"Cell type": "Tegund reits",
|
||||
"Copy row": "Afrita r\u00f6\u00f0",
|
||||
"Row properties": "Stillingar ra\u00f0ar",
|
||||
"Table properties": "Stillingar t\u00f6flu",
|
||||
"Bottom": "Ne\u00f0st",
|
||||
"V Align": "L\u00f3\u00f0r\u00e9tt j\u00f6fnun",
|
||||
"Header": "Fyrirs\u00f6gn",
|
||||
"Right": "H\u00e6gri",
|
||||
"Insert column after": "Setja inn d\u00e1lk fyrir aftan",
|
||||
"Cols": "D\u00e1lkar",
|
||||
"Insert row after": "Setja inn r\u00f6\u00f0 fyrir aftan",
|
||||
"Width": "Breidd",
|
||||
"Cell properties": "Stillingar reits",
|
||||
"Left": "Vinstri",
|
||||
"Cut row": "Klippa r\u00f6\u00f0",
|
||||
"Delete column": "Ey\u00f0a d\u00e1lki",
|
||||
"Center": "Mi\u00f0ja",
|
||||
"Merge cells": "Sameina reiti",
|
||||
"Insert template": "Setja inn sni\u00f0m\u00e1t",
|
||||
"Templates": "Sni\u00f0m\u00e1t",
|
||||
"Background color": "Bakgrunnslitur",
|
||||
"Custom...": "S\u00e9rsni\u00f0i\u00f0...",
|
||||
"Custom color": "S\u00e9rsni\u00f0in litur",
|
||||
"No color": "Enginn litur",
|
||||
"Text color": "Litur texta",
|
||||
"Show blocks": "S\u00fdna kubba",
|
||||
"Show invisible characters": "S\u00fdna \u00f3s\u00fdnilega stafi",
|
||||
"Words: {0}": "Or\u00f0: {0}",
|
||||
"Insert": "Setja inn",
|
||||
"File": "Skjal",
|
||||
"Edit": "Breyta",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textasv\u00e6\u00f0i \u00ed \u00edtarham. \u00ddttu \u00e1 ALT-F9 fyrir valmynd. \u00ddttu \u00e1 ALT-F10 fyrir t\u00f3lastiku. \u00ddttu \u00e1 ALT-0 fyrir a\u00f0sto\u00f0.",
|
||||
"Tools": "T\u00f3l",
|
||||
"View": "Sko\u00f0a",
|
||||
"Table": "Tafla",
|
||||
"Format": "Sni\u00f0"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/it.js
Normal file
219
data/web/rc/program/js/tinymce/langs/it.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('it',{
|
||||
"Cut": "Taglia",
|
||||
"Heading 5": "Intestazione 5",
|
||||
"Header 2": "Header 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Il tuo browser non supporta l'accesso diretto negli Appunti. Per favore usa i tasti di scelta rapida Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Intestazione 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Intestazione 2",
|
||||
"Paste": "Incolla",
|
||||
"Close": "Chiudi",
|
||||
"Font Family": "Famiglia font",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Allinea a Destra",
|
||||
"New document": "Nuovo Documento",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "Elenchi Numerati",
|
||||
"Heading 1": "Intestazione 1",
|
||||
"Headings": "Intestazioni",
|
||||
"Increase indent": "Aumenta Rientro",
|
||||
"Formats": "Formattazioni",
|
||||
"Headers": "Intestazioni",
|
||||
"Select all": "Seleziona Tutto",
|
||||
"Header 3": "Intestazione 3",
|
||||
"Blocks": "Blocchi",
|
||||
"Undo": "Indietro",
|
||||
"Strikethrough": "Barrato",
|
||||
"Bullet list": "Elenchi Puntati",
|
||||
"Header 1": "Intestazione 1",
|
||||
"Superscript": "Apice",
|
||||
"Clear formatting": "Cancella Formattazione",
|
||||
"Font Sizes": "Dimensioni font",
|
||||
"Subscript": "Pedice",
|
||||
"Header 6": "Intestazione 6",
|
||||
"Redo": "Ripeti",
|
||||
"Paragraph": "Paragrafo",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Grassetto",
|
||||
"Code": "Codice",
|
||||
"Italic": "Corsivo",
|
||||
"Align center": "Allinea al Cento",
|
||||
"Header 5": "Intestazione 5",
|
||||
"Heading 6": "Intestazione 6",
|
||||
"Heading 3": "Intestazione 3",
|
||||
"Decrease indent": "Riduci Rientro",
|
||||
"Header 4": "Intestazione 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Incolla \u00e8 in modalit\u00e0 testo normale. I contenuti sono incollati come testo normale se non disattivi l'opzione.",
|
||||
"Underline": "Sottolineato",
|
||||
"Cancel": "Annulla",
|
||||
"Justify": "Giustifica",
|
||||
"Inline": "Inlinea",
|
||||
"Copy": "Copia",
|
||||
"Align left": "Allinea a Sinistra",
|
||||
"Visual aids": "Elementi Visivi",
|
||||
"Lower Greek": "Greek Minore",
|
||||
"Square": "Quadrato",
|
||||
"Default": "Default",
|
||||
"Lower Alpha": "Alpha Minore",
|
||||
"Circle": "Cerchio",
|
||||
"Disc": "Disco",
|
||||
"Upper Alpha": "Alpha Superiore",
|
||||
"Upper Roman": "Roman Superiore",
|
||||
"Lower Roman": "Roman Minore",
|
||||
"Name": "Nome",
|
||||
"Anchor": "Fissa",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Non hai salvato delle modifiche, sei sicuro di andartene?",
|
||||
"Restore last draft": "Ripristina l'ultima bozza.",
|
||||
"Special character": "Carattere Speciale",
|
||||
"Source code": "Codice Sorgente",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Colore",
|
||||
"Right to left": "Da Destra a Sinistra",
|
||||
"Left to right": "Da Sinistra a Destra",
|
||||
"Emoticons": "Emoction",
|
||||
"Robots": "Robot",
|
||||
"Document properties": "Propriet\u00e0 Documento",
|
||||
"Title": "Titolo",
|
||||
"Keywords": "Parola Chiave",
|
||||
"Encoding": "Codifica",
|
||||
"Description": "Descrizione",
|
||||
"Author": "Autore",
|
||||
"Fullscreen": "Schermo Intero",
|
||||
"Horizontal line": "Linea Orizzontale",
|
||||
"Horizontal space": "Spazio Orizzontale",
|
||||
"Insert\/edit image": "Aggiungi\/Modifica Immagine",
|
||||
"General": "Generale",
|
||||
"Advanced": "Avanzato",
|
||||
"Source": "Fonte",
|
||||
"Border": "Bordo",
|
||||
"Constrain proportions": "Mantieni Proporzioni",
|
||||
"Vertical space": "Spazio Verticale",
|
||||
"Image description": "Descrizione Immagine",
|
||||
"Style": "Stile",
|
||||
"Dimensions": "Dimenzioni",
|
||||
"Insert image": "Inserisci immagine",
|
||||
"Zoom in": "Ingrandisci",
|
||||
"Contrast": "Contrasto",
|
||||
"Back": "Indietro",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Rifletti orizzontalmente",
|
||||
"Resize": "Ridimensiona",
|
||||
"Sharpen": "Contrasta",
|
||||
"Zoom out": "Rimpicciolisci",
|
||||
"Image options": "Opzioni immagine",
|
||||
"Apply": "Applica",
|
||||
"Brightness": "Luminosit\u00e0",
|
||||
"Rotate clockwise": "Ruota in senso orario",
|
||||
"Rotate counterclockwise": "Ruota in senso antiorario",
|
||||
"Edit image": "Modifica immagine",
|
||||
"Color levels": "Livelli colore",
|
||||
"Crop": "Taglia",
|
||||
"Orientation": "Orientamento",
|
||||
"Flip vertically": "Rifletti verticalmente",
|
||||
"Invert": "Inverti",
|
||||
"Insert date\/time": "Inserisci Data\/Ora",
|
||||
"Remove link": "Rimuovi link",
|
||||
"Url": "Url",
|
||||
"Text to display": "Testo da Visualizzare",
|
||||
"Anchors": "Anchors",
|
||||
"Insert link": "Inserisci il Link",
|
||||
"New window": "Nuova Finestra",
|
||||
"None": "No",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL inserito sembra essere un collegamento esterno. Vuoi aggiungere il prefisso necessario http:\/\/?",
|
||||
"Target": "Target",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL inserito sembra essere un indirizzo email. Vuoi aggiungere il prefisso necessario mailto:?",
|
||||
"Insert\/edit link": "Inserisci\/Modifica Link",
|
||||
"Insert\/edit video": "Inserisci\/Modifica Video",
|
||||
"Poster": "Anteprima",
|
||||
"Alternative source": "Alternativo",
|
||||
"Paste your embed code below:": "Incolla il codice d'incorporamento qui:",
|
||||
"Insert video": "Inserisci Video",
|
||||
"Embed": "Incorporare",
|
||||
"Nonbreaking space": "Spazio unificatore",
|
||||
"Page break": "Interruzione di pagina",
|
||||
"Paste as text": "incolla come testo",
|
||||
"Preview": "Anteprima",
|
||||
"Print": "Stampa",
|
||||
"Save": "Salva",
|
||||
"Could not find the specified string.": "Impossibile trovare la parola specifica.",
|
||||
"Replace": "Sostituisci",
|
||||
"Next": "Successivo",
|
||||
"Whole words": "Parole Sbagliate",
|
||||
"Find and replace": "Trova e Sostituisci",
|
||||
"Replace with": "Sostituisci Con",
|
||||
"Find": "Trova",
|
||||
"Replace all": "Sostituisci Tutto",
|
||||
"Match case": "Maiuscole\/Minuscole ",
|
||||
"Prev": "Precedente",
|
||||
"Spellcheck": "Controllo ortografico",
|
||||
"Finish": "Termina",
|
||||
"Ignore all": "Ignora Tutto",
|
||||
"Ignore": "Ignora",
|
||||
"Add to Dictionary": "Aggiungi al Dizionario",
|
||||
"Insert row before": "Inserisci una Riga Prima",
|
||||
"Rows": "Righe",
|
||||
"Height": "Altezza",
|
||||
"Paste row after": "Incolla una Riga Dopo",
|
||||
"Alignment": "Allineamento",
|
||||
"Border color": "Colore bordo",
|
||||
"Column group": "Gruppo di Colonne",
|
||||
"Row": "Riga",
|
||||
"Insert column before": "Inserisci una Colonna Prima",
|
||||
"Split cell": "Dividi Cella",
|
||||
"Cell padding": "Padding della Cella",
|
||||
"Cell spacing": "Spaziatura della Cella",
|
||||
"Row type": "Tipo di Riga",
|
||||
"Insert table": "Inserisci Tabella",
|
||||
"Body": "Body",
|
||||
"Caption": "Didascalia",
|
||||
"Footer": "Footer",
|
||||
"Delete row": "Cancella Riga",
|
||||
"Paste row before": "Incolla una Riga Prima",
|
||||
"Scope": "Campo",
|
||||
"Delete table": "Cancella Tabella",
|
||||
"H Align": "Allineamento H",
|
||||
"Top": "In alto",
|
||||
"Header cell": "cella d'intestazione",
|
||||
"Column": "Colonna",
|
||||
"Row group": "Gruppo di Righe",
|
||||
"Cell": "Cella",
|
||||
"Middle": "In mezzo",
|
||||
"Cell type": "Tipo di Cella",
|
||||
"Copy row": "Copia Riga",
|
||||
"Row properties": "Propriet\u00e0 della Riga",
|
||||
"Table properties": "Propiet\u00e0 della Tabella",
|
||||
"Bottom": "In fondo",
|
||||
"V Align": "Allineamento V",
|
||||
"Header": "Header",
|
||||
"Right": "Destra",
|
||||
"Insert column after": "Inserisci una Colonna Dopo",
|
||||
"Cols": "Colonne",
|
||||
"Insert row after": "Inserisci una Riga Dopo",
|
||||
"Width": "Larghezza",
|
||||
"Cell properties": "Propiet\u00e0 della Cella",
|
||||
"Left": "Sinistra",
|
||||
"Cut row": "Taglia Riga",
|
||||
"Delete column": "Cancella Colonna",
|
||||
"Center": "Centro",
|
||||
"Merge cells": "Unisci Cella",
|
||||
"Insert template": "Inserisci Template",
|
||||
"Templates": "Template",
|
||||
"Background color": "Colore Background",
|
||||
"Custom...": "Personalizzato...",
|
||||
"Custom color": "Colore personalizzato",
|
||||
"No color": "Nessun colore",
|
||||
"Text color": "Colore Testo",
|
||||
"Show blocks": "Mostra Blocchi",
|
||||
"Show invisible characters": "Mostra Caratteri Invisibili",
|
||||
"Words: {0}": "Parole: {0}",
|
||||
"Insert": "Inserisci",
|
||||
"File": "File",
|
||||
"Edit": "Modifica",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Premi ALT-F9 per il men\u00f9. Premi ALT-F10 per la barra degli strumenti. Premi ALT-0 per l'aiuto.",
|
||||
"Tools": "Strumenti",
|
||||
"View": "Visualiza",
|
||||
"Table": "Tabella",
|
||||
"Format": "Formato"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ja.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ja.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ja',{
|
||||
"Cut": "\u5207\u308a\u53d6\u308a",
|
||||
"Heading 5": "\u898b\u51fa\u3057 5",
|
||||
"Header 2": "\u30d8\u30c3\u30c0\u30fc 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u304a\u4f7f\u3044\u306e\u30d6\u30e9\u30a6\u30b6\u3067\u306f\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u6a5f\u80fd\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u30ad\u30fc\u30dc\u30fc\u30c9\u306e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\uff08Ctrl+X, Ctrl+C, Ctrl+V\uff09\u3092\u304a\u4f7f\u3044\u4e0b\u3055\u3044\u3002",
|
||||
"Heading 4": "\u898b\u51fa\u3057 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u898b\u51fa\u3057 2",
|
||||
"Paste": "\u8cbc\u308a\u4ed8\u3051",
|
||||
"Close": "\u9589\u3058\u308b",
|
||||
"Font Family": "\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u53f3\u5bc4\u305b",
|
||||
"New document": "\u65b0\u898f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8",
|
||||
"Blockquote": "\u5f15\u7528",
|
||||
"Numbered list": "\u756a\u53f7\u4ed8\u304d\u7b87\u6761\u66f8\u304d",
|
||||
"Heading 1": "\u898b\u51fa\u3057 1",
|
||||
"Headings": "\u898b\u51fa\u3057",
|
||||
"Increase indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059",
|
||||
"Formats": "\u66f8\u5f0f",
|
||||
"Headers": "\u30d8\u30c3\u30c0\u30fc",
|
||||
"Select all": "\u5168\u3066\u3092\u9078\u629e",
|
||||
"Header 3": "\u30d8\u30c3\u30c0\u30fc 3",
|
||||
"Blocks": "\u30d6\u30ed\u30c3\u30af",
|
||||
"Undo": "\u5143\u306b\u623b\u3059",
|
||||
"Strikethrough": "\u53d6\u308a\u6d88\u3057\u7dda",
|
||||
"Bullet list": "\u7b87\u6761\u66f8\u304d",
|
||||
"Header 1": "\u30d8\u30c3\u30c0\u30fc 1",
|
||||
"Superscript": "\u4e0a\u4ed8\u304d\u6587\u5b57",
|
||||
"Clear formatting": "\u66f8\u5f0f\u3092\u30af\u30ea\u30a2",
|
||||
"Font Sizes": "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba",
|
||||
"Subscript": "\u4e0b\u4ed8\u304d\u6587\u5b57",
|
||||
"Header 6": "\u30d8\u30c3\u30c0\u30fc 6",
|
||||
"Redo": "\u3084\u308a\u76f4\u3059",
|
||||
"Paragraph": "\u6bb5\u843d",
|
||||
"Ok": "OK",
|
||||
"Bold": "\u592a\u5b57",
|
||||
"Code": "\u30b3\u30fc\u30c9",
|
||||
"Italic": "\u659c\u4f53",
|
||||
"Align center": "\u4e2d\u592e\u63c3\u3048",
|
||||
"Header 5": "\u30d8\u30c3\u30c0\u30fc 5",
|
||||
"Heading 6": "\u898b\u51fa\u3057 6",
|
||||
"Heading 3": "\u898b\u51fa\u3057 3",
|
||||
"Decrease indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059",
|
||||
"Header 4": "\u30d8\u30c3\u30c0\u30fc 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002",
|
||||
"Underline": "\u4e0b\u7dda",
|
||||
"Cancel": "\u30ad\u30e3\u30f3\u30bb\u30eb",
|
||||
"Justify": "\u4e21\u7aef\u63c3\u3048",
|
||||
"Inline": "\u30a4\u30f3\u30e9\u30a4\u30f3",
|
||||
"Copy": "\u30b3\u30d4\u30fc",
|
||||
"Align left": "\u5de6\u5bc4\u305b",
|
||||
"Visual aids": "\u8868\u306e\u67a0\u7dda\u3092\u70b9\u7dda\u3067\u8868\u793a",
|
||||
"Lower Greek": "\u5c0f\u6587\u5b57\u306e\u30ae\u30ea\u30b7\u30e3\u6587\u5b57",
|
||||
"Square": "\u56db\u89d2",
|
||||
"Default": "\u30c7\u30d5\u30a9\u30eb\u30c8",
|
||||
"Lower Alpha": "\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8",
|
||||
"Circle": "\u5186",
|
||||
"Disc": "\u70b9",
|
||||
"Upper Alpha": "\u5927\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8",
|
||||
"Upper Roman": "\u5927\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
|
||||
"Lower Roman": "\u5c0f\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
|
||||
"Name": "\u30a2\u30f3\u30ab\u30fc\u540d",
|
||||
"Anchor": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u672c\u5f53\u306b\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f",
|
||||
"Restore last draft": "\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u5fa9\u6d3b\u3055\u305b\u308b",
|
||||
"Special character": "\u7279\u6b8a\u6587\u5b57",
|
||||
"Source code": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u30ab\u30e9\u30fc",
|
||||
"Right to left": "\u53f3\u304b\u3089\u5de6",
|
||||
"Left to right": "\u5de6\u304b\u3089\u53f3",
|
||||
"Emoticons": "\u7d75\u6587\u5b57",
|
||||
"Robots": "\u30ed\u30dc\u30c3\u30c4",
|
||||
"Document properties": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d7\u30ed\u30d1\u30c6\u30a3",
|
||||
"Title": "\u30bf\u30a4\u30c8\u30eb",
|
||||
"Keywords": "\u30ad\u30fc\u30ef\u30fc\u30c9",
|
||||
"Encoding": "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0",
|
||||
"Description": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5185\u5bb9",
|
||||
"Author": "\u8457\u8005",
|
||||
"Fullscreen": "\u5168\u753b\u9762\u8868\u793a",
|
||||
"Horizontal line": "\u6c34\u5e73\u7f6b\u7dda",
|
||||
"Horizontal space": "\u6a2a\u65b9\u5411\u306e\u4f59\u767d",
|
||||
"Insert\/edit image": "\u753b\u50cf\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"General": "\u4e00\u822c",
|
||||
"Advanced": "\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Source": "\u753b\u50cf\u306e\u30bd\u30fc\u30b9",
|
||||
"Border": "\u67a0\u7dda",
|
||||
"Constrain proportions": "\u7e26\u6a2a\u6bd4\u3092\u4fdd\u6301\u3059\u308b",
|
||||
"Vertical space": "\u7e26\u65b9\u5411\u306e\u4f59\u767d",
|
||||
"Image description": "\u753b\u50cf\u306e\u8aac\u660e\u6587",
|
||||
"Style": "\u30b9\u30bf\u30a4\u30eb",
|
||||
"Dimensions": "\u753b\u50cf\u30b5\u30a4\u30ba\uff08\u6a2a\u30fb\u7e26\uff09",
|
||||
"Insert image": "\u753b\u50cf\u306e\u633f\u5165",
|
||||
"Zoom in": "\u30ba\u30fc\u30e0\u30a4\u30f3",
|
||||
"Contrast": "\u30b3\u30f3\u30c8\u30e9\u30b9\u30c8",
|
||||
"Back": "\u623b\u308b",
|
||||
"Gamma": "\u30ac\u30f3\u30de",
|
||||
"Flip horizontally": "\u6c34\u5e73\u306b\u53cd\u8ee2",
|
||||
"Resize": "\u30ea\u30b5\u30a4\u30ba",
|
||||
"Sharpen": "\u30b7\u30e3\u30fc\u30d7\u5316",
|
||||
"Zoom out": "\u30ba\u30fc\u30e0\u30a2\u30a6\u30c8",
|
||||
"Image options": "\u753b\u50cf\u30aa\u30d7\u30b7\u30e7\u30f3",
|
||||
"Apply": "\u9069\u7528",
|
||||
"Brightness": "\u660e\u308b\u3055",
|
||||
"Rotate clockwise": "\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2",
|
||||
"Rotate counterclockwise": "\u53cd\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2",
|
||||
"Edit image": "\u753b\u50cf\u306e\u7de8\u96c6",
|
||||
"Color levels": "\u30ab\u30e9\u30fc\u30ec\u30d9\u30eb",
|
||||
"Crop": "\u30af\u30ed\u30c3\u30d7",
|
||||
"Orientation": "\u5411\u304d",
|
||||
"Flip vertically": "\u4e0a\u4e0b\u306b\u53cd\u8ee2",
|
||||
"Invert": "\u53cd\u8ee2",
|
||||
"Insert date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b",
|
||||
"Remove link": "\u30ea\u30f3\u30af\u306e\u524a\u9664",
|
||||
"Url": "\u30ea\u30f3\u30af\u5148URL",
|
||||
"Text to display": "\u30ea\u30f3\u30af\u5143\u30c6\u30ad\u30b9\u30c8",
|
||||
"Anchors": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
|
||||
"Insert link": "\u30ea\u30f3\u30af",
|
||||
"New window": "\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6",
|
||||
"None": "\u306a\u3057",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp:\/\/\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
|
||||
"Target": "\u30bf\u30fc\u30b2\u30c3\u30c8\u5c5e\u6027",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
|
||||
"Insert\/edit link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"Insert\/edit video": "\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"Poster": "\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240",
|
||||
"Alternative source": "\u4ee3\u66ff\u52d5\u753b\u306e\u5834\u6240",
|
||||
"Paste your embed code below:": "\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4e0b\u8a18\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002",
|
||||
"Insert video": "\u52d5\u753b",
|
||||
"Embed": "\u57cb\u3081\u8fbc\u307f",
|
||||
"Nonbreaking space": "\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9\uff08 \uff09",
|
||||
"Page break": "\u30da\u30fc\u30b8\u533a\u5207\u308a",
|
||||
"Paste as text": "\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051",
|
||||
"Preview": "\u30d7\u30ec\u30d3\u30e5\u30fc",
|
||||
"Print": "\u5370\u5237",
|
||||
"Save": "\u4fdd\u5b58",
|
||||
"Could not find the specified string.": "\u304a\u63a2\u3057\u306e\u6587\u5b57\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002",
|
||||
"Replace": "\u7f6e\u304d\u63db\u3048",
|
||||
"Next": "\u6b21",
|
||||
"Whole words": "\u5358\u8a9e\u5358\u4f4d\u3067\u691c\u7d22\u3059\u308b",
|
||||
"Find and replace": "\u691c\u7d22\u3068\u7f6e\u304d\u63db\u3048",
|
||||
"Replace with": "\u7f6e\u304d\u63db\u3048\u308b\u6587\u5b57",
|
||||
"Find": "\u691c\u7d22",
|
||||
"Replace all": "\u5168\u3066\u3092\u7f6e\u304d\u63db\u3048\u308b",
|
||||
"Match case": "\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b",
|
||||
"Prev": "\u524d",
|
||||
"Spellcheck": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af",
|
||||
"Finish": "\u7d42\u4e86",
|
||||
"Ignore all": "\u5168\u3066\u3092\u7121\u8996",
|
||||
"Ignore": "\u7121\u8996",
|
||||
"Add to Dictionary": "\u8f9e\u66f8\u306b\u8ffd\u52a0",
|
||||
"Insert row before": "\u4e0a\u5074\u306b\u884c\u3092\u633f\u5165",
|
||||
"Rows": "\u884c\u6570",
|
||||
"Height": "\u9ad8\u3055",
|
||||
"Paste row after": "\u4e0b\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051",
|
||||
"Alignment": "\u914d\u7f6e",
|
||||
"Border color": "\u67a0\u7dda\u306e\u8272",
|
||||
"Column group": "\u5217\u30b0\u30eb\u30fc\u30d7",
|
||||
"Row": "\u884c",
|
||||
"Insert column before": "\u5de6\u5074\u306b\u5217\u3092\u633f\u5165",
|
||||
"Split cell": "\u30bb\u30eb\u306e\u5206\u5272",
|
||||
"Cell padding": "\u30bb\u30eb\u5185\u4f59\u767d\uff08\u30d1\u30c7\u30a3\u30f3\u30b0\uff09",
|
||||
"Cell spacing": "\u30bb\u30eb\u306e\u9593\u9694",
|
||||
"Row type": "\u884c\u30bf\u30a4\u30d7",
|
||||
"Insert table": "\u8868\u306e\u633f\u5165",
|
||||
"Body": "\u30dc\u30c7\u30a3\u30fc",
|
||||
"Caption": "\u8868\u984c",
|
||||
"Footer": "\u30d5\u30c3\u30bf\u30fc",
|
||||
"Delete row": "\u884c\u306e\u524a\u9664",
|
||||
"Paste row before": "\u4e0a\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051",
|
||||
"Scope": "\u30b9\u30b3\u30fc\u30d7",
|
||||
"Delete table": "\u8868\u306e\u524a\u9664",
|
||||
"H Align": "\u6c34\u5e73\u65b9\u5411\u306e\u914d\u7f6e",
|
||||
"Top": "\u4e0a",
|
||||
"Header cell": "\u30d8\u30c3\u30c0\u30fc\u30bb\u30eb",
|
||||
"Column": "\u5217",
|
||||
"Row group": "\u884c\u30b0\u30eb\u30fc\u30d7",
|
||||
"Cell": "\u30bb\u30eb",
|
||||
"Middle": "\u4e2d\u592e",
|
||||
"Cell type": "\u30bb\u30eb\u30bf\u30a4\u30d7",
|
||||
"Copy row": "\u884c\u306e\u30b3\u30d4\u30fc",
|
||||
"Row properties": "\u884c\u306e\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Table properties": "\u8868\u306e\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Bottom": "\u4e0b",
|
||||
"V Align": "\u5782\u76f4\u65b9\u5411\u306e\u914d\u7f6e",
|
||||
"Header": "\u30d8\u30c3\u30c0\u30fc",
|
||||
"Right": "\u53f3\u5bc4\u305b",
|
||||
"Insert column after": "\u53f3\u5074\u306b\u5217\u3092\u633f\u5165",
|
||||
"Cols": "\u5217\u6570",
|
||||
"Insert row after": "\u4e0b\u5074\u306b\u884c\u3092\u633f\u5165",
|
||||
"Width": "\u5e45",
|
||||
"Cell properties": "\u30bb\u30eb\u306e\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Left": "\u5de6\u5bc4\u305b",
|
||||
"Cut row": "\u884c\u306e\u5207\u308a\u53d6\u308a",
|
||||
"Delete column": "\u5217\u306e\u524a\u9664",
|
||||
"Center": "\u4e2d\u592e\u63c3\u3048",
|
||||
"Merge cells": "\u30bb\u30eb\u306e\u7d50\u5408",
|
||||
"Insert template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165",
|
||||
"Templates": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u540d",
|
||||
"Background color": "\u80cc\u666f\u8272",
|
||||
"Custom...": "\u30ab\u30b9\u30bf\u30e0...",
|
||||
"Custom color": "\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc",
|
||||
"No color": "\u30ab\u30e9\u30fc\u306a\u3057",
|
||||
"Text color": "\u30c6\u30ad\u30b9\u30c8\u306e\u8272",
|
||||
"Show blocks": "\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a",
|
||||
"Show invisible characters": "\u4e0d\u53ef\u8996\u6587\u5b57\u3092\u8868\u793a",
|
||||
"Words: {0}": "\u5358\u8a9e\u6570: {0}",
|
||||
"Insert": "\u633f\u5165",
|
||||
"File": "\u30d5\u30a1\u30a4\u30eb",
|
||||
"Edit": "\u7de8\u96c6",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u66f8\u5f0f\u4ed8\u304d\u30c6\u30ad\u30b9\u30c8\u306e\u7de8\u96c6\u753b\u9762\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002",
|
||||
"Tools": "\u30c4\u30fc\u30eb",
|
||||
"View": "\u8868\u793a",
|
||||
"Table": "\u8868",
|
||||
"Format": "\u66f8\u5f0f"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ka_GE.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ka_GE.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ka_GE',{
|
||||
"Cut": "\u10d0\u10db\u10dd\u10ed\u10e0\u10d0",
|
||||
"Heading 5": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 5",
|
||||
"Header 2": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u10d7\u10e5\u10d5\u10d4\u10dc \u10d1\u10e0\u10d0\u10e3\u10d6\u10d4\u10e0\u10e1 \u10d0\u10e0 \u10d0\u10e5\u10d5\u10e1 \u10d1\u10e3\u10e4\u10e0\u10e2\u10e8\u10d8 \u10e8\u10d4\u10ee\u10ec\u10d4\u10d5\u10d8\u10e1 \u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10ed\u10d4\u10e0\u10d0. \u10d2\u10d7\u10ee\u10dd\u10d5\u10d7 \u10e1\u10d0\u10dc\u10d0\u10ea\u10d5\u10da\u10dd\u10d3 \u10d8\u10e1\u10d0\u10e0\u10d2\u10d4\u10d1\u10da\u10dd\u10d7 Ctrl+X\/C\/V \u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d8 \u10d9\u10dd\u10db\u10d1\u10d8\u10dc\u10d0\u10ea\u10d8\u10d4\u10d1\u10d8\u10d7.",
|
||||
"Heading 4": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 4",
|
||||
"Div": "\u10d2\u10d0\u10dc\u10d0\u10ec\u10d8\u10da\u10d4\u10d1\u10d0",
|
||||
"Heading 2": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 2",
|
||||
"Paste": "\u10e9\u10d0\u10e1\u10db\u10d0",
|
||||
"Close": "\u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0",
|
||||
"Font Family": "\u10e4\u10dd\u10dc\u10e2\u10d8",
|
||||
"Pre": "\u10de\u10e0\u10d4\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8",
|
||||
"Align right": "\u10d2\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4 \u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5",
|
||||
"New document": "\u10d0\u10ee\u10d0\u10da\u10d8 \u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8",
|
||||
"Blockquote": "\u10d1\u10da\u10dd\u10d9\u10d8\u10e0\u10d4\u10d1\u10e3\u10da\u10d8 \u10ea\u10d8\u10e2\u10d0\u10e2\u10d0",
|
||||
"Numbered list": "\u10d3\u10d0\u10dc\u10dd\u10db\u10e0\u10d8\u10da\u10d8 \u10e1\u10d8\u10d0",
|
||||
"Heading 1": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 1",
|
||||
"Headings": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8",
|
||||
"Increase indent": "\u10d0\u10d1\u10d6\u10d0\u10ea\u10d8\u10e1 \u10d2\u10d0\u10d6\u10e0\u10d3\u10d0",
|
||||
"Formats": "\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8",
|
||||
"Headers": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d4\u10d1\u10d8",
|
||||
"Select all": "\u10e7\u10d5\u10d4\u10da\u10d0\u10e1 \u10db\u10dd\u10e6\u10dc\u10d8\u10e8\u10d5\u10dc\u10d0",
|
||||
"Header 3": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 3",
|
||||
"Blocks": "\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8",
|
||||
"Undo": "\u10d3\u10d0\u10d1\u10e0\u10e3\u10dc\u10d4\u10d1\u10d0",
|
||||
"Strikethrough": "\u10e8\u10e3\u10d0 \u10ee\u10d0\u10d6\u10d8",
|
||||
"Bullet list": "\u10d1\u10e3\u10da\u10d4\u10e2 \u10e1\u10d8\u10d0",
|
||||
"Header 1": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 1",
|
||||
"Superscript": "\u10d6\u10d4\u10d3\u10d0 \u10d8\u10dc\u10d3\u10d4\u10e5\u10e1\u10d8",
|
||||
"Clear formatting": "\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10e1\u10e3\u10e4\u10d7\u10d0\u10d5\u10d4\u10d1\u10d0",
|
||||
"Font Sizes": "\u10e4\u10dd\u10dc\u10e2\u10d8\u10e1 \u10d6\u10dd\u10db\u10d0",
|
||||
"Subscript": "\u10e5\u10d5\u10d4\u10d3\u10d0 \u10d8\u10dc\u10d3\u10d4\u10e5\u10e1\u10d8",
|
||||
"Header 6": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 6",
|
||||
"Redo": "\u10d2\u10d0\u10db\u10d4\u10dd\u10e0\u10d4\u10d1\u10d0",
|
||||
"Paragraph": "\u10de\u10d0\u10e0\u10d0\u10d2\u10e0\u10d0\u10e4\u10d8",
|
||||
"Ok": "\u10d9\u10d0\u10e0\u10d2\u10d8",
|
||||
"Bold": "\u10db\u10d9\u10d5\u10d4\u10d7\u10e0\u10d8",
|
||||
"Code": "\u10d9\u10dd\u10d3\u10d8",
|
||||
"Italic": "\u10d3\u10d0\u10ee\u10e0\u10d8\u10da\u10d8",
|
||||
"Align center": "\u10d2\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4 \u10ea\u10d4\u10dc\u10e2\u10e0\u10e8\u10d8",
|
||||
"Header 5": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 5",
|
||||
"Heading 6": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 6",
|
||||
"Heading 3": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 3",
|
||||
"Decrease indent": "\u10d0\u10d1\u10d6\u10d0\u10ea\u10d8\u10e1 \u10e8\u10d4\u10db\u10ea\u10d8\u10e0\u10d4\u10d1\u10d0",
|
||||
"Header 4": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0 \u10e9\u10d5\u10d4\u10e3\u10da\u10d4\u10d1\u10e0\u10d8\u10d5 \u10e0\u10d4\u10df\u10d8\u10db\u10e8\u10d8\u10d0. \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8 \u10e9\u10d0\u10d8\u10e1\u10db\u10d4\u10d5\u10d0 \u10e3\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10dd\u10d7 \u10e1\u10d0\u10dc\u10d0\u10db \u10d0\u10db \u10d7\u10d5\u10d8\u10e1\u10d4\u10d1\u10d0\u10e1 \u10d0\u10e0 \u10d2\u10d0\u10d7\u10d8\u10e8\u10d0\u10d5\u10d7.",
|
||||
"Underline": "\u10e5\u10d5\u10d4\u10d3\u10d0 \u10ee\u10d0\u10d6\u10d8",
|
||||
"Cancel": "\u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10d0",
|
||||
"Justify": "\u10d2\u10d0\u10db\u10d0\u10e0\u10d7\u10e3\u10da\u10d8",
|
||||
"Inline": "\u10ee\u10d0\u10d6\u10e8\u10d8\u10d3\u10d0",
|
||||
"Copy": "\u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0",
|
||||
"Align left": "\u10d2\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4 \u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d5",
|
||||
"Visual aids": "\u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10d8\u10d6\u10d0\u10ea\u10d8\u10d0",
|
||||
"Lower Greek": "\u10d3\u10d0\u10d1\u10d0\u10da\u10d8 \u10d1\u10d4\u10e0\u10eb\u10dc\u10e3\u10da\u10d8",
|
||||
"Square": "\u10d9\u10d5\u10d0\u10d3\u10e0\u10d0\u10e2\u10d8",
|
||||
"Default": "\u10e1\u10e2\u10d0\u10dc\u10d3\u10d0\u10e0\u10e2\u10e3\u10da\u10d8",
|
||||
"Lower Alpha": "\u10d3\u10d0\u10d1\u10d0\u10da\u10d8 \u10d0\u10da\u10e4\u10d0",
|
||||
"Circle": "\u10ec\u10e0\u10d4",
|
||||
"Disc": "\u10d3\u10d8\u10e1\u10d9\u10d8",
|
||||
"Upper Alpha": "\u10db\u10d0\u10e6\u10d0\u10da\u10d8 \u10d0\u10da\u10e4\u10d0",
|
||||
"Upper Roman": "\u10db\u10d0\u10e6\u10d0\u10da\u10d8 \u10e0\u10dd\u10db\u10d0\u10e3\u10da\u10d8",
|
||||
"Lower Roman": "\u10d3\u10d0\u10d1\u10d0\u10da\u10d8 \u10e0\u10dd\u10db\u10d0\u10e3\u10da\u10d8",
|
||||
"Name": "\u10e1\u10d0\u10ee\u10d4\u10da\u10d8",
|
||||
"Anchor": "\u10e6\u10e3\u10d6\u10d0",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u10d7\u10e5\u10d5\u10d4\u10dc \u10d2\u10d0\u10e5\u10d5\u10d7 \u10e8\u10d4\u10e3\u10dc\u10d0\u10ee\u10d0\u10d5\u10d8 \u10e8\u10d4\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d4\u10d1\u10d8, \u10d3\u10d0\u10e0\u10ec\u10db\u10e3\u10dc\u10d4\u10d1\u10e3\u10da\u10d8 \u10ee\u10d0\u10d7 \u10e0\u10dd\u10db \u10e1\u10ee\u10d5\u10d0\u10d2\u10d0\u10dc \u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10d2\u10e1\u10e3\u10e0\u10d7?",
|
||||
"Restore last draft": "\u10d1\u10dd\u10da\u10dd\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10e3\u10da\u10d8\u10e1 \u10d0\u10e6\u10d3\u10d2\u10d4\u10dc\u10d0",
|
||||
"Special character": "\u10e1\u10de\u10d4\u10ea\u10d8\u10d0\u10da\u10e3\u10e0\u10d8 \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd",
|
||||
"Source code": "\u10ec\u10e7\u10d0\u10e0\u10dd\u10e1 \u10d9\u10dd\u10d3\u10d8",
|
||||
"B": "\u10da",
|
||||
"R": "\u10ec",
|
||||
"G": "\u10db",
|
||||
"Color": "\u10e4\u10d4\u10e0\u10d8",
|
||||
"Right to left": "\u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d3\u10d0\u10dc \u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d5",
|
||||
"Left to right": "\u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d3\u10d0\u10dc \u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5",
|
||||
"Emoticons": "\u10e1\u10db\u10d0\u10d8\u10da\u10d8\u10d9\u10d4\u10d1\u10d8",
|
||||
"Robots": "\u10e0\u10dd\u10d1\u10dd\u10d4\u10d1\u10d8",
|
||||
"Document properties": "\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10d7\u10d5\u10d8\u10e1\u10d4\u10d1\u10d4\u10d1\u10d8",
|
||||
"Title": "\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8",
|
||||
"Keywords": "\u10e1\u10d0\u10d9\u10d5\u10d0\u10dc\u10eb\u10dd \u10e1\u10d8\u10e2\u10e7\u10d5\u10d4\u10d1\u10d8",
|
||||
"Encoding": "\u10d9\u10dd\u10d3\u10d8\u10e0\u10d4\u10d1\u10d0",
|
||||
"Description": "\u10d0\u10ee\u10ec\u10d4\u10e0\u10d0",
|
||||
"Author": "\u10d0\u10d5\u10e2\u10dd\u10e0\u10d8",
|
||||
"Fullscreen": "\u10e1\u10d0\u10d5\u10e1\u10d4 \u10d4\u10d9\u10e0\u10d0\u10dc\u10d8",
|
||||
"Horizontal line": "\u10f0\u10dd\u10e0\u10d8\u10d6\u10dd\u10dc\u10e2\u10d0\u10da\u10e3\u10e0\u10d8 \u10ee\u10d0\u10d6\u10d8",
|
||||
"Horizontal space": "\u10f0\u10dd\u10e0\u10d8\u10d6\u10dd\u10dc\u10e2\u10d0\u10da\u10e3\u10e0\u10d8 \u10e1\u10d8\u10d5\u10e0\u10ea\u10d4",
|
||||
"Insert\/edit image": "\u10e9\u10d0\u10e1\u10d5\u10d8\/\u10e8\u10d4\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8",
|
||||
"General": "\u10db\u10d7\u10d0\u10d5\u10d0\u10e0\u10d8",
|
||||
"Advanced": "\u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7\u10d8",
|
||||
"Source": "\u10d1\u10db\u10e3\u10da\u10d8",
|
||||
"Border": "\u10e1\u10d0\u10d6\u10e6\u10d5\u10d0\u10e0\u10d8",
|
||||
"Constrain proportions": "\u10de\u10e0\u10dd\u10de\u10dd\u10e0\u10ea\u10d8\u10d8\u10e1 \u10d3\u10d0\u10ea\u10d5\u10d0",
|
||||
"Vertical space": "\u10d5\u10d4\u10e0\u10e2\u10d8\u10d9\u10d0\u10da\u10e3\u10e0\u10d8 \u10e1\u10d8\u10d5\u10e0\u10ea\u10d4",
|
||||
"Image description": "\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10d3\u10d0\u10ee\u10d0\u10e1\u10d8\u10d0\u10d7\u10d4\u10d1\u10d0",
|
||||
"Style": "\u10e1\u10e2\u10d8\u10da\u10d8",
|
||||
"Dimensions": "\u10d2\u10d0\u10dc\u10d6\u10dd\u10db\u10d8\u10da\u10d4\u10d1\u10d0",
|
||||
"Insert image": "\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0",
|
||||
"Zoom in": "\u10d2\u10d0\u10d3\u10d8\u10d3\u10d8\u10d4\u10d1\u10d0",
|
||||
"Contrast": "\u10d9\u10dd\u10dc\u10e2\u10e0\u10d0\u10e1\u10e2\u10d8",
|
||||
"Back": "\u10e3\u10d9\u10d0\u10dc",
|
||||
"Gamma": "\u10d2\u10d0\u10db\u10d0",
|
||||
"Flip horizontally": "\u10f0\u10dd\u10e0\u10d8\u10d6\u10dd\u10dc\u10e2\u10d0\u10da\u10e3\u10e0\u10d0\u10d3 \u10e8\u10d4\u10e2\u10e0\u10d8\u10d0\u10da\u10d4\u10d1\u10d0",
|
||||
"Resize": "\u10d6\u10dd\u10db\u10d8\u10e1 \u10e8\u10d4\u10ea\u10d5\u10da\u10d0",
|
||||
"Sharpen": "\u10d2\u10d0\u10da\u10d4\u10e1\u10d5\u10d0",
|
||||
"Zoom out": "\u10d3\u10d0\u10de\u10d0\u10e2\u10d0\u10e0\u10d0\u10d5\u10d4\u10d1\u10d0",
|
||||
"Image options": "\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8",
|
||||
"Apply": "\u10db\u10d8\u10e6\u10d4\u10d1\u10d0",
|
||||
"Brightness": "\u10e1\u10d8\u10d9\u10d0\u10e8\u10d9\u10d0\u10e8\u10d4",
|
||||
"Rotate clockwise": "\u10e1\u10d0\u10d0\u10d7\u10d8\u10e1 \u10d8\u10e1\u10e0\u10d8\u10e1 \u10db\u10d8\u10db\u10d0\u10e0\u10d7\u10e3\u10da\u10d4\u10d1\u10d8\u10d7 \u10db\u10dd\u10d1\u10e0\u10e3\u10dc\u10d4\u10d1\u10d0",
|
||||
"Rotate counterclockwise": "\u10e1\u10d0\u10d0\u10d7\u10d8\u10e1 \u10d8\u10e1\u10e0\u10d8\u10e1 \u10db\u10d8\u10db\u10d0\u10e0\u10d7\u10e3\u10da\u10d4\u10d1\u10d8\u10e1 \u10e1\u10d0\u10ec\u10d8\u10dc\u10d0\u10d0\u10e6\u10db\u10d3\u10d4\u10d2\u10dd\u10d2 \u10db\u10dd\u10d1\u10e0\u10e3\u10dc\u10d4\u10d1\u10d0",
|
||||
"Edit image": "\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10d8\u10e0\u10d4\u10d1\u10d0",
|
||||
"Color levels": "\u10e4\u10d4\u10e0\u10d8\u10e1 \u10d3\u10dd\u10dc\u10d4",
|
||||
"Crop": "\u10db\u10dd\u10ed\u10e0\u10d0",
|
||||
"Orientation": "\u10dd\u10e0\u10d8\u10d4\u10dc\u10e2\u10d0\u10ea\u10d8\u10d0",
|
||||
"Flip vertically": "\u10d5\u10d4\u10e0\u10e2\u10d8\u10d9\u10d0\u10da\u10e3\u10e0\u10d0\u10d3 \u10d0\u10e2\u10e0\u10d8\u10d0\u10da\u10d4\u10d1\u10d0",
|
||||
"Invert": "\u10e8\u10d4\u10d1\u10e0\u10e3\u10dc\u10d4\u10d1\u10d0",
|
||||
"Insert date\/time": "\u10d7\u10d0\u10e0\u10d8\u10e6\u10d8\/\u10d3\u10e0\u10dd\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0",
|
||||
"Remove link": "\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0",
|
||||
"Url": "Url",
|
||||
"Text to display": "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8",
|
||||
"Anchors": "\u10e6\u10e3\u10d6\u10d0",
|
||||
"Insert link": "\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0",
|
||||
"New window": "\u10d0\u10ee\u10d0\u10da \u10e4\u10d0\u10dc\u10ef\u10d0\u10e0\u10d0\u10e8\u10d8",
|
||||
"None": "\u10d0\u10e0\u10ea\u10d4\u10e0\u10d7\u10d8",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10db\u10d8\u10d4\u10e0 \u10db\u10d8\u10d7\u10d8\u10d7\u10d4\u10d1\u10e3\u10da\u10d8 \u10db\u10d8\u10e1\u10d0\u10db\u10d0\u10e0\u10d7\u10d8 \u10ec\u10d0\u10e0\u10db\u10dd\u10d0\u10d3\u10d2\u10d4\u10dc\u10e1 \u10d2\u10d0\u10e0\u10d4 \u10d1\u10db\u10e3\u10da\u10e1. \u10d2\u10e1\u10e3\u10e0\u10d7, \u10e0\u10dd\u10db \u10db\u10d8\u10d5\u10d0\u10dc\u10d8\u10ed\u10dd http:\/\/ \u10e4\u10e0\u10d4\u10e4\u10d8\u10e5\u10e1\u10d8?",
|
||||
"Target": "\u10d2\u10d0\u10ee\u10e1\u10dc\u10d0",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u10d7\u10e5\u10d5\u10d4\u10dc \u10db\u10d8\u10e3\u10d7\u10d8\u10d7\u10d4\u10d7 \u10d4\u10da-\u10e4\u10dd\u10e1\u10e2\u10d8\u10e1 \u10db\u10d8\u10e1\u10d0\u10db\u10d0\u10e0\u10d7\u10d8 \u10dc\u10d0\u10ea\u10d5\u10da\u10d0\u10d3 \u10d5\u10d4\u10d1-\u10d2\u10d5\u10d4\u10e0\u10d3\u10d8\u10e1\u10d0. \u10d2\u10e1\u10e3\u10e0\u10d7, \u10e0\u10dd\u10db \u10db\u10d8\u10d5\u10d0\u10dc\u10d8\u10ed\u10dd mailto: \u10e4\u10e0\u10d4\u10e4\u10d8\u10e5\u10e1\u10d8?",
|
||||
"Insert\/edit link": "\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0\/\u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10d8\u10e0\u10d4\u10d0",
|
||||
"Insert\/edit video": "\u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0\/\u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10d8\u10e0\u10d4\u10d1\u10d0",
|
||||
"Poster": "\u10de\u10da\u10d0\u10d9\u10d0\u10e2\u10d8",
|
||||
"Alternative source": "\u10d0\u10da\u10e2\u10d4\u10e0\u10dc\u10d0\u10e2\u10d8\u10e3\u10da\u10d8 \u10ec\u10e7\u10d0\u10e0\u10dd",
|
||||
"Paste your embed code below:": "\u10d0\u10e5 \u10e9\u10d0\u10e1\u10d5\u10d8\u10d7 \u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10d9\u10dd\u10d3\u10d8:",
|
||||
"Insert video": "\u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0",
|
||||
"Embed": "\u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0",
|
||||
"Nonbreaking space": "\u10e3\u10ec\u10e7\u10d5\u10d4\u10e2\u10d8 \u10e1\u10d8\u10d5\u10e0\u10ea\u10d4",
|
||||
"Page break": "\u10d2\u10d5\u10d4\u10e0\u10d3\u10d8\u10e1 \u10d2\u10d0\u10ec\u10e7\u10d5\u10d4\u10e2\u10d0",
|
||||
"Paste as text": "\u10e9\u10d0\u10e1\u10d5\u10d8\u10d7 \u10e0\u10dd\u10d2\u10dd\u10e0\u10ea \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8",
|
||||
"Preview": "\u10ec\u10d8\u10dc\u10d0\u10e1\u10ec\u10d0\u10e0 \u10dc\u10d0\u10ee\u10d5\u10d0",
|
||||
"Print": "\u10d0\u10db\u10dd\u10d1\u10d4\u10ed\u10d5\u10d3\u10d0",
|
||||
"Save": "\u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0",
|
||||
"Could not find the specified string.": "\u10db\u10dd\u10ea\u10d4\u10db\u10e3\u10da\u10d8 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8 \u10d5\u10d4\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0.",
|
||||
"Replace": "\u10e8\u10d4\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0",
|
||||
"Next": "\u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8",
|
||||
"Whole words": "\u10e1\u10e0\u10e3\u10da\u10d8 \u10e1\u10d8\u10e2\u10e7\u10d5\u10d4\u10d1\u10d8",
|
||||
"Find and replace": "\u10db\u10dd\u10eb\u10d4\u10d1\u10dc\u10d4 \u10d3\u10d0 \u10e8\u10d4\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4",
|
||||
"Replace with": "\u10e8\u10d4\u10e1\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d4\u10da\u10d8 \u10e1\u10d8\u10e2\u10e7\u10d5\u10d0",
|
||||
"Find": "\u10eb\u10d4\u10d1\u10dc\u10d0",
|
||||
"Replace all": "\u10e7\u10d5\u10d4\u10da\u10d0\u10e1 \u10e8\u10d4\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0",
|
||||
"Match case": "\u10d3\u10d0\u10d0\u10db\u10d7\u10ee\u10d5\u10d8\u10d4 \u10d0\u10e1\u10dd\u10d4\u10d1\u10d8\u10e1 \u10d6\u10dd\u10db\u10d0",
|
||||
"Prev": "\u10ec\u10d8\u10dc\u10d0",
|
||||
"Spellcheck": "\u10db\u10d0\u10e0\u10d7\u10da\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e8\u10d4\u10db\u10dd\u10ec\u10db\u10d4\u10d1\u10d0",
|
||||
"Finish": "\u10d3\u10d0\u10e1\u10d0\u10e1\u10e0\u10e3\u10da\u10d8",
|
||||
"Ignore all": "\u10e7\u10d5\u10d4\u10da\u10d0\u10e1 \u10d8\u10d2\u10dc\u10dd\u10e0\u10d8\u10e0\u10d4\u10d1\u10d0",
|
||||
"Ignore": "\u10d8\u10d2\u10dc\u10dd\u10e0\u10d8\u10e0\u10d4\u10d1\u10d0",
|
||||
"Add to Dictionary": "\u10da\u10d4\u10e5\u10e1\u10d8\u10d9\u10dd\u10dc\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0",
|
||||
"Insert row before": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d7\u10d0\u10d5\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0",
|
||||
"Rows": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d4\u10d1\u10d8",
|
||||
"Height": "\u10e1\u10d8\u10db\u10d0\u10e6\u10da\u10d4",
|
||||
"Paste row after": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d1\u10dd\u10da\u10dd\u10e8\u10d8 \u10e9\u10d0\u10e1\u10db\u10d0",
|
||||
"Alignment": "\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0",
|
||||
"Border color": "\u10e1\u10d0\u10d6\u10d0\u10e0\u10d8\u10e1 \u10e4\u10d4\u10e0\u10d8",
|
||||
"Column group": "\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10ef\u10d2\u10e3\u10e4\u10d8",
|
||||
"Row": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8",
|
||||
"Insert column before": "\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10d7\u10d0\u10d5\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0",
|
||||
"Split cell": "\u10e3\u10ef\u10e0\u10d8\u10e1 \u10d2\u10d0\u10e7\u10dd\u10e4\u10d0",
|
||||
"Cell padding": "\u10e3\u10ef\u10e0\u10d8\u10e1 \u10e4\u10d0\u10e0\u10d7\u10dd\u10d1\u10d8",
|
||||
"Cell spacing": "\u10e3\u10ef\u10e0\u10d8\u10e1 \u10d3\u10d0\u10e8\u10dd\u10e0\u10d4\u10d1\u10d0",
|
||||
"Row type": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10e2\u10d8\u10de\u10d8",
|
||||
"Insert table": "\u10ea\u10ee\u10e0\u10d8\u10da\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0",
|
||||
"Body": "\u10e2\u10d0\u10dc\u10d8",
|
||||
"Caption": "\u10ec\u10d0\u10e0\u10ec\u10d4\u10e0\u10d0",
|
||||
"Footer": "\u10eb\u10d8\u10e0\u10d8",
|
||||
"Delete row": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0",
|
||||
"Paste row before": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d7\u10d0\u10d5\u10e8\u10d8 \u10e9\u10d0\u10e1\u10db\u10d0",
|
||||
"Scope": "\u10e9\u10d0\u10e0\u10e9\u10dd",
|
||||
"Delete table": "\u10ea\u10ee\u10e0\u10d8\u10da\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0",
|
||||
"H Align": "H \u10e9\u10d0\u10db\u10ec\u10d9\u10e0\u10d8\u10d5\u10d4\u10d1\u10d0",
|
||||
"Top": "\u10db\u10d0\u10e6\u10da\u10d0",
|
||||
"Header cell": "\u10d7\u10d0\u10d5\u10d8\u10e1 \u10e3\u10ef\u10e0\u10d0",
|
||||
"Column": "\u10e1\u10d5\u10d4\u10e2\u10d8",
|
||||
"Row group": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10ef\u10d2\u10e3\u10e4\u10d8",
|
||||
"Cell": "\u10e3\u10ef\u10e0\u10d0",
|
||||
"Middle": "\u10e8\u10e3\u10d0",
|
||||
"Cell type": "\u10e3\u10ef\u10e0\u10d8\u10e1 \u10e2\u10d8\u10de\u10d8",
|
||||
"Copy row": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0",
|
||||
"Row properties": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d7\u10d5\u10d8\u10e1\u10d4\u10d1\u10d4\u10d1\u10d8",
|
||||
"Table properties": "\u10ea\u10ee\u10e0\u10d8\u10da\u10d8\u10e1 \u10d7\u10d5\u10d8\u10e1\u10d4\u10d1\u10d4\u10d1\u10d8",
|
||||
"Bottom": "\u10e5\u10d5\u10d4\u10d3\u10d0",
|
||||
"V Align": "V \u10e9\u10d0\u10db\u10ec\u10d9\u10e0\u10d8\u10d5\u10d4\u10d1\u10d0",
|
||||
"Header": "\u10d7\u10d0\u10d5\u10d8",
|
||||
"Right": "\u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5",
|
||||
"Insert column after": "\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10d1\u10dd\u10da\u10dd\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0",
|
||||
"Cols": "\u10e1\u10d5\u10d4\u10e2\u10d4\u10d1\u10d8",
|
||||
"Insert row after": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d1\u10dd\u10da\u10dd\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0",
|
||||
"Width": "\u10e1\u10d8\u10d2\u10d0\u10dc\u10d4",
|
||||
"Cell properties": "\u10e3\u10ef\u10e0\u10d8\u10e1 \u10d7\u10d5\u10d8\u10e1\u10d4\u10d1\u10d4\u10d1\u10d8",
|
||||
"Left": "\u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d5",
|
||||
"Cut row": "\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d0\u10db\u10dd\u10ed\u10e0\u10d0",
|
||||
"Delete column": "\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0",
|
||||
"Center": "\u10ea\u10d4\u10dc\u10e2\u10e0\u10e8\u10d8",
|
||||
"Merge cells": "\u10e3\u10ef\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10d4\u10e0\u10d7\u10d8\u10d0\u10dc\u10d4\u10d1\u10d0",
|
||||
"Insert template": "\u10e8\u10d0\u10d1\u10da\u10dd\u10dc\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0",
|
||||
"Templates": "\u10e8\u10d0\u10d1\u10da\u10dd\u10dc\u10d4\u10d1\u10d8",
|
||||
"Background color": "\u10e3\u10d9\u10d0\u10dc\u10d0 \u10e4\u10d4\u10e0\u10d8",
|
||||
"Custom...": "\u10db\u10dd\u10e0\u10d2\u10d4\u10d1\u10e3\u10da\u10d8",
|
||||
"Custom color": "\u10db\u10dd\u10e0\u10d2\u10d4\u10d1\u10e3\u10da\u10d8 \u10e4\u10d4\u10e0\u10d8",
|
||||
"No color": "\u10e4\u10d4\u10e0\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4",
|
||||
"Text color": "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e4\u10d4\u10e0\u10d8",
|
||||
"Show blocks": "\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0",
|
||||
"Show invisible characters": "\u10e3\u10ee\u10d8\u10da\u10d0\u10d5\u10d8 \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd\u10d4\u10d1\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0",
|
||||
"Words: {0}": "\u10e1\u10d8\u10e2\u10e7\u10d5\u10d4\u10d1\u10d8: {0}",
|
||||
"Insert": "\u10e9\u10d0\u10e1\u10db\u10d0",
|
||||
"File": "\u10e4\u10d0\u10d8\u10da\u10d8",
|
||||
"Edit": "\u10e8\u10d4\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e4\u10d0\u10e0\u10d7\u10d8. \u10d3\u10d0\u10d0\u10ed\u10d8\u10e0\u10d4\u10d7 ALT-F9\u10e1 \u10db\u10d4\u10dc\u10d8\u10e3\u10e1 \u10d2\u10d0\u10db\u10dd\u10e1\u10d0\u10eb\u10d0\u10ee\u10d4\u10d1\u10da\u10d0\u10d3. \u10d3\u10d0\u10d0\u10ed\u10d8\u10e0\u10d4\u10d7 ALT-F10\u10e1 \u10de\u10d0\u10dc\u10d4\u10da\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1. \u10d3\u10d0\u10d0\u10ed\u10d8\u10e0\u10d4\u10d7 ALT-0\u10e1 \u10d3\u10d0\u10ee\u10db\u10d0\u10e0\u10d4\u10d1\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1",
|
||||
"Tools": "\u10d8\u10d0\u10e0\u10d0\u10e6\u10d4\u10d1\u10d8",
|
||||
"View": "\u10dc\u10d0\u10ee\u10d5\u10d0",
|
||||
"Table": "\u10ea\u10ee\u10e0\u10d8\u10da\u10d8",
|
||||
"Format": "\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/kab.js
Normal file
219
data/web/rc/program/js/tinymce/langs/kab.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('kab',{
|
||||
"Cut": "Gzem",
|
||||
"Heading 5": "Inixf 5",
|
||||
"Header 2": "Azwel 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.",
|
||||
"Heading 4": "Inixf 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Inixf 2",
|
||||
"Paste": "Sente\u1e0d",
|
||||
"Close": "Mdel",
|
||||
"Font Family": "Tasefsit",
|
||||
"Pre": "Pre",
|
||||
"Align right": "tarigla \u0263er zelma\u1e0d",
|
||||
"New document": "Attaftar amaynut",
|
||||
"Blockquote": "Tanebdurt",
|
||||
"Numbered list": "Tabdart s wu\u1e6d\u1e6dunen",
|
||||
"Heading 1": "Inixf 1",
|
||||
"Headings": "Izewlen",
|
||||
"Increase indent": "Sim\u0263ur asi\u1e93i",
|
||||
"Formats": "Imasalen",
|
||||
"Headers": "Izwal",
|
||||
"Select all": "Fren kulec",
|
||||
"Header 3": "Azwel 3",
|
||||
"Blocks": "I\u1e25edran",
|
||||
"Undo": "Err-d",
|
||||
"Strikethrough": "Strikethrough",
|
||||
"Bullet list": "Tabdart s tlillac",
|
||||
"Header 1": "Azwel 1",
|
||||
"Superscript": "Superscript",
|
||||
"Clear formatting": "Clear formatting",
|
||||
"Font Sizes": "Tiddi n tsefsit",
|
||||
"Subscript": "Subscript",
|
||||
"Header 6": "Azwel 6",
|
||||
"Redo": "Err",
|
||||
"Paragraph": "taseddart",
|
||||
"Ok": "Ih",
|
||||
"Bold": "Tira tazurant",
|
||||
"Code": "Tangalt",
|
||||
"Italic": "Tira yeknan",
|
||||
"Align center": "Di tlemast",
|
||||
"Header 5": "Header 5",
|
||||
"Heading 6": "Inixf 6",
|
||||
"Heading 3": "Inixf 3",
|
||||
"Decrease indent": "Simc\u1e6du\u1e25 asi\u1e93i",
|
||||
"Header 4": "Azwel 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.",
|
||||
"Underline": "Aderrer",
|
||||
"Cancel": "Semmet",
|
||||
"Justify": "Justify",
|
||||
"Inline": "Inline",
|
||||
"Copy": "N\u0263el",
|
||||
"Align left": "Tarigla \u0263er zelma\u1e0d",
|
||||
"Visual aids": "Visual aids",
|
||||
"Lower Greek": "Grik ame\u1e93yan",
|
||||
"Square": "Amku\u1e93",
|
||||
"Default": "Lex\u1e63as",
|
||||
"Lower Alpha": "Alpha ame\u1e93yan",
|
||||
"Circle": "Tawinest",
|
||||
"Disc": "A\u1e0debsi",
|
||||
"Upper Alpha": "Alfa ameqran",
|
||||
"Upper Roman": "Ruman ameqran",
|
||||
"Lower Roman": "Ruman amectu\u1e25",
|
||||
"Name": "Isem",
|
||||
"Anchor": "Tamdeyt",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Ibeddilen ur twaskelsen ara teb\u0263i\u1e0d ad teff\u0263e\u1e0d ?",
|
||||
"Restore last draft": "Restore last draft",
|
||||
"Special character": "Askil uslig",
|
||||
"Source code": "Tangalt ta\u0263balut",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Ini",
|
||||
"Right to left": "Seg yefus \u0263er zelma\u1e0d",
|
||||
"Left to right": "Seg zelma\u1e0d \u0263er yefus",
|
||||
"Emoticons": "Emoticons",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Iraten n warat",
|
||||
"Title": "Azwel",
|
||||
"Keywords": "Awalen yufraren",
|
||||
"Encoding": "Asettengel",
|
||||
"Description": "Aglam",
|
||||
"Author": "Ameskar",
|
||||
"Fullscreen": "Agdil a\u010duran",
|
||||
"Horizontal line": "Ajerri\u1e0d aglawan",
|
||||
"Horizontal space": "Talunt taglawant",
|
||||
"Insert\/edit image": "Ger\/\u1e92reg tugna",
|
||||
"General": "Amatu",
|
||||
"Advanced": "Ana\u1e93i",
|
||||
"Source": "A\u0263balu",
|
||||
"Border": "Iri",
|
||||
"Constrain proportions": "Constrain proportions",
|
||||
"Vertical space": "Talunt taratakt",
|
||||
"Image description": "Aglam n tugna",
|
||||
"Style": "A\u0263anib",
|
||||
"Dimensions": "Tisekta",
|
||||
"Insert image": "Ger tugna",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Tu\u0263alin",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Tuzttya tagrawant",
|
||||
"Resize": "Beddel tiddi",
|
||||
"Sharpen": "Affiner",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Tixti\u1e5biyin n tugna",
|
||||
"Apply": "Snes",
|
||||
"Brightness": "Tafat",
|
||||
"Rotate clockwise": "Tuzya yugdan tamrilt",
|
||||
"Rotate counterclockwise": "Tuzya mgal tamrilt",
|
||||
"Edit image": "\u1e92reg tugna",
|
||||
"Color levels": "Iswiren n yini",
|
||||
"Crop": "Rogner",
|
||||
"Orientation": "Ta\u0263da",
|
||||
"Flip vertically": "Tuzya taratakt",
|
||||
"Invert": "Tti",
|
||||
"Insert date\/time": "Ger azemz\/asrag",
|
||||
"Remove link": "Kkes azday",
|
||||
"Url": "Url",
|
||||
"Text to display": "A\u1e0dris ara yettwabeqq\u1e0den",
|
||||
"Anchors": "Timdyin",
|
||||
"Insert link": "Ger azday",
|
||||
"New window": "Asfaylu amaynut",
|
||||
"None": "Ulac",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL i teskecme\u1e0d tettban-d d azday uffi\u0263. Teb\u0263i\u1e0d ad s-ternu\u1e0d azwir http:\/\/ ?",
|
||||
"Target": "Target",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL i teskecme\u1e0d tettban-d d tansa email. teb\u0263i\u1e0d ad s-ternu\u1e0d azwir mailto : ?",
|
||||
"Insert\/edit link": "Ger\/\u1e93reg azday",
|
||||
"Insert\/edit video": "Ger\/\u1e93reg avidyu",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "A\u0263balu amlellay",
|
||||
"Paste your embed code below:": "Paste your embed code below:",
|
||||
"Insert video": "Ger avidyu",
|
||||
"Embed": "Embed",
|
||||
"Nonbreaking space": "Talunt ur nettwagzam ara",
|
||||
"Page break": "Angaz n usebter",
|
||||
"Paste as text": "Sente\u1e0d d a\u1e0dris",
|
||||
"Preview": "Sken",
|
||||
"Print": "Siggez",
|
||||
"Save": "Sekles",
|
||||
"Could not find the specified string.": "Ur d-nufi ara azrar i d-yettunefken.",
|
||||
"Replace": "Semselsi",
|
||||
"Next": "Win \u0263ers",
|
||||
"Whole words": "Awal ummid",
|
||||
"Find and replace": "Nadi semselsi",
|
||||
"Replace with": "Semselsi s",
|
||||
"Find": "Nadi",
|
||||
"Replace all": "Semselsi kulec",
|
||||
"Match case": "Match case",
|
||||
"Prev": "Win yezrin",
|
||||
"Spellcheck": "Ase\u0263ti n tira",
|
||||
"Finish": "Fak",
|
||||
"Ignore all": "Zgel kulec",
|
||||
"Ignore": "Zgel",
|
||||
"Add to Dictionary": "Rnu-t s amawal",
|
||||
"Insert row before": "Ger adur deffir",
|
||||
"Rows": "Aduren",
|
||||
"Height": "Te\u0263zi",
|
||||
"Paste row after": "Sente\u1e0d adur deffir",
|
||||
"Alignment": "Tarigla",
|
||||
"Border color": "Ini n yiri",
|
||||
"Column group": "Agraw n tgejda",
|
||||
"Row": "Adur",
|
||||
"Insert column before": "Sente\u1e0d tagejdit sdat",
|
||||
"Split cell": "B\u1e0du tixxamin",
|
||||
"Cell padding": "Tama n texxamt",
|
||||
"Cell spacing": "Tlunt ger texxamin",
|
||||
"Row type": "Anaw n wadur",
|
||||
"Insert table": "Ger tafelwit",
|
||||
"Body": "Tafka",
|
||||
"Caption": "Caption",
|
||||
"Footer": "A\u1e0dar",
|
||||
"Delete row": "Kkes tagejdit",
|
||||
"Paste row before": "Sente\u1e0d adur sdat",
|
||||
"Scope": "Scope",
|
||||
"Delete table": "Kkes tafelwit",
|
||||
"H Align": "Tarigla taglawant",
|
||||
"Top": "Uksawen",
|
||||
"Header cell": "Tasen\u1e6di\u1e0dt n texxamt",
|
||||
"Column": "Tagejdit",
|
||||
"Row group": "Agraw n waduren",
|
||||
"Cell": "Taxxamt",
|
||||
"Middle": "Di tlemmast",
|
||||
"Cell type": "Anaw n texxamt",
|
||||
"Copy row": "N\u0263el adur",
|
||||
"Row properties": "Iraten n udur",
|
||||
"Table properties": "Iraten n tfelwit",
|
||||
"Bottom": "Uksar",
|
||||
"V Align": "Tarigla taratakt",
|
||||
"Header": "Tasenti\u1e0dt",
|
||||
"Right": "\u0194er yefus",
|
||||
"Insert column after": "Sente\u1e0d tagejdit deffir",
|
||||
"Cols": "Tigejda",
|
||||
"Insert row after": "Ger adur sdat",
|
||||
"Width": "Tehri",
|
||||
"Cell properties": "Iraten n texxamt",
|
||||
"Left": "\u0194er zelma\u1e0d",
|
||||
"Cut row": "Gzem adur",
|
||||
"Delete column": "Kkes tagejdit",
|
||||
"Center": "Di tlemmast",
|
||||
"Merge cells": "Seddukel tixxamin",
|
||||
"Insert template": "Ger tamuddimt",
|
||||
"Templates": "Timudimin",
|
||||
"Background color": "Ini n ugilal",
|
||||
"Custom...": "Custom...",
|
||||
"Custom color": "Custom color",
|
||||
"No color": "Ulac ini",
|
||||
"Text color": "Ini n u\u1e0dris",
|
||||
"Show blocks": "Beqqe\u1e0d i\u1e25edran",
|
||||
"Show invisible characters": "Beqqe\u1e0d isekkilen uffiren",
|
||||
"Words: {0}": "Words: {0}",
|
||||
"Insert": "Ger",
|
||||
"File": "Afaylu",
|
||||
"Edit": "\u1e92reg",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help",
|
||||
"Tools": "Ifecka",
|
||||
"View": "Tamu\u0263li",
|
||||
"Table": "Tafelwit",
|
||||
"Format": "Amasal"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/km_KH.js
Normal file
219
data/web/rc/program/js/tinymce/langs/km_KH.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('km_KH',{
|
||||
"Cut": "\u1780\u17b6\u178f\u17cb",
|
||||
"Heading 5": "\u1780\u17d2\u1794\u17b6\u179b 5",
|
||||
"Header 2": "\u1780\u17d2\u1794\u17b6\u179b 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u1780\u1798\u17d2\u1798\u179c\u17b7\u1792\u17b8\u200b\u17a2\u17ca\u17b8\u1793\u1792\u17ba\u178e\u17b7\u178f\u200b\u179a\u1794\u179f\u17cb\u200b\u17a2\u17d2\u1793\u1780\u200b\u1798\u17b7\u1793\u200b\u17a2\u17b6\u1785\u200b\u1785\u17bc\u179b\u200b\u1795\u17d2\u1791\u17b6\u179b\u17cb\u200b\u1791\u17c5\u200b\u1780\u17b6\u1793\u17cb\u200b\u1783\u17d2\u179b\u17b8\u1794\u1794\u178f\u200b\u1791\u17c1\u17d4 \u179f\u17bc\u1798\u200b\u1794\u17d2\u179a\u17be Ctrl+X\/C\/V \u179b\u17be\u200b\u1780\u17d2\u178a\u17b6\u179a\u200b\u1785\u17bb\u1785\u200b\u1787\u17c6\u1793\u17bd\u179f\u200b\u179c\u17b7\u1789\u17d4",
|
||||
"Heading 4": "\u1780\u17d2\u1794\u17b6\u179b 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u1780\u17d2\u1794\u17b6\u179b 2",
|
||||
"Paste": "\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb",
|
||||
"Close": "\u1794\u17b7\u1791",
|
||||
"Font Family": "\u1782\u17d2\u179a\u17bd\u179f\u17b6\u179a\u200b\u1796\u17bb\u1798\u17d2\u1796\u200b\u17a2\u1780\u17d2\u179f\u179a",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1791\u17c5\u200b\u179f\u17d2\u178a\u17b6\u17c6",
|
||||
"New document": "\u17af\u1780\u179f\u17b6\u179a\u200b\u17a2\u178f\u17d2\u1790\u1794\u1791\u200b\u1790\u17d2\u1798\u17b8",
|
||||
"Blockquote": "\u1794\u17d2\u179b\u17bb\u1780\u200b\u1796\u17b6\u1780\u17d2\u1799\u200b\u179f\u1798\u17d2\u179a\u1784\u17cb",
|
||||
"Numbered list": "\u1794\u1789\u17d2\u1787\u17b8\u200b\u1787\u17b6\u200b\u179b\u17c1\u1781",
|
||||
"Heading 1": "\u1780\u17d2\u1794\u17b6\u179b 1",
|
||||
"Headings": "\u1780\u17d2\u1794\u17b6\u179b",
|
||||
"Increase indent": "\u1781\u17b7\u178f\u200b\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb\u200b\u1785\u17bc\u179b",
|
||||
"Formats": "\u1791\u17d2\u179a\u1784\u17cb\u1791\u17d2\u179a\u17b6\u1799",
|
||||
"Headers": "\u1780\u17d2\u1794\u17b6\u179b",
|
||||
"Select all": "\u1787\u17d2\u179a\u17be\u179f\u200b\u1791\u17b6\u17c6\u1784\u200b\u17a2\u179f\u17cb",
|
||||
"Header 3": "\u1780\u17d2\u1794\u17b6\u179b 3",
|
||||
"Blocks": "\u1794\u17d2\u179b\u17bb\u1780",
|
||||
"Undo": "\u1798\u17b7\u1793\u200b\u1792\u17d2\u179c\u17be\u200b\u179c\u17b7\u1789",
|
||||
"Strikethrough": "\u1782\u17bc\u179f\u200b\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb\u200b\u1786\u17bc\u178f",
|
||||
"Bullet list": "\u1794\u1789\u17d2\u1787\u17b8\u200b\u1787\u17b6\u200b\u1785\u17c6\u178e\u17bb\u1785",
|
||||
"Header 1": "\u1780\u17d2\u1794\u17b6\u179b 1",
|
||||
"Superscript": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u178f\u17bc\u1785\u200b\u179b\u17be",
|
||||
"Clear formatting": "\u179f\u1798\u17d2\u17a2\u17b6\u178f\u200b\u1791\u1798\u17d2\u179a\u1784\u17cb",
|
||||
"Font Sizes": "\u1791\u17c6\u17a0\u17c6\u200b\u17a2\u1780\u17d2\u179f\u179a",
|
||||
"Subscript": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u178f\u17bc\u1785\u200b\u1780\u17d2\u179a\u17c4\u1798",
|
||||
"Header 6": "\u1780\u17d2\u1794\u17b6\u179b 6",
|
||||
"Redo": "\u1792\u17d2\u179c\u17be\u200b\u179c\u17b7\u1789",
|
||||
"Paragraph": "\u1780\u1790\u17b6\u1781\u178e\u17d2\u178c",
|
||||
"Ok": "\u1796\u17d2\u179a\u1798",
|
||||
"Bold": "\u178a\u17b7\u178f",
|
||||
"Code": "\u1780\u17bc\u178a",
|
||||
"Italic": "\u1791\u17d2\u179a\u17c1\u178f",
|
||||
"Align center": "\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1791\u17c5\u200b\u1780\u178e\u17d2\u178a\u17b6\u179b",
|
||||
"Header 5": "\u1780\u17d2\u1794\u17b6\u179b 5",
|
||||
"Heading 6": "\u1780\u17d2\u1794\u17b6\u179b 6",
|
||||
"Heading 3": "\u1780\u17d2\u1794\u17b6\u179b 3",
|
||||
"Decrease indent": "\u1781\u17b7\u178f\u200b\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb\u200b\u1785\u17c1\u1789",
|
||||
"Header 4": "\u1780\u17d2\u1794\u17b6\u179b 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u1780\u17b6\u179a\u200b\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1796\u17c1\u179b\u200b\u1793\u17c1\u17c7 \u179f\u17d2\u1790\u17b7\u178f\u200b\u1780\u17d2\u1793\u17bb\u1784\u200b\u1794\u17c2\u1794\u200b\u1795\u17c2\u1793\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u1792\u1798\u17d2\u1798\u178f\u17b6\u17d4 \u1794\u1785\u17d2\u1785\u17bb\u1794\u17d2\u1794\u1793\u17d2\u1793\u200b\u1793\u17c1\u17c7 \u1798\u17b6\u178f\u17b7\u1780\u17b6\u200b\u1791\u17b6\u17c6\u1784\u200b\u17a1\u17b6\u1799\u200b\u1793\u17b9\u1784\u200b\u178f\u17d2\u179a\u17bc\u179c\u200b\u1794\u17b6\u1793\u200b\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1787\u17b6\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u1792\u1798\u17d2\u1798\u178f\u17b6 \u179b\u17bb\u17c7\u178f\u17d2\u179a\u17b6\u200b\u178f\u17c2\u200b\u17a2\u17d2\u1793\u1780\u200b\u1794\u17b7\u1791\u200b\u1787\u1798\u17d2\u179a\u17be\u179f\u200b\u1793\u17c1\u17c7\u17d4",
|
||||
"Underline": "\u1782\u17bc\u179f\u200b\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb\u200b\u1796\u17b8\u200b\u1780\u17d2\u179a\u17c4\u1798",
|
||||
"Cancel": "\u1794\u17c4\u17c7\u200b\u1794\u1784\u17cb",
|
||||
"Justify": "\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1796\u17c1\u1789",
|
||||
"Inline": "\u1780\u17d2\u1793\u17bb\u1784\u200b\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb",
|
||||
"Copy": "\u1785\u1798\u17d2\u179b\u1784",
|
||||
"Align left": "\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1791\u17c5\u200b\u1786\u17d2\u179c\u17c1\u1784",
|
||||
"Visual aids": "\u1791\u17b7\u178a\u17d2\u178b\u1797\u17b6\u1796\u200b\u1787\u17c6\u1793\u17bd\u1799",
|
||||
"Lower Greek": "\u179b\u17c1\u1781\u200b\u1780\u17d2\u179a\u17b7\u1780\u200b\u178f\u17bc\u1785",
|
||||
"Square": "\u1787\u17d2\u179a\u17bb\u1784",
|
||||
"Default": "\u179b\u17c6\u1793\u17b6\u17c6\u200b\u178a\u17be\u1798",
|
||||
"Lower Alpha": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u178f\u17bc\u1785",
|
||||
"Circle": "\u1798\u17bc\u179b",
|
||||
"Disc": "\u1790\u17b6\u179f",
|
||||
"Upper Alpha": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u1792\u17c6",
|
||||
"Upper Roman": "\u179b\u17c1\u1781\u200b\u179a\u17c9\u17bc\u1798\u17c9\u17b6\u17c6\u1784\u200b\u1792\u17c6",
|
||||
"Lower Roman": "\u179b\u17c1\u1781\u200b\u179a\u17c9\u17bc\u1798\u17c9\u17b6\u17c6\u1784\u200b\u178f\u17bc\u1785",
|
||||
"Name": "\u1788\u17d2\u1798\u17c4\u17c7",
|
||||
"Anchor": "\u1799\u17bb\u1790\u17d2\u1780\u17b6",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u1798\u17b6\u1793\u200b\u1794\u1793\u17d2\u179b\u17b6\u179f\u17cb\u200b\u1794\u17d2\u178a\u17bc\u179a\u200b\u1798\u17b7\u1793\u200b\u1791\u17b6\u1793\u17cb\u200b\u1794\u17b6\u1793\u200b\u179a\u1780\u17d2\u179f\u17b6\u200b\u1791\u17bb\u1780\u17d4 \u178f\u17be\u200b\u17a2\u17d2\u1793\u1780\u200b\u1796\u17b7\u178f\u200b\u1787\u17b6\u200b\u1785\u1784\u17cb\u200b\u1785\u17b6\u1780\u200b\u1785\u17c1\u1789\u200b\u1796\u17b8\u1791\u17b8\u1793\u17c1\u17c7\u200b\u1798\u17c2\u1793\u1791\u17c1?",
|
||||
"Restore last draft": "\u179f\u17d2\u178a\u17b6\u179a\u200b\u179f\u17c1\u1785\u1780\u17d2\u178a\u17b8\u200b\u1796\u17d2\u179a\u17b6\u1784\u200b\u1796\u17b8\u200b\u1798\u17bb\u1793",
|
||||
"Special character": "\u178f\u17bd\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u1796\u17b7\u179f\u17c1\u179f",
|
||||
"Source code": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u1780\u17bc\u178a",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u1796\u178e\u17cc",
|
||||
"Right to left": "\u179f\u17d2\u178a\u17b6\u17c6\u200b\u1791\u17c5\u200b\u1786\u17d2\u179c\u17c1\u1784",
|
||||
"Left to right": "\u1786\u17d2\u179c\u17c1\u1784\u200b\u1791\u17c5\u200b\u179f\u17d2\u178a\u17b6\u17c6",
|
||||
"Emoticons": "\u179a\u17bc\u1794\u200b\u179f\u1789\u17d2\u1789\u17b6\u178e\u200b\u17a2\u17b6\u179a\u1798\u17d2\u1798\u178e\u17cd",
|
||||
"Robots": "\u179a\u17bc\u1794\u1799\u1793\u17d2\u178f",
|
||||
"Document properties": "\u179b\u1780\u17d2\u1781\u178e\u17c8\u200b\u179f\u1798\u17d2\u1794\u178f\u17d2\u178f\u17b7\u200b\u17af\u1780\u179f\u17b6\u179a",
|
||||
"Title": "\u1785\u17c6\u178e\u1784\u200b\u1787\u17be\u1784",
|
||||
"Keywords": "\u1796\u17b6\u1780\u17d2\u1799\u200b\u1782\u1793\u17d2\u179b\u17b9\u17c7",
|
||||
"Encoding": "\u1780\u17b6\u179a\u200b\u17a2\u17ca\u17b8\u1793\u1780\u17bc\u178a",
|
||||
"Description": "\u179f\u17c1\u1785\u1780\u17d2\u178a\u17b8\u200b\u17a2\u1792\u17b7\u1794\u17d2\u1794\u17b6\u1799",
|
||||
"Author": "\u17a2\u17d2\u1793\u1780\u200b\u1793\u17b7\u1796\u1793\u17d2\u1792",
|
||||
"Fullscreen": "\u1796\u17c1\u1789\u200b\u17a2\u17c1\u1780\u17d2\u179a\u1784\u17cb",
|
||||
"Horizontal line": "\u1794\u1793\u17d2\u1791\u17b6\u178f\u17cb\u200b\u178a\u17c1\u1780",
|
||||
"Horizontal space": "\u179b\u17c6\u17a0\u200b\u1795\u17d2\u178a\u17c1\u1780",
|
||||
"Insert\/edit image": "\u1794\u1789\u17d2\u1785\u17bc\u179b\/\u1780\u17c2 \u179a\u17bc\u1794\u200b\u1797\u17b6\u1796",
|
||||
"General": "\u1791\u17bc\u1791\u17c5",
|
||||
"Advanced": "\u1780\u1798\u17d2\u179a\u17b7\u178f\u200b\u1781\u17d2\u1796\u179f\u17cb",
|
||||
"Source": "\u1794\u17d2\u179a\u1797\u1796",
|
||||
"Border": "\u179f\u17ca\u17bb\u1798",
|
||||
"Constrain proportions": " \u1794\u1784\u17d2\u1781\u17c6\u200b\u17b2\u17d2\u1799\u200b\u1798\u17b6\u1793\u200b\u179f\u1798\u17b6\u1798\u17b6\u178f\u17d2\u179a",
|
||||
"Vertical space": "\u179b\u17c6\u17a0\u200b\u1794\u1789\u17d2\u1788\u179a",
|
||||
"Image description": "\u179f\u17c1\u1785\u1780\u17d2\u178a\u17b8\u200b\u17a2\u1792\u17b7\u1794\u17d2\u1794\u17b6\u1799\u200b\u1796\u17b8\u200b\u179a\u17bc\u1794",
|
||||
"Style": "\u179a\u1785\u1793\u17b6\u1794\u1790",
|
||||
"Dimensions": "\u179c\u17b7\u1798\u17b6\u178f\u17d2\u179a",
|
||||
"Insert image": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u179a\u17bc\u1794\u200b\u1797\u17b6\u1796",
|
||||
"Zoom in": "\u1796\u1784\u17d2\u179a\u17b8\u1780",
|
||||
"Contrast": "\u1780\u1798\u17d2\u179a\u17b7\u178f\u200b\u1796\u178e\u17cc",
|
||||
"Back": "\u1790\u1799\u1780\u17d2\u179a\u17c4\u1799",
|
||||
"Gamma": "\u17a0\u17d2\u1782\u17b6\u1798\u17c9\u17b6",
|
||||
"Flip horizontally": "\u178f\u17d2\u179a\u17a1\u1794\u17cb\u200b\u1795\u17d2\u178a\u17c1\u1780",
|
||||
"Resize": "\u1794\u17d2\u178a\u17bc\u179a\u200b\u1791\u17c6\u17a0\u17c6",
|
||||
"Sharpen": "\u1785\u17d2\u1794\u17b6\u179f\u17cb",
|
||||
"Zoom out": "\u1794\u1784\u17d2\u179a\u17bd\u1798",
|
||||
"Image options": "\u1787\u1798\u17d2\u179a\u17be\u179f\u200b\u179a\u17bc\u1794\u1797\u17b6\u1796",
|
||||
"Apply": "\u17a2\u1793\u17bb\u179c\u178f\u17d2\u178f",
|
||||
"Brightness": "\u1796\u1793\u17d2\u179b\u17ba",
|
||||
"Rotate clockwise": "\u1794\u1784\u17d2\u179c\u17b7\u179b\u200b\u179f\u17d2\u179a\u1794\u200b\u1791\u17d2\u179a\u1793\u17b7\u1785\u200b\u1793\u17b6\u17a1\u17b7\u1780\u17b6",
|
||||
"Rotate counterclockwise": "\u1794\u1784\u17d2\u179c\u17b7\u179b\u200b\u1785\u17d2\u179a\u17b6\u179f\u200b\u1791\u17d2\u179a\u1793\u17b7\u1785\u200b\u1793\u17b6\u17a1\u17b7\u1780\u17b6",
|
||||
"Edit image": "\u1780\u17c2\u179f\u1798\u17d2\u179a\u17bd\u179b\u200b\u179a\u17bc\u1794\u1797\u17b6\u1796",
|
||||
"Color levels": "\u1780\u1798\u17d2\u179a\u17b7\u178f\u200b\u1796\u178e\u17cc",
|
||||
"Crop": "\u1785\u17d2\u179a\u17b9\u1794",
|
||||
"Orientation": "\u1791\u17b7\u179f",
|
||||
"Flip vertically": "\u178f\u17d2\u179a\u17a1\u1794\u17cb\u200b\u1794\u1789\u17d2\u1788\u179a",
|
||||
"Invert": "\u178a\u17b6\u1780\u17cb\u200b\u1794\u1789\u17d2\u1785\u17d2\u179a\u17b6\u179f",
|
||||
"Insert date\/time": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1780\u17b6\u179b\u200b\u1794\u179a\u17b7\u1785\u17d2\u1786\u17c1\u1791\/\u1798\u17c9\u17c4\u1784",
|
||||
"Remove link": "\u178a\u1780\u200b\u178f\u17c6\u178e\u200b\u1785\u17c1\u1789",
|
||||
"Url": "Url",
|
||||
"Text to display": "\u17a2\u1780\u17d2\u179f\u179a\u200b\u178f\u17d2\u179a\u17bc\u179c\u200b\u1794\u1784\u17d2\u17a0\u17b6\u1789",
|
||||
"Anchors": "\u1799\u17bb\u1790\u17d2\u1780\u17b6",
|
||||
"Insert link": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u178f\u17c6\u178e",
|
||||
"New window": "\u1795\u17d2\u1791\u17b6\u17c6\u1784\u200b\u179c\u17b8\u1793\u178a\u17bc\u200b\u1790\u17d2\u1798\u17b8",
|
||||
"None": "\u1798\u17b7\u1793\u200b\u1798\u17b6\u1793",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u17a2\u17d2\u1793\u1780\u200b\u1794\u17b6\u1793\u200b\u1794\u1789\u17d2\u1785\u17bc\u179b URL \u178a\u17c2\u179b\u200b\u1787\u17b6\u200b\u178f\u17c6\u178e\u200b\u1791\u17c5\u200b\u1781\u17b6\u1784\u200b\u1780\u17d2\u179a\u17c5\u17d4 \u178f\u17be\u200b\u17a2\u17d2\u1793\u1780\u200b\u1785\u1784\u17cb\u200b\u1794\u1793\u17d2\u1790\u17c2\u1798\u200b\u1794\u17bb\u1796\u17d2\u179c\u1794\u200b\u1791 http:\/\/ \u178a\u17c2\u179a\u200b\u17ac\u1791\u17c1?",
|
||||
"Target": "\u1791\u17b7\u179f\u178a\u17c5",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u17a2\u17d2\u1793\u1780\u200b\u1794\u17b6\u1793\u200b\u1794\u1789\u17d2\u1785\u17bc\u179b URL \u178a\u17c2\u179b\u200b\u1798\u17b6\u1793\u200b\u179f\u178e\u17d2\u178b\u17b6\u1793\u200b\u178a\u17bc\u1785\u200b\u17a2\u17b6\u179f\u1799\u178a\u17d2\u178b\u17b6\u1793\u200b\u17a2\u17ca\u17b8\u1798\u17c2\u179b\u17d4 \u178f\u17be\u200b\u17a2\u17d2\u1793\u1780\u200b\u1785\u1784\u17cb\u200b\u1794\u1793\u17d2\u1790\u17c2\u1798\u200b\u1794\u17bb\u1796\u17d2\u179c\u1794\u200b\u1791 mailto: \u178a\u17c2\u179a\u200b\u17ac\u1791\u17c1?",
|
||||
"Insert\/edit link": "\u1794\u1789\u17d2\u1785\u17bc\u179b\/\u1780\u17c2 \u178f\u17c6\u178e",
|
||||
"Insert\/edit video": "\u1794\u1789\u17d2\u1785\u17bc\u179b\/\u1780\u17c2 \u179c\u17b8\u178a\u17c1\u17a2\u17bc",
|
||||
"Poster": "\u17a2\u17d2\u1793\u1780\u200b\u1795\u17d2\u179f\u17b6\u1799",
|
||||
"Alternative source": "\u1794\u17d2\u179a\u1797\u1796\u200b\u178a\u1791\u17c3\u200b\u1791\u17c0\u178f",
|
||||
"Paste your embed code below:": "\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1780\u17bc\u178a\u200b\u1794\u1784\u17d2\u1780\u1794\u17cb\u200b\u1793\u17c5\u200b\u1781\u17b6\u1784\u200b\u1780\u17d2\u179a\u17c4\u1798:",
|
||||
"Insert video": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u179c\u17b8\u178a\u17c1\u17a2\u17bc",
|
||||
"Embed": "\u1794\u1784\u17d2\u1780\u1794\u17cb",
|
||||
"Nonbreaking space": "\u178a\u17c6\u178e\u1780\u200b\u1783\u17d2\u179b\u17b6\u200b\u1798\u17b7\u1793\u200b\u1794\u17c6\u1794\u17c2\u1780",
|
||||
"Page break": "\u1794\u17c6\u1794\u17c2\u1780\u200b\u1791\u17c6\u1796\u17d0\u179a",
|
||||
"Paste as text": "\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1787\u17b6\u200b\u17a2\u1780\u17d2\u179f\u179a",
|
||||
"Preview": "\u1798\u17be\u179b\u200b\u1787\u17b6\u200b\u1798\u17bb\u1793",
|
||||
"Print": "\u1794\u17c4\u17c7\u200b\u1796\u17bb\u1798\u17d2\u1796",
|
||||
"Save": "\u179a\u1780\u17d2\u179f\u17b6\u200b\u1791\u17bb\u1780",
|
||||
"Could not find the specified string.": "\u1798\u17b7\u1793\u200b\u17a2\u17b6\u1785\u200b\u179a\u1780\u200b\u1783\u17be\u1789\u200b\u1781\u17d2\u179f\u17c2\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u178a\u17c2\u179b\u200b\u1794\u17b6\u1793\u200b\u1780\u17c6\u178e\u178f\u17cb\u17d4",
|
||||
"Replace": "\u1787\u17c6\u1793\u17bd\u179f",
|
||||
"Next": "\u1798\u17bb\u1781",
|
||||
"Whole words": "\u1796\u17b6\u1780\u17d2\u1799\u200b\u1791\u17b6\u17c6\u1784\u200b\u1798\u17bc\u179b",
|
||||
"Find and replace": "\u179f\u17d2\u179c\u17c2\u1784\u200b\u179a\u1780\u200b\u1793\u17b7\u1784\u200b\u1787\u17c6\u1793\u17bd\u179f",
|
||||
"Replace with": "\u1787\u17c6\u1793\u17bd\u179f\u200b\u178a\u17c4\u1799",
|
||||
"Find": "\u179f\u17d2\u179c\u17c2\u1784\u200b\u179a\u1780",
|
||||
"Replace all": "\u1787\u17c6\u1793\u17bd\u179f\u200b\u1791\u17b6\u17c6\u1784\u200b\u17a2\u179f\u17cb",
|
||||
"Match case": "\u1780\u179a\u178e\u17b8\u200b\u178a\u17c6\u178e\u17bc\u1785",
|
||||
"Prev": "\u1780\u17d2\u179a\u17c4\u1799",
|
||||
"Spellcheck": "\u1796\u17b7\u1793\u17b7\u178f\u17d2\u1799\u200b\u17a2\u1780\u17d2\u1781\u179a\u17b6\u179c\u17b7\u179a\u17bb\u1791\u17d2\u1792",
|
||||
"Finish": "\u1794\u1789\u17d2\u1785\u1794\u17cb",
|
||||
"Ignore all": "\u1798\u17b7\u1793\u200b\u17a2\u17be\u1796\u17be\u200b\u1791\u17b6\u17c6\u1784\u200b\u17a2\u179f\u17cb",
|
||||
"Ignore": "\u1798\u17b7\u1793\u200b\u17a2\u17be\u200b\u1796\u17be",
|
||||
"Add to Dictionary": "\u1794\u1793\u17d2\u1790\u17c2\u1798\u200b\u1791\u17c5\u200b\u179c\u1785\u1793\u17b6\u1793\u17bb\u1780\u17d2\u179a\u1798",
|
||||
"Insert row before": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1788\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1796\u17b8\u200b\u1798\u17bb\u1781",
|
||||
"Rows": "\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780",
|
||||
"Height": "\u1780\u1798\u17d2\u1796\u179f\u17cb",
|
||||
"Paste row after": "\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1796\u17b8\u200b\u1780\u17d2\u179a\u17c4\u1799",
|
||||
"Alignment": "\u1780\u17b6\u179a\u200b\u178f\u1798\u17d2\u179a\u17b9\u1798",
|
||||
"Border color": "\u1796\u178e\u17cc\u200b\u179f\u17ca\u17bb\u1798",
|
||||
"Column group": "\u1780\u17d2\u179a\u17bb\u1798\u200b\u1787\u17bd\u179a\u200b\u1788\u179a",
|
||||
"Row": "\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780",
|
||||
"Insert column before": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1787\u17bd\u179a\u200b\u1788\u179a\u200b\u1796\u17b8\u200b\u1798\u17bb\u1781",
|
||||
"Split cell": "\u1789\u17c2\u1780\u200b\u1780\u17d2\u179a\u17a1\u17b6",
|
||||
"Cell padding": "\u1785\u1793\u17d2\u179b\u17c4\u17c7\u200b\u1780\u17d2\u179a\u17a1\u17b6",
|
||||
"Cell spacing": "\u1782\u1798\u17d2\u179b\u17b6\u178f\u200b\u1780\u17d2\u179a\u17a1\u17b6",
|
||||
"Row type": "\u1794\u17d2\u179a\u1797\u17c1\u1791\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780",
|
||||
"Insert table": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u178f\u17b6\u179a\u17b6\u1784",
|
||||
"Body": "\u178f\u17bd\u200b\u179f\u17c1\u1785\u1780\u17d2\u178a\u17b8",
|
||||
"Caption": "\u1785\u17c6\u178e\u1784\u200b\u1787\u17be\u1784",
|
||||
"Footer": "\u1794\u178b\u1798\u200b\u1780\u1790\u17b6",
|
||||
"Delete row": "\u179b\u17bb\u1794\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780",
|
||||
"Paste row before": "\u1794\u17b7\u1791\u200b\u1797\u17d2\u1787\u17b6\u1794\u17cb\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1796\u17b8\u200b\u1798\u17bb\u1781",
|
||||
"Scope": "\u179c\u17b7\u179f\u17b6\u179b\u200b\u1797\u17b6\u1796",
|
||||
"Delete table": "\u179b\u17bb\u1794\u200b\u178f\u17b6\u179a\u17b6\u1784",
|
||||
"H Align": "\u1780\u17b6\u179a\u200b\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1795\u17d2\u178a\u17c1\u1780",
|
||||
"Top": "\u179b\u17be",
|
||||
"Header cell": "\u1780\u17d2\u179a\u17a1\u17b6\u200b\u1785\u17c6\u178e\u1784\u200b\u1787\u17be\u1784",
|
||||
"Column": "\u1787\u17bd\u179a\u200b\u1788\u179a",
|
||||
"Row group": "\u1780\u17d2\u179a\u17bb\u1798\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780",
|
||||
"Cell": "\u1780\u17d2\u179a\u17a1\u17b6",
|
||||
"Middle": "\u1780\u178e\u17d2\u178a\u17b6\u179b",
|
||||
"Cell type": "\u1794\u17d2\u179a\u1797\u17c1\u1791\u200b\u1780\u17d2\u179a\u17a1\u17b6",
|
||||
"Copy row": "\u1785\u1798\u17d2\u179b\u1784\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780",
|
||||
"Row properties": "\u179b\u1780\u17d2\u1781\u178e\u17c8\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780",
|
||||
"Table properties": "\u179b\u1780\u17d2\u1781\u178e\u17c8\u200b\u178f\u17b6\u179a\u17b6\u1784",
|
||||
"Bottom": "\u1780\u17d2\u179a\u17c4\u1798",
|
||||
"V Align": "\u1780\u17b6\u179a\u200b\u178f\u1798\u17d2\u179a\u17b9\u1798\u200b\u1794\u1789\u17d2\u1788\u179a",
|
||||
"Header": "\u1785\u17c6\u178e\u1784\u200b\u1787\u17be\u1784",
|
||||
"Right": "\u179f\u17d2\u178a\u17b6\u17c6",
|
||||
"Insert column after": "\u1794\u1789\u17d2\u1787\u17bc\u179b\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1796\u17b8\u200b\u1780\u17d2\u179a\u17c4\u1799",
|
||||
"Cols": "\u1787\u17bd\u179a\u200b\u1788\u179a",
|
||||
"Insert row after": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780\u200b\u1796\u17b8\u200b\u1780\u17d2\u179a\u17c4\u1799",
|
||||
"Width": "\u1791\u1791\u17b9\u1784",
|
||||
"Cell properties": "\u179b\u1780\u17d2\u1781\u178e\u17c8\u200b\u1780\u17d2\u179a\u17a1\u17b6",
|
||||
"Left": "\u1786\u17d2\u179c\u17c1\u1784",
|
||||
"Cut row": "\u1780\u17b6\u178f\u17cb\u200b\u1787\u17bd\u179a\u200b\u178a\u17c1\u1780",
|
||||
"Delete column": "\u179b\u17bb\u1794\u200b\u1787\u17bd\u179a\u200b\u1788\u179a",
|
||||
"Center": "\u1780\u178e\u17d2\u178a\u17b6\u179b",
|
||||
"Merge cells": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1780\u17d2\u179a\u17a1\u17b6\u200b\u1785\u17bc\u179b\u200b\u1782\u17d2\u1793\u17b6",
|
||||
"Insert template": "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1796\u17bb\u1798\u17d2\u1796\u200b\u1782\u1798\u17d2\u179a\u17bc",
|
||||
"Templates": "\u1796\u17bb\u1798\u17d2\u1796\u200b\u1782\u1798\u17d2\u179a\u17bc",
|
||||
"Background color": "\u1796\u178e\u17cc\u200b\u1795\u17d2\u1791\u17c3\u200b\u1780\u17d2\u179a\u17c4\u1799",
|
||||
"Custom...": "\u1795\u17d2\u1791\u17b6\u179b\u17cb\u200b\u1781\u17d2\u179b\u17bd\u1793...",
|
||||
"Custom color": "\u1796\u178e\u17cc\u200b\u1795\u17d2\u1791\u17b6\u179b\u17cb\u200b\u1781\u17d2\u179b\u17bd\u1793",
|
||||
"No color": "\u1782\u17d2\u1798\u17b6\u1793\u200b\u1796\u178e\u17cc",
|
||||
"Text color": "\u1796\u178e\u17cc\u200b\u17a2\u1780\u17d2\u179f\u179a",
|
||||
"Show blocks": "\u1794\u1784\u17d2\u17a0\u17b6\u1789\u200b\u1794\u17d2\u179b\u17bb\u1780",
|
||||
"Show invisible characters": "\u1794\u1784\u17d2\u17a0\u17b6\u1789\u200b\u178f\u17bd\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u1780\u17c6\u1794\u17b6\u17c6\u1784",
|
||||
"Words: {0}": "\u1796\u17b6\u1780\u17d2\u1799: {0}",
|
||||
"Insert": "\u1794\u1789\u17d2\u1785\u17bc\u179b",
|
||||
"File": "\u17af\u1780\u179f\u17b6\u179a",
|
||||
"Edit": "\u1780\u17c2\u1794\u17d2\u179a\u17c2",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u1791\u17b8\u178f\u17b6\u17c6\u1784\u200b\u17a2\u1780\u17d2\u179f\u179a\u200b\u179f\u17c6\u1794\u17bc\u179a\u1794\u17c2\u1794\u17d4 \u1785\u17bb\u1785 ALT-F9 \u179f\u1798\u17d2\u179a\u17b6\u1794\u17cb\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799\u17d4 \u1785\u17bb\u1785 ALT-F10 \u179f\u1798\u17d2\u179a\u17b6\u1794\u17cb\u200b\u179a\u1794\u17b6\u179a\u200b\u17a7\u1794\u1780\u179a\u178e\u17cd\u17d4 \u1785\u17bb\u1785 ALT-0 \u179f\u1798\u17d2\u179a\u17b6\u1794\u17cb\u200b\u1787\u17c6\u1793\u17bd\u1799\u17d4",
|
||||
"Tools": "\u17a7\u1794\u1780\u179a\u178e\u17cd",
|
||||
"View": "\u1791\u17b7\u178a\u17d2\u178b\u1797\u17b6\u1796",
|
||||
"Table": "\u178f\u17b6\u179a\u17b6\u1784",
|
||||
"Format": "\u1791\u17d2\u179a\u1784\u17cb\u1791\u17d2\u179a\u17b6\u1799"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ko_KR.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ko_KR.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ko_KR',{
|
||||
"Cut": "\uc798\ub77c\ub0b4\uae30",
|
||||
"Heading 5": "\uc81c\ubaa9 5",
|
||||
"Header 2": "\uc81c\ubaa9 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\ube0c\ub77c\uc6b0\uc838\uac00 \ud074\ub9bd\ubcf4\ub4dc \uc811\uadfc\uc744 \ud5c8\uc6a9\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. Ctrl+X\/C\/V \ud0a4\ub97c \uc774\uc6a9\ud574 \uc8fc\uc138\uc694.",
|
||||
"Heading 4": "\uc81c\ubaa9 4",
|
||||
"Div": "\uad6c\ubd84",
|
||||
"Heading 2": "\uc81c\ubaa9 2",
|
||||
"Paste": "\ubd99\uc5ec\ub123\uae30",
|
||||
"Close": "\ub2eb\uae30",
|
||||
"Font Family": "\uae00\uaf34",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\uc624\ub978\ucabd\uc815\ub82c",
|
||||
"New document": "\uc0c8 \ubb38\uc11c",
|
||||
"Blockquote": "\uad6c\ud68d",
|
||||
"Numbered list": "\uc22b\uc790\ub9ac\uc2a4\ud2b8",
|
||||
"Heading 1": "\uc81c\ubaa9 1",
|
||||
"Headings": "\uc81c\ubaa9",
|
||||
"Increase indent": "\ub4e4\uc5ec\uc4f0\uae30",
|
||||
"Formats": "\ud3ec\ub9f7",
|
||||
"Headers": "\uc2a4\ud0c0\uc77c",
|
||||
"Select all": "\uc804\uccb4\uc120\ud0dd",
|
||||
"Header 3": "\uc81c\ubaa9 3",
|
||||
"Blocks": "\ube14\ub85d \uc124\uc815",
|
||||
"Undo": "\uc2e4\ud589\ucde8\uc18c",
|
||||
"Strikethrough": "\ucde8\uc18c\uc120",
|
||||
"Bullet list": "\uc810\ub9ac\uc2a4\ud2b8",
|
||||
"Header 1": "\uc81c\ubaa9 1",
|
||||
"Superscript": "\uc717\ucca8\uc790",
|
||||
"Clear formatting": "\ud3ec\ub9f7\ucd08\uae30\ud654",
|
||||
"Font Sizes": "\ud3f0\ud2b8 \uc0ac\uc774\uc988",
|
||||
"Subscript": "\uc544\ub798\ucca8\uc790",
|
||||
"Header 6": "\uc81c\ubaa9 6",
|
||||
"Redo": "\ub2e4\uc2dc\uc2e4\ud589",
|
||||
"Paragraph": "\ub2e8\ub77d",
|
||||
"Ok": "\ud655\uc778",
|
||||
"Bold": "\uad75\uac8c",
|
||||
"Code": "\ucf54\ub4dc",
|
||||
"Italic": "\uae30\uc6b8\uc784\uaf34",
|
||||
"Align center": "\uac00\uc6b4\ub370\uc815\ub82c",
|
||||
"Header 5": "\uc81c\ubaa9 5",
|
||||
"Heading 6": "\uc81c\ubaa9 6",
|
||||
"Heading 3": "\uc81c\ubaa9 3",
|
||||
"Decrease indent": "\ub0b4\uc5b4\uc4f0\uae30",
|
||||
"Header 4": "\uc81c\ubaa9 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\uc2a4\ud0c0\uc77c\ubcf5\uc0ac \ub044\uae30. \uc774 \uc635\uc158\uc744 \ub044\uae30 \uc804\uc5d0\ub294 \ubcf5\uc0ac \uc2dc, \uc2a4\ud0c0\uc77c\uc774 \ubcf5\uc0ac\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.",
|
||||
"Underline": "\ubc11\uc904",
|
||||
"Cancel": "\ucde8\uc18c",
|
||||
"Justify": "\uc591\ucabd\uc815\ub82c",
|
||||
"Inline": "\ub77c\uc778 \uc124\uc815",
|
||||
"Copy": "\ubcf5\uc0ac\ud558\uae30",
|
||||
"Align left": "\uc67c\ucabd\uc815\ub82c",
|
||||
"Visual aids": "\uc2dc\uac01\uad50\uc7ac",
|
||||
"Lower Greek": "\uadf8\ub9ac\uc2a4\uc5b4 \uc18c\ubb38\uc790",
|
||||
"Square": "\uc0ac\uac01",
|
||||
"Default": "\uae30\ubcf8",
|
||||
"Lower Alpha": "\uc54c\ud30c\ubcb3 \uc18c\ubb38\uc790",
|
||||
"Circle": "\uc6d0",
|
||||
"Disc": "\uc6d0\ubc18",
|
||||
"Upper Alpha": "\uc54c\ud30c\ubcb3 \uc18c\ubb38\uc790",
|
||||
"Upper Roman": "\ub85c\ub9c8\uc790 \ub300\ubb38\uc790",
|
||||
"Lower Roman": "\ub85c\ub9c8\uc790 \uc18c\ubb38\uc790",
|
||||
"Name": "\uc774\ub984",
|
||||
"Anchor": "\uc575\ucee4",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\uc800\uc7a5\ud558\uc9c0 \uc54a\uc740 \uc815\ubcf4\uac00 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud398\uc774\uc9c0\ub97c \ubc97\uc5b4\ub098\uc2dc\uaca0\uc2b5\ub2c8\uae4c?",
|
||||
"Restore last draft": "\ub9c8\uc9c0\ub9c9 \ucd08\uc548 \ubcf5\uc6d0",
|
||||
"Special character": "\ud2b9\uc218\ubb38\uc790",
|
||||
"Source code": "\uc18c\uc2a4\ucf54\ub4dc",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\uc0c9\uc0c1",
|
||||
"Right to left": "\uc624\ub978\ucabd\uc5d0\uc11c \uc67c\ucabd",
|
||||
"Left to right": "\uc67c\ucabd\uc5d0\uc11c \uc624\ub978\ucabd",
|
||||
"Emoticons": "\uc774\ubaa8\ud2f0\ucf58",
|
||||
"Robots": "\ub85c\ubd07",
|
||||
"Document properties": "\ubb38\uc11c \uc18d\uc131",
|
||||
"Title": "\uc81c\ubaa9",
|
||||
"Keywords": "\ud0a4\uc6cc\ub4dc",
|
||||
"Encoding": "\uc778\ucf54\ub529",
|
||||
"Description": "\uc124\uba85",
|
||||
"Author": "\uc800\uc790",
|
||||
"Fullscreen": "\uc804\uccb4\ud654\uba74",
|
||||
"Horizontal line": "\uac00\ub85c",
|
||||
"Horizontal space": "\uc218\ud3c9 \uacf5\ubc31",
|
||||
"Insert\/edit image": "\uc774\ubbf8\uc9c0 \uc0bd\uc785\/\uc218\uc815",
|
||||
"General": "\uc77c\ubc18",
|
||||
"Advanced": "\uace0\uae09",
|
||||
"Source": "\uc18c\uc2a4",
|
||||
"Border": "\ud14c\ub450\ub9ac",
|
||||
"Constrain proportions": "\uc791\uc5c5 \uc81c\ud55c",
|
||||
"Vertical space": "\uc218\uc9c1 \uacf5\ubc31",
|
||||
"Image description": "\uc774\ubbf8\uc9c0 \uc124\uba85",
|
||||
"Style": "\uc2a4\ud0c0\uc77c",
|
||||
"Dimensions": "\ud06c\uae30",
|
||||
"Insert image": "\uc774\ubbf8\uc9c0 \uc0bd\uc785",
|
||||
"Zoom in": "\ud655\ub300",
|
||||
"Contrast": "\ub300\ube44",
|
||||
"Back": "\ub4a4\ub85c",
|
||||
"Gamma": "\uac10\ub9c8",
|
||||
"Flip horizontally": "\uc218\ud3c9 \ub4a4\uc9d1\uae30",
|
||||
"Resize": "\ud06c\uae30 \uc870\uc808",
|
||||
"Sharpen": "\uc120\uba85\ud558\uac8c",
|
||||
"Zoom out": "\ucd95\uc18c",
|
||||
"Image options": "\uc774\ubbf8\uc9c0 \uc635\uc158",
|
||||
"Apply": "\uc801\uc6a9",
|
||||
"Brightness": "\ubc1d\uae30",
|
||||
"Rotate clockwise": "\uc2dc\uacc4\ubc29\ud5a5\uc73c\ub85c \ud68c\uc804",
|
||||
"Rotate counterclockwise": "\uc2dc\uacc4\ubc18\ub300\ubc29\ud5a5\uc73c\ub85c \ud68c\uc804",
|
||||
"Edit image": "\uc774\ubbf8\uc9c0 \ud3b8\uc9d1",
|
||||
"Color levels": "\uc0c9\uc0c1\ub808\ubca8",
|
||||
"Crop": "\uc790\ub974\uae30",
|
||||
"Orientation": "\ubc29\ud5a5",
|
||||
"Flip vertically": "\uc218\uc9c1 \ub4a4\uc9d1\uae30",
|
||||
"Invert": "\ubc18\uc804",
|
||||
"Insert date\/time": "\ub0a0\uc9dc\/\uc2dc\uac04\uc0bd\uc785",
|
||||
"Remove link": "\ub9c1\ud06c\uc0ad\uc81c",
|
||||
"Url": "\uc8fc\uc18c",
|
||||
"Text to display": "\ubcf8\ubb38",
|
||||
"Anchors": "\ucc45\uac08\ud53c",
|
||||
"Insert link": "\ub9c1\ud06c \uc0bd\uc785 ",
|
||||
"New window": "\uc0c8\ucc3d",
|
||||
"None": "\uc5c6\uc74c",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\ud604\uc7ac \uc6f9\uc0ac\uc774\ud2b8 \uc8fc\uc18c\ub97c \uc785\ub825\ud558\uc168\uc2b5\ub2c8\ub2e4. \ud574\ub2f9 \uc8fc\uc18c\uc5d0 \ub9c1\ud06c\ub97c \uac78\uae4c\uc694?",
|
||||
"Target": "\ub300\uc0c1",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\ud604\uc7ac E-mail\uc8fc\uc18c\ub97c \uc785\ub825\ud558\uc168\uc2b5\ub2c8\ub2e4. E-mail \uc8fc\uc18c\uc5d0 \ub9c1\ud06c\ub97c \uac78\uae4c\uc694?",
|
||||
"Insert\/edit link": "\ub9c1\ud06c \uc0bd\uc785\/\uc218\uc815",
|
||||
"Insert\/edit video": "\ube44\ub514\uc624 \uc0bd\uc785\/\uc218\uc815",
|
||||
"Poster": "\ud3ec\uc2a4\ud130",
|
||||
"Alternative source": "\ub300\uccb4 \uc18c\uc2a4",
|
||||
"Paste your embed code below:": "\uc544\ub798\uc5d0 \ucf54\ub4dc\ub97c \ubd99\uc5ec\ub123\uc73c\uc138\uc694:",
|
||||
"Insert video": "\ube44\ub514\uc624 \uc0bd\uc785",
|
||||
"Embed": "\uc0bd\uc785",
|
||||
"Nonbreaking space": "\ub744\uc5b4\uc4f0\uae30",
|
||||
"Page break": "\ud398\uc774\uc9c0 \uad6c\ubd84\uc790",
|
||||
"Paste as text": "\ud14d\uc2a4\ud2b8\ub85c \ubd99\uc5ec\ub123\uae30",
|
||||
"Preview": "\ubbf8\ub9ac\ubcf4\uae30",
|
||||
"Print": "\ucd9c\ub825",
|
||||
"Save": "\uc800\uc7a5",
|
||||
"Could not find the specified string.": "\ubb38\uc790\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
||||
"Replace": "\uad50\uccb4",
|
||||
"Next": "\ub2e4\uc74c",
|
||||
"Whole words": "\uc804\uccb4 \ub2e8\uc5b4",
|
||||
"Find and replace": "\ucc3e\uc544\uc11c \uad50\uccb4",
|
||||
"Replace with": "\uad50\uccb4",
|
||||
"Find": "\ucc3e\uae30",
|
||||
"Replace all": "\uc804\uccb4 \uad50\uccb4",
|
||||
"Match case": "\ub300\uc18c\ubb38\uc790 \uc77c\uce58",
|
||||
"Prev": "\uc774\uc804",
|
||||
"Spellcheck": "\ubb38\ubc95\uccb4\ud06c",
|
||||
"Finish": "\uc644\ub8cc",
|
||||
"Ignore all": "\uc804\uccb4\ubb34\uc2dc",
|
||||
"Ignore": "\ubb34\uc2dc",
|
||||
"Add to Dictionary": "\uc0ac\uc804\uc5d0 \ucd94\uac00",
|
||||
"Insert row before": "\uc774\uc804\uc5d0 \ud589 \uc0bd\uc785",
|
||||
"Rows": "\ud589",
|
||||
"Height": "\ub192\uc774",
|
||||
"Paste row after": "\ub2e4\uc74c\uc5d0 \ud589 \ubd99\uc5ec\ub123\uae30",
|
||||
"Alignment": "\uc815\ub82c",
|
||||
"Border color": "\ud14c\ub450\ub9ac \uc0c9",
|
||||
"Column group": "\uc5f4 \uadf8\ub8f9",
|
||||
"Row": "\uc5f4",
|
||||
"Insert column before": "\uc774\uc804\uc5d0 \ud589 \uc0bd\uc785",
|
||||
"Split cell": "\uc140 \ub098\ub204\uae30",
|
||||
"Cell padding": "\uc140 \uc548\ucabd \uc5ec\ubc31",
|
||||
"Cell spacing": "\uc140 \uac04\uaca9",
|
||||
"Row type": "\ud589 \ud0c0\uc785",
|
||||
"Insert table": "\ud14c\uc774\ube14 \uc0bd\uc785",
|
||||
"Body": "\ubc14\ub514",
|
||||
"Caption": "\ucea1\uc158",
|
||||
"Footer": "\ud478\ud130",
|
||||
"Delete row": "\ud589 \uc9c0\uc6b0\uae30",
|
||||
"Paste row before": "\uc774\uc804\uc5d0 \ud589 \ubd99\uc5ec\ub123\uae30",
|
||||
"Scope": "\ubc94\uc704",
|
||||
"Delete table": "\ud14c\uc774\ube14 \uc0ad\uc81c",
|
||||
"H Align": "\uac00\ub85c \uc815\ub82c",
|
||||
"Top": "\uc0c1\ub2e8",
|
||||
"Header cell": "\ud5e4\ub354 \uc140",
|
||||
"Column": "\ud589",
|
||||
"Row group": "\ud589 \uadf8\ub8f9",
|
||||
"Cell": "\uc140",
|
||||
"Middle": "\uc911\uac04",
|
||||
"Cell type": "\uc140 \ud0c0\uc785",
|
||||
"Copy row": "\ud589 \ubcf5\uc0ac",
|
||||
"Row properties": "\ud589 \uc18d\uc131",
|
||||
"Table properties": "\ud14c\uc774\ube14 \uc18d\uc131",
|
||||
"Bottom": "\ud558\ub2e8",
|
||||
"V Align": "\uc138\ub85c \uc815\ub82c",
|
||||
"Header": "\ud5e4\ub354",
|
||||
"Right": "\uc624\ub978\ucabd",
|
||||
"Insert column after": "\ub2e4\uc74c\uc5d0 \uc5f4 \uc0bd\uc785",
|
||||
"Cols": "\uc5f4",
|
||||
"Insert row after": "\ub2e4\uc74c\uc5d0 \ud589 \uc0bd\uc785",
|
||||
"Width": "\ub113\uc774",
|
||||
"Cell properties": "\uc140 \uc18d",
|
||||
"Left": "\uc67c\ucabd",
|
||||
"Cut row": "\ud589 \uc798\ub77c\ub0b4\uae30",
|
||||
"Delete column": "\uc5f4 \uc9c0\uc6b0\uae30",
|
||||
"Center": "\uac00\uc6b4\ub370",
|
||||
"Merge cells": "\uc140 \ud569\uce58\uae30",
|
||||
"Insert template": "\ud15c\ud50c\ub9bf \uc0bd\uc785",
|
||||
"Templates": "\ud15c\ud50c\ub9bf",
|
||||
"Background color": "\ubc30\uacbd\uc0c9",
|
||||
"Custom...": "\uc9c1\uc811 \uc0c9\uae54 \uc9c0\uc815\ud558\uae30",
|
||||
"Custom color": "\uc9c1\uc811 \uc9c0\uc815\ud55c \uc0c9\uae54",
|
||||
"No color": "\uc0c9\uc0c1 \uc5c6\uc74c",
|
||||
"Text color": "\ubb38\uc790 \uc0c9\uae54",
|
||||
"Show blocks": "\ube14\ub7ed \ubcf4\uc5ec\uc8fc\uae30",
|
||||
"Show invisible characters": "\uc548\ubcf4\uc774\ub294 \ubb38\uc790 \ubcf4\uc774\uae30",
|
||||
"Words: {0}": "\ub2e8\uc5b4: {0}",
|
||||
"Insert": "\uc0bd\uc785",
|
||||
"File": "\ud30c\uc77c",
|
||||
"Edit": "\uc218\uc815",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\uc11c\uc2dd \uc788\ub294 \ud14d\uc2a4\ud2b8 \ud3b8\uc9d1\uae30 \uc785\ub2c8\ub2e4. ALT-F9\ub97c \ub204\ub974\uba74 \uba54\ub274, ALT-F10\ub97c \ub204\ub974\uba74 \ud234\ubc14, ALT-0\uc744 \ub204\ub974\uba74 \ub3c4\uc6c0\ub9d0\uc744 \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4.",
|
||||
"Tools": "\ub3c4\uad6c",
|
||||
"View": "\ubcf4\uae30",
|
||||
"Table": "\ud14c\uc774\ube14",
|
||||
"Format": "\ud3ec\ub9f7"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ku.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ku.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ku',{
|
||||
"Cut": "\u0628\u0695\u06cc\u0646",
|
||||
"Heading 5": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 5",
|
||||
"Header 2": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0648\u06ce\u0628\u06af\u06d5\u0695\u06d5\u06a9\u06d5\u062a \u067e\u0627\u06b5\u067e\u0634\u062a\u06cc \u062f\u06d5\u0633\u062a\u06a9\u06d5\u0648\u062a\u0646\u06cc \u0695\u0627\u0633\u062a\u06d5\u0648\u062e\u06c6\u06cc \u06a9\u0644\u06cc\u067e\u0628\u06c6\u0631\u062f \u0646\u0627\u06a9\u0627\u062a. \u062a\u06a9\u0627\u06cc\u06d5 \u0644\u06d5\u062c\u06cc\u0627\u062a\u06cc \u06a9\u0648\u0631\u062a\u0628\u0695\u06d5\u06a9\u0627\u0646\u06cc Ctrl+X\/C\/V \u062a\u06d5\u062e\u062a\u06d5\u06a9\u0644\u06cc\u0644 \u0628\u06d5\u06a9\u0627\u0631\u0628\u06ce\u0646\u06d5.",
|
||||
"Heading 4": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 2",
|
||||
"Paste": "\u0644\u06a9\u0627\u0646\u062f\u0646",
|
||||
"Close": "\u062f\u0627\u062e\u0633\u062a\u0646",
|
||||
"Font Family": "\u062c\u06c6\u0631\u06cc \u0641\u06c6\u0646\u062a",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u0644\u0627\u06af\u0631\u062a\u0646\u06cc \u0695\u0627\u0633\u062a",
|
||||
"New document": "\u0628\u06d5\u06b5\u06af\u06d5\u0646\u0627\u0645\u06d5\u06cc \u0646\u0648\u06ce",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "\u0644\u06cc\u0633\u062a\u06cc \u0698\u0645\u0627\u0631\u06d5",
|
||||
"Heading 1": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 1",
|
||||
"Headings": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a\u06d5\u06a9\u0627\u0646",
|
||||
"Increase indent": "\u0632\u06cc\u0627\u062f\u06a9\u0631\u062f\u0646\u06cc \u0628\u06c6\u0634\u0627\u06cc\u06cc",
|
||||
"Formats": "\u0634\u06ce\u0648\u0627\u0632\u06a9\u0631\u062f\u0646\u06d5\u06a9\u0627\u0646",
|
||||
"Headers": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5\u06a9\u0627\u0646",
|
||||
"Select all": "\u0647\u06d5\u06b5\u0628\u0698\u0627\u0631\u062f\u0646\u06cc \u0647\u06d5\u0645\u0648\u0648",
|
||||
"Header 3": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 3",
|
||||
"Blocks": "\u0628\u0644\u06c6\u06a9\u06d5\u06a9\u0627\u0646",
|
||||
"Undo": "\u06af\u06d5\u0695\u0627\u0646\u06d5\u0648\u06d5",
|
||||
"Strikethrough": "\u0647\u06ce\u06b5 \u0628\u06d5\u0646\u0627\u0648\u062f\u0627\u0646",
|
||||
"Bullet list": "\u0644\u06cc\u0633\u062a\u06cc \u062e\u0627\u06b5",
|
||||
"Header 1": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 1",
|
||||
"Superscript": "\u0633\u06d5\u0631\u0646\u0648\u0648\u0633",
|
||||
"Clear formatting": "\u067e\u0627\u06a9\u06a9\u0631\u062f\u0646\u06d5\u0648\u06d5\u06cc \u0634\u06ce\u0648\u0627\u0632\u06a9\u0631\u062f\u0646",
|
||||
"Font Sizes": "\u0642\u06d5\u0628\u0627\u0631\u06d5\u06cc \u0641\u06c6\u0646\u062a",
|
||||
"Subscript": "\u0698\u06ce\u0631\u0646\u0648\u0648\u0633",
|
||||
"Header 6": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 6",
|
||||
"Redo": "\u06a9\u0631\u062f\u0646\u06d5\u0648\u06d5",
|
||||
"Paragraph": "\u0628\u0695\u06af\u06d5",
|
||||
"Ok": "\u0628\u0627\u0634\u06d5",
|
||||
"Bold": "\u062a\u06c6\u062e\u06a9\u0631\u062f\u0646",
|
||||
"Code": "\u06a9\u06c6\u062f",
|
||||
"Italic": "\u0644\u0627\u0631\u06a9\u0631\u062f\u0646",
|
||||
"Align center": "\u0644\u0627\u06af\u0631\u062a\u0646\u06cc \u0646\u0627\u0648\u06d5\u0695\u0627\u0633\u062a",
|
||||
"Header 5": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 5",
|
||||
"Heading 6": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 6",
|
||||
"Heading 3": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 3",
|
||||
"Decrease indent": "\u06a9\u06d5\u0645\u06a9\u0631\u062f\u0646\u06cc \u0628\u06c6\u0634\u0627\u06cc\u06cc",
|
||||
"Header 4": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0644\u06a9\u0627\u0646\u062f\u0646 \u0626\u06ce\u0633\u062a\u0627 \u0644\u06d5 \u0628\u0627\u0631\u06cc \u062f\u06d5\u0642\u06cc \u0633\u0627\u062f\u06d5\u06cc\u06d5. \u0646\u0627\u0648\u06d5\u0695\u06c6\u06a9\u06d5\u06a9\u0627\u0646 \u062f\u06d5\u0644\u06a9\u06ce\u0646 \u0648\u06d5\u06a9 \u062f\u06d5\u0642\u06cc \u0633\u0627\u062f\u06d5 \u0647\u06d5\u062a\u0627 \u0626\u06d5\u0645 \u0647\u06d5\u06b5\u0628\u0698\u0627\u0631\u062f\u06d5 \u0646\u0627\u06a9\u0627\u0631\u0627 \u062f\u06d5\u06a9\u06d5\u06cc\u062a.",
|
||||
"Underline": "\u0647\u06ce\u06b5 \u0628\u06d5\u0698\u06ce\u0631\u062f\u0627\u0646",
|
||||
"Cancel": "\u067e\u0627\u0634\u06af\u06d5\u0632\u0628\u0648\u0648\u0646\u06d5\u0648\u06d5",
|
||||
"Justify": "\u0647\u0627\u0648\u0695\u06ce\u06a9\u06cc ",
|
||||
"Inline": "\u0644\u06d5\u0633\u06d5\u0631\u062f\u06ce\u0631",
|
||||
"Copy": "\u0644\u06d5\u0628\u06d5\u0631\u06af\u0631\u062a\u0646\u06d5\u0648\u06d5",
|
||||
"Align left": "\u0644\u0627\u06af\u0631\u062a\u0646\u06cc \u0686\u06d5\u067e",
|
||||
"Visual aids": "\u0647\u0627\u0648\u06a9\u0627\u0631\u06cc \u0628\u06cc\u0646\u06d5\u06cc\u06cc",
|
||||
"Lower Greek": "\u06cc\u06c6\u0646\u0627\u0646\u06cc \u0628\u0686\u0648\u0648\u06a9",
|
||||
"Square": "\u0686\u0648\u0627\u0631\u06af\u06c6\u0634\u06d5",
|
||||
"Default": "\u0628\u0646\u06d5\u0695\u06d5\u062a\u06cc",
|
||||
"Lower Alpha": "\u0626\u06d5\u0644\u0641\u0627\u06cc \u0628\u0686\u0648\u0648\u06a9",
|
||||
"Circle": "\u0628\u0627\u0632\u0646\u06d5",
|
||||
"Disc": "\u067e\u06d5\u067e\u06a9\u06d5",
|
||||
"Upper Alpha": "\u0626\u06d5\u0644\u0641\u0627\u06cc \u06af\u06d5\u0648\u0631\u06d5",
|
||||
"Upper Roman": "\u0695\u06c6\u0645\u0627\u0646\u06cc \u06af\u06d5\u0648\u0631\u06d5",
|
||||
"Lower Roman": "\u0695\u06c6\u0645\u0627\u0646\u06cc \u0628\u0686\u0648\u0648\u06a9",
|
||||
"Name": "\u0646\u0627\u0648",
|
||||
"Anchor": "\u0644\u06d5\u0646\u06af\u06d5\u0631",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u062a\u06c6 \u06af\u06c6\u0695\u0627\u0646\u06a9\u0627\u0631\u06cc\u06cc\u06d5\u06a9\u0627\u0646\u062a \u067e\u0627\u0634\u06d5\u06a9\u06d5\u0648\u062a \u0646\u06d5\u06a9\u0631\u062f\u0648\u0648\u06d5\u060c \u0626\u0627\u06cc\u0627 \u062f\u06b5\u0646\u06cc\u0627\u06cc\u062a \u0644\u06d5 \u062f\u06d5\u0631\u0686\u0648\u0648\u0646\u062a\u061f",
|
||||
"Restore last draft": "\u06af\u06d5\u0695\u0627\u0646\u062f\u0646\u06d5\u0648\u06d5\u06cc \u062f\u0648\u0627\u06cc\u06cc\u0646 \u0695\u06d5\u0634\u0646\u0648\u0648\u0633",
|
||||
"Special character": "\u0646\u0648\u0648\u0633\u06d5\u06cc \u062a\u0627\u06cc\u0628\u06d5\u062a",
|
||||
"Source code": "\u06a9\u06c6\u062f\u06cc \u0633\u06d5\u0631\u0686\u0627\u0648\u06d5",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0695\u06d5\u0646\u06af",
|
||||
"Right to left": "\u0695\u0627\u0633\u062a \u0628\u06c6 \u0686\u06d5\u067e",
|
||||
"Left to right": "\u0686\u06d5\u067e \u0628\u06c6 \u0695\u0627\u0633\u062a",
|
||||
"Emoticons": "\u0648\u06ce\u0646\u06c6\u0686\u06a9\u06d5\u06a9\u0627\u0646\u06cc \u0647\u06d5\u0633\u062a",
|
||||
"Robots": "\u0695\u06c6\u0628\u06c6\u062a\u06d5\u06a9\u0627\u0646",
|
||||
"Document properties": "\u062a\u0627\u06cc\u0628\u0647\u200c\u062a\u0645\u0647\u200c\u0646\u062f\u06cc\u06cc\u06d5\u06a9\u0627\u0646\u06cc \u0628\u06d5\u06b5\u06af\u06d5\u0646\u0627\u0645\u06d5",
|
||||
"Title": "\u0646\u0627\u0648\u0646\u06cc\u0634\u0627\u0646",
|
||||
"Keywords": "\u06a9\u0644\u06cc\u0644\u0647\u200c\u0648\u0634\u0647\u200c\u06a9\u0627\u0646",
|
||||
"Encoding": "\u0628\u06d5\u06a9\u06c6\u062f\u06a9\u0631\u062f\u0646",
|
||||
"Description": "\u0628\u0627\u0633\u06a9\u0631\u062f\u0646",
|
||||
"Author": "\u0646\u0648\u0648\u0633\u06d5\u0631",
|
||||
"Fullscreen": "\u0695\u0648\u0648\u067e\u0695\u06cc",
|
||||
"Horizontal line": "\u0647\u06ce\u06b5\u06cc \u0626\u0627\u0633\u06c6\u06cc\u06cc",
|
||||
"Horizontal space": "\u0628\u06c6\u0634\u0627\u06cc\u06cc \u0626\u0627\u0633\u06c6\u06cc\u06cc",
|
||||
"Insert\/edit image": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\/\u062f\u06d5\u0633\u062a\u06a9\u0627\u0631\u06cc \u0648\u06ce\u0646\u06d5",
|
||||
"General": "\u06af\u0634\u062a\u06cc",
|
||||
"Advanced": "\u067e\u06ce\u0634\u06a9\u06d5\u0648\u062a\u0648\u0648",
|
||||
"Source": "\u0633\u06d5\u0631\u0686\u0627\u0648\u06d5",
|
||||
"Border": "\u0633\u0646\u0648\u0648\u0631",
|
||||
"Constrain proportions": "\u0695\u06d5\u0647\u06d5\u0646\u062f\u06cc \u0645\u06d5\u0631\u062c\u06d5\u06a9\u0627\u0646",
|
||||
"Vertical space": "\u0628\u06c6\u0634\u0627\u06cc\u06cc \u0633\u062a\u0648\u0648\u0646\u06cc",
|
||||
"Image description": "\u0628\u0627\u0633\u06a9\u0631\u062f\u0646\u06cc \u0648\u06ce\u0646\u06d5",
|
||||
"Style": "\u0634\u06ce\u0648\u0627\u0632",
|
||||
"Dimensions": "\u062f\u0648\u0648\u0631\u06cc\u06cc\u06d5\u06a9\u0627\u0646",
|
||||
"Insert image": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0648\u06ce\u0646\u06d5",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0695\u06c6\u0698\/\u06a9\u0627\u062a",
|
||||
"Remove link": "\u0633\u0695\u06cc\u0646\u06d5\u0648\u06d5\u06cc \u0628\u06d5\u0633\u062a\u06d5\u0631",
|
||||
"Url": "\u0628\u06d5\u0633\u062a\u06d5\u0631",
|
||||
"Text to display": "\u062f\u06d5\u0642 \u0628\u06c6 \u067e\u06cc\u0634\u0627\u0646\u062f\u0627\u0646",
|
||||
"Anchors": "\u0644\u06d5\u0646\u06af\u06d5\u0631\u06d5\u06a9\u0627\u0646",
|
||||
"Insert link": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0628\u06d5\u0633\u062a\u06d5\u0631",
|
||||
"New window": "\u067e\u06d5\u0646\u062c\u06d5\u0631\u06d5\u06cc \u0646\u0648\u06ce",
|
||||
"None": "\u0647\u06cc\u0686",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0626\u06d5\u0648 \u0628\u06d5\u0633\u062a\u06d5\u0631\u06d5\u06cc \u0646\u0648\u0648\u0633\u06cc\u0648\u062a\u06d5 \u0628\u06d5 \u0628\u06d5\u0633\u062a\u06d5\u0631\u06cc \u062f\u06d5\u0631\u06d5\u06a9\u06cc \u062f\u06d5\u0686\u06ce\u062a. \u0626\u0627\u06cc\u0627 \u062f\u06d5\u062a\u06d5\u0648\u06ce\u062a http:\/\/ prefix \u06cc \u0628\u06c6 \u0632\u06cc\u0627\u062f \u0628\u06a9\u06d5\u06cc\u062a\u061f",
|
||||
"Target": "\u0626\u0627\u0645\u0627\u0646\u062c",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0626\u06d5\u0648 \u0628\u06d5\u0633\u062a\u06d5\u0631\u06d5\u06cc \u0646\u0648\u0648\u0633\u06cc\u0648\u062a\u06d5 \u0628\u06d5 \u067e\u06d5\u06cc\u0627\u0645\u06cc \u0626\u06d5\u0644\u06cc\u06a9\u062a\u0695\u06c6\u0646\u06cc \u062f\u06d5\u0686\u06ce\u062a. \u0626\u0627\u06cc\u0627 \u062f\u06d5\u062a\u06d5\u0648\u06ce\u062a mailto: prefix \u06cc \u0628\u06c6 \u0632\u06cc\u0627\u062f \u0628\u06a9\u06d5\u06cc\u062a\u061f",
|
||||
"Insert\/edit link": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\/\u062f\u06d5\u0633\u062a\u06a9\u0627\u0631\u06cc \u0628\u06d5\u0633\u062a\u06d5\u0631",
|
||||
"Insert\/edit video": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\/\u062f\u06d5\u0633\u062a\u06a9\u0627\u0631\u06cc \u06a4\u06cc\u062f\u06cc\u06c6",
|
||||
"Poster": "\u067e\u06c6\u0633\u062a\u06d5\u0631",
|
||||
"Alternative source": "\u0633\u06d5\u0631\u0686\u0627\u0648\u06d5\u06cc \u062c\u06ce\u06af\u0631\u06d5\u0648\u06d5",
|
||||
"Paste your embed code below:": "\u06a9\u06c6\u062f\u06cc \u062a\u06ce\u062e\u0633\u062a\u0646\u06d5\u06a9\u06d5\u062a \u0644\u06d5\u062e\u0648\u0627\u0631\u06d5\u0648\u06d5 \u0628\u0644\u06a9\u06ce\u0646\u06d5:",
|
||||
"Insert video": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u06a4\u06cc\u062f\u06cc\u06c6",
|
||||
"Embed": "\u062a\u06ce\u062e\u0633\u062a\u0646",
|
||||
"Nonbreaking space": "\u0628\u06c6\u0634\u0627\u06cc\u06cc \u0646\u06d5\u0628\u0695\u0627\u0648",
|
||||
"Page break": "\u0628\u0695\u06cc\u0646\u06cc \u067e\u06d5\u0695\u06d5",
|
||||
"Paste as text": "\u0644\u06a9\u0627\u0646\u062f\u0646 \u0648\u06d5\u06a9 \u062f\u06d5\u0642",
|
||||
"Preview": "\u067e\u06cc\u0634\u0627\u0646\u062f\u0627\u0646",
|
||||
"Print": "\u0686\u0627\u067e\u06a9\u0631\u062f\u0646",
|
||||
"Save": "\u067e\u0627\u0634\u06d5\u06a9\u06d5\u0648\u062a",
|
||||
"Could not find the specified string.": "\u0695\u06cc\u0632\u0628\u06d5\u0646\u062f\u06cc \u062f\u06cc\u0627\u0631\u06cc\u06a9\u0631\u0627\u0648 \u0646\u0627\u062f\u06c6\u0632\u0631\u06ce\u062a\u06d5\u0648\u06d5.",
|
||||
"Replace": "\u062c\u06ce\u06af\u06c6\u0695\u06cc\u0646",
|
||||
"Next": "\u062f\u0648\u0627\u062a\u0631",
|
||||
"Whole words": "\u0647\u06d5\u0645\u0648\u0648 \u0648\u0634\u06d5\u06a9\u0627\u0646",
|
||||
"Find and replace": "\u062f\u06c6\u0632\u06cc\u0646\u06d5\u0648\u06d5 \u0648 \u062c\u06ce\u06af\u06c6\u0695\u06cc\u0646",
|
||||
"Replace with": "\u062c\u06ce\u06af\u06c6\u0695\u06cc\u0646 \u0644\u06d5\u06af\u06d5\u06b5",
|
||||
"Find": "\u062f\u06c6\u0632\u06cc\u0646\u06d5\u0648\u06d5",
|
||||
"Replace all": "\u062c\u06ce\u06af\u06c6\u0695\u06cc\u0646\u06cc \u0647\u06d5\u0645\u0648\u0648",
|
||||
"Match case": "\u0647\u0627\u0648\u062a\u0627\u0628\u0648\u0648\u0646\u06cc \u0628\u0627\u0631",
|
||||
"Prev": "\u067e\u06ce\u0634\u0648\u0648",
|
||||
"Spellcheck": "\u067e\u0634\u06a9\u0646\u06cc\u0646\u06cc \u0695\u06ce\u0646\u0648\u0648\u0633",
|
||||
"Finish": "\u062a\u06d5\u0648\u0627\u0648",
|
||||
"Ignore all": "\u0644\u06d5\u0628\u06cc\u0631\u06a9\u0631\u062f\u0646\u06cc \u0647\u06d5\u0645\u0648\u0648",
|
||||
"Ignore": "\u0644\u06d5\u0628\u06cc\u0631\u06a9\u0631\u062f\u0646",
|
||||
"Add to Dictionary": "\u0632\u06cc\u0627\u062f\u06a9\u0631\u062f\u0646 \u0628\u06c6 \u0641\u06d5\u0631\u0647\u06d5\u0646\u06af",
|
||||
"Insert row before": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0695\u06cc\u0632 \u0628\u06c6 \u067e\u06ce\u0634\u062a\u0631",
|
||||
"Rows": "\u0695\u06cc\u0632\u06d5\u06a9\u0627\u0646",
|
||||
"Height": "\u0628\u06d5\u0631\u0632\u06cc",
|
||||
"Paste row after": "\u0644\u06a9\u0627\u0646\u062f\u0646\u06cc \u0695\u06cc\u0632 \u0644\u06d5 \u062f\u0648\u0627\u062a\u0631",
|
||||
"Alignment": "\u0644\u0627\u06af\u0631\u062a\u0646",
|
||||
"Border color": "\u0695\u06d5\u0646\u06af\u06cc \u0633\u0646\u0648\u0648\u0631",
|
||||
"Column group": "\u06a9\u06c6\u0645\u06d5\u06b5\u06d5 \u0633\u062a\u0648\u0648\u0646",
|
||||
"Row": "\u0695\u06cc\u0632",
|
||||
"Insert column before": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0633\u062a\u0648\u0648\u0646 \u0628\u06c6 \u067e\u06ce\u0634\u062a\u0631",
|
||||
"Split cell": "\u062c\u06cc\u0627\u06a9\u0631\u062f\u0646\u06d5\u0648\u06d5\u06cc \u062e\u0627\u0646\u06d5",
|
||||
"Cell padding": "\u0646\u0627\u0648\u067e\u06c6\u0634\u06cc \u062e\u0627\u0646\u06d5",
|
||||
"Cell spacing": "\u0628\u06c6\u0634\u0627\u06cc\u06cc \u062e\u0627\u0646\u06d5",
|
||||
"Row type": "\u062c\u06c6\u0631\u06cc \u0695\u06cc\u0632",
|
||||
"Insert table": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u062e\u0634\u062a\u06d5",
|
||||
"Body": "\u0646\u0627\u0648\u06d5\u0695\u06c6\u06a9",
|
||||
"Caption": "\u0633\u06d5\u0631\u062f\u06ce\u0695",
|
||||
"Footer": "\u067e\u06ce\u067e\u06d5\u0695\u06d5",
|
||||
"Delete row": "\u0633\u0695\u06cc\u0646\u06d5\u0648\u06d5\u06cc \u0695\u06cc\u0632",
|
||||
"Paste row before": "\u0644\u06a9\u0627\u0646\u062f\u0646\u06cc \u0695\u06cc\u0632 \u0644\u06d5 \u067e\u06ce\u0634\u062a\u0631",
|
||||
"Scope": "\u0628\u0648\u0627\u0631",
|
||||
"Delete table": "\u0633\u0695\u06cc\u0646\u06d5\u0648\u06d5\u06cc \u062e\u0634\u062a\u06d5",
|
||||
"H Align": "\u0644\u0627\u06af\u0631\u062a\u0646\u06cc \u0626\u0627\u0633\u06c6\u06cc\u06cc",
|
||||
"Top": "\u0633\u06d5\u0631\u06d5\u0648\u06d5",
|
||||
"Header cell": "\u062e\u0627\u0646\u06d5\u06cc \u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5",
|
||||
"Column": "\u0633\u062a\u0648\u0648\u0646",
|
||||
"Row group": "\u06a9\u06c6\u0645\u06d5\u06b5\u06d5 \u0695\u06cc\u0632",
|
||||
"Cell": "\u062e\u0627\u0646\u06d5",
|
||||
"Middle": "\u0646\u0627\u0648\u06d5\u0646\u062f",
|
||||
"Cell type": "\u062c\u06c6\u0631\u06cc \u062e\u0627\u0646\u06d5",
|
||||
"Copy row": "\u0644\u06d5\u0628\u06d5\u0631\u06af\u0631\u062a\u0646\u06d5\u0648\u06d5\u06cc \u0695\u06cc\u0632",
|
||||
"Row properties": "\u062a\u0627\u06cc\u0628\u0647\u200c\u062a\u0645\u0647\u200c\u0646\u062f\u06cc\u06cc\u06d5\u06a9\u0627\u0646\u06cc \u0695\u06cc\u0632",
|
||||
"Table properties": "\u062a\u0627\u06cc\u0628\u0647\u200c\u062a\u0645\u0647\u200c\u0646\u062f\u06cc\u06cc\u06d5\u06a9\u0627\u0646\u06cc \u062e\u0634\u062a\u06d5",
|
||||
"Bottom": "\u0698\u06ce\u0631\u06d5\u0648\u06d5",
|
||||
"V Align": "\u0644\u0627\u06af\u0631\u062a\u0646\u06cc \u0633\u062a\u0648\u0648\u0646\u06cc",
|
||||
"Header": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5",
|
||||
"Right": "\u0695\u0627\u0633\u062a",
|
||||
"Insert column after": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0633\u062a\u0648\u0648\u0646 \u0628\u06c6 \u062f\u0648\u0627\u062a\u0631",
|
||||
"Cols": "\u0633\u062a\u0648\u0648\u0646\u06d5\u06a9\u0627\u0646",
|
||||
"Insert row after": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0695\u06cc\u0632 \u0628\u06c6 \u062f\u0648\u0627\u062a\u0631",
|
||||
"Width": "\u062f\u0631\u06ce\u0698\u06cc",
|
||||
"Cell properties": "\u062a\u0627\u06cc\u0628\u0647\u200c\u062a\u0645\u0647\u200c\u0646\u062f\u06cc\u06cc\u06d5\u06a9\u0627\u0646\u06cc \u062e\u0627\u0646\u06d5",
|
||||
"Left": "\u0686\u06d5\u067e",
|
||||
"Cut row": "\u0628\u0695\u06cc\u0646\u06cc \u0695\u06cc\u0632",
|
||||
"Delete column": "\u0633\u0695\u06cc\u0646\u06d5\u0648\u06d5\u06cc \u0633\u062a\u0648\u0648\u0646",
|
||||
"Center": "\u0646\u0627\u0648\u06d5\u0695\u0627\u0633\u062a",
|
||||
"Merge cells": "\u06cc\u06d5\u06a9\u062e\u0633\u062a\u0646\u06cc \u062e\u0627\u0646\u06d5\u06a9\u0627\u0646",
|
||||
"Insert template": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u062f\u0627\u0695\u06ce\u0698\u06d5",
|
||||
"Templates": "\u062f\u0627\u0695\u06ce\u0698\u06d5\u06a9\u0627\u0646",
|
||||
"Background color": "\u0695\u06d5\u0646\u06af\u06cc \u067e\u0627\u0634\u0628\u0646\u06d5\u0645\u0627",
|
||||
"Custom...": "\u062f\u0627\u0646\u0631\u0627\u0648...",
|
||||
"Custom color": "\u0695\u06d5\u0646\u06af\u06cc \u062f\u0627\u0646\u0631\u0627\u0648",
|
||||
"No color": "\u0628\u06d5\u0628\u06ce \u0695\u06d5\u0646\u06af",
|
||||
"Text color": "\u0695\u06d5\u0646\u06af\u06cc \u062f\u06d5\u0642",
|
||||
"Show blocks": "\u067e\u06cc\u0634\u0627\u0646\u062f\u0627\u0646\u06cc \u0628\u0644\u06c6\u06a9\u06d5\u06a9\u0627\u0646",
|
||||
"Show invisible characters": "\u067e\u06cc\u0634\u0627\u0646\u062f\u0627\u0646\u06cc \u0646\u0648\u0648\u0633\u06d5 \u0634\u0627\u0631\u0627\u0648\u06d5\u06a9\u0627\u0646",
|
||||
"Words: {0}": "\u0648\u0634\u06d5\u06a9\u0627\u0646: {0}",
|
||||
"Insert": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648",
|
||||
"File": "\u067e\u06d5\u0695\u06af\u06d5",
|
||||
"Edit": "\u062f\u06d5\u0633\u062a\u06a9\u0627\u0631\u06cc",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0646\u0627\u0648\u0686\u06d5\u06cc \u062f\u06d5\u0642\u06cc \u062a\u06d5\u0648\u0627\u0648. ALT-F9 \u062f\u0627\u06af\u0631\u06d5 \u0628\u06c6 \u0644\u06cc\u0633\u062a\u06d5. ALT-F10 \u062f\u0627\u06af\u0631\u06d5 \u0628\u06c6 \u062a\u0648\u0648\u06b5\u0627\u0645\u0631\u0627\u0632. ALT-0 \u062f\u0627\u06af\u0631\u06d5 \u0628\u06c6 \u06cc\u0627\u0631\u0645\u06d5\u062a\u06cc",
|
||||
"Tools": "\u0626\u0627\u0645\u0631\u0627\u0632\u06d5\u06a9\u0627\u0646",
|
||||
"View": "\u0628\u06cc\u0646\u06cc\u0646",
|
||||
"Table": "\u062e\u0634\u062a\u06d5",
|
||||
"Format": "\u0634\u06ce\u0648\u0627\u0632"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ku_IQ.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ku_IQ.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ku_IQ',{
|
||||
"Cut": "\u0628\u0695\u06cc\u0646",
|
||||
"Heading 5": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 5",
|
||||
"Header 2": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0648\u06ce\u0628\u06af\u06d5\u0695\u06d5\u06a9\u06d5\u062a \u067e\u0627\u06b5\u067e\u0634\u062a\u06cc \u062f\u06d5\u0633\u062a\u06a9\u06d5\u0648\u062a\u0646\u06cc \u0695\u0627\u0633\u062a\u06d5\u0648\u062e\u06c6\u06cc \u06a9\u0644\u06cc\u067e\u0628\u06c6\u0631\u062f \u0646\u0627\u06a9\u0627\u062a. \u062a\u06a9\u0627\u06cc\u06d5 \u0644\u06d5\u062c\u06cc\u0627\u062a\u06cc \u06a9\u0648\u0631\u062a\u0628\u0695\u06d5\u06a9\u0627\u0646\u06cc Ctrl+X\/C\/V \u062a\u06d5\u062e\u062a\u06d5\u06a9\u0644\u06cc\u0644 \u0628\u06d5\u06a9\u0627\u0631\u0628\u06ce\u0646\u06d5.",
|
||||
"Heading 4": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 2",
|
||||
"Paste": "\u0644\u06a9\u0627\u0646\u062f\u0646",
|
||||
"Close": "\u062f\u0627\u062e\u0633\u062a\u0646",
|
||||
"Font Family": "\u062c\u06c6\u0631\u06cc \u0641\u06c6\u0646\u062a",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u0644\u0627\u06af\u0631\u062a\u0646\u06cc \u0695\u0627\u0633\u062a",
|
||||
"New document": "\u0628\u06d5\u06b5\u06af\u06d5\u0646\u0627\u0645\u06d5\u06cc \u0646\u0648\u06ce",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "\u0644\u06cc\u0633\u062a\u06cc \u0698\u0645\u0627\u0631\u06d5",
|
||||
"Heading 1": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 1",
|
||||
"Headings": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a\u06d5\u06a9\u0627\u0646",
|
||||
"Increase indent": "\u0632\u06cc\u0627\u062f\u06a9\u0631\u062f\u0646\u06cc \u0628\u06c6\u0634\u0627\u06cc\u06cc",
|
||||
"Formats": "\u0634\u06ce\u0648\u0627\u0632\u06a9\u0631\u062f\u0646\u06d5\u06a9\u0627\u0646",
|
||||
"Headers": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5\u06a9\u0627\u0646",
|
||||
"Select all": "\u0647\u06d5\u06b5\u0628\u0698\u0627\u0631\u062f\u0646\u06cc \u0647\u06d5\u0645\u0648\u0648",
|
||||
"Header 3": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 3",
|
||||
"Blocks": "\u0628\u0644\u06c6\u06a9\u06d5\u06a9\u0627\u0646",
|
||||
"Undo": "\u06af\u06d5\u0695\u0627\u0646\u06d5\u0648\u06d5",
|
||||
"Strikethrough": "\u0647\u06ce\u06b5 \u0628\u06d5\u0646\u0627\u0648\u062f\u0627\u0646",
|
||||
"Bullet list": "\u0644\u06cc\u0633\u062a\u06cc \u062e\u0627\u06b5",
|
||||
"Header 1": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 1",
|
||||
"Superscript": "\u0633\u06d5\u0631\u0646\u0648\u0648\u0633",
|
||||
"Clear formatting": "\u067e\u0627\u06a9\u06a9\u0631\u062f\u0646\u06d5\u0648\u06d5\u06cc \u0634\u06ce\u0648\u0627\u0632\u06a9\u0631\u062f\u0646",
|
||||
"Font Sizes": "\u0642\u06d5\u0628\u0627\u0631\u06d5\u06cc \u0641\u06c6\u0646\u062a",
|
||||
"Subscript": "\u0698\u06ce\u0631\u0646\u0648\u0648\u0633",
|
||||
"Header 6": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 6",
|
||||
"Redo": "\u06a9\u0631\u062f\u0646\u06d5\u0648\u06d5",
|
||||
"Paragraph": "\u0628\u0695\u06af\u06d5",
|
||||
"Ok": "\u0628\u0627\u0634\u06d5",
|
||||
"Bold": "\u062a\u06c6\u062e\u06a9\u0631\u062f\u0646",
|
||||
"Code": "\u06a9\u06c6\u062f",
|
||||
"Italic": "\u0644\u0627\u0631\u06a9\u0631\u062f\u0646",
|
||||
"Align center": "\u0644\u0627\u06af\u0631\u062a\u0646\u06cc \u0646\u0627\u0648\u06d5\u0695\u0627\u0633\u062a",
|
||||
"Header 5": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 5",
|
||||
"Heading 6": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 6",
|
||||
"Heading 3": "\u0633\u06d5\u0631\u0628\u0627\u0628\u06d5\u062a 3",
|
||||
"Decrease indent": "\u06a9\u06d5\u0645\u06a9\u0631\u062f\u0646\u06cc \u0628\u06c6\u0634\u0627\u06cc\u06cc",
|
||||
"Header 4": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0644\u06a9\u0627\u0646\u062f\u0646 \u0626\u06ce\u0633\u062a\u0627 \u0644\u06d5 \u0628\u0627\u0631\u06cc \u062f\u06d5\u0642\u06cc \u0633\u0627\u062f\u06d5\u06cc\u06d5. \u0646\u0627\u0648\u06d5\u0695\u06c6\u06a9\u06d5\u06a9\u0627\u0646 \u062f\u06d5\u0644\u06a9\u06ce\u0646 \u0648\u06d5\u06a9 \u062f\u06d5\u0642\u06cc \u0633\u0627\u062f\u06d5 \u0647\u06d5\u062a\u0627 \u0626\u06d5\u0645 \u0647\u06d5\u06b5\u0628\u0698\u0627\u0631\u062f\u06d5 \u0646\u0627\u06a9\u0627\u0631\u0627 \u062f\u06d5\u06a9\u06d5\u06cc\u062a.",
|
||||
"Underline": "\u0647\u06ce\u06b5 \u0628\u06d5\u0698\u06ce\u0631\u062f\u0627\u0646",
|
||||
"Cancel": "\u067e\u0627\u0634\u06af\u06d5\u0632\u0628\u0648\u0648\u0646\u06d5\u0648\u06d5",
|
||||
"Justify": "\u0647\u0627\u0648\u0695\u06ce\u06a9\u06cc ",
|
||||
"Inline": "\u0644\u06d5\u0633\u06d5\u0631\u062f\u06ce\u0631",
|
||||
"Copy": "\u0644\u06d5\u0628\u06d5\u0631\u06af\u0631\u062a\u0646\u06d5\u0648\u06d5",
|
||||
"Align left": "\u0644\u0627\u06af\u0631\u062a\u0646\u06cc \u0686\u06d5\u067e",
|
||||
"Visual aids": "\u0647\u0627\u0648\u06a9\u0627\u0631\u06cc \u0628\u06cc\u0646\u06d5\u06cc\u06cc",
|
||||
"Lower Greek": "\u06cc\u06c6\u0646\u0627\u0646\u06cc \u0628\u0686\u0648\u0648\u06a9",
|
||||
"Square": "\u0686\u0648\u0627\u0631\u06af\u06c6\u0634\u06d5",
|
||||
"Default": "\u0628\u0646\u06d5\u0695\u06d5\u062a\u06cc",
|
||||
"Lower Alpha": "\u0626\u06d5\u0644\u0641\u0627\u06cc \u0628\u0686\u0648\u0648\u06a9",
|
||||
"Circle": "\u0628\u0627\u0632\u0646\u06d5",
|
||||
"Disc": "\u067e\u06d5\u067e\u06a9\u06d5",
|
||||
"Upper Alpha": "\u0626\u06d5\u0644\u0641\u0627\u06cc \u06af\u06d5\u0648\u0631\u06d5",
|
||||
"Upper Roman": "\u0695\u06c6\u0645\u0627\u0646\u06cc \u06af\u06d5\u0648\u0631\u06d5",
|
||||
"Lower Roman": "\u0695\u06c6\u0645\u0627\u0646\u06cc \u0628\u0686\u0648\u0648\u06a9",
|
||||
"Name": "\u0646\u0627\u0648",
|
||||
"Anchor": "\u0644\u06d5\u0646\u06af\u06d5\u0631",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u062a\u06c6 \u06af\u06c6\u0695\u0627\u0646\u06a9\u0627\u0631\u06cc\u06cc\u06d5\u06a9\u0627\u0646\u062a \u067e\u0627\u0634\u06d5\u06a9\u06d5\u0648\u062a \u0646\u06d5\u06a9\u0631\u062f\u0648\u0648\u06d5\u060c \u0626\u0627\u06cc\u0627 \u062f\u06b5\u0646\u06cc\u0627\u06cc\u062a \u0644\u06d5 \u062f\u06d5\u0631\u0686\u0648\u0648\u0646\u062a\u061f",
|
||||
"Restore last draft": "\u06af\u06d5\u0695\u0627\u0646\u062f\u0646\u06d5\u0648\u06d5\u06cc \u062f\u0648\u0627\u06cc\u06cc\u0646 \u0695\u06d5\u0634\u0646\u0648\u0648\u0633",
|
||||
"Special character": "\u0646\u0648\u0648\u0633\u06d5\u06cc \u062a\u0627\u06cc\u0628\u06d5\u062a",
|
||||
"Source code": "\u06a9\u06c6\u062f\u06cc \u0633\u06d5\u0631\u0686\u0627\u0648\u06d5",
|
||||
"B": "\u0634\u06cc\u0646",
|
||||
"R": "\u0633\u0648\u0631",
|
||||
"G": "\u0633\u06d5\u0648\u0632",
|
||||
"Color": "\u0695\u06d5\u0646\u06af",
|
||||
"Right to left": "\u0695\u0627\u0633\u062a \u0628\u06c6 \u0686\u06d5\u067e",
|
||||
"Left to right": "\u0686\u06d5\u067e \u0628\u06c6 \u0695\u0627\u0633\u062a",
|
||||
"Emoticons": "\u0648\u06ce\u0646\u06c6\u0686\u06a9\u06d5\u06a9\u0627\u0646\u06cc \u0647\u06d5\u0633\u062a",
|
||||
"Robots": "\u0695\u06c6\u0628\u06c6\u062a\u06d5\u06a9\u0627\u0646",
|
||||
"Document properties": "\u062a\u0627\u06cc\u0628\u0647\u200c\u062a\u0645\u0647\u200c\u0646\u062f\u06cc\u06cc\u06d5\u06a9\u0627\u0646\u06cc \u0628\u06d5\u06b5\u06af\u06d5\u0646\u0627\u0645\u06d5",
|
||||
"Title": "\u0646\u0627\u0648\u0646\u06cc\u0634\u0627\u0646",
|
||||
"Keywords": "\u06a9\u0644\u06cc\u0644\u0647\u200c\u0648\u0634\u0647\u200c\u06a9\u0627\u0646",
|
||||
"Encoding": "\u0628\u06d5\u06a9\u06c6\u062f\u06a9\u0631\u062f\u0646",
|
||||
"Description": "\u0628\u0627\u0633\u06a9\u0631\u062f\u0646",
|
||||
"Author": "\u0646\u0648\u0648\u0633\u06d5\u0631",
|
||||
"Fullscreen": "\u0695\u0648\u0648\u067e\u0695\u06cc",
|
||||
"Horizontal line": "\u0647\u06ce\u06b5\u06cc \u0626\u0627\u0633\u06c6\u06cc\u06cc",
|
||||
"Horizontal space": "\u0628\u06c6\u0634\u0627\u06cc\u06cc \u0626\u0627\u0633\u06c6\u06cc\u06cc",
|
||||
"Insert\/edit image": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\/\u062f\u06d5\u0633\u062a\u06a9\u0627\u0631\u06cc \u0648\u06ce\u0646\u06d5",
|
||||
"General": "\u06af\u0634\u062a\u06cc",
|
||||
"Advanced": "\u067e\u06ce\u0634\u06a9\u06d5\u0648\u062a\u0648\u0648",
|
||||
"Source": "\u0633\u06d5\u0631\u0686\u0627\u0648\u06d5",
|
||||
"Border": "\u0633\u0646\u0648\u0648\u0631",
|
||||
"Constrain proportions": "\u0695\u06d5\u0647\u06d5\u0646\u062f\u06cc \u0645\u06d5\u0631\u062c\u06d5\u06a9\u0627\u0646",
|
||||
"Vertical space": "\u0628\u06c6\u0634\u0627\u06cc\u06cc \u0633\u062a\u0648\u0648\u0646\u06cc",
|
||||
"Image description": "\u0628\u0627\u0633\u06a9\u0631\u062f\u0646\u06cc \u0648\u06ce\u0646\u06d5",
|
||||
"Style": "\u0634\u06ce\u0648\u0627\u0632",
|
||||
"Dimensions": "\u062f\u0648\u0648\u0631\u06cc\u06cc\u06d5\u06a9\u0627\u0646",
|
||||
"Insert image": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0648\u06ce\u0646\u06d5",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0695\u06c6\u0698\/\u06a9\u0627\u062a",
|
||||
"Remove link": "\u0633\u0695\u06cc\u0646\u06d5\u0648\u06d5\u06cc \u0628\u06d5\u0633\u062a\u06d5\u0631",
|
||||
"Url": "\u0628\u06d5\u0633\u062a\u06d5\u0631",
|
||||
"Text to display": "\u062f\u06d5\u0642 \u0628\u06c6 \u067e\u06cc\u0634\u0627\u0646\u062f\u0627\u0646",
|
||||
"Anchors": "\u0644\u06d5\u0646\u06af\u06d5\u0631\u06d5\u06a9\u0627\u0646",
|
||||
"Insert link": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0628\u06d5\u0633\u062a\u06d5\u0631",
|
||||
"New window": "\u067e\u06d5\u0646\u062c\u06d5\u0631\u06d5\u06cc \u0646\u0648\u06ce",
|
||||
"None": "\u0647\u06cc\u0686",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0626\u06d5\u0648 \u0628\u06d5\u0633\u062a\u06d5\u0631\u06d5\u06cc \u0646\u0648\u0648\u0633\u06cc\u0648\u062a\u06d5 \u0628\u06d5 \u0628\u06d5\u0633\u062a\u06d5\u0631\u06cc \u062f\u06d5\u0631\u06d5\u06a9\u06cc \u062f\u06d5\u0686\u06ce\u062a. \u0626\u0627\u06cc\u0627 \u062f\u06d5\u062a\u06d5\u0648\u06ce\u062a http:\/\/ prefix \u06cc \u0628\u06c6 \u0632\u06cc\u0627\u062f \u0628\u06a9\u06d5\u06cc\u062a\u061f",
|
||||
"Target": "\u0626\u0627\u0645\u0627\u0646\u062c",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0626\u06d5\u0648 \u0628\u06d5\u0633\u062a\u06d5\u0631\u06d5\u06cc \u0646\u0648\u0648\u0633\u06cc\u0648\u062a\u06d5 \u0628\u06d5 \u067e\u06d5\u06cc\u0627\u0645\u06cc \u0626\u06d5\u0644\u06cc\u06a9\u062a\u0695\u06c6\u0646\u06cc \u062f\u06d5\u0686\u06ce\u062a. \u0626\u0627\u06cc\u0627 \u062f\u06d5\u062a\u06d5\u0648\u06ce\u062a mailto: prefix \u06cc \u0628\u06c6 \u0632\u06cc\u0627\u062f \u0628\u06a9\u06d5\u06cc\u062a\u061f",
|
||||
"Insert\/edit link": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\/\u062f\u06d5\u0633\u062a\u06a9\u0627\u0631\u06cc \u0628\u06d5\u0633\u062a\u06d5\u0631",
|
||||
"Insert\/edit video": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\/\u062f\u06d5\u0633\u062a\u06a9\u0627\u0631\u06cc \u06a4\u06cc\u062f\u06cc\u06c6",
|
||||
"Poster": "\u067e\u06c6\u0633\u062a\u06d5\u0631",
|
||||
"Alternative source": "\u0633\u06d5\u0631\u0686\u0627\u0648\u06d5\u06cc \u062c\u06ce\u06af\u0631\u06d5\u0648\u06d5",
|
||||
"Paste your embed code below:": "\u06a9\u06c6\u062f\u06cc \u062a\u06ce\u062e\u0633\u062a\u0646\u06d5\u06a9\u06d5\u062a \u0644\u06d5\u062e\u0648\u0627\u0631\u06d5\u0648\u06d5 \u0628\u0644\u06a9\u06ce\u0646\u06d5:",
|
||||
"Insert video": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u06a4\u06cc\u062f\u06cc\u06c6",
|
||||
"Embed": "\u062a\u06ce\u062e\u0633\u062a\u0646",
|
||||
"Nonbreaking space": "\u0628\u06c6\u0634\u0627\u06cc\u06cc \u0646\u06d5\u0628\u0695\u0627\u0648",
|
||||
"Page break": "\u0628\u0695\u06cc\u0646\u06cc \u067e\u06d5\u0695\u06d5",
|
||||
"Paste as text": "\u0644\u06a9\u0627\u0646\u062f\u0646 \u0648\u06d5\u06a9 \u062f\u06d5\u0642",
|
||||
"Preview": "\u067e\u06cc\u0634\u0627\u0646\u062f\u0627\u0646",
|
||||
"Print": "\u0686\u0627\u067e\u06a9\u0631\u062f\u0646",
|
||||
"Save": "\u067e\u0627\u0634\u06d5\u06a9\u06d5\u0648\u062a",
|
||||
"Could not find the specified string.": "\u0695\u06cc\u0632\u0628\u06d5\u0646\u062f\u06cc \u062f\u06cc\u0627\u0631\u06cc\u06a9\u0631\u0627\u0648 \u0646\u0627\u062f\u06c6\u0632\u0631\u06ce\u062a\u06d5\u0648\u06d5.",
|
||||
"Replace": "\u062c\u06ce\u06af\u06c6\u0695\u06cc\u0646",
|
||||
"Next": "\u062f\u0648\u0627\u062a\u0631",
|
||||
"Whole words": "\u0647\u06d5\u0645\u0648\u0648 \u0648\u0634\u06d5\u06a9\u0627\u0646",
|
||||
"Find and replace": "\u062f\u06c6\u0632\u06cc\u0646\u06d5\u0648\u06d5 \u0648 \u062c\u06ce\u06af\u06c6\u0695\u06cc\u0646",
|
||||
"Replace with": "\u062c\u06ce\u06af\u06c6\u0695\u06cc\u0646 \u0644\u06d5\u06af\u06d5\u06b5",
|
||||
"Find": "\u062f\u06c6\u0632\u06cc\u0646\u06d5\u0648\u06d5",
|
||||
"Replace all": "\u062c\u06ce\u06af\u06c6\u0695\u06cc\u0646\u06cc \u0647\u06d5\u0645\u0648\u0648",
|
||||
"Match case": "\u0647\u0627\u0648\u062a\u0627\u0628\u0648\u0648\u0646\u06cc \u0628\u0627\u0631",
|
||||
"Prev": "\u067e\u06ce\u0634\u0648\u0648",
|
||||
"Spellcheck": "\u067e\u0634\u06a9\u0646\u06cc\u0646\u06cc \u0695\u06ce\u0646\u0648\u0648\u0633",
|
||||
"Finish": "\u062a\u06d5\u0648\u0627\u0648",
|
||||
"Ignore all": "\u0644\u06d5\u0628\u06cc\u0631\u06a9\u0631\u062f\u0646\u06cc \u0647\u06d5\u0645\u0648\u0648",
|
||||
"Ignore": "\u0644\u06d5\u0628\u06cc\u0631\u06a9\u0631\u062f\u0646",
|
||||
"Add to Dictionary": "\u0632\u06cc\u0627\u062f\u06a9\u0631\u062f\u0646 \u0628\u06c6 \u0641\u06d5\u0631\u0647\u06d5\u0646\u06af",
|
||||
"Insert row before": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0695\u06cc\u0632 \u0628\u06c6 \u067e\u06ce\u0634\u062a\u0631",
|
||||
"Rows": "\u0695\u06cc\u0632\u06d5\u06a9\u0627\u0646",
|
||||
"Height": "\u0628\u06d5\u0631\u0632\u06cc",
|
||||
"Paste row after": "\u0644\u06a9\u0627\u0646\u062f\u0646\u06cc \u0695\u06cc\u0632 \u0644\u06d5 \u062f\u0648\u0627\u062a\u0631",
|
||||
"Alignment": "\u0644\u0627\u06af\u0631\u062a\u0646",
|
||||
"Border color": "\u0695\u06d5\u0646\u06af\u06cc \u0633\u0646\u0648\u0648\u0631",
|
||||
"Column group": "\u06a9\u06c6\u0645\u06d5\u06b5\u06d5 \u0633\u062a\u0648\u0648\u0646",
|
||||
"Row": "\u0695\u06cc\u0632",
|
||||
"Insert column before": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0633\u062a\u0648\u0648\u0646 \u0628\u06c6 \u067e\u06ce\u0634\u062a\u0631",
|
||||
"Split cell": "\u062c\u06cc\u0627\u06a9\u0631\u062f\u0646\u06d5\u0648\u06d5\u06cc \u062e\u0627\u0646\u06d5",
|
||||
"Cell padding": "\u0646\u0627\u0648\u067e\u06c6\u0634\u06cc \u062e\u0627\u0646\u06d5",
|
||||
"Cell spacing": "\u0628\u06c6\u0634\u0627\u06cc\u06cc \u062e\u0627\u0646\u06d5",
|
||||
"Row type": "\u062c\u06c6\u0631\u06cc \u0695\u06cc\u0632",
|
||||
"Insert table": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u062e\u0634\u062a\u06d5",
|
||||
"Body": "\u0646\u0627\u0648\u06d5\u0695\u06c6\u06a9",
|
||||
"Caption": "\u0633\u06d5\u0631\u062f\u06ce\u0695",
|
||||
"Footer": "\u067e\u06ce\u067e\u06d5\u0695\u06d5",
|
||||
"Delete row": "\u0633\u0695\u06cc\u0646\u06d5\u0648\u06d5\u06cc \u0695\u06cc\u0632",
|
||||
"Paste row before": "\u0644\u06a9\u0627\u0646\u062f\u0646\u06cc \u0695\u06cc\u0632 \u0644\u06d5 \u067e\u06ce\u0634\u062a\u0631",
|
||||
"Scope": "\u0628\u0648\u0627\u0631",
|
||||
"Delete table": "\u0633\u0695\u06cc\u0646\u06d5\u0648\u06d5\u06cc \u062e\u0634\u062a\u06d5",
|
||||
"H Align": "\u0644\u0627\u06af\u0631\u062a\u0646\u06cc \u0626\u0627\u0633\u06c6\u06cc\u06cc",
|
||||
"Top": "\u0633\u06d5\u0631\u06d5\u0648\u06d5",
|
||||
"Header cell": "\u062e\u0627\u0646\u06d5\u06cc \u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5",
|
||||
"Column": "\u0633\u062a\u0648\u0648\u0646",
|
||||
"Row group": "\u06a9\u06c6\u0645\u06d5\u06b5\u06d5 \u0695\u06cc\u0632",
|
||||
"Cell": "\u062e\u0627\u0646\u06d5",
|
||||
"Middle": "\u0646\u0627\u0648\u06d5\u0646\u062f",
|
||||
"Cell type": "\u062c\u06c6\u0631\u06cc \u062e\u0627\u0646\u06d5",
|
||||
"Copy row": "\u0644\u06d5\u0628\u06d5\u0631\u06af\u0631\u062a\u0646\u06d5\u0648\u06d5\u06cc \u0695\u06cc\u0632",
|
||||
"Row properties": "\u062a\u0627\u06cc\u0628\u0647\u200c\u062a\u0645\u0647\u200c\u0646\u062f\u06cc\u06cc\u06d5\u06a9\u0627\u0646\u06cc \u0695\u06cc\u0632",
|
||||
"Table properties": "\u062a\u0627\u06cc\u0628\u0647\u200c\u062a\u0645\u0647\u200c\u0646\u062f\u06cc\u06cc\u06d5\u06a9\u0627\u0646\u06cc \u062e\u0634\u062a\u06d5",
|
||||
"Bottom": "\u0698\u06ce\u0631\u06d5\u0648\u06d5",
|
||||
"V Align": "\u0644\u0627\u06af\u0631\u062a\u0646\u06cc \u0633\u062a\u0648\u0648\u0646\u06cc",
|
||||
"Header": "\u0633\u06d5\u0631\u067e\u06d5\u0695\u06d5",
|
||||
"Right": "\u0695\u0627\u0633\u062a",
|
||||
"Insert column after": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0633\u062a\u0648\u0648\u0646 \u0628\u06c6 \u062f\u0648\u0627\u062a\u0631",
|
||||
"Cols": "\u0633\u062a\u0648\u0648\u0646\u06d5\u06a9\u0627\u0646",
|
||||
"Insert row after": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u0695\u06cc\u0632 \u0628\u06c6 \u062f\u0648\u0627\u062a\u0631",
|
||||
"Width": "\u062f\u0631\u06ce\u0698\u06cc",
|
||||
"Cell properties": "\u062a\u0627\u06cc\u0628\u0647\u200c\u062a\u0645\u0647\u200c\u0646\u062f\u06cc\u06cc\u06d5\u06a9\u0627\u0646\u06cc \u062e\u0627\u0646\u06d5",
|
||||
"Left": "\u0686\u06d5\u067e",
|
||||
"Cut row": "\u0628\u0695\u06cc\u0646\u06cc \u0695\u06cc\u0632",
|
||||
"Delete column": "\u0633\u0695\u06cc\u0646\u06d5\u0648\u06d5\u06cc \u0633\u062a\u0648\u0648\u0646",
|
||||
"Center": "\u0646\u0627\u0648\u06d5\u0695\u0627\u0633\u062a",
|
||||
"Merge cells": "\u06cc\u06d5\u06a9\u062e\u0633\u062a\u0646\u06cc \u062e\u0627\u0646\u06d5\u06a9\u0627\u0646",
|
||||
"Insert template": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648\u06cc \u062f\u0627\u0695\u06ce\u0698\u06d5",
|
||||
"Templates": "\u062f\u0627\u0695\u06ce\u0698\u06d5\u06a9\u0627\u0646",
|
||||
"Background color": "\u0695\u06d5\u0646\u06af\u06cc \u067e\u0627\u0634\u0628\u0646\u06d5\u0645\u0627",
|
||||
"Custom...": "\u062f\u0627\u0646\u0631\u0627\u0648...",
|
||||
"Custom color": "\u0695\u06d5\u0646\u06af\u06cc \u062f\u0627\u0646\u0631\u0627\u0648",
|
||||
"No color": "\u0628\u06d5\u0628\u06ce \u0695\u06d5\u0646\u06af",
|
||||
"Text color": "\u0695\u06d5\u0646\u06af\u06cc \u062f\u06d5\u0642",
|
||||
"Show blocks": "\u067e\u06cc\u0634\u0627\u0646\u062f\u0627\u0646\u06cc \u0628\u0644\u06c6\u06a9\u06d5\u06a9\u0627\u0646",
|
||||
"Show invisible characters": "\u067e\u06cc\u0634\u0627\u0646\u062f\u0627\u0646\u06cc \u0646\u0648\u0648\u0633\u06d5 \u0634\u0627\u0631\u0627\u0648\u06d5\u06a9\u0627\u0646",
|
||||
"Words: {0}": "\u0648\u0634\u06d5\u06a9\u0627\u0646: {0}",
|
||||
"Insert": "\u062e\u0633\u062a\u0646\u06d5\u0646\u0627\u0648",
|
||||
"File": "\u067e\u06d5\u0695\u06af\u06d5",
|
||||
"Edit": "\u062f\u06d5\u0633\u062a\u06a9\u0627\u0631\u06cc",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0646\u0627\u0648\u0686\u06d5\u06cc \u062f\u06d5\u0642\u06cc \u062a\u06d5\u0648\u0627\u0648. ALT-F9 \u062f\u0627\u06af\u0631\u06d5 \u0628\u06c6 \u0644\u06cc\u0633\u062a\u06d5. ALT-F10 \u062f\u0627\u06af\u0631\u06d5 \u0628\u06c6 \u062a\u0648\u0648\u06b5\u0627\u0645\u0631\u0627\u0632. ALT-0 \u062f\u0627\u06af\u0631\u06d5 \u0628\u06c6 \u06cc\u0627\u0631\u0645\u06d5\u062a\u06cc",
|
||||
"Tools": "\u0626\u0627\u0645\u0631\u0627\u0632\u06d5\u06a9\u0627\u0646",
|
||||
"View": "\u0628\u06cc\u0646\u06cc\u0646",
|
||||
"Table": "\u062e\u0634\u062a\u06d5",
|
||||
"Format": "\u0634\u06ce\u0648\u0627\u0632"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/lb.js
Normal file
219
data/web/rc/program/js/tinymce/langs/lb.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('lb',{
|
||||
"Cut": "Ausschneiden",
|
||||
"Heading 5": "Iwwerschr\u00ebft 5",
|
||||
"Header 2": "Titel 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "D\u00e4i Web-Browser \u00ebnnerst\u00ebtzt keen direkten Acc\u00e8s op d'Zw\u00ebschenaplag. Benotz w.e.gl. CTRL+C fir den ausgewielten Text ze kop\u00e9ieren an CTRL+V fir en anzepechen.",
|
||||
"Heading 4": "Iwwerschr\u00ebft 4",
|
||||
"Div": "DIV",
|
||||
"Heading 2": "Iwwerschr\u00ebft 2",
|
||||
"Paste": "Apechen",
|
||||
"Close": "Zoumaachen",
|
||||
"Font Family": "Schr\u00ebft-Famill",
|
||||
"Pre": "PRE",
|
||||
"Align right": "Riets align\u00e9iert",
|
||||
"New document": "Neit Dokument",
|
||||
"Blockquote": "Zitat",
|
||||
"Numbered list": "Nummer\u00e9iert L\u00ebscht",
|
||||
"Heading 1": "Iwwerschr\u00ebft 1",
|
||||
"Headings": "Iwwerschr\u00ebften",
|
||||
"Increase indent": "Ident\u00e9ierung vergr\u00e9isseren",
|
||||
"Formats": "Formater",
|
||||
"Headers": "Titelen",
|
||||
"Select all": "Alles auswielen",
|
||||
"Header 3": "Titel 3",
|
||||
"Blocks": "Bl\u00e9ck",
|
||||
"Undo": "R\u00e9ckg\u00e4ngeg maachen",
|
||||
"Strikethrough": "Duerchgestrach",
|
||||
"Bullet list": "Opzielung",
|
||||
"Header 1": "Titel 1",
|
||||
"Superscript": "H\u00e9ichgestallt",
|
||||
"Clear formatting": "Format\u00e9ierung l\u00e4schen",
|
||||
"Font Sizes": "Schr\u00ebft-Gr\u00e9issten",
|
||||
"Subscript": "Erofgestallt",
|
||||
"Header 6": "Titel 6",
|
||||
"Redo": "Widderhuelen",
|
||||
"Paragraph": "Paragraph",
|
||||
"Ok": "Okee",
|
||||
"Bold": "Fett",
|
||||
"Code": "CODE",
|
||||
"Italic": "Kursiv",
|
||||
"Align center": "Zentr\u00e9iert",
|
||||
"Header 5": "Titel 5",
|
||||
"Heading 6": "Iwwerschr\u00ebft 6",
|
||||
"Heading 3": "Iwwerschr\u00ebft 3",
|
||||
"Decrease indent": "Ident\u00e9ierung verklengeren",
|
||||
"Header 4": "Titel 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\"Apechen\" ass elo am Textmodus. Inhalter ginn elo ouni Format\u00e9ierungen agepecht bis du d\u00ebs Optioun ausm\u00e9chs.",
|
||||
"Underline": "\u00cbnnerstrach",
|
||||
"Cancel": "Ofbriechen",
|
||||
"Justify": "Blocksaz",
|
||||
"Inline": "Inline",
|
||||
"Copy": "Kop\u00e9ieren",
|
||||
"Align left": "L\u00e9nks align\u00e9iert",
|
||||
"Visual aids": "Visuell H\u00ebllefen",
|
||||
"Lower Greek": "Klengt griichescht Alphabet",
|
||||
"Square": "Quadrat",
|
||||
"Default": "Standard",
|
||||
"Lower Alpha": "Klengt Alphabet",
|
||||
"Circle": "Krees",
|
||||
"Disc": "Scheif",
|
||||
"Upper Alpha": "Grousst Alphabet",
|
||||
"Upper Roman": "Grousst r\u00e9imescht Alphabet",
|
||||
"Lower Roman": "Klengt r\u00e9imescht Alphabet",
|
||||
"Name": "Numm",
|
||||
"Anchor": "Anker",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Du hues ongesp\u00e4ichert \u00c4nnerungen. W\u00eblls du s\u00e9cher ewechnavig\u00e9ieren?",
|
||||
"Restore last draft": "Leschten Entworf er\u00ebm zr\u00e9cksetzen",
|
||||
"Special character": "Speziell Zeechen",
|
||||
"Source code": "Quelltext",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Faarf",
|
||||
"Right to left": "Vu riets no l\u00e9nks",
|
||||
"Left to right": "Vu l\u00e9nks no riets",
|
||||
"Emoticons": "Smileyen",
|
||||
"Robots": "Robotter",
|
||||
"Document properties": "Eegeschafte vum Dokument",
|
||||
"Title": "Titel",
|
||||
"Keywords": "Schl\u00ebsselwierder",
|
||||
"Encoding": "Cod\u00e9ierung",
|
||||
"Description": "Beschreiwung",
|
||||
"Author": "Auteur",
|
||||
"Fullscreen": "Vollbildschierm",
|
||||
"Horizontal line": "Horizontal Linn",
|
||||
"Horizontal space": "Horizontalen Espace",
|
||||
"Insert\/edit image": "Bild af\u00fcgen\/\u00e4nneren",
|
||||
"General": "Allgemeng",
|
||||
"Advanced": "Erweidert",
|
||||
"Source": "Quell",
|
||||
"Border": "Rand",
|
||||
"Constrain proportions": "Proportioune b\u00e4ibehalen",
|
||||
"Vertical space": "Vertikalen Espace",
|
||||
"Image description": "Bildbeschreiwung",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Dimensiounen",
|
||||
"Insert image": "Bild af\u00fcgen",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "Datum\/Z\u00e4it drasetzen",
|
||||
"Remove link": "Link l\u00e4schen",
|
||||
"Url": "URL",
|
||||
"Text to display": "Text deen unzeweisen ass",
|
||||
"Anchors": "Ankeren",
|
||||
"Insert link": "Link drasetzen",
|
||||
"New window": "Nei F\u00ebnster",
|
||||
"None": "Keen",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "D'URL d\u00e9i s du aginn hues sch\u00e9ngt en externe Link ze sinn. W\u00eblls du den \"http:\/\/\"-Pr\u00e4fix dob\u00e4isetzen?",
|
||||
"Target": "Zil",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "D'URL d\u00e9i s du aginn hues sch\u00e9ngt eng Email-Adress ze sinn. W\u00eblls du de \"mailto:\"-Pr\u00e4fix dob\u00e4isetzen?",
|
||||
"Insert\/edit link": "Link drasetzen\/\u00e4nneren",
|
||||
"Insert\/edit video": "Video drasetzen\/\u00e4nneren",
|
||||
"Poster": "Pouster",
|
||||
"Alternative source": "Alternativ Quell",
|
||||
"Paste your embed code below:": "Abannungscode hei apechen:",
|
||||
"Insert video": "Video drasetzen",
|
||||
"Embed": "Abannen",
|
||||
"Nonbreaking space": "Net\u00ebmbriechenden Espace",
|
||||
"Page break": "S\u00e4iten\u00ebmbroch",
|
||||
"Paste as text": "Als Text apechen",
|
||||
"Preview": "Kucken",
|
||||
"Print": "Dr\u00e9cken",
|
||||
"Save": "Sp\u00e4icheren",
|
||||
"Could not find the specified string.": "Den Text konnt net fonnt ginn.",
|
||||
"Replace": "Ersetzen",
|
||||
"Next": "Weider",
|
||||
"Whole words": "Ganz Wierder",
|
||||
"Find and replace": "Fannen an ersetzen",
|
||||
"Replace with": "Ersetze mat",
|
||||
"Find": "Fannen",
|
||||
"Replace all": "All ersetzen",
|
||||
"Match case": "Grouss-\/Klengschreiwung respekt\u00e9ieren",
|
||||
"Prev": "Zr\u00e9ck",
|
||||
"Spellcheck": "Verbesseren",
|
||||
"Finish": "Ofschl\u00e9issen",
|
||||
"Ignore all": "All ignor\u00e9ieren",
|
||||
"Ignore": "Ignor\u00e9ieren",
|
||||
"Add to Dictionary": "An den Dictionnaire androen",
|
||||
"Insert row before": "Rei virdrun drasetzen",
|
||||
"Rows": "Reien",
|
||||
"Height": "H\u00e9icht",
|
||||
"Paste row after": "Rei herno apechen",
|
||||
"Alignment": "Align\u00e9ierung",
|
||||
"Border color": "Rumm-Faarf",
|
||||
"Column group": "Kolonnegrupp",
|
||||
"Row": "Rei",
|
||||
"Insert column before": "Kolonn virdrun drasetzen",
|
||||
"Split cell": "Zell opspl\u00e9cken",
|
||||
"Cell padding": "Zellenopf\u00ebllung",
|
||||
"Cell spacing": "Zellenofstand",
|
||||
"Row type": "Reientyp",
|
||||
"Insert table": "Tabell drasetzen",
|
||||
"Body": "Kierper",
|
||||
"Caption": "Beschr\u00ebftung",
|
||||
"Footer": "Fouss",
|
||||
"Delete row": "Rei l\u00e4schen",
|
||||
"Paste row before": "Rei virdrun apechen",
|
||||
"Scope": "Ber\u00e4ich",
|
||||
"Delete table": "Tabell l\u00e4schen",
|
||||
"H Align": "H-Align\u00e9ierung",
|
||||
"Top": "Uewen",
|
||||
"Header cell": "Kappzell",
|
||||
"Column": "Kolonn",
|
||||
"Row group": "Reiegrupp",
|
||||
"Cell": "Zell",
|
||||
"Middle": "M\u00ebtt",
|
||||
"Cell type": "Zellentyp",
|
||||
"Copy row": "Rei kop\u00e9ieren",
|
||||
"Row properties": "Eegeschafte vu Reien",
|
||||
"Table properties": "Eegeschafte vun Tabellen",
|
||||
"Bottom": "\u00cbnnen",
|
||||
"V Align": "V-Align\u00e9ierung",
|
||||
"Header": "Kapp",
|
||||
"Right": "Riets",
|
||||
"Insert column after": "Kolonn herno drasetzen",
|
||||
"Cols": "Kolonnen",
|
||||
"Insert row after": "Rei herno drasetzen",
|
||||
"Width": "Breet",
|
||||
"Cell properties": "Eegeschafte vun Zellen",
|
||||
"Left": "L\u00e9nks",
|
||||
"Cut row": "Rei ausschneiden",
|
||||
"Delete column": "Kolonn l\u00e4schen",
|
||||
"Center": "M\u00ebtt",
|
||||
"Merge cells": "Zelle fusion\u00e9ieren",
|
||||
"Insert template": "Virlag drasetzen",
|
||||
"Templates": "Virlagen",
|
||||
"Background color": "Hanndergrondfaarf",
|
||||
"Custom...": "Eegen...",
|
||||
"Custom color": "Eege Faarf",
|
||||
"No color": "Keng Faarf",
|
||||
"Text color": "Textfaarf",
|
||||
"Show blocks": "Bl\u00e9ck weisen",
|
||||
"Show invisible characters": "Onsiichtbar Zeeche weisen",
|
||||
"Words: {0}": "Wierder: {0}",
|
||||
"Insert": "Drasetzen",
|
||||
"File": "Fichier",
|
||||
"Edit": "\u00c4nneren",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Ber\u00e4ich fir format\u00e9ierten Text. Dr\u00e9ck ALT+F9 fir de Men\u00fc. Dr\u00e9ck ALT+F10 fir d'Geschirleescht. Dr\u00e9ck ALT+0 fir d'H\u00ebllef.",
|
||||
"Tools": "Geschir",
|
||||
"View": "Kucken",
|
||||
"Table": "Tabell",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/lt.js
Normal file
219
data/web/rc/program/js/tinymce/langs/lt.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('lt',{
|
||||
"Cut": "I\u0161kirpti",
|
||||
"Heading 5": "Antra\u0161t\u0117 5",
|
||||
"Header 2": "Antra\u0161t\u0117 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Nar\u0161ykl\u0117s nustatymai neleid\u017eia redaktoriui tiesiogiai pasiekti laikinosios atminties. Pra\u0161ome naudoti klaviat\u016bros klavi\u0161us Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Antra\u0161t\u0117 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Antra\u0161t\u0117 2",
|
||||
"Paste": "\u012ed\u0117ti",
|
||||
"Close": "U\u017edaryti",
|
||||
"Font Family": "\u0160riftas",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Lygiuoti de\u0161in\u0117je",
|
||||
"New document": "Naujas dokumentas",
|
||||
"Blockquote": "Citata",
|
||||
"Numbered list": "Skaitmeninis s\u0105ra\u0161as",
|
||||
"Heading 1": "Antra\u0161t\u0117 1",
|
||||
"Headings": "Antra\u0161t\u0117s",
|
||||
"Increase indent": "Didinti \u012ftrauk\u0105",
|
||||
"Formats": "Formatai",
|
||||
"Headers": "Antra\u0161t\u0117s",
|
||||
"Select all": "Pa\u017eym\u0117ti visk\u0105",
|
||||
"Header 3": "Antra\u0161t\u0117 3",
|
||||
"Blocks": "Blokai",
|
||||
"Undo": "Atstatyti",
|
||||
"Strikethrough": "Perbrauktas",
|
||||
"Bullet list": "\u017denklinimo s\u0105ra\u0161as",
|
||||
"Header 1": "Antra\u0161t\u0117 1",
|
||||
"Superscript": "Vir\u0161utinis indeksas",
|
||||
"Clear formatting": "Naikinti formatavim\u0105",
|
||||
"Font Sizes": "\u0160rifto dyd\u017eiai",
|
||||
"Subscript": "Apatinis indeksas",
|
||||
"Header 6": "Antra\u0161t\u0117 6",
|
||||
"Redo": "Gr\u0105\u017einti",
|
||||
"Paragraph": "Paragrafas",
|
||||
"Ok": "Gerai",
|
||||
"Bold": "Pary\u0161kintas",
|
||||
"Code": "Kodas",
|
||||
"Italic": "Kursyvinis",
|
||||
"Align center": "Centruoti",
|
||||
"Header 5": "Antra\u0161t\u0117 5",
|
||||
"Heading 6": "Antra\u0161t\u0117 6",
|
||||
"Heading 3": "Antra\u0161t\u0117 3",
|
||||
"Decrease indent": "Ma\u017einti \u012ftrauk\u0105",
|
||||
"Header 4": "Antra\u0161t\u0117 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Dabar \u012fterpiama paprastojo teksto re\u017eimu. Kol \u0161i parinktis \u012fjungta, turinys bus \u012fterptas kaip paprastas tekstas.",
|
||||
"Underline": "Pabrauktas",
|
||||
"Cancel": "Atsisakyti",
|
||||
"Justify": "I\u0161d\u0117styti per vis\u0105 plot\u012f",
|
||||
"Inline": "Inline",
|
||||
"Copy": "Kopijuoti",
|
||||
"Align left": "Lygiuoti kair\u0117je",
|
||||
"Visual aids": "Vaizdin\u0117s priemon\u0117s",
|
||||
"Lower Greek": "Ma\u017eosios graik\u0173",
|
||||
"Square": "Kvadratas",
|
||||
"Default": "Pagrindinis",
|
||||
"Lower Alpha": "Ma\u017eosios raid\u0117s",
|
||||
"Circle": "Apskritimas",
|
||||
"Disc": "Diskas",
|
||||
"Upper Alpha": "Did\u017eiosios raid\u0117s",
|
||||
"Upper Roman": "Did\u017eiosios rom\u0117n\u0173",
|
||||
"Lower Roman": "Ma\u017eosios rom\u0117n\u0173",
|
||||
"Name": "Pavadinimas",
|
||||
"Anchor": "\u017dym\u0117",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Turite nei\u0161saugot\u0173 pakeitim\u0173! Ar tikrai norite i\u0161eiti?",
|
||||
"Restore last draft": "Atstatyti paskutin\u012f projekt\u0105",
|
||||
"Special character": "Specialus simbolis",
|
||||
"Source code": "Pirminis \u0161altinis",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Spalva",
|
||||
"Right to left": "I\u0161 de\u0161in\u0117s \u012f kair\u0119",
|
||||
"Left to right": "I\u0161 kair\u0117s \u012f de\u0161in\u0119",
|
||||
"Emoticons": "Jaustukai",
|
||||
"Robots": "Robotai",
|
||||
"Document properties": "Dokumento savyb\u0117s",
|
||||
"Title": "Pavadinimas",
|
||||
"Keywords": "\u017dymos",
|
||||
"Encoding": "Kodavimas",
|
||||
"Description": "Apra\u0161as",
|
||||
"Author": "Autorius",
|
||||
"Fullscreen": "Visas ekranas",
|
||||
"Horizontal line": "Horizontali linija",
|
||||
"Horizontal space": "Horizontalus tarpas",
|
||||
"Insert\/edit image": "\u012eterpti|Tvarkyti paveiksl\u0117l\u012f",
|
||||
"General": "Bendra",
|
||||
"Advanced": "I\u0161pl\u0117stas",
|
||||
"Source": "Pirmin\u0117 nuoroda",
|
||||
"Border": "R\u0117melis",
|
||||
"Constrain proportions": "Laikytis proporcij\u0173",
|
||||
"Vertical space": "Vertikalus tarpas",
|
||||
"Image description": "Paveiksl\u0117lio apra\u0161as",
|
||||
"Style": "Stilius",
|
||||
"Dimensions": "Matmenys",
|
||||
"Insert image": "\u012eterpti paveiksl\u0117l\u012f",
|
||||
"Zoom in": "Priartinti",
|
||||
"Contrast": "Kontrastas",
|
||||
"Back": "Atgal",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "Apversti horizontaliai",
|
||||
"Resize": "Keisti dyd\u012f",
|
||||
"Sharpen": "Ry\u0161kumas",
|
||||
"Zoom out": "Atitolinti",
|
||||
"Image options": "Paveiksl\u0117lio nustatymai",
|
||||
"Apply": "Taikyti",
|
||||
"Brightness": "\u0160viesumas",
|
||||
"Rotate clockwise": "Pasukti pagal laikrod\u017eio rodykl\u0119",
|
||||
"Rotate counterclockwise": "Pasukti prie\u0161 laikrod\u017eio rodykl\u0119",
|
||||
"Edit image": "Redaguoti paveiksl\u0117l\u012f",
|
||||
"Color levels": "Spalv\u0173 lygiai",
|
||||
"Crop": "Atkarpyti",
|
||||
"Orientation": "Pasukimas",
|
||||
"Flip vertically": "Apversti vertikaliai",
|
||||
"Invert": "Prie\u0161ingos spalvos",
|
||||
"Insert date\/time": "\u012eterpti dat\u0105\/laik\u0105",
|
||||
"Remove link": "\u0160alinti nuorod\u0105",
|
||||
"Url": "Nuoroda",
|
||||
"Text to display": "Rodomas tekstas",
|
||||
"Anchors": "\u017dym\u0117",
|
||||
"Insert link": "\u012eterpti nuorod\u0105",
|
||||
"New window": "Naujas langas",
|
||||
"None": "Nieko",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Atrodo, kad \u012fved\u0117te nuotolin\u0119 nuorod\u0105. Ar norite prie\u0161 j\u0105 \u012fvesti reikalaujam\u0105 \u201ehttp:\/\/\u201c?",
|
||||
"Target": "Tikslin\u0117 nuoroda",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Atrodo, kad \u012fvesta nuoroda yra elektroninio pa\u0161to adresas. Ar norite prie\u0161 j\u012f \u012fvesti reikalaujam\u0105 \u201emailto:\u201c?",
|
||||
"Insert\/edit link": "\u012eterpti\/taisyti nuorod\u0105",
|
||||
"Insert\/edit video": "\u012eterpti\/tvarkyti video",
|
||||
"Poster": "Plakatas",
|
||||
"Alternative source": "Alternatyvus \u0161altinis",
|
||||
"Paste your embed code below:": "\u012eterpkite kod\u0105 \u017eemiau:",
|
||||
"Insert video": "\u012eterpti video",
|
||||
"Embed": "\u012eterpti",
|
||||
"Nonbreaking space": "Nepertraukiamos vietos",
|
||||
"Page break": "Puslapio skirtukas",
|
||||
"Paste as text": "\u012eklijuoti kaip tekst\u0105",
|
||||
"Preview": "Per\u017ei\u016bra",
|
||||
"Print": "Spausdinti",
|
||||
"Save": "I\u0161saugoti",
|
||||
"Could not find the specified string.": "Nepavyko rasti nurodytos eilut\u0117s.",
|
||||
"Replace": "Pakeisti",
|
||||
"Next": "Sekantis",
|
||||
"Whole words": "Visus \u017eod\u017eius",
|
||||
"Find and replace": "Surasti ir pakeisti",
|
||||
"Replace with": "Kuo pakeisti",
|
||||
"Find": "Ie\u0161koti",
|
||||
"Replace all": "Pakeisti visk\u0105",
|
||||
"Match case": "Atitinkamus",
|
||||
"Prev": "Ankstesnis",
|
||||
"Spellcheck": "Ra\u0161ybos tikrinimas",
|
||||
"Finish": "Baigti",
|
||||
"Ignore all": "Ignoruoti visk\u0105",
|
||||
"Ignore": "Ignoruoti",
|
||||
"Add to Dictionary": "Prid\u0117ti \u012f \u017dodyn\u0105",
|
||||
"Insert row before": "\u012eterpti eilut\u0119 prie\u0161",
|
||||
"Rows": "Eilut\u0117s",
|
||||
"Height": "Auk\u0161tis",
|
||||
"Paste row after": "\u012ed\u0117ti eilut\u0119 po",
|
||||
"Alignment": "Lygiavimas",
|
||||
"Border color": "R\u0117melio spalva",
|
||||
"Column group": "Stulpeli\u0173 grup\u0117",
|
||||
"Row": "Eilut\u0117s",
|
||||
"Insert column before": "\u012eterpti stulpel\u012f prie\u0161",
|
||||
"Split cell": "Skaidyti langelius",
|
||||
"Cell padding": "Tarpas nuo langelio iki teksto",
|
||||
"Cell spacing": "Tarpas tarp langeli\u0173",
|
||||
"Row type": "Eilu\u010di\u0173 tipas",
|
||||
"Insert table": "\u012eterpti lentel\u0119",
|
||||
"Body": "Turinys",
|
||||
"Caption": "Antra\u0161t\u0117",
|
||||
"Footer": "Apa\u010dia",
|
||||
"Delete row": "Naikinti eilut\u0119",
|
||||
"Paste row before": "\u012ed\u0117ti eilut\u0119 prie\u0161",
|
||||
"Scope": "Strukt\u016bra",
|
||||
"Delete table": "\u0160alinti lentel\u0119",
|
||||
"H Align": "H Lygiavimas",
|
||||
"Top": "Vir\u0161uje",
|
||||
"Header cell": "Antra\u0161t\u0117s langelis",
|
||||
"Column": "Stulpelis",
|
||||
"Row group": "Eilu\u010di\u0173 grup\u0117",
|
||||
"Cell": "Langeliai",
|
||||
"Middle": "Viduryje",
|
||||
"Cell type": "Langelio tipas",
|
||||
"Copy row": "Kopijuoti eilut\u0119",
|
||||
"Row properties": "Eilut\u0117s savyb\u0117s",
|
||||
"Table properties": "Lentel\u0117s savyb\u0117s",
|
||||
"Bottom": "Apa\u010dioje",
|
||||
"V Align": "V Lygiavimas",
|
||||
"Header": "Antra\u0161t\u0117",
|
||||
"Right": "De\u0161in\u0117",
|
||||
"Insert column after": "\u012eterpti stulpel\u012f po",
|
||||
"Cols": "Stulpeliai",
|
||||
"Insert row after": "\u012eterpti eilut\u0119 po",
|
||||
"Width": "Plotis",
|
||||
"Cell properties": "Langelio savyb\u0117s",
|
||||
"Left": "Kair\u0117",
|
||||
"Cut row": "I\u0161kirpti eilut\u0119",
|
||||
"Delete column": "Naikinti stulpel\u012f",
|
||||
"Center": "Centras",
|
||||
"Merge cells": "Sujungti langelius",
|
||||
"Insert template": "\u012eterpti \u0161ablon\u0105",
|
||||
"Templates": "\u0160ablonai",
|
||||
"Background color": "Fono spalva",
|
||||
"Custom...": "Pasirinktinas...",
|
||||
"Custom color": "Pasirinktina spalva",
|
||||
"No color": "Jokios spalvos",
|
||||
"Text color": "Teksto spalva",
|
||||
"Show blocks": "Rodyti blokus",
|
||||
"Show invisible characters": "Rodyti nematomus simbolius",
|
||||
"Words: {0}": "\u017dod\u017eiai: {0}",
|
||||
"Insert": "\u012eterpti",
|
||||
"File": "Failas",
|
||||
"Edit": "Redaguoti",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Suformatuoto teksto laukas. D\u0117l meniu spauskite ALT-F9. U\u017eduo\u010di\u0173 juostos \u012fjungimui spauskite ALT-F10. Pagalbai - spauskite ALT-0.",
|
||||
"Tools": "\u012erankiai",
|
||||
"View": "Per\u017ei\u016bra",
|
||||
"Table": "Lentel\u0117",
|
||||
"Format": "Formatas"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/lv.js
Normal file
219
data/web/rc/program/js/tinymce/langs/lv.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('lv',{
|
||||
"Cut": "Izgriezt",
|
||||
"Heading 5": "5. l\u012bme\u0146a virsraksts",
|
||||
"Header 2": "2. l\u012bme\u0146a virsraksts",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "J\u016bsu p\u0101rl\u016bkprogramma neatbalsta piek\u013cuvi starpliktuvei. L\u016bdzu, lietojiet Ctrl+X\/C\/V klaviat\u016bras sa\u012bsnes.",
|
||||
"Heading 4": "4. l\u012bme\u0146a virsraksts",
|
||||
"Div": "Div",
|
||||
"Heading 2": "2. l\u012bme\u0146a virsraksts",
|
||||
"Paste": "Iel\u012bm\u0113t",
|
||||
"Close": "Aizv\u0113rt",
|
||||
"Font Family": "Fontu saime",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Pa labi",
|
||||
"New document": "Jauns dokuments",
|
||||
"Blockquote": "Cit\u0101ts",
|
||||
"Numbered list": "Numur\u0113ts saraksts",
|
||||
"Heading 1": "1. l\u012bme\u0146a virsraksts",
|
||||
"Headings": "Virsraksti",
|
||||
"Increase indent": "Palielin\u0101t atk\u0101pi",
|
||||
"Formats": "Format\u0113jumi",
|
||||
"Headers": "Virsraksti",
|
||||
"Select all": "Iez\u012bm\u0113t visu",
|
||||
"Header 3": "3. l\u012bme\u0146a virsraksts",
|
||||
"Blocks": "Bloka elementi",
|
||||
"Undo": "Solis atpaka\u013c",
|
||||
"Strikethrough": "Nosv\u012btrot",
|
||||
"Bullet list": "Nenumur\u0113ts saraksts",
|
||||
"Header 1": "1. l\u012bme\u0146a virsraksts",
|
||||
"Superscript": "Aug\u0161raksts",
|
||||
"Clear formatting": "No\u0146emt format\u0113jumu",
|
||||
"Font Sizes": "Fontu izm\u0113ri",
|
||||
"Subscript": "Apak\u0161raksts",
|
||||
"Header 6": "6. l\u012bme\u0146a virsraksts",
|
||||
"Redo": "Solis uz priek\u0161u",
|
||||
"Paragraph": "Rindkopa",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Treknraksts",
|
||||
"Code": "Kods",
|
||||
"Italic": "Sl\u012bpraksts",
|
||||
"Align center": "Centr\u0113t",
|
||||
"Header 5": "5. l\u012bme\u0146a virsraksts",
|
||||
"Heading 6": "6. l\u012bme\u0146a virsraksts",
|
||||
"Heading 3": "3. l\u012bme\u0146a virsraksts",
|
||||
"Decrease indent": "Samazin\u0101t atk\u0101pi",
|
||||
"Header 4": "4. l\u012bme\u0146a virsraksts",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Iel\u012bm\u0113\u0161ana vienk\u0101r\u0161\u0101 teksta re\u017e\u012bm\u0101. Saturs tiks iel\u012bm\u0113ts bez format\u0113juma l\u012bdz \u0161\u012b opcija tiks atsl\u0113gta.",
|
||||
"Underline": "Pasv\u012btrot",
|
||||
"Cancel": "Atcelt",
|
||||
"Justify": "Gar ab\u0101m mal\u0101m",
|
||||
"Inline": "Inline elementi",
|
||||
"Copy": "Kop\u0113t",
|
||||
"Align left": "Pa kreisi",
|
||||
"Visual aids": "Vizu\u0101l\u0101 pal\u012bdz\u012bba",
|
||||
"Lower Greek": "Grie\u0137u mazie burti",
|
||||
"Square": "Kvadr\u0101ts",
|
||||
"Default": "Parastais",
|
||||
"Lower Alpha": "Lat\u012b\u0146u mazie burti",
|
||||
"Circle": "Aplis",
|
||||
"Disc": "Disks",
|
||||
"Upper Alpha": "Lat\u012b\u0146u lielie burti",
|
||||
"Upper Roman": "Romie\u0161u lielie burti",
|
||||
"Lower Roman": "Romie\u0161u mazie burti",
|
||||
"Name": "Nosaukums",
|
||||
"Anchor": "Iek\u0161\u0113j\u0101 saite",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Saturs ir labots un nav saglab\u0101ts. Vai tie\u0161\u0101m v\u0113laties atst\u0101t \u0161o lapu?",
|
||||
"Restore last draft": "Atjaunot p\u0113d\u0113jo melnrakstu",
|
||||
"Special character": "Speci\u0101l\u0101 rakstz\u012bme",
|
||||
"Source code": "Pirmkods",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Kr\u0101sa",
|
||||
"Right to left": "No lab\u0101s uz kreiso",
|
||||
"Left to right": "No kreis\u0101s uz labo",
|
||||
"Emoticons": "Emocijas",
|
||||
"Robots": "Programmas",
|
||||
"Document properties": "Dokumenta parametri",
|
||||
"Title": "Nosaukums",
|
||||
"Keywords": "Atsl\u0113gv\u0101rdi",
|
||||
"Encoding": "Kod\u0113\u0161ana",
|
||||
"Description": "Apraksts",
|
||||
"Author": "Autors",
|
||||
"Fullscreen": "Pilnekr\u0101na re\u017e\u012bms",
|
||||
"Horizontal line": "Horizont\u0101l\u0101 l\u012bnija",
|
||||
"Horizontal space": "Horizont\u0101l\u0101 atstarpe",
|
||||
"Insert\/edit image": "Ievietot\/labot att\u0113lu",
|
||||
"General": "Pamata info",
|
||||
"Advanced": "Papildus",
|
||||
"Source": "Avots",
|
||||
"Border": "Apmale",
|
||||
"Constrain proportions": "Saglab\u0101t malu attiec\u012bbu",
|
||||
"Vertical space": "Vertik\u0101l\u0101 atstarpe",
|
||||
"Image description": "Apraksts",
|
||||
"Style": "Stils",
|
||||
"Dimensions": "Izm\u0113ri",
|
||||
"Insert image": "Ievietot att\u0113lu",
|
||||
"Zoom in": "Pietuvin\u0101t",
|
||||
"Contrast": "Kontrasts",
|
||||
"Back": "Atgriezties",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Apmest horizont\u0101li",
|
||||
"Resize": "Main\u012bt izm\u0113ru",
|
||||
"Sharpen": "Asums",
|
||||
"Zoom out": "Att\u0101lin\u0101t",
|
||||
"Image options": "Att\u0113la parametri",
|
||||
"Apply": "Pielietot",
|
||||
"Brightness": "Gai\u0161ums",
|
||||
"Rotate clockwise": "Pagriezt pulkste\u0146a r\u0101d\u012bt\u0101ja virzien\u0101",
|
||||
"Rotate counterclockwise": "Pagriezt pret\u0113ji pulkste\u0146a r\u0101d\u012bt\u0101ja virzienam",
|
||||
"Edit image": "Redi\u0123\u0113t att\u0113lu",
|
||||
"Color levels": "Kr\u0101su l\u012bme\u0146i",
|
||||
"Crop": "Apgriezt",
|
||||
"Orientation": "Orient\u0101cija",
|
||||
"Flip vertically": "Apmest vertik\u0101li",
|
||||
"Invert": "Pret\u0113j\u0101s kr\u0101sas",
|
||||
"Insert date\/time": "Ievietot datumu\/laiku",
|
||||
"Remove link": "No\u0146emt saiti",
|
||||
"Url": "Adrese",
|
||||
"Text to display": "Nosaukums",
|
||||
"Anchors": "Saites",
|
||||
"Insert link": "Ievietot saiti",
|
||||
"New window": "Jaun\u0101 \u0161\u0137irkl\u012b",
|
||||
"None": "\u2014",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "J\u016bs ievad\u012bj\u0101t \u0101r\u0113jo saiti. Lai t\u0101 korekti darbotos, ir nepiecie\u0161ams to papildin\u0101t ar \"http:\/\/\" priek\u0161\u0101. Vai v\u0113laties to izdar\u012bt?",
|
||||
"Target": "Kur atv\u0113rt",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "J\u016bs ievad\u012bj\u0101t e-pasta adresi. Lai t\u0101 korekti darbotos, ir nepiecie\u0161ams to papildin\u0101t ar \"mailto:\" priek\u0161\u0101. Vai v\u0113laties to izdar\u012bt?",
|
||||
"Insert\/edit link": "Ievietot\/labot saiti",
|
||||
"Insert\/edit video": "Ievietot\/redi\u0123\u0113t video",
|
||||
"Poster": "Att\u0113ls",
|
||||
"Alternative source": "Alternat\u012bvs avots",
|
||||
"Paste your embed code below:": "Iekop\u0113jiet Embed kodu \u0161eit:",
|
||||
"Insert video": "Ievietot video",
|
||||
"Embed": "Embed kods",
|
||||
"Nonbreaking space": "Nedal\u0101m\u0101 atstarpe",
|
||||
"Page break": "P\u0101reja uz jauno lapu",
|
||||
"Paste as text": "Iel\u012bm\u0113t bez format\u0113juma",
|
||||
"Preview": "Priek\u0161skat\u012bt",
|
||||
"Print": "Druk\u0101t",
|
||||
"Save": "Saglab\u0101t",
|
||||
"Could not find the specified string.": "Mekl\u0113tais teksts netika atrasts",
|
||||
"Replace": "Aizvietot",
|
||||
"Next": "N\u0101kamais",
|
||||
"Whole words": "Tikai pilnos v\u0101rdus",
|
||||
"Find and replace": "Mekl\u0113t un aizvietot",
|
||||
"Replace with": "Aizvietot ar",
|
||||
"Find": "Mekl\u0113t",
|
||||
"Replace all": "Aizvietot visu",
|
||||
"Match case": "At\u0161\u0137irt lielos un mazos burtus",
|
||||
"Prev": "Iepriek\u0161\u0113jais",
|
||||
"Spellcheck": "Pareizrakst\u012bbas p\u0101rbaude",
|
||||
"Finish": "Pabeigt",
|
||||
"Ignore all": "Ignor\u0113t visu",
|
||||
"Ignore": "Ignor\u0113t",
|
||||
"Add to Dictionary": "Pievienot v\u0101rdn\u012bcai",
|
||||
"Insert row before": "Jauna rinda augst\u0101k",
|
||||
"Rows": "Rindas",
|
||||
"Height": "Augstums",
|
||||
"Paste row after": "Iel\u012bm\u0113t rindu zem\u0101k",
|
||||
"Alignment": "Izl\u012bdzin\u0101\u0161ana",
|
||||
"Border color": "Apmales kr\u0101sa",
|
||||
"Column group": "Kolonnu grupa",
|
||||
"Row": "Rinda",
|
||||
"Insert column before": "Jauna kolonna pa kreisi",
|
||||
"Split cell": "Sadal\u012bt \u0161\u016bnas",
|
||||
"Cell padding": "Iek\u0161\u0113j\u0101 atstarpe",
|
||||
"Cell spacing": "\u0160\u016bnu atstarpe",
|
||||
"Row type": "Rindas veids",
|
||||
"Insert table": "Ievietot tabulu",
|
||||
"Body": "Saturs",
|
||||
"Caption": "Ar virsrakstu",
|
||||
"Footer": "K\u0101jene",
|
||||
"Delete row": "Dz\u0113st rindu",
|
||||
"Paste row before": "Iel\u012bm\u0113t rindu augst\u0101k",
|
||||
"Scope": "Attiecin\u0101t uz",
|
||||
"Delete table": "Dz\u0113st tabulu",
|
||||
"H Align": "Horizont\u0101lais novietojums",
|
||||
"Top": "Aug\u0161\u0101",
|
||||
"Header cell": "Galvenes \u0161\u016bna",
|
||||
"Column": "Kolonna",
|
||||
"Row group": "Rindu grupa",
|
||||
"Cell": "\u0160\u016bna",
|
||||
"Middle": "Pa vidu",
|
||||
"Cell type": "\u0160\u016bnas veids",
|
||||
"Copy row": "Kop\u0113t rindu",
|
||||
"Row properties": "Rindas parametri",
|
||||
"Table properties": "Tabulas parametri",
|
||||
"Bottom": "Apak\u0161\u0101",
|
||||
"V Align": "Vertik\u0101lais novietojums",
|
||||
"Header": "Galvene",
|
||||
"Right": "Pa labi",
|
||||
"Insert column after": "Jauna kolonna pa labi",
|
||||
"Cols": "Kolonnas",
|
||||
"Insert row after": "Jauna rinda zem\u0101k",
|
||||
"Width": "Platums",
|
||||
"Cell properties": "\u0160\u016bnas parametri",
|
||||
"Left": "Pa kreisi",
|
||||
"Cut row": "Izgriezt rindu",
|
||||
"Delete column": "Dz\u0113st kolonu",
|
||||
"Center": "Centr\u0113t",
|
||||
"Merge cells": "Apvienot \u0161\u016bnas",
|
||||
"Insert template": "Ievietot veidni",
|
||||
"Templates": "Veidnes",
|
||||
"Background color": "Fona kr\u0101sa",
|
||||
"Custom...": "Izv\u0113l\u0113ties citu...",
|
||||
"Custom color": "Specifisk\u0101 kr\u0101sa",
|
||||
"No color": "Nenor\u0101d\u012bt kr\u0101su",
|
||||
"Text color": "Teksta kr\u0101sa",
|
||||
"Show blocks": "R\u0101d\u012bt blokus",
|
||||
"Show invisible characters": "R\u0101d\u012bt neredzam\u0101s rakstz\u012bmes",
|
||||
"Words: {0}": "V\u0101rdi: {0}",
|
||||
"Insert": "Ievietot",
|
||||
"File": "Datne",
|
||||
"Edit": "Labot",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Satura redaktors. Nospiediet ALT-F9 lai par\u0101d\u012btu izv\u0113lni, ALT-F10 - r\u012bkjoslu vai ALT-0 - pal\u012bdz\u012bbu.",
|
||||
"Tools": "R\u012bki",
|
||||
"View": "Skat\u012bt",
|
||||
"Table": "Tabula",
|
||||
"Format": "Format\u0113t"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/mk_MK.js
Normal file
219
data/web/rc/program/js/tinymce/langs/mk_MK.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('mk_MK',{
|
||||
"Cut": "\u0418\u0441\u0435\u0447\u0438",
|
||||
"Heading 5": "Heading 5",
|
||||
"Header 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0458\u0435 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448\u0438\u043e\u0442 \u043f\u0440\u0435\u043b\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u043d\u0435 \u043f\u043e\u0434\u0440\u0436\u0443\u0432\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u0435\u043d \u043f\u0440\u0438\u0441\u0442\u0430\u043f \u0434\u043e clipboard. \u041a\u043e\u0440\u0438\u0441\u0442\u0435\u0442\u0435 \u0433\u0438 \u043a\u0440\u0430\u0442\u0435\u043d\u043a\u0438\u0442\u0435 CTRL+X\/C\/V.",
|
||||
"Heading 4": "Heading 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Heading 2",
|
||||
"Paste": "\u0417\u0430\u043b\u0435\u043f\u0438",
|
||||
"Close": "\u0417\u0430\u0442\u0432\u043e\u0440\u0438",
|
||||
"Font Family": "Font Family",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u041f\u043e\u0440\u0430\u043c\u043d\u0438 \u0434\u0435\u0441\u043d\u043e",
|
||||
"New document": "\u041d\u043e\u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "\u041b\u0438\u0441\u0442\u0430 \u0431\u0440\u043e\u0458\u043a\u0438",
|
||||
"Heading 1": "Heading 1",
|
||||
"Headings": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0458\u0430",
|
||||
"Increase indent": "\u0417\u0433\u043e\u043b\u0435\u043c\u0438 \u0432\u043e\u0432\u043b\u0435\u043a\u0443\u0432\u0430\u045a\u0435",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438",
|
||||
"Headers": "\u0417\u0430\u0433\u043b\u0430\u0432\u0458\u0435",
|
||||
"Select all": "\u0421\u0435\u043b\u0435\u043a\u0442\u0438\u0440\u0430\u0458 \u0441\u00e8",
|
||||
"Header 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0458\u0435 3",
|
||||
"Blocks": "Blocks",
|
||||
"Undo": "\u0412\u0440\u0430\u0442\u0438",
|
||||
"Strikethrough": "\u041f\u0440\u0435\u0446\u0440\u0442\u0430\u043d\u043e",
|
||||
"Bullet list": "\u041b\u0438\u0441\u0442\u0430 \u0442\u043e\u0447\u043a\u0438",
|
||||
"Header 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0458\u0435 1",
|
||||
"Superscript": "\u0422\u0435\u043a\u0441\u0442 \u0433\u043e\u0440\u0435",
|
||||
"Clear formatting": "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u045a\u0435",
|
||||
"Font Sizes": "Font Sizes",
|
||||
"Subscript": "\u0422\u0435\u043a\u0441\u0442 \u0434\u043e\u043b\u0443",
|
||||
"Header 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0458\u0435 6",
|
||||
"Redo": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438",
|
||||
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
||||
"Ok": "\u041e\u043a",
|
||||
"Bold": "\u0417\u0434\u0435\u0431\u0435\u043b\u0435\u043d\u043e",
|
||||
"Code": "Code",
|
||||
"Italic": "\u0417\u0430\u043a\u043e\u0441\u0435\u043d\u043e",
|
||||
"Align center": "\u041f\u043e\u0440\u0430\u043c\u043d\u0438 \u0441\u0440\u0435\u0434\u0438\u043d\u0430",
|
||||
"Header 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0458\u0435 5",
|
||||
"Heading 6": "Heading 6",
|
||||
"Heading 3": "Heading 3",
|
||||
"Decrease indent": "\u041d\u0430\u043c\u0430\u043b\u0438 \u0432\u043e\u0432\u043b\u0435\u043a\u0443\u0432\u0430\u045a\u0435",
|
||||
"Header 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0458\u0435 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u043c\u0435\u0442\u043d\u0443\u0432\u0430\u045a\u0435\u0442\u043e \u0441\u0435\u0433\u0430 \u0435 \u043a\u0430\u043a\u043e \u0447\u0438\u0441\u0442 \u0442\u0435\u043a\u0441\u0442. \u0421\u043e\u0434\u0440\u0436\u0438\u043d\u0430\u0442\u0430 \u045c\u0435 \u0431\u0438\u0434\u0435 \u0432\u043c\u0435\u0442\u043d\u0430\u0442\u0430 \u043a\u0430\u043a\u043e \u0447\u0438\u0441\u0442 \u0442\u0435\u043a\u0441\u0442 \u0431\u0430\u0440\u0435\u043c \u0434\u043e\u0434\u0435\u043a\u0430 \u043d\u0435 \u0458\u0430 \u0438\u0441\u043a\u043b\u0443\u0447\u0438\u0442\u0435 \u043e\u0432\u0430\u0430 \u043e\u043f\u0446\u0438\u0458\u0430",
|
||||
"Underline": "\u041f\u043e\u0434\u0432\u043b\u0435\u0447\u0435\u043d\u043e",
|
||||
"Cancel": "\u041e\u0442\u043a\u0430\u0436\u0438",
|
||||
"Justify": "Justify",
|
||||
"Inline": "Inline",
|
||||
"Copy": "\u041a\u043e\u043f\u0438\u0440\u0430\u0458",
|
||||
"Align left": "\u041f\u043e\u0440\u0430\u043c\u043d\u0438 \u043b\u0435\u0432\u043e",
|
||||
"Visual aids": "\u0412\u0438\u0437\u0443\u0435\u043b\u043d\u0430 \u043f\u043e\u043c\u043e\u0448",
|
||||
"Lower Greek": "\u043c\u0430\u043b\u0438 \u0413\u0440\u0438\u043a",
|
||||
"Square": "\u043a\u0432\u0430\u0434\u0440\u0430\u0442",
|
||||
"Default": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e",
|
||||
"Lower Alpha": "\u043c\u0430\u043b\u0438 \u0410\u043b\u0444\u0430",
|
||||
"Circle": "\u043a\u0440\u0443\u0433",
|
||||
"Disc": "\u0434\u0438\u0441\u043a",
|
||||
"Upper Alpha": "\u0433\u043e\u043b\u0435\u043c\u0438 \u0410\u043b\u0444\u0430",
|
||||
"Upper Roman": "\u0433\u043e\u043b\u0435\u043c\u0438 \u0420\u043e\u043c\u0430\u043d",
|
||||
"Lower Roman": "\u043c\u0430\u043b\u0438 \u0420\u043e\u043c\u0430\u043d",
|
||||
"Name": "\u0418\u043c\u0435",
|
||||
"Anchor": "Anchor",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0418\u043c\u0430\u0442\u0435 \u043d\u0435\u0437\u0430\u0447\u0443\u0432\u0430\u043d\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438. \u0414\u0430\u043b\u0438 \u0441\u0430\u043a\u0430\u0442\u0435 \u0434\u0430 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435 \u043f\u043e\u043d\u0430\u0442\u0430\u043c\u0443?",
|
||||
"Restore last draft": "\u0412\u0440\u0430\u0442\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u043f\u0440\u0438\u043f\u0440\u0435\u043c\u0430",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u0438\u0458\u0430\u043b\u0435\u043d \u043a\u0430\u0440\u0430\u043a\u0442\u0435\u0440",
|
||||
"Source code": "\u0418\u0437\u0432\u043e\u0440\u0435\u043d \u043a\u043e\u0434",
|
||||
"B": "\u0411",
|
||||
"R": "\u0420",
|
||||
"G": "\u0413",
|
||||
"Color": "\u0411\u043e\u0458\u0430",
|
||||
"Right to left": "\u0414\u0435\u0441\u043d\u043e \u043d\u0430 \u043b\u0435\u0432\u043e",
|
||||
"Left to right": "\u041b\u0435\u0432\u043e \u043d\u0430 \u0434\u0435\u0441\u043d\u043e",
|
||||
"Emoticons": "\u0421\u043c\u0430\u0458\u043b\u0438",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438",
|
||||
"Document properties": "\u041f\u043e\u0434\u0430\u0442\u043e\u0446\u0438 \u0437\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0442",
|
||||
"Title": "\u041d\u0430\u0441\u043b\u043e\u0432",
|
||||
"Keywords": "\u041a\u043b\u0443\u0447\u043d\u0438 \u0437\u0431\u043e\u0440\u043e\u0432\u0438",
|
||||
"Encoding": "\u0415\u043d\u043a\u043e\u0434\u0438\u043d\u0433",
|
||||
"Description": "\u041e\u043f\u0438\u0441",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Fullscreen": "\u0426\u0435\u043b \u0435\u043a\u0440\u0430\u043d",
|
||||
"Horizontal line": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u0430 \u043b\u0438\u043d\u0438\u0458\u0430",
|
||||
"Horizontal space": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0435\u043d \u043f\u0440\u043e\u0441\u0442\u043e\u0440",
|
||||
"Insert\/edit image": "\u0412\u043d\u0435\u0441\u0438\/\u0438\u0437\u043c\u0435\u043d\u0438 \u0441\u043b\u0438\u043a\u0430",
|
||||
"General": "\u0413\u0435\u043d\u0435\u0440\u0430\u043b\u043d\u043e",
|
||||
"Advanced": "\u041d\u0430\u043f\u0440\u0435\u0434\u043d\u043e",
|
||||
"Source": "\u0418\u0437\u0432\u043e\u0440",
|
||||
"Border": "\u0420\u0430\u043c\u043a\u0430",
|
||||
"Constrain proportions": "\u0421\u0440\u0430\u0437\u043c\u0435\u0440\u043d\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0435\u043d \u043f\u0440\u043e\u0441\u0442\u043e\u0440",
|
||||
"Image description": "\u041e\u0431\u0458\u0430\u0441\u043d\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u0441\u043b\u0438\u043a\u0430",
|
||||
"Style": "\u0421\u0442\u0438\u043b",
|
||||
"Dimensions": "\u0414\u0438\u043c\u0435\u043d\u0437\u0438\u0438",
|
||||
"Insert image": "\u0412\u043d\u0435\u0441\u0438 \u0441\u043b\u0438\u043a\u0430",
|
||||
"Zoom in": "\u0417\u0433\u043e\u043b\u0435\u043c\u0438 \u043f\u043e\u0433\u043b\u0435\u0434",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Back": "\u041d\u0430\u0437\u0430\u0434",
|
||||
"Gamma": "\u0413\u0430\u043c\u0430",
|
||||
"Flip horizontally": "\u0421\u0432\u0440\u0442\u0438 \u0445\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e",
|
||||
"Resize": "\u0420\u0435\u0434\u0438\u043c\u0435\u043d\u0437\u0438\u043e\u043d\u0438\u0440\u0430\u0458",
|
||||
"Sharpen": "\u041e\u0441\u0442\u0440\u0438\u043d\u0430",
|
||||
"Zoom out": "\u041d\u0430\u043c\u0430\u043b\u0438 \u043f\u043e\u0433\u043b\u0435\u0434",
|
||||
"Image options": "\u041e\u043f\u0446\u0438\u0438 \u0437\u0430 \u0441\u043b\u0438\u043a\u0430",
|
||||
"Apply": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438",
|
||||
"Brightness": "\u0421\u0432\u0435\u0442\u043b\u043e\u0441\u0442",
|
||||
"Rotate clockwise": "\u0421\u0432\u0440\u0442\u0438 \u0432\u043e \u043f\u0440\u0430\u0432\u0435\u0446 \u043d\u0430 \u0441\u0442\u0440\u0435\u043b\u043a\u0430\u0442\u0430",
|
||||
"Rotate counterclockwise": "\u0421\u0432\u0440\u0442\u0438 \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u043e\u0434 \u0441\u0442\u0440\u0435\u043b\u043a\u0430\u0442\u0430",
|
||||
"Edit image": "\u0423\u0440\u0435\u0434\u0438 \u0441\u043b\u0438\u043a\u0430",
|
||||
"Color levels": "\u041d\u0438\u0432\u043e\u0430 \u043d\u0430 \u0431\u043e\u0438",
|
||||
"Crop": "\u041e\u0442\u0441\u0435\u0447\u0438",
|
||||
"Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u0458\u0430",
|
||||
"Flip vertically": "\u0421\u0432\u0440\u0442\u0438 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e",
|
||||
"Invert": "\u0418\u043d\u0432\u0435\u0440\u0437\u043d\u043e",
|
||||
"Insert date\/time": "\u0412\u043d\u0435\u0441\u0438 \u0434\u0430\u0442\u0443\u043c\/\u0432\u0440\u0435\u043c\u0435",
|
||||
"Remove link": "\u041e\u0442\u0441\u0442\u0440\u0430\u043d\u0438 \u043b\u0438\u043d\u043a",
|
||||
"Url": "Url",
|
||||
"Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0437\u0430 \u043f\u0440\u0438\u043a\u0430\u0437",
|
||||
"Anchors": "Anchors",
|
||||
"Insert link": "\u0412\u043d\u0435\u0441\u0438 \u043b\u0438\u043d\u043a",
|
||||
"New window": "\u043d\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446",
|
||||
"None": "\u043d\u0438\u0448\u0442\u043e",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0435 \u0447\u0438\u043d\u0438 \u0434\u0435\u043a\u0430 \u0430\u0434\u0440\u0435\u0441\u0430\u0442\u0430 \u0448\u0442\u043e \u0458\u0430 \u0432\u043d\u0435\u0441\u043e\u0432\u0442\u0435 \u0435 \u043d\u0430\u0434\u0432\u043e\u0440\u0435\u0448\u0435\u043d \u043b\u0438\u043d\u043a. \u0414\u0430\u043b\u0438 \u0441\u0430\u043a\u0430\u0442\u0435 \u0434\u0430 \u0431\u0438\u0434\u0435 \u0434\u043e\u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u043d\u0438\u043e\u0442 http:\/\/ \u043f\u0440\u0435\u0444\u0438\u043a\u0441?",
|
||||
"Target": "\u0446\u0435\u043b",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0435 \u0447\u0438\u043d\u0438 \u0434\u0435\u043a\u0430 \u0430\u0434\u0440\u0435\u0441\u0430\u0442\u0430 \u0448\u0442\u043e \u0458\u0430 \u0432\u043d\u0435\u0441\u043e\u0432\u0442\u0435 \u0435 \u0435-\u043f\u043e\u0448\u0442\u0430. \u0414\u0430\u043b\u0438 \u0441\u0430\u043a\u0430\u0442\u0435 \u0434\u0430 \u0431\u0438\u0434\u0435 \u0434\u043e\u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u043d\u0438\u043e\u0442 mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441?",
|
||||
"Insert\/edit link": "\u0412\u043d\u0435\u0441\u0438\/\u0443\u0440\u0435\u0434\u0438 \u043b\u0438\u043d\u043a",
|
||||
"Insert\/edit video": "\u0412\u043d\u0435\u0441\u0438\/\u0443\u0440\u0435\u0434\u0438 \u0432\u0438\u0434\u0435\u043e",
|
||||
"Poster": "\u041f\u043e\u0441\u0442\u0435\u0440",
|
||||
"Alternative source": "\u0410\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0435\u043d \u0438\u0437\u0432\u043e\u0440",
|
||||
"Paste your embed code below:": "\u041f\u043e\u0434\u043e\u043b\u0443 \u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u0433\u043e \u0432\u0430\u0448\u0438\u043e\u0442 \u043a\u043e\u0434 \u0437\u0430 \u0432\u043c\u0435\u0442\u043d\u0443\u0432\u0430\u045a\u0435:",
|
||||
"Insert video": "\u0412\u043d\u0435\u0441\u0438 \u0432\u0438\u0434\u0435\u043e",
|
||||
"Embed": "\u0412\u043c\u0435\u0442\u043d\u0438 \u043a\u043e\u0434",
|
||||
"Nonbreaking space": "\u041d\u0435\u043f\u0440\u0435\u043a\u0440\u0448\u0443\u0432\u0430\u0447\u043a\u0438 \u043f\u0440\u043e\u0441\u0442\u043e\u0440",
|
||||
"Page break": "\u041f\u0440\u0435\u043a\u0440\u0448\u0443\u0432\u0430\u045a\u0435",
|
||||
"Paste as text": "\u0412\u043c\u0435\u0442\u043d\u0438 \u043a\u0430\u043a\u043e \u0442\u0435\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u0440\u0435\u0433\u043b\u0435\u0434",
|
||||
"Print": "\u041f\u0435\u0447\u0430\u0442\u0438",
|
||||
"Save": "\u0417\u0430\u0447\u0443\u0432\u0430\u0458",
|
||||
"Could not find the specified string.": "\u041d\u0435\u043c\u043e\u0436\u043d\u043e \u043d\u0430\u043e\u0453\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u0441\u043e\u0447\u0435\u043d\u0438\u043e\u0442 \u043f\u043e\u0438\u043c",
|
||||
"Replace": "\u0417\u0430\u043c\u0435\u043d\u0438",
|
||||
"Next": "\u041f\u043e",
|
||||
"Whole words": "\u0426\u0435\u043b\u0438 \u0437\u0431\u043e\u0440\u043e\u0432\u0438",
|
||||
"Find and replace": "\u041d\u0430\u0458\u0434\u0438 \u0438 \u0437\u0430\u043c\u0435\u043d\u0438",
|
||||
"Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438 \u0441\u043e",
|
||||
"Find": "\u041d\u0430\u0458\u0434\u0438",
|
||||
"Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438 \u0441\u00e8",
|
||||
"Match case": "\u0426\u0435\u043b\u043e\u0441\u043d\u043e \u0441\u043e\u0432\u043f\u0430\u0453\u0430\u045a\u0435",
|
||||
"Prev": "\u041f\u0440\u0435\u0434",
|
||||
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441",
|
||||
"Finish": "\u0424\u0438\u043d\u0438\u0448",
|
||||
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u0458 \u0441\u00e8",
|
||||
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u0458",
|
||||
"Add to Dictionary": "\u0414\u043e\u0434\u0430\u0434\u0438 \u0432\u043e \u0440\u0435\u0447\u043d\u0438\u043a",
|
||||
"Insert row before": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0440\u0435\u0434 \u043d\u0430\u0434",
|
||||
"Rows": "\u0420\u0435\u0434\u043e\u0432\u0438",
|
||||
"Height": "\u0412\u0438\u0441\u0438\u043d\u0430",
|
||||
"Paste row after": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0440\u0435\u0434 \u043f\u043e\u0434",
|
||||
"Alignment": "\u041f\u043e\u0440\u0430\u043c\u043d\u0443\u0432\u0430\u045a\u0435",
|
||||
"Border color": "\u0411\u043e\u0458\u0430 \u043d\u0430 \u0440\u0430\u043c\u043a\u0430",
|
||||
"Column group": "\u0413\u0440\u0443\u043f\u0430 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430",
|
||||
"Row": "\u0420\u0435\u0434",
|
||||
"Insert column before": "\u0412\u043c\u0435\u0442\u043d\u0438 \u043a\u043e\u043b\u043e\u043d\u0430 \u043d\u0430\u0434",
|
||||
"Split cell": "\u041f\u043e\u0434\u0435\u043b\u0438 \u045c\u0435\u043b\u0438\u0458\u0430",
|
||||
"Cell padding": "\u0411\u0435\u043b\u0438\u043d\u0430 \u0432\u043e \u045c\u0435\u043b\u0438\u0458\u0430",
|
||||
"Cell spacing": "\u041f\u0440\u043e\u0441\u0442\u043e\u0440 \u043d\u0430 \u045c\u0435\u043b\u0438\u0458\u0430",
|
||||
"Row type": "\u0422\u0438\u043f \u043d\u0430 \u0440\u0435\u0434",
|
||||
"Insert table": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0442\u0430\u0431\u0435\u043b\u0430",
|
||||
"Body": "\u0422\u0435\u043b\u043e",
|
||||
"Caption": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435",
|
||||
"Footer": "\u041f\u043e\u0434\u043d\u043e\u0436\u0458\u0435",
|
||||
"Delete row": "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0440\u0435\u0434",
|
||||
"Paste row before": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0440\u0435\u0434 \u043d\u0430\u0434",
|
||||
"Scope": "Scope",
|
||||
"Delete table": "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0442\u0430\u0431\u0435\u043b\u0430",
|
||||
"H Align": "H Align",
|
||||
"Top": "\u0433\u043e\u0440\u0435",
|
||||
"Header cell": "\u041d\u0430\u0441\u043b\u043e\u0432\u043d\u0430 \u045c\u0435\u043b\u0438\u0458\u0430",
|
||||
"Column": "\u041a\u043e\u043b\u043e\u043d\u0430",
|
||||
"Row group": "\u0413\u0440\u0443\u043f\u0430 \u043d\u0430 \u0440\u0435\u0434",
|
||||
"Cell": "\u040c\u0435\u043b\u0438\u0458\u0430",
|
||||
"Middle": "\u0441\u0440\u0435\u0434\u0438\u043d\u0430",
|
||||
"Cell type": "\u0422\u0438\u043f \u043d\u0430 \u045c\u0435\u043b\u0438\u0458\u0430",
|
||||
"Copy row": "\u041a\u043e\u043f\u0438\u0440\u0430\u0458 \u0440\u0435\u0434",
|
||||
"Row properties": "\u041f\u043e\u0434\u0430\u0442\u043e\u0446\u0438 \u0437\u0430 \u0440\u0435\u0434",
|
||||
"Table properties": "\u041f\u043e\u0434\u0430\u0442\u043e\u0446\u0438 \u0437\u0430 \u0442\u0430\u0431\u0435\u043b\u0430\u0442\u0430",
|
||||
"Bottom": "\u0434\u043e\u043b\u0443",
|
||||
"V Align": "V Align",
|
||||
"Header": "\u041d\u0430\u0441\u043b\u043e\u0432",
|
||||
"Right": "\u0434\u0435\u0441\u043d\u043e",
|
||||
"Insert column after": "\u0412\u043c\u0435\u0442\u043d\u0438 \u043a\u043e\u043b\u043e\u043d\u0430 \u043f\u043e\u0434",
|
||||
"Cols": "\u041a\u043e\u043b\u043e\u043d\u0438",
|
||||
"Insert row after": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0440\u0435\u0434 \u043f\u043e\u0434",
|
||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||
"Cell properties": "\u041f\u043e\u0434\u0430\u0442\u043e\u0446\u0438 \u0437\u0430 \u045c\u0435\u043b\u0438\u0458\u0430",
|
||||
"Left": "\u043b\u0435\u0432\u043e",
|
||||
"Cut row": "\u041e\u0442\u0441\u0435\u0447\u0438 \u0440\u0435\u0434",
|
||||
"Delete column": "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u043a\u043e\u043b\u043e\u043d\u0430",
|
||||
"Center": "\u0446\u0435\u043d\u0442\u0430\u0440",
|
||||
"Merge cells": "\u0421\u043f\u043e\u0438 \u045c\u0435\u043b\u0438\u0438",
|
||||
"Insert template": "\u0412\u043c\u0435\u0442\u043d\u0438 \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
||||
"Background color": "\u0411\u043e\u0458\u0430 \u043d\u0430 \u043f\u043e\u0437\u0430\u0434\u0438\u043d\u0430",
|
||||
"Custom...": "\u041f\u043e \u0436\u0435\u043b\u0431\u0430...",
|
||||
"Custom color": "\u0411\u043e\u0458\u0430 \u043f\u043e \u0436\u0435\u043b\u0431\u0430",
|
||||
"No color": "\u0411\u0435\u0437 \u0431\u043e\u0458\u0430",
|
||||
"Text color": "\u0411\u043e\u0458\u0430 \u043d\u0430 \u0442\u0435\u043a\u0441\u0442",
|
||||
"Show blocks": "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0431\u043b\u043e\u043a\u043e\u0432\u0438",
|
||||
"Show invisible characters": "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043d\u0435\u0432\u0438\u0434\u043b\u0438\u0432\u0438 \u043a\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438",
|
||||
"Words: {0}": "\u0417\u0431\u043e\u0440\u043e\u0432\u0438: {0}",
|
||||
"Insert": "\u0412\u043c\u0435\u0442\u043d\u0438",
|
||||
"File": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Edit": "\u0423\u0440\u0435\u0434\u0438",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041f\u043e\u043b\u0435 \u0437\u0430 Rich Text. \u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0438 ALT-F9 \u0437\u0430 \u043c\u0435\u043d\u0438. \u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0438 ALT-F10 \u0437\u0430 \u043b\u0435\u043d\u0442\u0430 \u0441\u043e \u0430\u043b\u0430\u0442\u043a\u0438. \u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0438 ALT-0 \u0437\u0430 \u043f\u043e\u043c\u043e\u0448.",
|
||||
"Tools": "\u0410\u043b\u0430\u0442\u043a\u0438",
|
||||
"View": "\u041f\u043e\u0433\u043b\u0435\u0434",
|
||||
"Table": "\u0422\u0430\u0431\u0435\u043b\u0430",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ml_IN.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ml_IN.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ml_IN',{
|
||||
"Cut": "\u0d2e\u0d41\u0d31\u0d3f\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15 ",
|
||||
"Heading 5": "Heading 5",
|
||||
"Header 2": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 \u0d2c\u0d4d\u0d30\u0d4c\u0d38\u0d30\u0d4d\u200d \u0d15\u0d4d\u0d32\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d\u0d2c\u0d4b\u0d30\u0d4d\u200d\u0d21\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2a\u0d4d\u0d30\u0d35\u0d47\u0d36\u0d28\u0d02 \u0d28\u0d32\u0d4d\u200d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d3f\u0d32\u0d4d\u0d32. \u0d26\u0d2f\u0d35\u0d41 \u0d1a\u0d46\u0d2f\u0d4d\u0d24 CTRL+X\/C\/V \u0d37\u0d4b\u0d30\u0d4d\u200d\u0d1f\u0d4d\u0d1f\u0d4d\u0d15\u0d1f\u0d4d\u0d1f\u0d41\u0d15\u0d33\u0d4d\u200d \u0d09\u0d2a\u0d2f\u0d4b\u0d17\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Heading 4": "Heading 4",
|
||||
"Div": "\u0d21\u0d3f\u0d35\u0d4d",
|
||||
"Heading 2": "Heading 2",
|
||||
"Paste": "\u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Close": "\u0d05\u0d1f\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Font Family": "\u0d2b\u0d4b\u0d23\u0d4d\u0d1f\u0d4d \u0d15\u0d41\u0d1f\u0d41\u0d02\u0d2c\u0d02",
|
||||
"Pre": "\u0d2a\u0d4d\u0d30\u0d40",
|
||||
"Align right": "\u0d35\u0d32\u0d24\u0d4d\u0d24\u0d4b\u0d1f\u0d4d\u0d1f\u0d41\u0d4d \u0d2a\u0d3f\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"New document": "\u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d30\u0d1a\u0d28",
|
||||
"Blockquote": "\u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d09\u0d26\u0d4d\u0d27\u0d30\u0d23\u0d3f",
|
||||
"Numbered list": "\u0d0e\u0d23\u0d4d\u0d23\u0d2e\u0d3f\u0d1f\u0d4d\u0d1f \u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15",
|
||||
"Heading 1": "Heading 1",
|
||||
"Headings": "Headings",
|
||||
"Increase indent": "\u0d35\u0d3f\u0d1f\u0d35\u0d41\u0d4d \u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d41\u0d15",
|
||||
"Formats": "\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d41\u0d02\u0d2e\u0d1f\u0d4d\u0d1f\u0d41\u0d02",
|
||||
"Headers": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d41\u0d15\u0d33\u0d4d\u200d",
|
||||
"Select all": "\u0d0e\u0d32\u0d4d\u0d32\u0d3e\u0d02 \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Header 3": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c3",
|
||||
"Blocks": "\u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d02",
|
||||
"Undo": "\u0d1a\u0d46\u0d2f\u0d4d\u0d24\u0d24\u0d4d \u0d24\u0d3f\u0d30\u0d3f\u0d1a\u0d4d\u0d1a\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Strikethrough": "\u0d35\u0d46\u0d1f\u0d4d\u0d1f\u0d41\u0d15",
|
||||
"Bullet list": "\u0d05\u0d1f\u0d2f\u0d3e\u0d33\u0d2e\u0d3f\u0d1f\u0d4d\u0d1f \u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15",
|
||||
"Header 1": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c1",
|
||||
"Superscript": "\u0d38\u0d42\u0d2a\u0d4d\u0d2a\u0d30\u0d4d\u200d\u0d38\u0d4d\u0d15\u0d4d\u0d30\u0d3f\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d4d",
|
||||
"Clear formatting": "\u0d35\u0d46\u0d1f\u0d3f\u0d2a\u0d4d\u0d2a\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Font Sizes": "\u0d2b\u0d4b\u0d23\u0d4d\u0d1f\u0d4d \u0d35\u0d32\u0d3f\u0d2a\u0d4d\u0d2a\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Subscript": "\u0d38\u0d2c\u0d4d\u200c\u0d38\u0d4d\u0d15\u0d4d\u0d30\u0d3f\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d4d",
|
||||
"Header 6": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c6",
|
||||
"Redo": "\u0d35\u0d40\u0d23\u0d4d\u0d1f\u0d41\u0d02 \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15",
|
||||
"Paragraph": "\u0d16\u0d23\u0d4d\u200c\u0d21\u0d3f\u0d15",
|
||||
"Ok": "\u0d36\u0d30\u0d3f",
|
||||
"Bold": "\u0d15\u0d28\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Code": "\u0d15\u0d4b\u0d21\u0d4d",
|
||||
"Italic": "\u0d1a\u0d46\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Align center": "\u0d28\u0d1f\u0d41\u0d35\u0d3f\u0d32\u0d4b\u0d1f\u0d4d\u0d1f\u0d41\u0d4d \u0d2a\u0d3f\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Header 5": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c5",
|
||||
"Heading 6": "Heading 6",
|
||||
"Heading 3": "Heading 3",
|
||||
"Decrease indent": "\u0d35\u0d3f\u0d1f\u0d35\u0d41\u0d4d \u0d15\u0d41\u0d31\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15 ",
|
||||
"Header 4": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d \u0d07\u0d2a\u0d4d\u0d2a\u0d4b\u0d33\u0d4d\u200d \u0d32\u0d33\u0d3f\u0d24\u0d2e\u0d3e\u0d2f \u0d1f\u0d46\u0d15\u0d4d\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d\u200c \u0d06\u0d2f\u0d3f\u0d1f\u0d4d\u0d1f\u0d3e\u0d23\u0d4d. \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d \u0d08 \u0d38\u0d57\u0d15\u0d30\u0d4d\u0d2f\u0d02 \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d41\u0d28\u0d4d\u0d28\u0d24\u0d4d \u0d35\u0d30\u0d46 \u0d09\u0d33\u0d4d\u0d33\u0d1f\u0d15\u0d4d\u0d15\u0d02 \u0d32\u0d33\u0d3f\u0d24 \u0d1f\u0d46\u0d15\u0d4d\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d\u200c \u0d06\u0d2f\u0d3f\u0d1f\u0d4d\u0d1f\u0d3e\u0d2f\u0d3f\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d02 \u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d24\u0d4d. ",
|
||||
"Underline": "\u0d05\u0d1f\u0d3f\u0d35\u0d30\u0d2f\u0d3f\u0d1f\u0d41\u0d15",
|
||||
"Cancel": "\u0d31\u0d26\u0d4d\u0d26\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Justify": "\u0d38\u0d28\u0d4d\u0d24\u0d41\u0d32\u0d3f\u0d24\u0d2e\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Inline": "\u0d35\u0d30\u0d3f\u0d2f\u0d3f\u0d32\u0d4d\u200d",
|
||||
"Copy": "\u0d2a\u0d15\u0d30\u0d4d\u200d\u0d24\u0d4d\u0d24\u0d41\u0d15",
|
||||
"Align left": "\u0d07\u0d1f\u0d24\u0d4d\u0d24\u0d4b\u0d1f\u0d4d\u0d1f\u0d41\u0d4d \u0d2a\u0d3f\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Visual aids": "\u0d26\u0d43\u0d36\u0d4d\u0d2f\u0d38\u0d39\u0d3e\u0d2f\u0d3f\u0d15\u0d33\u0d4d\u200d",
|
||||
"Lower Greek": "\u0d1a\u0d46\u0d31\u0d3f\u0d2f \u0d17\u0d4d\u0d30\u0d40\u0d15\u0d4d\u0d15\u0d4d\u200c \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Square": "\u0d38\u0d2e\u0d1a\u0d24\u0d41\u0d30\u0d02",
|
||||
"Default": "\u0d09\u0d2a\u0d47\u0d15\u0d4d\u0d37",
|
||||
"Lower Alpha": "\u0d1a\u0d46\u0d31\u0d3f\u0d2f \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Circle": "\u0d35\u0d1f\u0d4d\u0d1f\u0d02",
|
||||
"Disc": "\u0d1a\u0d15\u0d4d\u0d30\u0d02",
|
||||
"Upper Alpha": "\u0d35\u0d32\u0d3f\u0d2f \u0d06\u0d32\u0d4d\u0d2b\u0d3e \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Upper Roman": "\u0d35\u0d32\u0d3f\u0d2f \u0d31\u0d4b\u0d2e\u0d28\u0d4d\u200d \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Lower Roman": "\u0d1a\u0d46\u0d31\u0d3f\u0d2f \u0d31\u0d4b\u0d2e\u0d28\u0d4d\u200d \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Name": "\u0d2a\u0d47\u0d30\u0d4d",
|
||||
"Anchor": "\u0d28\u0d19\u0d4d\u0d15\u0d42\u0d30\u0d02",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0d30\u0d15\u0d4d\u0d37\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d3e\u0d24\u0d4d\u0d24 \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d \u0d28\u0d3f\u0d32\u0d28\u0d3f\u0d32\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41. \u0d2a\u0d41\u0d31\u0d24\u0d4d\u0d24\u0d41 \u0d15\u0d1f\u0d15\u0d4d\u0d15\u0d23\u0d4b?",
|
||||
"Restore last draft": "\u0d2a\u0d34\u0d2f \u0d21\u0d4d\u0d30\u0d3e\u0d2b\u0d4d\u0d31\u0d4d\u0d31\u0d4d\u200c \u0d24\u0d3f\u0d30\u0d3f\u0d1a\u0d4d\u0d1a\u0d41 \u0d15\u0d4a\u0d23\u0d4d\u0d1f\u0d4d \u0d35\u0d30\u0d3f\u0d15",
|
||||
"Special character": "\u0d2a\u0d4d\u0d30\u0d24\u0d4d\u0d2f\u0d47\u0d15\u0d3e\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Source code": "\u0d38\u0d4b\u0d34\u0d4d\u0d38\u0d4d \u0d15\u0d4b\u0d21\u0d4d",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Color",
|
||||
"Right to left": "\u0d35\u0d32\u0d24\u0d4d\u0d24\u0d41 \u0d28\u0d3f\u0d28\u0d4d\u0d28\u0d41\u0d02 \u0d07\u0d1f\u0d24\u0d4d\u0d24\u0d47\u0d15\u0d4d\u0d15\u0d4d",
|
||||
"Left to right": "\u0d07\u0d1f\u0d24\u0d4d\u0d24\u0d4d \u0d28\u0d3f\u0d28\u0d4d\u0d28\u0d41\u0d02 \u0d35\u0d32\u0d24\u0d4d\u0d24\u0d47\u0d15\u0d4d\u0d15\u0d4d",
|
||||
"Emoticons": "\u0d1a\u0d3f\u0d39\u0d4d\u0d28 \u0d2d\u0d3e\u0d37",
|
||||
"Robots": "\u0d2f\u0d28\u0d4d\u0d24\u0d4d\u0d30\u0d2e\u0d28\u0d41\u0d37\u0d4d\u0d2f\u0d28\u0d4d\u200d",
|
||||
"Document properties": "\u0d21\u0d4b\u0d15\u0d4d\u0d15\u0d41\u0d2e\u0d46\u0d28\u0d4d\u0d31\u0d4d \u0d17\u0d41\u0d23\u0d35\u0d3f\u0d36\u0d47\u0d37\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Title": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d",
|
||||
"Keywords": "\u0d38\u0d42\u0d1a\u0d15\u0d2a\u0d26\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Encoding": "\u0d0e\u0d7b\u0d15\u0d4b\u0d21\u0d3f\u0d02\u0d17\u0d4d",
|
||||
"Description": "\u0d35\u0d3f\u0d35\u0d30\u0d23\u0d02",
|
||||
"Author": "\u0d32\u0d47\u0d16\u0d15\u0d28\u0d4d\u200d",
|
||||
"Fullscreen": "\u0d2b\u0d41\u0d33\u0d4d\u200d\u0d38\u0d4d\u0d15\u0d4d\u0d30\u0d40\u0d28\u0d4d\u200d",
|
||||
"Horizontal line": "\u0d36\u0d3e\u0d16\u0d3e\u0d2a\u0d3e\u0d24",
|
||||
"Horizontal space": "\u0d24\u0d3f\u0d30\u0d36\u0d4d\u0d1a\u0d40\u0d28\u0d2e\u0d3e\u0d2f \u0d36\u0d42\u0d28\u0d4d\u0d2f\u0d38\u0d4d\u0d25\u0d32\u0d02",
|
||||
"Insert\/edit image": "\u0d1a\u0d3f\u0d24\u0d4d\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15\/ \u0d24\u0d3f\u0d30\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15",
|
||||
"General": "\u0d2a\u0d4a\u0d24\u0d41\u0d35\u0d3e\u0d2f",
|
||||
"Advanced": "\u0d2a\u0d41\u0d30\u0d47\u0d3e\u0d17\u0d2e\u0d3f\u0d1a\u0d4d\u0d1a",
|
||||
"Source": "\u0d09\u0d31\u0d35\u0d3f\u0d1f\u0d02",
|
||||
"Border": "\u0d05\u0d24\u0d3f\u0d30\u0d4d",
|
||||
"Constrain proportions": "\u0d28\u0d3f\u0d30\u0d4d\u200d\u0d2c\u0d28\u0d4d\u0d27\u0d3e\u0d28\u0d41\u0d2a\u0d3e\u0d24\u0d02",
|
||||
"Vertical space": "\u0d32\u0d02\u0d2c\u0d2e\u0d3e\u0d28\u0d2e\u0d3e\u0d2f \u0d36\u0d42\u0d28\u0d4d\u0d2f\u0d38\u0d4d\u0d25\u0d32\u0d02",
|
||||
"Image description": "\u0d1a\u0d3f\u0d24\u0d4d\u0d30 \u0d35\u0d3f\u0d35\u0d30\u0d23\u0d02",
|
||||
"Style": "\u0d36\u0d48\u0d32\u0d3f",
|
||||
"Dimensions": "\u0d05\u0d33\u0d35\u0d41\u0d15\u0d33\u0d4d\u200d",
|
||||
"Insert image": "\u0d1a\u0d3f\u0d24\u0d4d\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "\u0d38\u0d2e\u0d2f\u0d02\/\u0d24\u0d40\u0d2f\u0d24\u0d3f \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Remove link": "\u0d15\u0d23\u0d4d\u0d23\u0d3f \u0d12\u0d34\u0d3f\u0d35\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Url": "\u0d2f\u0d42\u0d06\u0d30\u0d4d\u200d\u0d0e\u0d32\u0d4d\u200d",
|
||||
"Text to display": "\u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d3e\u0d28\u0d41\u0d33\u0d4d\u0d33 \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Anchors": "\u0d28\u0d19\u0d4d\u0d15\u0d42\u0d30\u0d19\u0d4d\u0d19\u0d7e",
|
||||
"Insert link": "\u0d15\u0d23\u0d4d\u0d23\u0d3f \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"New window": "\u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d1c\u0d3e\u0d32\u0d15\u0d02",
|
||||
"None": "\u0d12\u0d28\u0d4d\u0d28\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?",
|
||||
"Target": "\u0d32\u0d15\u0d4d\u0d37\u0d4d\u0d2f\u0d02",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||
"Insert\/edit link": "\u0d15\u0d23\u0d4d\u0d23\u0d3f \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15\/ \u0d15\u0d23\u0d4d\u0d23\u0d3f \u0d24\u0d3f\u0d30\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15",
|
||||
"Insert\/edit video": "\u0d35\u0d40\u0d21\u0d3f\u0d2f\u0d4b \u0d1a\u0d46\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15\/\u0d35\u0d40\u0d21\u0d3f\u0d2f\u0d4b \u0d24\u0d3f\u0d30\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15",
|
||||
"Poster": "\u0d1a\u0d3f\u0d24\u0d4d\u0d30\u0d02",
|
||||
"Alternative source": "\u0d07\u0d24\u0d30 \u0d38\u0d4d\u0d30\u0d4b\u0d24\u0d38\u0d4d\u0d38\u0d4d\u200c",
|
||||
"Paste your embed code below:": "\u0d28\u0d3f\u0d19\u0d33\u0d41\u0d1f\u0d46 \u0d0e\u0d02\u0d2c\u0d21\u0d4d \u0d15\u0d4b\u0d21\u0d4d \u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Insert video": "\u0d35\u0d40\u0d21\u0d3f\u0d2f\u0d4b \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Embed": "\u0d0e\u0d02\u0d2c\u0d46\u0d21\u0d4d\u200c",
|
||||
"Nonbreaking space": "\u0d2d\u0d02\u0d17\u0d2e\u0d3f\u0d32\u0d4d\u0d32\u0d3e\u0d24\u0d4d\u0d24 \u0d36\u0d42\u0d28\u0d4d\u0d2f\u0d38\u0d4d\u0d25\u0d32\u0d02",
|
||||
"Page break": "\u0d24\u0d3e\u0d33\u0d4d\u200d \u0d2d\u0d02\u0d17\u0d02",
|
||||
"Paste as text": "\u0d1f\u0d46\u0d15\u0d4d\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d\u200c \u0d06\u0d2f\u0d3f \u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Preview": "\u0d15\u0d30\u0d1f\u0d41\u0d2a\u0d24\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d",
|
||||
"Print": "\u0d05\u0d1a\u0d4d\u0d1a\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Save": "\u0d30\u0d15\u0d4d\u0d37\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15",
|
||||
"Could not find the specified string.": "\u0d09\u0d26\u0d4d\u0d26\u0d47\u0d36\u0d3f\u0d1a\u0d4d\u0d1a \u0d35\u0d3e\u0d1a\u0d15\u0d02 \u0d15\u0d23\u0d4d\u0d1f\u0d41\u0d2a\u0d3f\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d3e\u0d28\u0d3e\u0d2f\u0d3f\u0d32\u0d4d\u0d32.",
|
||||
"Replace": "\u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d3f\u0d35\u0d2f\u0d4d\u200c\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Next": "\u0d2e\u0d41\u0d28\u0d4d\u0d28\u0d4b\u0d1f\u0d4d\u0d1f\u0d4d",
|
||||
"Whole words": "\u0d0e\u0d32\u0d4d\u0d32\u0d3e \u0d35\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15\u0d33\u0d41\u0d02",
|
||||
"Find and replace": "\u0d15\u0d23\u0d4d\u0d1f\u0d41\u0d2a\u0d3f\u0d1f\u0d3f\u0d1a\u0d4d\u0d1a\u0d41 \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d3f\u0d35\u0d2f\u0d4d\u200c\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Replace with": "\u0d2e\u0d31\u0d4d\u0d31\u0d4a\u0d28\u0d4d\u0d28\u0d3f\u0d28\u0d4b\u0d1f\u0d4d \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d3f\u0d35\u0d2f\u0d4d\u200c\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Find": "\u0d24\u0d3f\u0d30\u0d2f\u0d41\u0d15",
|
||||
"Replace all": "\u0d0e\u0d32\u0d4d\u0d32\u0d3e\u0d02 \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d3f\u0d35\u0d2f\u0d4d\u200c\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Match case": "\u0d24\u0d41\u0d32\u0d4d\u0d2f\u0d2e\u0d3e\u0d2f\u0d24\u0d4d",
|
||||
"Prev": "\u0d2a\u0d3f\u0d28\u0d4d\u0d28\u0d4b\u0d1f\u0d4d\u0d1f\u0d4d",
|
||||
"Spellcheck": "\u0d05\u0d15\u0d4d\u0d37\u0d30\u0d35\u0d3f\u0d28\u0d4d\u0d2f\u0d3e\u0d38\u0d02 \u0d2a\u0d30\u0d3f\u0d36\u0d4b\u0d27\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Finish": "\u0d05\u0d35\u0d38\u0d3e\u0d28\u0d3f\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Ignore all": "\u0d0e\u0d32\u0d4d\u0d32\u0d3e\u0d02 \u0d05\u0d35\u0d17\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Ignore": "\u0d05\u0d35\u0d17\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Add to Dictionary": "Add to Dictionary",
|
||||
"Insert row before": "\u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d3f\u0d32\u0d4d\u200d \u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d28\u0d3f\u0d30 \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Rows": "\u0d28\u0d3f\u0d30\u0d15\u0d33\u0d4d\u200d",
|
||||
"Height": "\u0d09\u0d2f\u0d30\u0d02",
|
||||
"Paste row after": "\u0d28\u0d3f\u0d30 \u0d36\u0d47\u0d37\u0d02 \u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Alignment": "\u0d05\u0d23\u0d3f\u0d28\u0d3f\u0d30\u0d24\u0d4d\u0d24\u0d41\u0d15",
|
||||
"Border color": "Border color",
|
||||
"Column group": "\u0d35\u0d30\u0d3f \u0d17\u0d23\u0d02",
|
||||
"Row": "\u0d28\u0d3f\u0d30",
|
||||
"Insert column before": "\u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d3f\u0d32\u0d4d\u200d \u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d35\u0d30\u0d3f \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Split cell": "\u0d05\u0d31\u0d15\u0d33\u0d4d\u200d \u0d35\u0d3f\u0d2d\u0d1c\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Cell padding": "\u0d05\u0d31 \u0d2a\u0d3e\u0d21\u0d3f\u0d02\u0d17\u0d4d",
|
||||
"Cell spacing": "\u0d05\u0d31\u0d15\u0d33\u0d4d\u200d \u0d24\u0d2e\u0d4d\u0d2e\u0d3f\u0d32\u0d41\u0d33\u0d4d\u0d33 \u0d05\u0d15\u0d32\u0d02",
|
||||
"Row type": "\u0d28\u0d3f\u0d30 \u0d2e\u0d3e\u0d24\u0d43\u0d15",
|
||||
"Insert table": "\u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15 \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Body": "\u0d36\u0d30\u0d40\u0d30\u0d02",
|
||||
"Caption": "\u0d24\u0d32\u0d35\u0d3e\u0d1a\u0d15\u0d02",
|
||||
"Footer": "\u0d05\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d31\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d\u200c",
|
||||
"Delete row": "\u0d28\u0d3f\u0d30 \u0d24\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d33\u0d2f\u0d41\u0d15",
|
||||
"Paste row before": "\u0d28\u0d3f\u0d30 \u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d3e\u0d2f\u0d3f \u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Scope": "\u0d35\u0d4d\u0d2f\u0d3e\u0d2a\u0d4d\u200c\u0d24\u0d3f",
|
||||
"Delete table": "\u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15 \u0d15\u0d33\u0d2f\u0d41\u0d15",
|
||||
"H Align": "H Align",
|
||||
"Top": "Top",
|
||||
"Header cell": "\u0d24\u0d32 \u0d05\u0d31",
|
||||
"Column": "\u0d35\u0d30\u0d3f",
|
||||
"Row group": "\u0d28\u0d3f\u0d30 \u0d17\u0d23\u0d02",
|
||||
"Cell": "\u0d05\u0d31",
|
||||
"Middle": "Middle",
|
||||
"Cell type": "\u0d05\u0d31\u0d2f\u0d41\u0d1f\u0d46 \u0d2e\u0d3e\u0d24\u0d43\u0d15",
|
||||
"Copy row": "\u0d28\u0d3f\u0d30 \u0d2a\u0d15\u0d30\u0d4d\u200d\u0d24\u0d4d\u0d24\u0d41\u0d15",
|
||||
"Row properties": "\u0d28\u0d3f\u0d30\u0d2f\u0d41\u0d1f\u0d46 \u0d38\u0d4d\u0d35\u0d2d\u0d3e\u0d35\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Table properties": "\u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d2f\u0d41\u0d1f\u0d46 \u0d38\u0d4d\u0d35\u0d2d\u0d3e\u0d35\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Bottom": "Bottom",
|
||||
"V Align": "V Align",
|
||||
"Header": "\u0d24\u0d32\u0d15\u0d4d\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d4d\u200c",
|
||||
"Right": "\u0d35\u0d32\u0d24\u0d4d",
|
||||
"Insert column after": "\u0d2a\u0d3f\u0d31\u0d15\u0d3f\u0d32\u0d4d\u200d \u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d35\u0d30\u0d3f \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Cols": "\u0d35\u0d30\u0d3f\u0d15\u0d33\u0d4d\u200d",
|
||||
"Insert row after": "\u0d2a\u0d3f\u0d31\u0d15\u0d3f\u0d32\u0d4d\u200d \u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d28\u0d3f\u0d30 \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Width": "\u0d28\u0d40\u0d33\u0d02",
|
||||
"Cell properties": "\u0d05\u0d31\u0d2f\u0d41\u0d1f\u0d46 \u0d38\u0d4d\u0d35\u0d2d\u0d3e\u0d35\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d",
|
||||
"Left": "\u0d07\u0d1f\u0d24\u0d4d",
|
||||
"Cut row": "\u0d28\u0d3f\u0d30 \u0d35\u0d46\u0d1f\u0d4d\u0d1f\u0d3f\u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d41\u0d15",
|
||||
"Delete column": "\u0d35\u0d30\u0d3f \u0d24\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d33\u0d2f\u0d41\u0d15",
|
||||
"Center": "\u0d28\u0d1f\u0d41\u0d35\u0d3f\u0d32\u0d4d\u200d",
|
||||
"Merge cells": "\u0d05\u0d31\u0d15\u0d33\u0d4d\u200d \u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d3f\u0d2f\u0d4b\u0d1c\u0d3f\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Insert template": "\u0d05\u0d1a\u0d4d\u0d1a\u0d41\u0d15\u0d33\u0d4d\u200d \u0d1a\u0d47\u0d30\u0d4d\u200d\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Templates": "\u0d05\u0d1a\u0d4d\u0d1a\u0d41\u0d15\u0d33\u0d4d\u200d",
|
||||
"Background color": "\u0d2a\u0d36\u0d4d\u0d1a\u0d3e\u0d24\u0d4d\u0d24\u0d32 \u0d28\u0d3f\u0d31\u0d02",
|
||||
"Custom...": "Custom...",
|
||||
"Custom color": "Custom color",
|
||||
"No color": "No color",
|
||||
"Text color": "\u0d05\u0d15\u0d4d\u0d37\u0d30 \u0d28\u0d3f\u0d31\u0d02",
|
||||
"Show blocks": "\u0d2c\u0d4d\u0d32\u0d4b\u0d15\u0d4d\u0d15\u0d41\u0d15\u0d33\u0d4d\u200d \u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Show invisible characters": "\u0d05\u0d26\u0d43\u0d36\u0d4d\u0d2f\u0d2e\u0d3e\u0d2f \u0d05\u0d15\u0d4d\u0d37\u0d30\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d \u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"Words: {0}": "\u0d35\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15\u0d33\u0d4d\u200d: {0}",
|
||||
"Insert": "\u0d2a\u0d24\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15",
|
||||
"File": "\u0d2b\u0d2f\u0d32\u0d4d\u200d",
|
||||
"Edit": "\u0d24\u0d3f\u0d30\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0d31\u0d3f\u0d1a\u0d4d\u0d1a\u0d4d \u0d1f\u0d46\u0d15\u0d4d\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d\u200c \u0d2e\u0d47\u0d16\u0d32. \u0d35\u0d3f\u0d37\u0d2f \u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15 \u0d15\u0d4d\u0d15\u0d3e\u0d2f\u0d3f ALT-F9 \u0d05\u0d2e\u0d30\u0d4d\u0d24\u0d4d\u0d24\u0d41\u0d15. \u0d09\u0d2a\u0d15\u0d30\u0d23 \u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d15\u0d4d\u0d15\u0d3e\u0d2f\u0d3f ALT-F10 \u0d05\u0d2e\u0d30\u0d4d\u200d\u0d24\u0d4d\u0d24\u0d41\u0d15. \u0d38\u0d39\u0d3e\u0d2f\u0d24\u0d4d\u0d24\u0d3f\u0d28\u0d41 ALT-0 \u0d09\u0d02",
|
||||
"Tools": "\u0d09\u0d2a\u0d15\u0d30\u0d23\u0d19\u0d4d\u0d19\u0d33\u0d4d\u200d ",
|
||||
"View": "\u0d26\u0d30\u0d4d\u200d\u0d36\u0d28\u0d02",
|
||||
"Table": "\u0d2a\u0d1f\u0d4d\u0d1f\u0d3f\u0d15",
|
||||
"Format": "\u0d15\u0d46\u0d1f\u0d4d\u0d1f\u0d41\u0d02\u0d2e\u0d1f\u0d4d\u0d1f\u0d41\u0d02"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/nb_NO.js
Normal file
219
data/web/rc/program/js/tinymce/langs/nb_NO.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('nb_NO',{
|
||||
"Cut": "Klipp ut",
|
||||
"Heading 5": "Overskrift 5",
|
||||
"Header 2": "Overskrift 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Nettleseren din st\u00f8tter ikke direkte tilgang til utklippsboken. Bruk istedet tastatur-snarveiene Ctrl+X\/C\/V, eller Cmd+X\/C\/V p\u00e5 Mac.",
|
||||
"Heading 4": "Overskrift 4",
|
||||
"Div": "Delblokk <div>",
|
||||
"Heading 2": "Overskrift 2",
|
||||
"Paste": "Lim inn",
|
||||
"Close": "Lukk",
|
||||
"Font Family": "Skriftsnitt",
|
||||
"Pre": "Definert <pre>",
|
||||
"Align right": "H\u00f8yrejustert",
|
||||
"New document": "Nytt dokument",
|
||||
"Blockquote": "Sitatblokk <blockquote>",
|
||||
"Numbered list": "Nummerliste",
|
||||
"Heading 1": "Overskrift 1",
|
||||
"Headings": "Overskrifter",
|
||||
"Increase indent": "\u00d8k innrykk",
|
||||
"Formats": "Stiler",
|
||||
"Headers": "Overskrifter",
|
||||
"Select all": "Marker alt",
|
||||
"Header 3": "Overskrift 3",
|
||||
"Blocks": "Blokker",
|
||||
"Undo": "Angre",
|
||||
"Strikethrough": "Gjennomstreket",
|
||||
"Bullet list": "Punktliste",
|
||||
"Header 1": "Overskrift 1",
|
||||
"Superscript": "Hevet skrift",
|
||||
"Clear formatting": "Fjern formateringer",
|
||||
"Font Sizes": "St\u00f8rrelse",
|
||||
"Subscript": "Senket skrift",
|
||||
"Header 6": "Overskrift 6",
|
||||
"Redo": "Utf\u00f8r likevel",
|
||||
"Paragraph": "Avsnitt <p>",
|
||||
"Ok": "OK",
|
||||
"Bold": "Halvfet",
|
||||
"Code": "Kode <code>",
|
||||
"Italic": "Kursiv",
|
||||
"Align center": "Midtstilt",
|
||||
"Header 5": "Overskrift 5",
|
||||
"Heading 6": "Overskrift 6",
|
||||
"Heading 3": "Overskrift 3",
|
||||
"Decrease indent": "Reduser innrykk",
|
||||
"Header 4": "Overskrift 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Lim inn er n\u00e5 i ren-tekst modus. Kopiert innhold vil bli limt inn som ren tekst inntil du sl\u00e5r av dette valget.",
|
||||
"Underline": "Understreket",
|
||||
"Cancel": "Avbryt",
|
||||
"Justify": "Juster alle linjer",
|
||||
"Inline": "Innkapslet <span>",
|
||||
"Copy": "Kopier",
|
||||
"Align left": "Venstrejustert",
|
||||
"Visual aids": "Visuelle hjelpemidler",
|
||||
"Lower Greek": "Greske minuskler",
|
||||
"Square": "Fylt firkant",
|
||||
"Default": "Normal",
|
||||
"Lower Alpha": "Minuskler",
|
||||
"Circle": "\u00c5pen sirkel",
|
||||
"Disc": "Fylt sirkel",
|
||||
"Upper Alpha": "Versaler",
|
||||
"Upper Roman": "Romerske versaler",
|
||||
"Lower Roman": "Romerske minuskler",
|
||||
"Name": "Navn",
|
||||
"Anchor": "Anker",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Du har ikke arkivert endringene. Vil du fortsette uten \u00e5 arkivere?",
|
||||
"Restore last draft": "Gjenopprett siste utkast",
|
||||
"Special character": "Spesialtegn",
|
||||
"Source code": "Kildekode",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Farge",
|
||||
"Right to left": "H\u00f8yre til venstre",
|
||||
"Left to right": "Venstre til h\u00f8yre",
|
||||
"Emoticons": "Hum\u00f8rfjes",
|
||||
"Robots": "Roboter",
|
||||
"Document properties": "Dokumentegenskaper",
|
||||
"Title": "Tittel",
|
||||
"Keywords": "N\u00f8kkelord",
|
||||
"Encoding": "Tegnkoding",
|
||||
"Description": "Beskrivelse",
|
||||
"Author": "Forfatter",
|
||||
"Fullscreen": "Fullskjerm",
|
||||
"Horizontal line": "Horisontal linje",
|
||||
"Horizontal space": "Horisontal marg",
|
||||
"Insert\/edit image": "Sett inn\/endre bilde",
|
||||
"General": "Generelt",
|
||||
"Advanced": "Avansert",
|
||||
"Source": "Bildelenke",
|
||||
"Border": "Ramme",
|
||||
"Constrain proportions": "Behold proporsjoner",
|
||||
"Vertical space": "Vertikal marg",
|
||||
"Image description": "Bildebeskrivelse",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Dimensjoner",
|
||||
"Insert image": "Sett inn bilde",
|
||||
"Zoom in": "Zoom inn",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Tilbake",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Speilvend horisontalt",
|
||||
"Resize": "Skaler",
|
||||
"Sharpen": "Skarphet",
|
||||
"Zoom out": "Zoom ut",
|
||||
"Image options": "Bilde innstillinger",
|
||||
"Apply": "Utf\u00f8r",
|
||||
"Brightness": "Lysstyrke",
|
||||
"Rotate clockwise": "Roter mot h\u00f8yre",
|
||||
"Rotate counterclockwise": "Roter mot venstre",
|
||||
"Edit image": "Rediger bilde",
|
||||
"Color levels": "Fargeniv\u00e5",
|
||||
"Crop": "Beskj\u00e6r",
|
||||
"Orientation": "Orientering",
|
||||
"Flip vertically": "Speilvend vertikalt",
|
||||
"Invert": "Inverter",
|
||||
"Insert date\/time": "Sett inn dato\/tid",
|
||||
"Remove link": "Fjern lenke",
|
||||
"Url": "Url",
|
||||
"Text to display": "Tekst som skal vises",
|
||||
"Anchors": "Anker",
|
||||
"Insert link": "Sett inn lenke",
|
||||
"New window": "Nytt vindu",
|
||||
"None": "Ingen",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Oppgitt URL ser ut til \u00e5 v\u00e6re en e-postadresse. \u00d8nsker du \u00e5 sette inn p\u00e5krevd mailto:-prefiks foran e-postadressen?",
|
||||
"Target": "M\u00e5l",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Oppgitte URL ser ut til \u00e5 v\u00e6re en epost-adresse. \u00d8nsker du \u00e5 sette inn p\u00e5krevet mailto: prefiks forran epost-adressen?",
|
||||
"Insert\/edit link": "Sett inn\/endre lenke",
|
||||
"Insert\/edit video": "Sett inn\/rediger video",
|
||||
"Poster": "Plakatbilde",
|
||||
"Alternative source": "Alternativ kilde",
|
||||
"Paste your embed code below:": "Lim inn inkluderings-koden nedenfor",
|
||||
"Insert video": "Sett inn video",
|
||||
"Embed": "Inkluder",
|
||||
"Nonbreaking space": "Hardt mellomrom",
|
||||
"Page break": "Sideskifte",
|
||||
"Paste as text": "Lim inn som tekst",
|
||||
"Preview": "Forh\u00e5ndsvisning",
|
||||
"Print": "Skriv ut",
|
||||
"Save": "Arkiver",
|
||||
"Could not find the specified string.": "Kunne ikke finne den spesifiserte teksten",
|
||||
"Replace": "Erstatt",
|
||||
"Next": "Neste",
|
||||
"Whole words": "Hele ord",
|
||||
"Find and replace": "Finn og erstatt",
|
||||
"Replace with": "Erstatt med",
|
||||
"Find": "Finn",
|
||||
"Replace all": "Erstatt alle",
|
||||
"Match case": "Match store og sm\u00e5 bokstaver",
|
||||
"Prev": "Forrige",
|
||||
"Spellcheck": "Stavekontroll",
|
||||
"Finish": "Avslutt",
|
||||
"Ignore all": "Ignorer alle",
|
||||
"Ignore": "Ignorer",
|
||||
"Add to Dictionary": "Legg til i ordliste",
|
||||
"Insert row before": "Sett inn rad f\u00f8r",
|
||||
"Rows": "Rader",
|
||||
"Height": "H\u00f8yde",
|
||||
"Paste row after": "Lim inn rad etter",
|
||||
"Alignment": "Justering",
|
||||
"Border color": "Rammefarge",
|
||||
"Column group": "Kolonnegruppe",
|
||||
"Row": "Rad",
|
||||
"Insert column before": "Sett inn kolonne f\u00f8r",
|
||||
"Split cell": "Splitt celle",
|
||||
"Cell padding": "Cellemarg",
|
||||
"Cell spacing": "Celleavstand",
|
||||
"Row type": "Rad-type",
|
||||
"Insert table": "Sett inn tabell",
|
||||
"Body": "Br\u00f8dtekst",
|
||||
"Caption": "Tittel",
|
||||
"Footer": "Bunntekst",
|
||||
"Delete row": "Slett rad",
|
||||
"Paste row before": "Lim inn rad f\u00f8r",
|
||||
"Scope": "Omfang",
|
||||
"Delete table": "Slett tabell",
|
||||
"H Align": "H Justering",
|
||||
"Top": "Topp",
|
||||
"Header cell": "Topptekst-celle",
|
||||
"Column": "Kolonne",
|
||||
"Row group": "Radgruppe",
|
||||
"Cell": "Celle",
|
||||
"Middle": "Midten",
|
||||
"Cell type": "Celletype",
|
||||
"Copy row": "Kopier rad",
|
||||
"Row properties": "Rad egenskaper",
|
||||
"Table properties": "Tabell egenskaper",
|
||||
"Bottom": "Bunn",
|
||||
"V Align": "V Justering",
|
||||
"Header": "Topptekst",
|
||||
"Right": "H\u00f8yre",
|
||||
"Insert column after": "Sett inn kolonne etter",
|
||||
"Cols": "Kolonner",
|
||||
"Insert row after": "Sett in rad etter",
|
||||
"Width": "Bredde",
|
||||
"Cell properties": "Celle egenskaper",
|
||||
"Left": "Venstre",
|
||||
"Cut row": "Klipp ut rad",
|
||||
"Delete column": "Slett kolonne",
|
||||
"Center": "Midtstilt",
|
||||
"Merge cells": "Sl\u00e5 sammen celler",
|
||||
"Insert template": "Sett inn mal",
|
||||
"Templates": "Maler",
|
||||
"Background color": "Bakgrunnsfarge",
|
||||
"Custom...": "Tilpass...",
|
||||
"Custom color": "Tilpasset farge",
|
||||
"No color": "Ingen farge",
|
||||
"Text color": "Tekstfarge",
|
||||
"Show blocks": "Vis blokker",
|
||||
"Show invisible characters": "Vis skjulte tegn",
|
||||
"Words: {0}": "Antall ord: {0}",
|
||||
"Insert": "Sett inn",
|
||||
"File": "Arkiv",
|
||||
"Edit": "Rediger",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Tekstredigering. Tast ALT-F9 for meny. Tast ALT-F10 for verkt\u00f8ys-rader. Tast ALT-0 for hjelp.",
|
||||
"Tools": "Verkt\u00f8y",
|
||||
"View": "Vis",
|
||||
"Table": "Tabell",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/nl.js
Normal file
219
data/web/rc/program/js/tinymce/langs/nl.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('nl',{
|
||||
"Cut": "Knippen",
|
||||
"Heading 5": "Kop 5",
|
||||
"Header 2": "Kop 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Uw browser ondersteunt geen toegang tot het clipboard. Gelieve ctrl+X\/C\/V sneltoetsen te gebruiken.",
|
||||
"Heading 4": "Kop 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Kop 2",
|
||||
"Paste": "Plakken",
|
||||
"Close": "Sluiten",
|
||||
"Font Family": "Lettertype",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Rechts uitlijnen",
|
||||
"New document": "Nieuw document",
|
||||
"Blockquote": "Quote",
|
||||
"Numbered list": "Nummering",
|
||||
"Heading 1": "Kop 1",
|
||||
"Headings": "Koppen",
|
||||
"Increase indent": "Inspringen vergroten",
|
||||
"Formats": "Opmaak",
|
||||
"Headers": "Kopteksten",
|
||||
"Select all": "Alles selecteren",
|
||||
"Header 3": "Kop 3",
|
||||
"Blocks": "Blok",
|
||||
"Undo": "Ongedaan maken",
|
||||
"Strikethrough": "Doorhalen",
|
||||
"Bullet list": "Opsommingsteken",
|
||||
"Header 1": "Kop 1",
|
||||
"Superscript": "Superscript",
|
||||
"Clear formatting": "Opmaak verwijderen",
|
||||
"Font Sizes": "Tekengrootte",
|
||||
"Subscript": "Subscript",
|
||||
"Header 6": "Kop 6",
|
||||
"Redo": "Opnieuw",
|
||||
"Paragraph": "Paragraaf",
|
||||
"Ok": "Ok\u00e9",
|
||||
"Bold": "Vet",
|
||||
"Code": "Code",
|
||||
"Italic": "Cursief",
|
||||
"Align center": "Centreren",
|
||||
"Header 5": "Kop 5",
|
||||
"Heading 6": "Kop 6",
|
||||
"Heading 3": "Kop 3",
|
||||
"Decrease indent": "Inspringen verkleinen",
|
||||
"Header 4": "Kop 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Plakken gebeurt nu als platte tekst. Tekst wordt nu ingevoegd zonder opmaak tot deze optie uitgeschakeld wordt.",
|
||||
"Underline": "Onderstreept",
|
||||
"Cancel": "Annuleren",
|
||||
"Justify": "Uitlijnen",
|
||||
"Inline": "Inlijn",
|
||||
"Copy": "Kopi\u00ebren",
|
||||
"Align left": "Links uitlijnen",
|
||||
"Visual aids": "Hulpmiddelen",
|
||||
"Lower Greek": "Griekse letters",
|
||||
"Square": "Vierkant",
|
||||
"Default": "Standaard",
|
||||
"Lower Alpha": "Kleine letters",
|
||||
"Circle": "Cirkel",
|
||||
"Disc": "Bolletje",
|
||||
"Upper Alpha": "Hoofdletters",
|
||||
"Upper Roman": "Romeinse cijfers groot",
|
||||
"Lower Roman": "Romeinse cijfers klein",
|
||||
"Name": "Naam",
|
||||
"Anchor": "Anker",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "U hebt niet alles opgeslagen bent u zeker dat u de pagina wenst te verlaten?",
|
||||
"Restore last draft": "Herstel het laatste concept",
|
||||
"Special character": "Speciale karakters",
|
||||
"Source code": "Broncode",
|
||||
"B": "Blauw",
|
||||
"R": "Rood",
|
||||
"G": "Groen",
|
||||
"Color": "Kleur",
|
||||
"Right to left": "Rechts naar links",
|
||||
"Left to right": "Links naar rechts",
|
||||
"Emoticons": "Emoticons",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Document eigenschappen",
|
||||
"Title": "Titel",
|
||||
"Keywords": "Sleutelwoorden",
|
||||
"Encoding": "Codering",
|
||||
"Description": "Omschrijving",
|
||||
"Author": "Auteur",
|
||||
"Fullscreen": "Volledig scherm",
|
||||
"Horizontal line": "Horizontale lijn",
|
||||
"Horizontal space": "Horizontale ruimte",
|
||||
"Insert\/edit image": "Afbeelding invoegen\/bewerken",
|
||||
"General": "Algemeen",
|
||||
"Advanced": "Geavanceerd",
|
||||
"Source": "Bron",
|
||||
"Border": "Rand",
|
||||
"Constrain proportions": "Verhoudingen behouden",
|
||||
"Vertical space": "Verticale ruimte",
|
||||
"Image description": "Afbeelding omschrijving",
|
||||
"Style": "Stijl",
|
||||
"Dimensions": "Afmetingen",
|
||||
"Insert image": "Afbeelding invoegen",
|
||||
"Zoom in": "Inzoomen",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Terug",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Horizontaal spiegelen",
|
||||
"Resize": "Formaat aanpassen",
|
||||
"Sharpen": "Scherpte",
|
||||
"Zoom out": "Uitzoomen",
|
||||
"Image options": "Afbeelding opties",
|
||||
"Apply": "Toepassen",
|
||||
"Brightness": "Helderheid",
|
||||
"Rotate clockwise": "Rechtsom draaien",
|
||||
"Rotate counterclockwise": "Linksom draaien",
|
||||
"Edit image": "Bewerk afbeelding",
|
||||
"Color levels": "Kleurniveau's",
|
||||
"Crop": "Uitsnijden",
|
||||
"Orientation": "Orientatie",
|
||||
"Flip vertically": "Verticaal spiegelen",
|
||||
"Invert": "Omkeren",
|
||||
"Insert date\/time": "Voeg datum\/tijd in",
|
||||
"Remove link": "Link verwijderen",
|
||||
"Url": "Url",
|
||||
"Text to display": "Linktekst",
|
||||
"Anchors": "Anker",
|
||||
"Insert link": "Hyperlink invoegen",
|
||||
"New window": "Nieuw venster",
|
||||
"None": "Geen",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "De ingegeven URL verwijst naar een extern adres. Wil je er \"http:\/\/\" aan toevoegen?",
|
||||
"Target": "Doel",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "De ingegeven URL lijkt op een e-mailadres. Wil je er \"mailto:\" aan toevoegen?",
|
||||
"Insert\/edit link": "Hyperlink invoegen\/bewerken",
|
||||
"Insert\/edit video": "Video invoegen\/bewerken",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternatieve bron",
|
||||
"Paste your embed code below:": "Plak u in te sluiten code hieronder:",
|
||||
"Insert video": "Video invoegen",
|
||||
"Embed": "Insluiten",
|
||||
"Nonbreaking space": "Vaste spatie invoegen",
|
||||
"Page break": "Pagina einde",
|
||||
"Paste as text": "Plakken als tekst",
|
||||
"Preview": "Voorbeeld",
|
||||
"Print": "Print",
|
||||
"Save": "Opslaan",
|
||||
"Could not find the specified string.": "Geen resultaten gevonden",
|
||||
"Replace": "Vervangen",
|
||||
"Next": "Volgende",
|
||||
"Whole words": "Alleen hele woorden",
|
||||
"Find and replace": "Zoek en vervang",
|
||||
"Replace with": "Vervangen door",
|
||||
"Find": "Zoeken",
|
||||
"Replace all": "Alles vervangen",
|
||||
"Match case": "Identieke hoofd\/kleine letters",
|
||||
"Prev": "Vorige",
|
||||
"Spellcheck": "Spellingscontrole",
|
||||
"Finish": "Einde",
|
||||
"Ignore all": "Alles negeren",
|
||||
"Ignore": "Negeren",
|
||||
"Add to Dictionary": "Toevoegen aan woordenlijst",
|
||||
"Insert row before": "Voeg rij boven toe",
|
||||
"Rows": "Rijen",
|
||||
"Height": "Hoogte",
|
||||
"Paste row after": "Plak rij onder",
|
||||
"Alignment": "Uitlijning",
|
||||
"Border color": "Randkleur",
|
||||
"Column group": "Kolomgroep",
|
||||
"Row": "Rij",
|
||||
"Insert column before": "Voeg kolom in voor",
|
||||
"Split cell": "Cel splitsen",
|
||||
"Cell padding": "Ruimte binnen cel",
|
||||
"Cell spacing": "Celruimte",
|
||||
"Row type": "Rijtype",
|
||||
"Insert table": "Tabel invoegen",
|
||||
"Body": "Body",
|
||||
"Caption": "Onderschrift",
|
||||
"Footer": "Voettekst",
|
||||
"Delete row": "Verwijder rij",
|
||||
"Paste row before": "Plak rij boven",
|
||||
"Scope": "Bereik",
|
||||
"Delete table": "Verwijder tabel",
|
||||
"H Align": "Links uitlijnen",
|
||||
"Top": "Bovenaan",
|
||||
"Header cell": "Kopcel",
|
||||
"Column": "Kolom",
|
||||
"Row group": "Rijgroep",
|
||||
"Cell": "Cel",
|
||||
"Middle": "Centreren",
|
||||
"Cell type": "Celtype",
|
||||
"Copy row": "Kopieer rij",
|
||||
"Row properties": "Rij eigenschappen",
|
||||
"Table properties": "Tabel eigenschappen",
|
||||
"Bottom": "Onderaan",
|
||||
"V Align": "Boven uitlijnen",
|
||||
"Header": "Koptekst",
|
||||
"Right": "Rechts",
|
||||
"Insert column after": "Voeg kolom in na",
|
||||
"Cols": "Kolommen",
|
||||
"Insert row after": "Voeg rij onder toe",
|
||||
"Width": "Breedte",
|
||||
"Cell properties": "Cel eigenschappen",
|
||||
"Left": "Links",
|
||||
"Cut row": "Knip rij",
|
||||
"Delete column": "Verwijder kolom",
|
||||
"Center": "Midden",
|
||||
"Merge cells": "Cellen samenvoegen",
|
||||
"Insert template": "Sjabloon invoegen",
|
||||
"Templates": "Sjablonen",
|
||||
"Background color": "Achtergrondkleur",
|
||||
"Custom...": "Eigen...",
|
||||
"Custom color": "Eigen kleur",
|
||||
"No color": "Geen kleur",
|
||||
"Text color": "Tekstkleur",
|
||||
"Show blocks": "Blokken tonen",
|
||||
"Show invisible characters": "Onzichtbare karakters tonen",
|
||||
"Words: {0}": "Woorden: {0}",
|
||||
"Insert": "Invoegen",
|
||||
"File": "Bestand",
|
||||
"Edit": "Bewerken",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Druk ALT-F9 voor het menu. Druk ALT-F10 voor de toolbar. Druk ALT-0 voor help.",
|
||||
"Tools": "Gereedschap",
|
||||
"View": "Beeld",
|
||||
"Table": "Tabel",
|
||||
"Format": "Opmaak"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/oc.js
Normal file
219
data/web/rc/program/js/tinymce/langs/oc.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('oc',{
|
||||
"Cut": "Talhar",
|
||||
"Heading 5": "T\u00edtol 5",
|
||||
"Header 2": "Ent\u00e8sta 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00f2stre navigador sup\u00f2rta pas la c\u00f2pia dir\u00e8cta. Merc\u00e9 d'utilizar las t\u00f2cas Ctrl+X\/C\/V.",
|
||||
"Heading 4": "T\u00edtol 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "T\u00edtol 2",
|
||||
"Paste": "Pegar",
|
||||
"Close": "Tampar",
|
||||
"Font Family": "Poli\u00e7a",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Alinhar a drecha",
|
||||
"New document": "Document nov\u00e8l",
|
||||
"Blockquote": "Citacion",
|
||||
"Numbered list": "Lista numerotada",
|
||||
"Heading 1": "T\u00edtol 1",
|
||||
"Headings": "T\u00edtols",
|
||||
"Increase indent": "Aumentar l'alin\u00e8a",
|
||||
"Formats": "Formats",
|
||||
"Headers": "Ent\u00e8stas",
|
||||
"Select all": "Seleccionar tot",
|
||||
"Header 3": "Ent\u00e8sta 3",
|
||||
"Blocks": "Bl\u00f2ts",
|
||||
"Undo": "Desfar",
|
||||
"Strikethrough": "Ralhat",
|
||||
"Bullet list": "Piuses",
|
||||
"Header 1": "Ent\u00e8sta 1",
|
||||
"Superscript": "Exponent",
|
||||
"Clear formatting": "Escafar la mesa en forma",
|
||||
"Font Sizes": "Talhas de poli\u00e7a",
|
||||
"Subscript": "Indici",
|
||||
"Header 6": "Ent\u00e8sta 6",
|
||||
"Redo": "Refar",
|
||||
"Paragraph": "Paragraf",
|
||||
"Ok": "D'ac\u00f2rdi",
|
||||
"Bold": "Gras",
|
||||
"Code": "C\u00f2de",
|
||||
"Italic": "Italica",
|
||||
"Align center": "Alinhar al centre",
|
||||
"Header 5": "Ent\u00e8sta 5",
|
||||
"Heading 6": "T\u00edtol 6",
|
||||
"Heading 3": "T\u00edtol 3",
|
||||
"Decrease indent": "Demesir l'alin\u00e8a",
|
||||
"Header 4": "Ent\u00e8sta 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Lo quichapapi\u00e8rs es ara en m\u00f2de \"t\u00e8xte plen\". Los contenguts ser\u00e0n pegats sens ret\u00e9ner los formatatges fins al moment que desactivaretz aquesta opcion.",
|
||||
"Underline": "Solinhat",
|
||||
"Cancel": "Anullar",
|
||||
"Justify": "Justificar",
|
||||
"Inline": "En linha",
|
||||
"Copy": "Copiar",
|
||||
"Align left": "Alinhar a esqu\u00e8rra",
|
||||
"Visual aids": "Ajudas visualas",
|
||||
"Lower Greek": "Gr\u00e8c minuscula",
|
||||
"Square": "Carrat",
|
||||
"Default": "Per defaut",
|
||||
"Lower Alpha": "Alfa minuscula",
|
||||
"Circle": "Cercle",
|
||||
"Disc": "Disc",
|
||||
"Upper Alpha": "Alfa majuscula",
|
||||
"Upper Roman": "Roman majuscula",
|
||||
"Lower Roman": "Roman minuscula",
|
||||
"Name": "Nom",
|
||||
"Anchor": "Anc\u00f2ra",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Av\u00e8tz de modificacions pas enregistradas, s\u00e8tz segur que vol\u00e8tz quitar la pagina ?",
|
||||
"Restore last draft": "Restablir lo darri\u00e8r borrolhon",
|
||||
"Special character": "Caract\u00e8r especial",
|
||||
"Source code": "C\u00f2de font",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "V",
|
||||
"Color": "Color",
|
||||
"Right to left": "De drecha cap a esqu\u00e8rra",
|
||||
"Left to right": "D'esqu\u00e8rra cap a drecha",
|
||||
"Emoticons": "Emotic\u00f2nas",
|
||||
"Robots": "Rob\u00f2ts",
|
||||
"Document properties": "Proprietats del document",
|
||||
"Title": "T\u00edtol",
|
||||
"Keywords": "Mots claus",
|
||||
"Encoding": "Encodatge",
|
||||
"Description": "Descripcion",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Ecran complet",
|
||||
"Horizontal line": "Linha orizontala",
|
||||
"Horizontal space": "Espa\u00e7ament orizontal",
|
||||
"Insert\/edit image": "Inserir\/modificar un imatge",
|
||||
"General": "General",
|
||||
"Advanced": "Avan\u00e7at",
|
||||
"Source": "Font",
|
||||
"Border": "Bordadura",
|
||||
"Constrain proportions": "Conservar las proporcions",
|
||||
"Vertical space": "Espa\u00e7ament vertical",
|
||||
"Image description": "Descripcion de l'imatge",
|
||||
"Style": "Estil",
|
||||
"Dimensions": "Dimensions",
|
||||
"Insert image": "Inserir un imatge",
|
||||
"Zoom in": "Zoom avant",
|
||||
"Contrast": "Contraste",
|
||||
"Back": "Retorn",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Revirament orizontal",
|
||||
"Resize": "Redimensionar",
|
||||
"Sharpen": "Afinar",
|
||||
"Zoom out": "Zoom arri\u00e8r",
|
||||
"Image options": "Opcions de l'imatge",
|
||||
"Apply": "Aplicar",
|
||||
"Brightness": "Luminositat",
|
||||
"Rotate clockwise": "Rotacion or\u00e0ria",
|
||||
"Rotate counterclockwise": "Rotacion anti-or\u00e0ria",
|
||||
"Edit image": "Modificar l'imatge",
|
||||
"Color levels": "Niv\u00e8ls de color",
|
||||
"Crop": "Retalhar",
|
||||
"Orientation": "Orientacion",
|
||||
"Flip vertically": "Revirament vertical",
|
||||
"Invert": "Inversar",
|
||||
"Insert date\/time": "Inserir data\/ora",
|
||||
"Remove link": "Suprimir lo ligam",
|
||||
"Url": "Url",
|
||||
"Text to display": "T\u00e8xte d'afichar",
|
||||
"Anchors": "Anc\u00f2ras",
|
||||
"Insert link": "Inserir un ligam",
|
||||
"New window": "Fen\u00e8stra nov\u00e8la",
|
||||
"None": "Pas cap",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Sembla que l'URL qu'av\u00e8tz entrada es un ligam ext\u00e8rne. Vol\u00e8tz apondre lo prefix http:\/\/ necessari ?",
|
||||
"Target": "Cibla",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Sembla que l'URL qu'av\u00e8tz entrada es una adre\u00e7a e-mail. Vol\u00e8tz apondre lo prefix mailto: necessari ?",
|
||||
"Insert\/edit link": "Inserir\/modificar un ligam",
|
||||
"Insert\/edit video": "Inserir\/modificar una vid\u00e8o",
|
||||
"Poster": "Publicar",
|
||||
"Alternative source": "Font alternativa",
|
||||
"Paste your embed code below:": "Pegatz v\u00f2tre c\u00f2di d'integracion \u00e7aij\u00f3s :",
|
||||
"Insert video": "Inserir una vid\u00e8o",
|
||||
"Embed": "Integrat",
|
||||
"Nonbreaking space": "Espaci insecable",
|
||||
"Page break": "Pagina copada",
|
||||
"Paste as text": "Pegar coma de t\u00e8xte",
|
||||
"Preview": "Previsualizar",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Enregistrar",
|
||||
"Could not find the specified string.": "Impossible de trobar la cadena especificada.",
|
||||
"Replace": "Rempla\u00e7ar",
|
||||
"Next": "Seg",
|
||||
"Whole words": "Mots enti\u00e8rs",
|
||||
"Find and replace": "Recercar e rempla\u00e7ar",
|
||||
"Replace with": "Rempla\u00e7ar per",
|
||||
"Find": "Recercar",
|
||||
"Replace all": "Rempla\u00e7ar tot",
|
||||
"Match case": "Respectar la cassa",
|
||||
"Prev": "Prec",
|
||||
"Spellcheck": "Corrector ortografic",
|
||||
"Finish": "Acabar",
|
||||
"Ignore all": "Ignorar tot",
|
||||
"Ignore": "Ignorar",
|
||||
"Add to Dictionary": "Apondre al diccionari",
|
||||
"Insert row before": "Inserir una linha abans",
|
||||
"Rows": "Linhas",
|
||||
"Height": "Nautor",
|
||||
"Paste row after": "Pegar la linha apr\u00e8p",
|
||||
"Alignment": "Alinhament",
|
||||
"Border color": "Color de la bordadura",
|
||||
"Column group": "Column group",
|
||||
"Row": "Linha",
|
||||
"Insert column before": "Inserir una colomna abans",
|
||||
"Split cell": "Devesir la cellula",
|
||||
"Cell padding": "Cell padding",
|
||||
"Cell spacing": "Cell spacing",
|
||||
"Row type": "Tipe de linha",
|
||||
"Insert table": "Inserir un tabl\u00e8u",
|
||||
"Body": "C\u00f2s",
|
||||
"Caption": "Caption",
|
||||
"Footer": "P\u00e8 de pagina",
|
||||
"Delete row": "Suprimir la linha",
|
||||
"Paste row before": "Pegar la linha abans",
|
||||
"Scope": "Scope",
|
||||
"Delete table": "Suprimir lo tabl\u00e8u",
|
||||
"H Align": "H Align",
|
||||
"Top": "Top",
|
||||
"Header cell": "Header cell",
|
||||
"Column": "Colomna",
|
||||
"Row group": "Row group",
|
||||
"Cell": "Cellula",
|
||||
"Middle": "Mitan",
|
||||
"Cell type": "Tipe de cellula",
|
||||
"Copy row": "Copiar la linha",
|
||||
"Row properties": "Proprietats de la linha",
|
||||
"Table properties": "Proprietats del tabl\u00e8u",
|
||||
"Bottom": "Bottom",
|
||||
"V Align": "V Align",
|
||||
"Header": "Ent\u00e8sta",
|
||||
"Right": "Drecha",
|
||||
"Insert column after": "Inserir una colomna apr\u00e8p",
|
||||
"Cols": "Colomnas",
|
||||
"Insert row after": "Inserir una linha apr\u00e8p",
|
||||
"Width": "Largor",
|
||||
"Cell properties": "Proprietats de la cellula",
|
||||
"Left": "Esqu\u00e8rra",
|
||||
"Cut row": "Talhar la linha",
|
||||
"Delete column": "Suprimir la colomna",
|
||||
"Center": "Centre",
|
||||
"Merge cells": "Fusionar las cellulas",
|
||||
"Insert template": "Inserir un mod\u00e8l",
|
||||
"Templates": "Mod\u00e8ls",
|
||||
"Background color": "Color de r\u00e8ireplan",
|
||||
"Custom...": "Personalizar...",
|
||||
"Custom color": "Color personalizada",
|
||||
"No color": "Pas de color",
|
||||
"Text color": "Color del t\u00e8xte",
|
||||
"Show blocks": "Afichar los bl\u00f2ts",
|
||||
"Show invisible characters": "Far veire los caract\u00e8rs invisibles",
|
||||
"Words: {0}": "Mots : {0}",
|
||||
"Insert": "Inserir",
|
||||
"File": "Fichi\u00e8r",
|
||||
"Edit": "Editar",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Z\u00f2na T\u00e8xte Ric. Quichar sus ALT-F9 pel men\u00fa. Quichar sus ALT-F10 per la barra d'aisinas. Quichar sus ALT-0 per d'ajuda.",
|
||||
"Tools": "Aisinas",
|
||||
"View": "Veire",
|
||||
"Table": "Tabl\u00e8u",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/pl.js
Normal file
219
data/web/rc/program/js/tinymce/langs/pl.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('pl',{
|
||||
"Cut": "Wytnij",
|
||||
"Heading 5": "Nag\u0142\u00f3wek 5",
|
||||
"Header 2": "Nag\u0142\u00f3wek 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Twoja przegl\u0105darka nie obs\u0142uguje bezpo\u015bredniego dost\u0119pu do schowka. U\u017cyj zamiast tego kombinacji klawiszy Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Nag\u0142\u00f3wek 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Nag\u0142\u00f3wek 2",
|
||||
"Paste": "Wklej",
|
||||
"Close": "Zamknij",
|
||||
"Font Family": "Kr\u00f3j fontu",
|
||||
"Pre": "Sformatowany tekst",
|
||||
"Align right": "Wyr\u00f3wnaj do prawej",
|
||||
"New document": "Nowy dokument",
|
||||
"Blockquote": "Blok cytatu",
|
||||
"Numbered list": "Lista numerowana",
|
||||
"Heading 1": "Nag\u0142\u00f3wek 1",
|
||||
"Headings": "Nag\u0142\u00f3wki",
|
||||
"Increase indent": "Zwi\u0119ksz wci\u0119cie",
|
||||
"Formats": "Formaty",
|
||||
"Headers": "Nag\u0142\u00f3wki",
|
||||
"Select all": "Zaznacz wszystko",
|
||||
"Header 3": "Nag\u0142\u00f3wek 3",
|
||||
"Blocks": "Bloki",
|
||||
"Undo": "Cofnij",
|
||||
"Strikethrough": "Przekre\u015blenie",
|
||||
"Bullet list": "Lista wypunktowana",
|
||||
"Header 1": "Nag\u0142\u00f3wek 1",
|
||||
"Superscript": "Indeks g\u00f3rny",
|
||||
"Clear formatting": "Wyczy\u015b\u0107 formatowanie",
|
||||
"Font Sizes": "Rozmiar fontu",
|
||||
"Subscript": "Indeks dolny",
|
||||
"Header 6": "Nag\u0142\u00f3wek 6",
|
||||
"Redo": "Pon\u00f3w",
|
||||
"Paragraph": "Akapit",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Pogrubienie",
|
||||
"Code": "Kod \u017ar\u00f3d\u0142owy",
|
||||
"Italic": "Kursywa",
|
||||
"Align center": "Wyr\u00f3wnaj do \u015brodka",
|
||||
"Header 5": "Nag\u0142\u00f3wek 5",
|
||||
"Heading 6": "Nag\u0142\u00f3wek 6",
|
||||
"Heading 3": "Nag\u0142\u00f3wek 3",
|
||||
"Decrease indent": "Zmniejsz wci\u0119cie",
|
||||
"Header 4": "Nag\u0142\u00f3wek 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Wklejanie jest w trybie tekstowym. Zawarto\u015b\u0107 zostanie wklejona jako zwyk\u0142y tekst dop\u00f3ki nie wy\u0142\u0105czysz tej opcji.",
|
||||
"Underline": "Podkre\u015blenie",
|
||||
"Cancel": "Anuluj",
|
||||
"Justify": "Do lewej i prawej",
|
||||
"Inline": "W tek\u015bcie",
|
||||
"Copy": "Kopiuj",
|
||||
"Align left": "Wyr\u00f3wnaj do lewej",
|
||||
"Visual aids": "Pomoce wizualne",
|
||||
"Lower Greek": "Ma\u0142e greckie",
|
||||
"Square": "Kwadrat",
|
||||
"Default": "Domy\u015blne",
|
||||
"Lower Alpha": "Ma\u0142e litery",
|
||||
"Circle": "K\u00f3\u0142ko",
|
||||
"Disc": "Dysk",
|
||||
"Upper Alpha": "Wielkie litery",
|
||||
"Upper Roman": "Wielkie rzymskie",
|
||||
"Lower Roman": "Ma\u0142e rzymskie",
|
||||
"Name": "Nazwa",
|
||||
"Anchor": "Kotwica",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Masz niezapisane zmiany. Czy na pewno chcesz opu\u015bci\u0107 stron\u0119?",
|
||||
"Restore last draft": "Przywr\u00f3\u0107 ostatni szkic",
|
||||
"Special character": "Znak specjalny",
|
||||
"Source code": "Kod \u017ar\u00f3d\u0142owy",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Kolor",
|
||||
"Right to left": "Od prawej do lewej",
|
||||
"Left to right": "Od lewej do prawej",
|
||||
"Emoticons": "Ikony emocji",
|
||||
"Robots": "Roboty",
|
||||
"Document properties": "W\u0142a\u015bciwo\u015bci dokumentu",
|
||||
"Title": "Tytu\u0142",
|
||||
"Keywords": "S\u0142owa kluczowe",
|
||||
"Encoding": "Kodowanie",
|
||||
"Description": "Opis",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Pe\u0142ny ekran",
|
||||
"Horizontal line": "Pozioma linia",
|
||||
"Horizontal space": "Odst\u0119p poziomy",
|
||||
"Insert\/edit image": "Wstaw\/edytuj obrazek",
|
||||
"General": "Og\u00f3lne",
|
||||
"Advanced": "Zaawansowane",
|
||||
"Source": "\u0179r\u00f3d\u0142o",
|
||||
"Border": "Ramka",
|
||||
"Constrain proportions": "Zachowaj proporcje",
|
||||
"Vertical space": "Odst\u0119p pionowy",
|
||||
"Image description": "Opis obrazka",
|
||||
"Style": "Styl",
|
||||
"Dimensions": "Wymiary",
|
||||
"Insert image": "Wstaw obrazek",
|
||||
"Zoom in": "Powi\u0119ksz",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Cofnij",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Przerzu\u0107 w poziomie",
|
||||
"Resize": "Zmiana rozmiaru",
|
||||
"Sharpen": "Wyostrz",
|
||||
"Zoom out": "Pomniejsz",
|
||||
"Image options": "Opcje obrazu",
|
||||
"Apply": "Zaakceptuj",
|
||||
"Brightness": "Jasno\u015b\u0107",
|
||||
"Rotate clockwise": "Obr\u00f3\u0107 w prawo",
|
||||
"Rotate counterclockwise": "Obr\u00f3\u0107 w lewo",
|
||||
"Edit image": "Edytuj obrazek",
|
||||
"Color levels": "Poziom koloru",
|
||||
"Crop": "Przytnij",
|
||||
"Orientation": "Orientacja",
|
||||
"Flip vertically": "Przerzu\u0107 w pionie",
|
||||
"Invert": "Odwr\u00f3\u0107",
|
||||
"Insert date\/time": "Wstaw dat\u0119\/czas",
|
||||
"Remove link": "Usu\u0144 \u0142\u0105cze",
|
||||
"Url": "URL",
|
||||
"Text to display": "Tekst do wy\u015bwietlenia",
|
||||
"Anchors": "Kotwice",
|
||||
"Insert link": "Wstaw \u0142\u0105cze",
|
||||
"New window": "Nowe okno",
|
||||
"None": "\u017baden",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na link zewn\u0119trzny. Czy chcesz doda\u0107 http:\/\/ jako prefiks?",
|
||||
"Target": "Cel",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na adres e-mail. Czy chcesz doda\u0107 mailto: jako prefiks?",
|
||||
"Insert\/edit link": "Wstaw\/edytuj \u0142\u0105cze",
|
||||
"Insert\/edit video": "Wstaw\/edytuj wideo",
|
||||
"Poster": "Plakat",
|
||||
"Alternative source": "Alternatywne \u017ar\u00f3d\u0142o",
|
||||
"Paste your embed code below:": "Wklej tutaj kod do osadzenia:",
|
||||
"Insert video": "Wstaw wideo",
|
||||
"Embed": "Osad\u017a",
|
||||
"Nonbreaking space": "Nie\u0142amliwa spacja",
|
||||
"Page break": "Podzia\u0142 strony",
|
||||
"Paste as text": "Wklej jako zwyk\u0142y tekst",
|
||||
"Preview": "Podgl\u0105d",
|
||||
"Print": "Drukuj",
|
||||
"Save": "Zapisz",
|
||||
"Could not find the specified string.": "Nie znaleziono szukanego tekstu.",
|
||||
"Replace": "Zamie\u0144",
|
||||
"Next": "Nast.",
|
||||
"Whole words": "Ca\u0142e s\u0142owa",
|
||||
"Find and replace": "Znajd\u017a i zamie\u0144",
|
||||
"Replace with": "Zamie\u0144 na",
|
||||
"Find": "Znajd\u017a",
|
||||
"Replace all": "Zamie\u0144 wszystko",
|
||||
"Match case": "Dopasuj wielko\u015b\u0107 liter",
|
||||
"Prev": "Poprz.",
|
||||
"Spellcheck": "Sprawdzanie pisowni",
|
||||
"Finish": "Zako\u0144cz",
|
||||
"Ignore all": "Ignoruj wszystko",
|
||||
"Ignore": "Ignoruj",
|
||||
"Add to Dictionary": "Dodaj do s\u0142ownika",
|
||||
"Insert row before": "Wstaw wiersz przed",
|
||||
"Rows": "Wiersz.",
|
||||
"Height": "Wysoko\u015b\u0107",
|
||||
"Paste row after": "Wklej wiersz po",
|
||||
"Alignment": "Wyr\u00f3wnanie",
|
||||
"Border color": "Kolor ramki",
|
||||
"Column group": "Grupa kolumn",
|
||||
"Row": "Wiersz",
|
||||
"Insert column before": "Wstaw kolumn\u0119 przed",
|
||||
"Split cell": "Podziel kom\u00f3rk\u0119",
|
||||
"Cell padding": "Dope\u0142nienie kom\u00f3rki",
|
||||
"Cell spacing": "Odst\u0119py kom\u00f3rek",
|
||||
"Row type": "Typ wiersza",
|
||||
"Insert table": "Wstaw tabel\u0119",
|
||||
"Body": "Tre\u015b\u0107",
|
||||
"Caption": "Tytu\u0142",
|
||||
"Footer": "Stopka",
|
||||
"Delete row": "Usu\u0144 wiersz",
|
||||
"Paste row before": "Wklej wiersz przed",
|
||||
"Scope": "Kontekst",
|
||||
"Delete table": "Usu\u0144 tabel\u0119",
|
||||
"H Align": "Wyr\u00f3wnanie w pionie",
|
||||
"Top": "G\u00f3ra",
|
||||
"Header cell": "Kom\u00f3rka nag\u0142\u00f3wka",
|
||||
"Column": "Kolumna",
|
||||
"Row group": "Grupa wierszy",
|
||||
"Cell": "Kom\u00f3rka",
|
||||
"Middle": "\u015arodek",
|
||||
"Cell type": "Typ kom\u00f3rki",
|
||||
"Copy row": "Kopiuj wiersz",
|
||||
"Row properties": "W\u0142a\u015bciwo\u015bci wiersza",
|
||||
"Table properties": "W\u0142a\u015bciwo\u015bci tabeli",
|
||||
"Bottom": "D\u00f3\u0142",
|
||||
"V Align": "Wyr\u00f3wnanie w poziomie",
|
||||
"Header": "Nag\u0142\u00f3wek",
|
||||
"Right": "Prawo",
|
||||
"Insert column after": "Wstaw kolumn\u0119 po",
|
||||
"Cols": "Kol.",
|
||||
"Insert row after": "Wstaw wiersz po",
|
||||
"Width": "Szeroko\u015b\u0107",
|
||||
"Cell properties": "W\u0142a\u015bciwo\u015bci kom\u00f3rki",
|
||||
"Left": "Lewo",
|
||||
"Cut row": "Wytnij wiersz",
|
||||
"Delete column": "Usu\u0144 kolumn\u0119",
|
||||
"Center": "\u015arodek",
|
||||
"Merge cells": "\u0141\u0105cz kom\u00f3rki",
|
||||
"Insert template": "Wstaw szablon",
|
||||
"Templates": "Szablony",
|
||||
"Background color": "Kolor t\u0142a",
|
||||
"Custom...": "Niestandardowy...",
|
||||
"Custom color": "Kolor niestandardowy",
|
||||
"No color": "Bez koloru",
|
||||
"Text color": "Kolor tekstu",
|
||||
"Show blocks": "Poka\u017c bloki",
|
||||
"Show invisible characters": "Poka\u017c niewidoczne znaki",
|
||||
"Words: {0}": "S\u0142\u00f3w: {0}",
|
||||
"Insert": "Wstaw",
|
||||
"File": "Plik",
|
||||
"Edit": "Edycja",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Obszar Edycji. ALT-F9 - menu. ALT-F10 - pasek narz\u0119dzi. ALT-0 - pomoc",
|
||||
"Tools": "Narz\u0119dzia",
|
||||
"View": "Widok",
|
||||
"Table": "Tabela",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/pt_BR.js
Normal file
219
data/web/rc/program/js/tinymce/langs/pt_BR.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('pt_BR',{
|
||||
"Cut": "Recortar",
|
||||
"Heading 5": "Cabe\u00e7alho 5",
|
||||
"Header 2": "Cabe\u00e7alho 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X - C - V do teclado",
|
||||
"Heading 4": "Cabe\u00e7alho 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Cabe\u00e7alho 2",
|
||||
"Paste": "Colar",
|
||||
"Close": "Fechar",
|
||||
"Font Family": "Fonte",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Alinhar \u00e0 direita",
|
||||
"New document": "Novo documento",
|
||||
"Blockquote": "Aspas",
|
||||
"Numbered list": "Lista ordenada",
|
||||
"Heading 1": "Cabe\u00e7alho 1",
|
||||
"Headings": "Cabe\u00e7alhos",
|
||||
"Increase indent": "Aumentar recuo",
|
||||
"Formats": "Formatos",
|
||||
"Headers": "Cabe\u00e7alhos",
|
||||
"Select all": "Selecionar tudo",
|
||||
"Header 3": "Cabe\u00e7alho 3",
|
||||
"Blocks": "Blocos",
|
||||
"Undo": "Desfazer",
|
||||
"Strikethrough": "Riscar",
|
||||
"Bullet list": "Lista n\u00e3o ordenada",
|
||||
"Header 1": "Cabe\u00e7alho 1",
|
||||
"Superscript": "Sobrescrito",
|
||||
"Clear formatting": "Limpar formata\u00e7\u00e3o",
|
||||
"Font Sizes": "Tamanho",
|
||||
"Subscript": "Subscrever",
|
||||
"Header 6": "Cabe\u00e7alho 6",
|
||||
"Redo": "Refazer",
|
||||
"Paragraph": "Par\u00e1grafo",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Negrito",
|
||||
"Code": "C\u00f3digo",
|
||||
"Italic": "It\u00e1lico",
|
||||
"Align center": "Centralizar",
|
||||
"Header 5": "Cabe\u00e7alho 5",
|
||||
"Heading 6": "Cabe\u00e7alho 6",
|
||||
"Heading 3": "Cabe\u00e7alho 3",
|
||||
"Decrease indent": "Diminuir recuo",
|
||||
"Header 4": "Cabe\u00e7alho 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 agora em modo texto plano. O conte\u00fado ser\u00e1 colado como texto plano at\u00e9 voc\u00ea desligar esta op\u00e7\u00e3o.",
|
||||
"Underline": "Sublinhar",
|
||||
"Cancel": "Cancelar",
|
||||
"Justify": "Justificar",
|
||||
"Inline": "Em linha",
|
||||
"Copy": "Copiar",
|
||||
"Align left": "Alinhar \u00e0 esquerda",
|
||||
"Visual aids": "Ajuda visual",
|
||||
"Lower Greek": "\u03b1. \u03b2. \u03b3. ...",
|
||||
"Square": "Quadrado",
|
||||
"Default": "Padr\u00e3o",
|
||||
"Lower Alpha": "a. b. c. ...",
|
||||
"Circle": "C\u00edrculo",
|
||||
"Disc": "Disco",
|
||||
"Upper Alpha": "A. B. C. ...",
|
||||
"Upper Roman": "I. II. III. ...",
|
||||
"Lower Roman": "i. ii. iii. ...",
|
||||
"Name": "Nome",
|
||||
"Anchor": "\u00c2ncora",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Voc\u00ea tem mudan\u00e7as n\u00e3o salvas. Voc\u00ea tem certeza que deseja sair?",
|
||||
"Restore last draft": "Restaurar \u00faltimo rascunho",
|
||||
"Special character": "Caracteres especiais",
|
||||
"Source code": "C\u00f3digo fonte",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Cor",
|
||||
"Right to left": "Da direita para a esquerda",
|
||||
"Left to right": "Da esquerda para a direita",
|
||||
"Emoticons": "Emoticons",
|
||||
"Robots": "Rob\u00f4s",
|
||||
"Document properties": "Propriedades do documento",
|
||||
"Title": "T\u00edtulo",
|
||||
"Keywords": "Palavras-chave",
|
||||
"Encoding": "Codifica\u00e7\u00e3o",
|
||||
"Description": "Descri\u00e7\u00e3o",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Tela cheia",
|
||||
"Horizontal line": "Linha horizontal",
|
||||
"Horizontal space": "Espa\u00e7amento horizontal",
|
||||
"Insert\/edit image": "Inserir\/editar imagem",
|
||||
"General": "Geral",
|
||||
"Advanced": "Avan\u00e7ado",
|
||||
"Source": "Endere\u00e7o da imagem",
|
||||
"Border": "Borda",
|
||||
"Constrain proportions": "Manter propor\u00e7\u00f5es",
|
||||
"Vertical space": "Espa\u00e7amento vertical",
|
||||
"Image description": "Inserir descri\u00e7\u00e3o",
|
||||
"Style": "Estilo",
|
||||
"Dimensions": "Dimens\u00f5es",
|
||||
"Insert image": "Inserir imagem",
|
||||
"Zoom in": "Aumentar zoom",
|
||||
"Contrast": "Contraste",
|
||||
"Back": "Voltar",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "Virar horizontalmente",
|
||||
"Resize": "Redimensionar",
|
||||
"Sharpen": "Aumentar nitidez",
|
||||
"Zoom out": "Diminuir zoom",
|
||||
"Image options": "Op\u00e7\u00f5es de Imagem",
|
||||
"Apply": "Aplicar",
|
||||
"Brightness": "Brilho",
|
||||
"Rotate clockwise": "Girar em sentido anti-hor\u00e1rio",
|
||||
"Rotate counterclockwise": "Girar em sentido hor\u00e1rio",
|
||||
"Edit image": "Editar imagem",
|
||||
"Color levels": "N\u00edveis de cor",
|
||||
"Crop": "Cortar",
|
||||
"Orientation": "Orienta\u00e7\u00e3o",
|
||||
"Flip vertically": "Virar verticalmente",
|
||||
"Invert": "Inverter",
|
||||
"Insert date\/time": "Inserir data\/hora",
|
||||
"Remove link": "Remover link",
|
||||
"Url": "Url",
|
||||
"Text to display": "Texto para mostrar",
|
||||
"Anchors": "\u00c2ncoras",
|
||||
"Insert link": "Inserir link",
|
||||
"New window": "Nova janela",
|
||||
"None": "Nenhum",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A URL que voc\u00ea informou parece ser um link externo. Deseja incluir o prefixo http:\/\/?",
|
||||
"Target": "Alvo",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||
"Insert\/edit link": "Inserir\/editar link",
|
||||
"Insert\/edit video": "Inserir\/editar v\u00eddeo",
|
||||
"Poster": "Autor",
|
||||
"Alternative source": "Fonte alternativa",
|
||||
"Paste your embed code below:": "Insira o c\u00f3digo de incorpora\u00e7\u00e3o abaixo:",
|
||||
"Insert video": "Inserir v\u00eddeo",
|
||||
"Embed": "Incorporar",
|
||||
"Nonbreaking space": "Espa\u00e7o n\u00e3o separ\u00e1vel",
|
||||
"Page break": "Quebra de p\u00e1gina",
|
||||
"Paste as text": "Colar como texto",
|
||||
"Preview": "Pr\u00e9-visualizar",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Salvar",
|
||||
"Could not find the specified string.": "N\u00e3o foi poss\u00edvel encontrar o termo especificado",
|
||||
"Replace": "Substituir",
|
||||
"Next": "Pr\u00f3ximo",
|
||||
"Whole words": "Palavras inteiras",
|
||||
"Find and replace": "Localizar e substituir",
|
||||
"Replace with": "Substituir por",
|
||||
"Find": "Localizar",
|
||||
"Replace all": "Substituir tudo",
|
||||
"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas",
|
||||
"Prev": "Anterior",
|
||||
"Spellcheck": "Corretor ortogr\u00e1fico",
|
||||
"Finish": "Finalizar",
|
||||
"Ignore all": "Ignorar tudo",
|
||||
"Ignore": "Ignorar",
|
||||
"Add to Dictionary": "Adicionar ao Dicion\u00e1rio",
|
||||
"Insert row before": "Inserir linha antes",
|
||||
"Rows": "Linhas",
|
||||
"Height": "Altura",
|
||||
"Paste row after": "Colar linha depois",
|
||||
"Alignment": "Alinhamento",
|
||||
"Border color": "Cor da borda",
|
||||
"Column group": "Agrupar coluna",
|
||||
"Row": "Linha",
|
||||
"Insert column before": "Inserir coluna antes",
|
||||
"Split cell": "Dividir c\u00e9lula",
|
||||
"Cell padding": "Espa\u00e7amento interno da c\u00e9lula",
|
||||
"Cell spacing": "Espa\u00e7amento da c\u00e9lula",
|
||||
"Row type": "Tipo de linha",
|
||||
"Insert table": "Inserir tabela",
|
||||
"Body": "Corpo",
|
||||
"Caption": "Legenda",
|
||||
"Footer": "Rodap\u00e9",
|
||||
"Delete row": "Excluir linha",
|
||||
"Paste row before": "Colar linha antes",
|
||||
"Scope": "Escopo",
|
||||
"Delete table": "Excluir tabela",
|
||||
"H Align": "Alinhamento H",
|
||||
"Top": "Superior",
|
||||
"Header cell": "C\u00e9lula cabe\u00e7alho",
|
||||
"Column": "Coluna",
|
||||
"Row group": "Agrupar linha",
|
||||
"Cell": "C\u00e9lula",
|
||||
"Middle": "Meio",
|
||||
"Cell type": "Tipo de c\u00e9lula",
|
||||
"Copy row": "Copiar linha",
|
||||
"Row properties": "Propriedades da linha",
|
||||
"Table properties": "Propriedades da tabela",
|
||||
"Bottom": "Inferior",
|
||||
"V Align": "Alinhamento V",
|
||||
"Header": "Cabe\u00e7alho",
|
||||
"Right": "Direita",
|
||||
"Insert column after": "Inserir coluna depois",
|
||||
"Cols": "Colunas",
|
||||
"Insert row after": "Inserir linha depois",
|
||||
"Width": "Largura",
|
||||
"Cell properties": "Propriedades da c\u00e9lula",
|
||||
"Left": "Esquerdo",
|
||||
"Cut row": "Recortar linha",
|
||||
"Delete column": "Excluir coluna",
|
||||
"Center": "Centro",
|
||||
"Merge cells": "Agrupar c\u00e9lulas",
|
||||
"Insert template": "Inserir modelo",
|
||||
"Templates": "Modelos",
|
||||
"Background color": "Cor do fundo",
|
||||
"Custom...": "Personalizado...",
|
||||
"Custom color": "Cor personalizada",
|
||||
"No color": "Nenhuma cor",
|
||||
"Text color": "Cor do texto",
|
||||
"Show blocks": "Mostrar blocos",
|
||||
"Show invisible characters": "Exibir caracteres invis\u00edveis",
|
||||
"Words: {0}": "Palavras: {0}",
|
||||
"Insert": "Inserir",
|
||||
"File": "Arquivo",
|
||||
"Edit": "Editar",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto formatado. Pressione ALT-F9 para exibir o menu, ALT-F10 para exibir a barra de ferramentas ou ALT-0 para exibir a ajuda",
|
||||
"Tools": "Ferramentas",
|
||||
"View": "Visualizar",
|
||||
"Table": "Tabela",
|
||||
"Format": "Formatar"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/pt_PT.js
Normal file
219
data/web/rc/program/js/tinymce/langs/pt_PT.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('pt_PT',{
|
||||
"Cut": "Cortar",
|
||||
"Heading 5": "T\u00edtulo 5",
|
||||
"Header 2": "Cabe\u00e7alho 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "O seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X\/C\/V do seu teclado.",
|
||||
"Heading 4": "T\u00edtulo 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "T\u00edtulo 2",
|
||||
"Paste": "Colar",
|
||||
"Close": "Fechar",
|
||||
"Font Family": "Fonte",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Alinhar \u00e0 direita",
|
||||
"New document": "Novo documento",
|
||||
"Blockquote": "Cita\u00e7\u00e3o em bloco",
|
||||
"Numbered list": "Lista numerada",
|
||||
"Heading 1": "T\u00edtulo 1",
|
||||
"Headings": "T\u00edtulos",
|
||||
"Increase indent": "Aumentar avan\u00e7o",
|
||||
"Formats": "Formatos",
|
||||
"Headers": "Cabe\u00e7alhos",
|
||||
"Select all": "Selecionar tudo",
|
||||
"Header 3": "Cabe\u00e7alho 3",
|
||||
"Blocks": "Blocos",
|
||||
"Undo": "Desfazer",
|
||||
"Strikethrough": "Rasurado",
|
||||
"Bullet list": "Lista com marcadores",
|
||||
"Header 1": "Cabe\u00e7alho 1",
|
||||
"Superscript": "Superior \u00e0 linha",
|
||||
"Clear formatting": "Limpar formata\u00e7\u00e3o",
|
||||
"Font Sizes": "Tamanhos",
|
||||
"Subscript": "Inferior \u00e0 linha",
|
||||
"Header 6": "Cabe\u00e7alho 6",
|
||||
"Redo": "Refazer",
|
||||
"Paragraph": "Par\u00e1grafo",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Negrito",
|
||||
"Code": "C\u00f3digo",
|
||||
"Italic": "It\u00e1lico",
|
||||
"Align center": "Alinhar ao centro",
|
||||
"Header 5": "Cabe\u00e7alho 5",
|
||||
"Heading 6": "T\u00edtulo 6",
|
||||
"Heading 3": "T\u00edtulo 3",
|
||||
"Decrease indent": "Diminuir avan\u00e7o",
|
||||
"Header 4": "Cabe\u00e7alho 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 em modo de texto simples. O conte\u00fado ser\u00e1 colado como texto simples at\u00e9 desativar esta op\u00e7\u00e3o.",
|
||||
"Underline": "Sublinhado",
|
||||
"Cancel": "Cancelar",
|
||||
"Justify": "Justificado",
|
||||
"Inline": "Na linha",
|
||||
"Copy": "Copiar",
|
||||
"Align left": "Alinhar \u00e0 esquerda",
|
||||
"Visual aids": "Ajuda visual",
|
||||
"Lower Greek": "\\u03b1. \\u03b2. \\u03b3. ...",
|
||||
"Square": "Quadrado",
|
||||
"Default": "Padr\u00e3o",
|
||||
"Lower Alpha": "a. b. c. ...",
|
||||
"Circle": "C\u00edrculo",
|
||||
"Disc": "Disco",
|
||||
"Upper Alpha": "A. B. C. ...",
|
||||
"Upper Roman": "I. II. III. ...",
|
||||
"Lower Roman": "i. ii. iii. ...",
|
||||
"Name": "Nome",
|
||||
"Anchor": "\u00c2ncora",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Existem altera\u00e7\u00f5es que ainda n\u00e3o foram guardadas. Tem a certeza que pretende sair?",
|
||||
"Restore last draft": "Restaurar o \u00faltimo rascunho",
|
||||
"Special character": "Car\u00e1cter especial",
|
||||
"Source code": "C\u00f3digo fonte",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Cor",
|
||||
"Right to left": "Da direita para a esquerda",
|
||||
"Left to right": "Da esquerda para a direita",
|
||||
"Emoticons": "Emo\u00e7\u00f5es",
|
||||
"Robots": "Rob\u00f4s",
|
||||
"Document properties": "Propriedades do documento",
|
||||
"Title": "T\u00edtulo",
|
||||
"Keywords": "Palavras-chave",
|
||||
"Encoding": "Codifica\u00e7\u00e3o",
|
||||
"Description": "Descri\u00e7\u00e3o",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Ecr\u00e3 completo",
|
||||
"Horizontal line": "Linha horizontal",
|
||||
"Horizontal space": "Espa\u00e7amento horizontal",
|
||||
"Insert\/edit image": "Inserir\/editar imagem",
|
||||
"General": "Geral",
|
||||
"Advanced": "Avan\u00e7ado",
|
||||
"Source": "Localiza\u00e7\u00e3o",
|
||||
"Border": "Contorno",
|
||||
"Constrain proportions": "Manter propor\u00e7\u00f5es",
|
||||
"Vertical space": "Espa\u00e7amento vertical",
|
||||
"Image description": "Descri\u00e7\u00e3o da imagem",
|
||||
"Style": "Estilo",
|
||||
"Dimensions": "Dimens\u00f5es",
|
||||
"Insert image": "Inserir imagem",
|
||||
"Zoom in": "Mais zoom",
|
||||
"Contrast": "Contraste",
|
||||
"Back": "Voltar",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "Inverter horizontalmente",
|
||||
"Resize": "Redimensionar",
|
||||
"Sharpen": "Mais nitidez",
|
||||
"Zoom out": "Menos zoom",
|
||||
"Image options": "Op\u00e7\u00f5es de imagem",
|
||||
"Apply": "Aplicar",
|
||||
"Brightness": "Brilho",
|
||||
"Rotate clockwise": "Rota\u00e7\u00e3o hor\u00e1ria",
|
||||
"Rotate counterclockwise": "Rota\u00e7\u00e3o anti-hor\u00e1ria",
|
||||
"Edit image": "Editar imagem",
|
||||
"Color levels": "N\u00edveis de cor",
|
||||
"Crop": "Recortar",
|
||||
"Orientation": "Orienta\u00e7\u00e3o",
|
||||
"Flip vertically": "Inverter verticalmente",
|
||||
"Invert": "Inverter",
|
||||
"Insert date\/time": "Inserir data\/hora",
|
||||
"Remove link": "Remover liga\u00e7\u00e3o",
|
||||
"Url": "URL",
|
||||
"Text to display": "Texto a exibir",
|
||||
"Anchors": "\u00c2ncora",
|
||||
"Insert link": "Inserir liga\u00e7\u00e3o",
|
||||
"New window": "Nova janela",
|
||||
"None": "Nenhum",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "O URL que indicou parece ser um endere\u00e7o web. Quer adicionar o prefixo http:\/\/ tal como necess\u00e1rio?",
|
||||
"Target": "Alvo",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "O URL que indicou parece ser um endere\u00e7o de email. Quer adicionar o prefixo mailto: tal como necess\u00e1rio?",
|
||||
"Insert\/edit link": "Inserir\/editar liga\u00e7\u00e3o",
|
||||
"Insert\/edit video": "Inserir\/editar v\u00eddeo",
|
||||
"Poster": "Autor",
|
||||
"Alternative source": "Localiza\u00e7\u00e3o alternativa",
|
||||
"Paste your embed code below:": "Colar c\u00f3digo para embeber:",
|
||||
"Insert video": "Inserir v\u00eddeo",
|
||||
"Embed": "Incorporar",
|
||||
"Nonbreaking space": "Espa\u00e7o n\u00e3o quebr\u00e1vel",
|
||||
"Page break": "Quebra de p\u00e1gina",
|
||||
"Paste as text": "Colar como texto",
|
||||
"Preview": "Pr\u00e9-visualizar",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Guardar",
|
||||
"Could not find the specified string.": "N\u00e3o foi poss\u00edvel localizar o termo especificado.",
|
||||
"Replace": "Substituir",
|
||||
"Next": "Pr\u00f3ximo",
|
||||
"Whole words": "Palavras completas",
|
||||
"Find and replace": "Pesquisar e substituir",
|
||||
"Replace with": "Substituir por",
|
||||
"Find": "Pesquisar",
|
||||
"Replace all": "Substituir tudo",
|
||||
"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas",
|
||||
"Prev": "Anterior",
|
||||
"Spellcheck": "Corretor ortogr\u00e1fico",
|
||||
"Finish": "Concluir",
|
||||
"Ignore all": "Ignorar tudo",
|
||||
"Ignore": "Ignorar",
|
||||
"Add to Dictionary": "Adicionar ao dicion\u00e1rio",
|
||||
"Insert row before": "Inserir linha antes",
|
||||
"Rows": "Linhas",
|
||||
"Height": "Altura",
|
||||
"Paste row after": "Colar linha depois",
|
||||
"Alignment": "Alinhamento",
|
||||
"Border color": "Cor de contorno",
|
||||
"Column group": "Agrupar coluna",
|
||||
"Row": "Linha",
|
||||
"Insert column before": "Inserir coluna antes",
|
||||
"Split cell": "Dividir c\u00e9lula",
|
||||
"Cell padding": "Espa\u00e7amento interno da c\u00e9lula",
|
||||
"Cell spacing": "Espa\u00e7amento entre c\u00e9lulas",
|
||||
"Row type": "Tipo de linha",
|
||||
"Insert table": "Inserir tabela",
|
||||
"Body": "Corpo",
|
||||
"Caption": "Legenda",
|
||||
"Footer": "Rodap\u00e9",
|
||||
"Delete row": "Eliminar linha",
|
||||
"Paste row before": "Colar linha antes",
|
||||
"Scope": "Escopo",
|
||||
"Delete table": "Eliminar tabela",
|
||||
"H Align": "Alinhamento H",
|
||||
"Top": "Topo",
|
||||
"Header cell": "C\u00e9lula de cabe\u00e7alho",
|
||||
"Column": "Coluna",
|
||||
"Row group": "Agrupar linha",
|
||||
"Cell": "C\u00e9lula",
|
||||
"Middle": "Meio",
|
||||
"Cell type": "Tipo de c\u00e9lula",
|
||||
"Copy row": "Copiar linha",
|
||||
"Row properties": "Propriedades da linha",
|
||||
"Table properties": "Propriedades da tabela",
|
||||
"Bottom": "Fundo",
|
||||
"V Align": "Alinhamento V",
|
||||
"Header": "Cabe\u00e7alho",
|
||||
"Right": "Direita",
|
||||
"Insert column after": "Inserir coluna depois",
|
||||
"Cols": "Colunas",
|
||||
"Insert row after": "Inserir linha depois",
|
||||
"Width": "Largura",
|
||||
"Cell properties": "Propriedades da c\u00e9lula",
|
||||
"Left": "Esquerda",
|
||||
"Cut row": "Cortar linha",
|
||||
"Delete column": "Eliminar coluna",
|
||||
"Center": "Centro",
|
||||
"Merge cells": "Unir c\u00e9lulas",
|
||||
"Insert template": "Inserir modelo",
|
||||
"Templates": "Modelos",
|
||||
"Background color": "Cor de fundo",
|
||||
"Custom...": "Personalizada...",
|
||||
"Custom color": "Cor personalizada",
|
||||
"No color": "Sem cor",
|
||||
"Text color": "Cor do texto",
|
||||
"Show blocks": "Mostrar blocos",
|
||||
"Show invisible characters": "Mostrar caracteres invis\u00edveis",
|
||||
"Words: {0}": "Palavras: {0}",
|
||||
"Insert": "Inserir",
|
||||
"File": "Ficheiro",
|
||||
"Edit": "Editar",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Caixa de texto formatado. Pressione ALT-F9 para exibir o menu. Pressione ALT-F10 para exibir a barra de ferramentas. Pressione ALT-0 para exibir a ajuda",
|
||||
"Tools": "Ferramentas",
|
||||
"View": "Ver",
|
||||
"Table": "Tabela",
|
||||
"Format": "Formatar"
|
||||
});
|
||||
3
data/web/rc/program/js/tinymce/langs/readme.md
Normal file
3
data/web/rc/program/js/tinymce/langs/readme.md
Normal file
@@ -0,0 +1,3 @@
|
||||
This is where language files should be placed.
|
||||
|
||||
Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/
|
||||
219
data/web/rc/program/js/tinymce/langs/ro.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ro.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ro',{
|
||||
"Cut": "Decupeaz\u0103",
|
||||
"Heading 5": "Titlu 5",
|
||||
"Header 2": "Antet 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browserul dumneavoastr\u0103 nu support\u0103 acces direct la clipboard. Folosi\u0163i combina\u0163ile de tastatur\u0103 Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Titlu 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Titlu 2",
|
||||
"Paste": "Lipe\u015fte",
|
||||
"Close": "\u00cenchide",
|
||||
"Font Family": "Font",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Aliniere la dreapta",
|
||||
"New document": "Document nou",
|
||||
"Blockquote": "Men\u0163iune bloc",
|
||||
"Numbered list": "List\u0103 ordonat\u0103",
|
||||
"Heading 1": "Titlu 1",
|
||||
"Headings": "Titluri",
|
||||
"Increase indent": "Indenteaz\u0103",
|
||||
"Formats": "Formate",
|
||||
"Headers": "Antete",
|
||||
"Select all": "Selecteaz\u0103 tot",
|
||||
"Header 3": "Antet 3",
|
||||
"Blocks": "Blocuri",
|
||||
"Undo": "Reexecut\u0103",
|
||||
"Strikethrough": "T\u0103iat",
|
||||
"Bullet list": "List\u0103 neordonat\u0103",
|
||||
"Header 1": "Antet 1",
|
||||
"Superscript": "Superscript",
|
||||
"Clear formatting": "\u015eterge format\u0103rile",
|
||||
"Font Sizes": "Dimensiune font",
|
||||
"Subscript": "Subscript",
|
||||
"Header 6": "Antet 6",
|
||||
"Redo": "Dezexecut\u0103",
|
||||
"Paragraph": "Paragraf",
|
||||
"Ok": "Ok",
|
||||
"Bold": "\u00cengro\u015fat",
|
||||
"Code": "Cod",
|
||||
"Italic": "Italic",
|
||||
"Align center": "Centrare",
|
||||
"Header 5": "Antet 5",
|
||||
"Heading 6": "Titlu 6",
|
||||
"Heading 3": "Titlu 3",
|
||||
"Decrease indent": "De-indenteaz\u0103",
|
||||
"Header 4": "Antet 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Functia \"lipe\u015fte\" este acum \u00een modul text simplu. Continutul va fi acum inserat ca text simplu p\u00e2n\u0103 c\u00e2nd aceast\u0103 op\u021biune va fi dezactivat.",
|
||||
"Underline": "Subliniat",
|
||||
"Cancel": "Anuleaz\u0103",
|
||||
"Justify": "Aliniere pe toat\u0103 l\u0103\u021bimea",
|
||||
"Inline": "Inline",
|
||||
"Copy": "Copiaz\u0103",
|
||||
"Align left": "Aliniere la st\u00e2nga",
|
||||
"Visual aids": "Ajutor vizual",
|
||||
"Lower Greek": "Minuscule Grecesti",
|
||||
"Square": "P\u0103trat",
|
||||
"Default": "Implicit",
|
||||
"Lower Alpha": "Minuscule Alfanumerice",
|
||||
"Circle": "Cerc",
|
||||
"Disc": "Disc",
|
||||
"Upper Alpha": "Majuscule Alfanumerice",
|
||||
"Upper Roman": "Majuscule Romane",
|
||||
"Lower Roman": "Minuscule Romane",
|
||||
"Name": "Nume",
|
||||
"Anchor": "Ancor\u0103",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Ave\u021bi modific\u0103ri nesalvate! Sunte\u0163i sigur c\u0103 dori\u0163i s\u0103 ie\u015fiti?",
|
||||
"Restore last draft": "Restaurare la ultima salvare",
|
||||
"Special character": "Caractere speciale",
|
||||
"Source code": "Codul surs\u0103",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Culoare",
|
||||
"Right to left": "Dreapta la st\u00e2nga",
|
||||
"Left to right": "St\u00e2nga la dreapta",
|
||||
"Emoticons": "Emoticoane",
|
||||
"Robots": "Robo\u021bi",
|
||||
"Document properties": "Propriet\u0103\u021bi document",
|
||||
"Title": "Titlu",
|
||||
"Keywords": "Cuvinte cheie",
|
||||
"Encoding": "Codare",
|
||||
"Description": "Descriere",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Pe tot ecranul",
|
||||
"Horizontal line": "Linie orizontal\u0103",
|
||||
"Horizontal space": "Spa\u021biul orizontal",
|
||||
"Insert\/edit image": "Inserare\/editarea imaginilor",
|
||||
"General": "General",
|
||||
"Advanced": "Avansat",
|
||||
"Source": "Surs\u0103",
|
||||
"Border": "Bordur\u0103",
|
||||
"Constrain proportions": "Constr\u00e2nge propor\u021biile",
|
||||
"Vertical space": "Spa\u021biul vertical",
|
||||
"Image description": "Descrierea imaginii",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Dimensiuni",
|
||||
"Insert image": "Inserare imagine",
|
||||
"Zoom in": "M\u0103rire",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "\u00cenapoi",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "R\u0103sturn\u0103 orizontal",
|
||||
"Resize": "Redimensionare",
|
||||
"Sharpen": "Accentuare",
|
||||
"Zoom out": "Mic\u015forare",
|
||||
"Image options": "Op\u021biuni imagine",
|
||||
"Apply": "Salveaz\u0103",
|
||||
"Brightness": "Str\u0103lucire",
|
||||
"Rotate clockwise": "Rotire \u00een sensul orar",
|
||||
"Rotate counterclockwise": "Rotire \u00een sensul antiorar",
|
||||
"Edit image": "Editare imagine",
|
||||
"Color levels": "Niveluri de culoare",
|
||||
"Crop": "Decupare",
|
||||
"Orientation": "Orientare",
|
||||
"Flip vertically": "R\u0103sturn\u0103 vertical",
|
||||
"Invert": "Invers\u0103",
|
||||
"Insert date\/time": "Insereaz\u0103 data\/ora",
|
||||
"Remove link": "\u0218terge link-ul",
|
||||
"Url": "Url",
|
||||
"Text to display": "Text de afi\u0219at",
|
||||
"Anchors": "Ancor\u0103",
|
||||
"Insert link": "Inserare link",
|
||||
"New window": "Fereastr\u0103 nou\u0103",
|
||||
"None": "Nici unul",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL-ul introdus pare s\u0103 fie o adres\u0103 web. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul http:\/\/ ?",
|
||||
"Target": "\u021aint\u0103",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL-ul introdus pare s\u0103 fie o adres\u0103 de e-mail. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul mailto: ?",
|
||||
"Insert\/edit link": "Inserare\/editare link",
|
||||
"Insert\/edit video": "Inserare\/editare video",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Surs\u0103 alternativ\u0103",
|
||||
"Paste your embed code below:": "Insera\u021bi codul:",
|
||||
"Insert video": "Inserare video",
|
||||
"Embed": "Embed",
|
||||
"Nonbreaking space": "Spa\u021biu neseparator",
|
||||
"Page break": "\u00centrerupere de pagin\u0103",
|
||||
"Paste as text": "Lipe\u015fte ca text",
|
||||
"Preview": "Previzualizare",
|
||||
"Print": "Tip\u0103re\u0219te",
|
||||
"Save": "Salveaz\u0103",
|
||||
"Could not find the specified string.": "Nu am putut g\u0103si \u0219irul specificat.",
|
||||
"Replace": "\u00cenlocuie\u015fte",
|
||||
"Next": "Precedent",
|
||||
"Whole words": "Doar cuv\u00eentul \u00eentreg",
|
||||
"Find and replace": "Caut\u0103 \u015fi \u00eenlocuie\u015fte",
|
||||
"Replace with": "\u00cenlocuie\u015fte cu",
|
||||
"Find": "Caut\u0103",
|
||||
"Replace all": "\u00cenlocuie\u015fte toate",
|
||||
"Match case": "Distinge majuscule\/minuscule",
|
||||
"Prev": "Anterior",
|
||||
"Spellcheck": "Verificarea ortografic\u0103",
|
||||
"Finish": "Finalizeaz\u0103",
|
||||
"Ignore all": "Ignor\u0103 toate",
|
||||
"Ignore": "Ignor\u0103",
|
||||
"Add to Dictionary": "Adaug\u0103 \u00een Dic\u021bionar",
|
||||
"Insert row before": "Insereaz\u0103 \u00eenainte de linie",
|
||||
"Rows": "Linii",
|
||||
"Height": "\u00cen\u0103l\u0163ime",
|
||||
"Paste row after": "Lipe\u015fte linie dup\u0103",
|
||||
"Alignment": "Aliniament",
|
||||
"Border color": "Culoare bordur\u0103",
|
||||
"Column group": "Grup de coloane",
|
||||
"Row": "Linie",
|
||||
"Insert column before": "Insereaza \u00eenainte de coloan\u0103",
|
||||
"Split cell": "\u00cemp\u0103r\u021birea celulelor",
|
||||
"Cell padding": "Spa\u021biere",
|
||||
"Cell spacing": "Spa\u021biere celule",
|
||||
"Row type": "Tip de linie",
|
||||
"Insert table": "Insereaz\u0103 tabel\u0103",
|
||||
"Body": "Corp",
|
||||
"Caption": "Titlu",
|
||||
"Footer": "Subsol",
|
||||
"Delete row": "\u0218terge linia",
|
||||
"Paste row before": "Lipe\u015fte \u00eenainte de linie",
|
||||
"Scope": "Domeniu",
|
||||
"Delete table": "\u0218terge tabel\u0103",
|
||||
"H Align": "Aliniere H",
|
||||
"Top": "Sus",
|
||||
"Header cell": "Antet celul\u0103",
|
||||
"Column": "Coloan\u0103",
|
||||
"Row group": "Grup de linii",
|
||||
"Cell": "Celul\u0103",
|
||||
"Middle": "Mijloc",
|
||||
"Cell type": "Tip celul\u0103",
|
||||
"Copy row": "Copiaz\u0103 linie",
|
||||
"Row properties": "Propriet\u0103\u021bi linie",
|
||||
"Table properties": "Propriet\u0103\u021bi tabel\u0103",
|
||||
"Bottom": "Jos",
|
||||
"V Align": "Aliniere V",
|
||||
"Header": "Antet",
|
||||
"Right": "Dreapta",
|
||||
"Insert column after": "Insereaza dup\u0103 coloan\u0103",
|
||||
"Cols": "Coloane",
|
||||
"Insert row after": "Insereaz\u0103 dup\u0103 linie",
|
||||
"Width": "L\u0103\u0163ime",
|
||||
"Cell properties": "Propriet\u0103\u021bi celul\u0103",
|
||||
"Left": "St\u00e2nga",
|
||||
"Cut row": "Taie linie",
|
||||
"Delete column": "\u0218terge coloana",
|
||||
"Center": "Centru",
|
||||
"Merge cells": "\u00cembinarea celulelor",
|
||||
"Insert template": "Insereaz\u0103 \u0219ablon",
|
||||
"Templates": "\u015eabloane",
|
||||
"Background color": "Culoare fundal",
|
||||
"Custom...": "Personalizat...",
|
||||
"Custom color": "Culoare personalizat\u0103",
|
||||
"No color": "F\u0103r\u0103 culoare",
|
||||
"Text color": "Culoare text",
|
||||
"Show blocks": "Afi\u0219are blocuri",
|
||||
"Show invisible characters": "Afi\u0219are caractere invizibile",
|
||||
"Words: {0}": "Cuvinte: {0}",
|
||||
"Insert": "Insereaz\u0103",
|
||||
"File": "Fil\u0103",
|
||||
"Edit": "Editeaz\u0103",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zon\u0103 cu Rich Text. Apas\u0103 ALT-F9 pentru meniu. Apas\u0103 ALT-F10 pentru bara de unelte. Apas\u0103 ALT-0 pentru ajutor",
|
||||
"Tools": "Unelte",
|
||||
"View": "Vezi",
|
||||
"Table": "Tabel\u0103",
|
||||
"Format": "Formateaz\u0103"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ru.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ru.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ru',{
|
||||
"Cut": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c",
|
||||
"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0435\u043d\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u044f \u043a\u043b\u0430\u0432\u0438\u0448: Ctrl+X\/C\/V.",
|
||||
"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Div": "\u0411\u043b\u043e\u043a",
|
||||
"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c",
|
||||
"Close": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
||||
"Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"Align right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"New document": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
||||
"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442",
|
||||
"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Select all": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u0435",
|
||||
"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
||||
"Undo": "\u0412\u0435\u0440\u043d\u0443\u0442\u044c",
|
||||
"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439",
|
||||
"Bullet list": "\u041c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442",
|
||||
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Subscript": "\u041d\u0438\u0436\u043d\u0438\u0439 \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Redo": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
||||
"Ok": "\u041e\u043a",
|
||||
"Bold": "\u041f\u043e\u043b\u0443\u0436\u0438\u0440\u043d\u044b\u0439",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
||||
"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Decrease indent": "\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||
"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0432\u0438\u0434\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430, \u043f\u043e\u043a\u0430 \u043d\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e.",
|
||||
"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439",
|
||||
"Cancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Justify": "\u041f\u043e \u0448\u0438\u0440\u0438\u043d\u0435",
|
||||
"Inline": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435",
|
||||
"Copy": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
|
||||
"Align left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Visual aids": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0443\u0440\u044b",
|
||||
"Lower Greek": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
||||
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u044b",
|
||||
"Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439",
|
||||
"Lower Alpha": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
||||
"Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0438",
|
||||
"Disc": "\u041a\u0440\u0443\u0433\u0438",
|
||||
"Upper Alpha": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
||||
"Upper Roman": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
|
||||
"Lower Roman": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
|
||||
"Name": "\u0418\u043c\u044f",
|
||||
"Anchor": "\u042f\u043a\u043e\u0440\u044c",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0439\u0442\u0438?",
|
||||
"Restore last draft": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
||||
"Source code": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0426\u0432\u0435\u0442",
|
||||
"Right to left": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u043e",
|
||||
"Left to right": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
||||
"Emoticons": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u044b",
|
||||
"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Keywords": "\u041a\u043b\u044e\u0447\u0438\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430",
|
||||
"Encoding": "\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430",
|
||||
"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Fullscreen": "\u041f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c",
|
||||
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f",
|
||||
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||
"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"General": "\u041e\u0431\u0449\u0435\u0435",
|
||||
"Advanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435",
|
||||
"Source": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
||||
"Border": "\u0420\u0430\u043c\u043a\u0430",
|
||||
"Constrain proportions": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||
"Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||
"Style": "\u0421\u0442\u0438\u043b\u044c",
|
||||
"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440",
|
||||
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"Zoom in": "\u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u044c",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Back": "\u041d\u0430\u0437\u0430\u0434",
|
||||
"Gamma": "\u0413\u0430\u043c\u043c\u0430",
|
||||
"Flip horizontally": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0438",
|
||||
"Resize": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440",
|
||||
"Sharpen": "\u0427\u0435\u0442\u043a\u043e\u0441\u0442\u044c",
|
||||
"Zoom out": "\u041e\u0442\u0434\u0430\u043b\u0438\u0442\u044c",
|
||||
"Image options": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||
"Apply": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442\u044c",
|
||||
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0435",
|
||||
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0442\u0438\u0432 \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0438",
|
||||
"Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"Color levels": "\u0426\u0432\u0435\u0442\u043e\u0432\u044b\u0435 \u0443\u0440\u043e\u0432\u043d\u0438",
|
||||
"Crop": "\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c",
|
||||
"Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
|
||||
"Flip vertically": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0438",
|
||||
"Invert": "\u0418\u043d\u0432\u0435\u0440\u0441\u0438\u044f",
|
||||
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f",
|
||||
"Remove link": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||
"Url": "\u0410\u0434\u0440\u0435\u0441 \u0441\u0441\u044b\u043b\u043a\u0438",
|
||||
"Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442",
|
||||
"Anchors": "\u042f\u043a\u043e\u0440\u044f",
|
||||
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||
"New window": "\u0412 \u043d\u043e\u0432\u043e\u043c \u043e\u043a\u043d\u0435",
|
||||
"None": "\u041d\u0435\u0442",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abhttp:\/\/\u00bb?",
|
||||
"Target": "\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abmailto:\u00bb?",
|
||||
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
||||
"Poster": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
||||
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0435:",
|
||||
"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
||||
"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438",
|
||||
"Nonbreaking space": "\u041d\u0435\u0440\u0430\u0437\u0440\u044b\u0432\u043d\u044b\u0439 \u043f\u0440\u043e\u0431\u0435\u043b",
|
||||
"Page break": "\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b",
|
||||
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0442\u0435\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440",
|
||||
"Print": "\u041f\u0435\u0447\u0430\u0442\u044c",
|
||||
"Save": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c",
|
||||
"Could not find the specified string.": "\u0417\u0430\u0434\u0430\u043d\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430",
|
||||
"Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Next": "\u0412\u043d\u0438\u0437",
|
||||
"Whole words": "\u0421\u043b\u043e\u0432\u043e \u0446\u0435\u043b\u0438\u043a\u043e\u043c",
|
||||
"Find and replace": "\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430",
|
||||
"Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430",
|
||||
"Find": "\u041d\u0430\u0439\u0442\u0438",
|
||||
"Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435",
|
||||
"Match case": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440",
|
||||
"Prev": "\u0412\u0432\u0435\u0440\u0445",
|
||||
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"Finish": "\u0417\u0430\u043a\u043e\u043d\u0447\u0438\u0442\u044c",
|
||||
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435",
|
||||
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
|
||||
"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u043b\u043e\u0432\u0430\u0440\u044c",
|
||||
"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443",
|
||||
"Rows": "\u0421\u0442\u0440\u043e\u043a\u0438",
|
||||
"Height": "\u0412\u044b\u0441\u043e\u0442\u0430",
|
||||
"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443",
|
||||
"Alignment": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
||||
"Border color": "\u0426\u0432\u0435\u0442 \u0440\u0430\u043c\u043a\u0438",
|
||||
"Column group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u043a\u043e\u043b\u043e\u043d\u043e\u043a",
|
||||
"Row": "\u0421\u0442\u0440\u043e\u043a\u0430",
|
||||
"Insert column before": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043b\u0435\u0432\u0430",
|
||||
"Split cell": "\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0443",
|
||||
"Cell padding": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||
"Cell spacing": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||
"Row type": "\u0422\u0438\u043f \u0441\u0442\u0440\u043e\u043a\u0438",
|
||||
"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443",
|
||||
"Body": "\u0422\u0435\u043b\u043e",
|
||||
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Footer": "\u041d\u0438\u0437",
|
||||
"Delete row": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
|
||||
"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443",
|
||||
"Scope": "Scope",
|
||||
"Delete table": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443",
|
||||
"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
||||
"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u0443",
|
||||
"Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Column": "\u0421\u0442\u043e\u043b\u0431\u0435\u0446",
|
||||
"Row group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u0441\u0442\u0440\u043e\u043a",
|
||||
"Cell": "\u042f\u0447\u0435\u0439\u043a\u0430",
|
||||
"Middle": "\u041f\u043e \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435",
|
||||
"Cell type": "\u0422\u0438\u043f \u044f\u0447\u0435\u0439\u043a\u0438",
|
||||
"Copy row": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
|
||||
"Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0442\u0440\u043e\u043a\u0438",
|
||||
"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b",
|
||||
"Bottom": "\u041f\u043e \u043d\u0438\u0437\u0443",
|
||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
||||
"Header": "\u0428\u0430\u043f\u043a\u0430",
|
||||
"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Insert column after": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043f\u0440\u0430\u0432\u0430",
|
||||
"Cols": "\u0421\u0442\u043e\u043b\u0431\u0446\u044b",
|
||||
"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443",
|
||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||
"Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u044f\u0447\u0435\u0439\u043a\u0438",
|
||||
"Left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Cut row": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
|
||||
"Delete column": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446",
|
||||
"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Merge cells": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0438",
|
||||
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b",
|
||||
"Background color": "\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430",
|
||||
"Custom...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c\u2026",
|
||||
"Custom color": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0446\u0432\u0435\u0442",
|
||||
"No color": "\u0411\u0435\u0437 \u0446\u0432\u0435\u0442\u0430",
|
||||
"Text color": "\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430",
|
||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438",
|
||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
||||
"Words: {0}": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432: {0}",
|
||||
"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F9 \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432, ALT-0 \u0434\u043b\u044f \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u043e\u043c\u043e\u0449\u0438.",
|
||||
"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b",
|
||||
"View": "\u0412\u0438\u0434",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/sk.js
Normal file
219
data/web/rc/program/js/tinymce/langs/sk.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('sk',{
|
||||
"Cut": "Vystrihn\u00fa\u0165",
|
||||
"Heading 5": "Nadpis 5",
|
||||
"Header 2": "Nadpis 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prehliada\u010d nepodporuje priamy pr\u00edstup do schr\u00e1nky. Pou\u017eite kl\u00e1vesov\u00e9 skratky Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Nadpis 4",
|
||||
"Div": "Blok",
|
||||
"Heading 2": "Nadpis 2",
|
||||
"Paste": "Vlo\u017ei\u0165",
|
||||
"Close": "Zatvori\u0165",
|
||||
"Font Family": "P\u00edsmo",
|
||||
"Pre": "Preform\u00e1tovan\u00fd",
|
||||
"Align right": "Zarovna\u0165 vpravo",
|
||||
"New document": "Nov\u00fd dokument",
|
||||
"Blockquote": "Cit\u00e1cia",
|
||||
"Numbered list": "\u010c\u00edslovan\u00fd zoznam",
|
||||
"Heading 1": "Nadpis 1",
|
||||
"Headings": "Nadpisy",
|
||||
"Increase indent": "Zv\u00e4\u010d\u0161i\u0165 odsadenie",
|
||||
"Formats": "Form\u00e1ty",
|
||||
"Headers": "Nadpisy",
|
||||
"Select all": "Ozna\u010di\u0165 v\u0161etko",
|
||||
"Header 3": "Nadpis 3",
|
||||
"Blocks": "Bloky",
|
||||
"Undo": "Vr\u00e1ti\u0165",
|
||||
"Strikethrough": "Pre\u010diarknut\u00e9",
|
||||
"Bullet list": "Odr\u00e1\u017eky",
|
||||
"Header 1": "Nadpis 1",
|
||||
"Superscript": "Horn\u00fd index",
|
||||
"Clear formatting": "Vymaza\u0165 form\u00e1tovanie",
|
||||
"Font Sizes": "Ve\u013ekos\u0165 p\u00edsma",
|
||||
"Subscript": "Spodn\u00fd index",
|
||||
"Header 6": "Nadpis 6",
|
||||
"Redo": "Znova",
|
||||
"Paragraph": "Odsek",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Tu\u010dn\u00e9",
|
||||
"Code": "K\u00f3d",
|
||||
"Italic": "Kurz\u00edva",
|
||||
"Align center": "Zarovna\u0165 na stred",
|
||||
"Header 5": "Nadpis 5",
|
||||
"Heading 6": "Nadpis 6",
|
||||
"Heading 3": "Nadpis 3",
|
||||
"Decrease indent": "Zmen\u0161i\u0165 odsadenie",
|
||||
"Header 4": "Nadpis 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Vkladanie je v m\u00f3de neform\u00e1tovan\u00e9ho textu. Vkladan\u00fd obsah bude vlo\u017een\u00fd ako neform\u00e1tovan\u00fd, a\u017e pok\u00fdm t\u00fato mo\u017enos\u0165 nevypnete.",
|
||||
"Underline": "Pod\u010diarknut\u00e9",
|
||||
"Cancel": "Zru\u0161i\u0165",
|
||||
"Justify": "Zarovna\u0165",
|
||||
"Inline": "\u0160t\u00fdly",
|
||||
"Copy": "Kop\u00edrova\u0165",
|
||||
"Align left": "Zarovna\u0165 v\u013eavo",
|
||||
"Visual aids": "Vizu\u00e1lne pom\u00f4cky",
|
||||
"Lower Greek": "Mal\u00e9 gr\u00e9cke p\u00edsmen\u00e1",
|
||||
"Square": "\u0160tvorec",
|
||||
"Default": "V\u00fdchodzie",
|
||||
"Lower Alpha": "Mal\u00e9 p\u00edsmen\u00e1",
|
||||
"Circle": "Kruh",
|
||||
"Disc": "Disk",
|
||||
"Upper Alpha": "Ve\u013ek\u00e9 p\u00edsmen\u00e1",
|
||||
"Upper Roman": "Ve\u013ek\u00e9 r\u00edmske \u010d\u00edslice",
|
||||
"Lower Roman": "Mal\u00e9 r\u00edmske \u010d\u00edslice",
|
||||
"Name": "N\u00e1zov",
|
||||
"Anchor": "Odkaz",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zmeny, naozaj chcete opusti\u0165 str\u00e1nku?",
|
||||
"Restore last draft": "Obnovi\u0165 posledn\u00fd koncept",
|
||||
"Special character": "\u0160peci\u00e1lny znak",
|
||||
"Source code": "Zdrojov\u00fd k\u00f3d",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Farba",
|
||||
"Right to left": "Sprava do\u013eava",
|
||||
"Left to right": "Z\u013eava doprava",
|
||||
"Emoticons": "Smajl\u00edci",
|
||||
"Robots": "Preh\u013ead\u00e1vacie roboty",
|
||||
"Document properties": "Vlastnosti dokumentu",
|
||||
"Title": "Nadpis",
|
||||
"Keywords": "K\u013e\u00fa\u010dov\u00e9 slov\u00e1",
|
||||
"Encoding": "K\u00f3dovanie",
|
||||
"Description": "Popis",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Na cel\u00fa obrazovku",
|
||||
"Horizontal line": "Horizont\u00e1lna \u010diara",
|
||||
"Horizontal space": "Horizont\u00e1lny priestor",
|
||||
"Insert\/edit image": "Vlo\u017ei\u0165\/upravi\u0165 obr\u00e1zok",
|
||||
"General": "Hlavn\u00e9",
|
||||
"Advanced": "Pokro\u010dil\u00e9",
|
||||
"Source": "Zdroj",
|
||||
"Border": "Or\u00e1movanie",
|
||||
"Constrain proportions": "Vymedzen\u00e9 proporcie",
|
||||
"Vertical space": "Vertik\u00e1lny priestor",
|
||||
"Image description": "Popis obr\u00e1zku",
|
||||
"Style": "\u0160t\u00fdl",
|
||||
"Dimensions": "Rozmery",
|
||||
"Insert image": "Vlo\u017ei\u0165 obr\u00e1zok",
|
||||
"Zoom in": "Pribl\u00ed\u017ei\u0165",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Sp\u00e4\u0165",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "Preklopi\u0165 horizont\u00e1lne",
|
||||
"Resize": "Zmeni\u0165 ve\u013ekos\u0165",
|
||||
"Sharpen": "Zaostri\u0165",
|
||||
"Zoom out": "Oddiali\u0165",
|
||||
"Image options": "Mo\u017enosti obr\u00e1zku",
|
||||
"Apply": "Pou\u017ei\u0165",
|
||||
"Brightness": "Jas",
|
||||
"Rotate clockwise": "Oto\u010di\u0165 v smere hodinov\u00fdch ru\u010di\u010diek",
|
||||
"Rotate counterclockwise": "Oto\u010di\u0165 proti smeru hodinov\u00fdch ru\u010di\u010diek",
|
||||
"Edit image": "Upravi\u0165 obr\u00e1zok",
|
||||
"Color levels": "\u00darovne farieb",
|
||||
"Crop": "Vyreza\u0165",
|
||||
"Orientation": "Orient\u00e1cia",
|
||||
"Flip vertically": "Preklopi\u0165 vertik\u00e1lne",
|
||||
"Invert": "Invertova\u0165",
|
||||
"Insert date\/time": "Vlo\u017ei\u0165 d\u00e1tum\/\u010das",
|
||||
"Remove link": "Odstr\u00e1ni\u0165 odkaz",
|
||||
"Url": "Url",
|
||||
"Text to display": "Zobrazen\u00fd text",
|
||||
"Anchors": "Kotvy",
|
||||
"Insert link": "Vlo\u017ei\u0165 odkaz",
|
||||
"New window": "Nov\u00e9 okno",
|
||||
"None": "\u017diadne",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL adresa ktor\u00fa ste zadali vyzer\u00e1 ako extern\u00fd odkaz. Chcete prida\u0165 vy\u017eadovan\u00fa http:\/\/ predponu?",
|
||||
"Target": "Cie\u013e",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, ktor\u00fa ste vlo\u017eili je pravdepodobne emailov\u00e1 adresa. \u017del\u00e1te si prida\u0165 vy\u017eadovan\u00fa mailto: predponu?",
|
||||
"Insert\/edit link": "Vlo\u017ei\u0165\/upravi\u0165 odkaz",
|
||||
"Insert\/edit video": "Vlo\u017ei\u0165\/upravi\u0165 video",
|
||||
"Poster": "Uk\u00e1\u017eka",
|
||||
"Alternative source": "Alternat\u00edvny zdroj",
|
||||
"Paste your embed code below:": "Vlo\u017ete k\u00f3d pre vlo\u017eenie na str\u00e1nku:",
|
||||
"Insert video": "Vlo\u017ei\u0165 video",
|
||||
"Embed": "Vlo\u017een\u00e9",
|
||||
"Nonbreaking space": "Nedelite\u013en\u00e1 medzera",
|
||||
"Page break": "Zalomenie str\u00e1nky",
|
||||
"Paste as text": "Vlo\u017ei\u0165 ako text",
|
||||
"Preview": "N\u00e1h\u013ead",
|
||||
"Print": "Tla\u010di\u0165",
|
||||
"Save": "Ulo\u017ei\u0165",
|
||||
"Could not find the specified string.": "Zadan\u00fd re\u0165azec sa nena\u0161iel.",
|
||||
"Replace": "Nahradi\u0165",
|
||||
"Next": "Nasleduj\u00face",
|
||||
"Whole words": "Cel\u00e9 slov\u00e1",
|
||||
"Find and replace": "Vyh\u013eada\u0165 a nahradi\u0165",
|
||||
"Replace with": "Nahradi\u0165 za",
|
||||
"Find": "H\u013eada\u0165",
|
||||
"Replace all": "Nahradi\u0165 v\u0161etko",
|
||||
"Match case": "Rozli\u0161ova\u0165 ve\u013ek\u00e9\/mal\u00e9",
|
||||
"Prev": "Predch\u00e1dzaj\u00face",
|
||||
"Spellcheck": "Kontrola pravopisu",
|
||||
"Finish": "Dokon\u010di\u0165",
|
||||
"Ignore all": "Ignorova\u0165 v\u0161etko",
|
||||
"Ignore": "Ignorova\u0165",
|
||||
"Add to Dictionary": "Prida\u0165 do slovn\u00edka",
|
||||
"Insert row before": "Vlo\u017ei\u0165 nov\u00fd riadok pred",
|
||||
"Rows": "Riadky",
|
||||
"Height": "V\u00fd\u0161ka",
|
||||
"Paste row after": "Vlo\u017ei\u0165 riadok za",
|
||||
"Alignment": "Zarovnanie",
|
||||
"Border color": "Farba or\u00e1movania",
|
||||
"Column group": "Skupina st\u013apcov",
|
||||
"Row": "Riadok",
|
||||
"Insert column before": "Prida\u0165 nov\u00fd st\u013apec pred",
|
||||
"Split cell": "Rozdeli\u0165 bunku",
|
||||
"Cell padding": "Odsadenie v bunk\u00e1ch",
|
||||
"Cell spacing": "Priestor medzi bunkami",
|
||||
"Row type": "Typ riadku",
|
||||
"Insert table": "Vlo\u017ei\u0165 tabu\u013eku",
|
||||
"Body": "Telo",
|
||||
"Caption": "Popisok",
|
||||
"Footer": "P\u00e4ti\u010dka",
|
||||
"Delete row": "Zmaza\u0165 riadok",
|
||||
"Paste row before": "Vlo\u017ei\u0165 riadok pred",
|
||||
"Scope": "Oblas\u0165",
|
||||
"Delete table": "Zmaza\u0165 tabu\u013eku",
|
||||
"H Align": "Horizont\u00e1lne zarovnanie",
|
||||
"Top": "Vrch",
|
||||
"Header cell": "Bunka z\u00e1hlavia",
|
||||
"Column": "St\u013apec",
|
||||
"Row group": "Skupina riadkov",
|
||||
"Cell": "Bunka",
|
||||
"Middle": "Stred",
|
||||
"Cell type": "Typ bunky",
|
||||
"Copy row": "Kop\u00edrova\u0165 riadok",
|
||||
"Row properties": "Vlastnosti riadku",
|
||||
"Table properties": "Nastavenia tabu\u013eky",
|
||||
"Bottom": "Spodok",
|
||||
"V Align": "Vertik\u00e1lne zarovnanie",
|
||||
"Header": "Z\u00e1hlavie",
|
||||
"Right": "Vpravo",
|
||||
"Insert column after": "Prida\u0165 nov\u00fd st\u013apec za",
|
||||
"Cols": "St\u013apce",
|
||||
"Insert row after": "Vlo\u017ei\u0165 nov\u00fd riadok za",
|
||||
"Width": "\u0160\u00edrka",
|
||||
"Cell properties": "Vlastnosti bunky",
|
||||
"Left": "V\u013eavo",
|
||||
"Cut row": "Vystrihn\u00fa\u0165 riadok",
|
||||
"Delete column": "Vymaza\u0165 st\u013apec",
|
||||
"Center": "Na stred",
|
||||
"Merge cells": "Spoji\u0165 bunky",
|
||||
"Insert template": "Vlo\u017ei\u0165 \u0161abl\u00f3nu",
|
||||
"Templates": "\u0160abl\u00f3ny",
|
||||
"Background color": "Farba pozadia",
|
||||
"Custom...": "Vlastn\u00e1...",
|
||||
"Custom color": "Vlastn\u00e1 farba",
|
||||
"No color": "Bez farby",
|
||||
"Text color": "Farba textu",
|
||||
"Show blocks": "Zobrazi\u0165 bloky",
|
||||
"Show invisible characters": "Zobrazi\u0165 skryt\u00e9 znaky",
|
||||
"Words: {0}": "Slov: {0}",
|
||||
"Insert": "Vlo\u017ei\u0165",
|
||||
"File": "S\u00fabor",
|
||||
"Edit": "Upravi\u0165",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textov\u00e9 pole. Stla\u010dte ALT-F9 pre zobrazenie menu, ALT-F10 pre zobrazenie panela n\u00e1strojov, ALT-0 pre n\u00e1povedu.",
|
||||
"Tools": "N\u00e1stroje",
|
||||
"View": "Zobrazi\u0165",
|
||||
"Table": "Tabu\u013eka",
|
||||
"Format": "Form\u00e1t"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/sl_SI.js
Normal file
219
data/web/rc/program/js/tinymce/langs/sl_SI.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('sl_SI',{
|
||||
"Cut": "Izre\u017ei",
|
||||
"Heading 5": "Podnaslov 5",
|
||||
"Header 2": "Naslov 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Varnostne nastavitve brskalnika ne dopu\u0161\u010dajo direktnega dostopa do odlo\u017ei\u0161\u010da. Uporabite kombinacijo tipk Ctrl+X\/C\/V na tipkovnici.",
|
||||
"Heading 4": "Podnaslov 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Podnaslov 2",
|
||||
"Paste": "Prilepi",
|
||||
"Close": "Zapri",
|
||||
"Font Family": "Dru\u017eina pisav",
|
||||
"Pre": "Predformat",
|
||||
"Align right": "Desna poravnava",
|
||||
"New document": "Nov dokument",
|
||||
"Blockquote": "Zamik besedila",
|
||||
"Numbered list": "O\u0161tevil\u010den seznam",
|
||||
"Heading 1": "Podnaslov 1",
|
||||
"Headings": "Podnaslovi",
|
||||
"Increase indent": "Pove\u010daj zamik",
|
||||
"Formats": "Oblika",
|
||||
"Headers": "Naslovi",
|
||||
"Select all": "Izberi vse",
|
||||
"Header 3": "Naslov 3",
|
||||
"Blocks": "Grupe",
|
||||
"Undo": "Razveljavi",
|
||||
"Strikethrough": "Pre\u010drtano",
|
||||
"Bullet list": "Ozna\u010den seznam",
|
||||
"Header 1": "Naslov 1",
|
||||
"Superscript": "Nadpisano",
|
||||
"Clear formatting": "Odstrani oblikovanje",
|
||||
"Font Sizes": "Velikosti pisave",
|
||||
"Subscript": "Podpisano",
|
||||
"Header 6": "Naslov 6",
|
||||
"Redo": "Ponovi",
|
||||
"Paragraph": "Odstavek",
|
||||
"Ok": "V redu",
|
||||
"Bold": "Krepko",
|
||||
"Code": "Koda",
|
||||
"Italic": "Le\u017ee\u010de",
|
||||
"Align center": "Sredinska poravnava",
|
||||
"Header 5": "Naslov 5",
|
||||
"Heading 6": "Podnaslov 6",
|
||||
"Heading 3": "Podnaslov 3",
|
||||
"Decrease indent": "Zmanj\u0161aj zamik",
|
||||
"Header 4": "Naslov 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Odlagali\u0161\u010de je zdaj v tekstovnem na\u010dinu. Vsebina bo preslikana kot golo besedilo brez oblike, dokler te mo\u017enosti ne izklju\u010dite.",
|
||||
"Underline": "Pod\u010drtano",
|
||||
"Cancel": "Prekli\u010di",
|
||||
"Justify": "Obojestranska poravnava",
|
||||
"Inline": "Med besedilom",
|
||||
"Copy": "Kopiraj",
|
||||
"Align left": "Leva poravnava",
|
||||
"Visual aids": "Vizualni pripomo\u010dki",
|
||||
"Lower Greek": "Male gr\u0161ke \u010drke",
|
||||
"Square": "Kvadratek",
|
||||
"Default": "Privzeto",
|
||||
"Lower Alpha": "Male tiskane \u010drke",
|
||||
"Circle": "Pikica",
|
||||
"Disc": "Kroglica",
|
||||
"Upper Alpha": "Velike tiskane \u010drke",
|
||||
"Upper Roman": "Velike rimske \u0161tevilke",
|
||||
"Lower Roman": "Male rimske \u0161tevilke",
|
||||
"Name": "Naziv zaznamka",
|
||||
"Anchor": "Zaznamek",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Imate neshranjene spremembe. Ste prepri\u010dati, da \u017eelite zapustiti stran?",
|
||||
"Restore last draft": "Obnovi zadnji osnutek",
|
||||
"Special character": "Posebni znaki",
|
||||
"Source code": "Izvorna koda",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Barva",
|
||||
"Right to left": "Od desne proti levi",
|
||||
"Left to right": "Od leve proti desni",
|
||||
"Emoticons": "Sme\u0161ki",
|
||||
"Robots": "Robotki",
|
||||
"Document properties": "Lastnosti dokumenta",
|
||||
"Title": "Naslov",
|
||||
"Keywords": "Klju\u010dne besede",
|
||||
"Encoding": "Kodiranje",
|
||||
"Description": "Opis",
|
||||
"Author": "Avtor",
|
||||
"Fullscreen": "\u010cez cel zaslon",
|
||||
"Horizontal line": "Vodoravna \u010drta",
|
||||
"Horizontal space": "Vodoravni prostor",
|
||||
"Insert\/edit image": "Vstavi\/uredi sliko",
|
||||
"General": "Splo\u0161no",
|
||||
"Advanced": "Napredno",
|
||||
"Source": "Pot",
|
||||
"Border": "Obroba",
|
||||
"Constrain proportions": "Obdr\u017ei razmerje",
|
||||
"Vertical space": "Navpi\u010dni prostor",
|
||||
"Image description": "Opis slike",
|
||||
"Style": "Slog",
|
||||
"Dimensions": "Dimenzije",
|
||||
"Insert image": "Vnesi sliko",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "Vstavi datum\/\u010das",
|
||||
"Remove link": "Odstrani povezavo",
|
||||
"Url": "Povezava",
|
||||
"Text to display": "Prikazno besedilo",
|
||||
"Anchors": "Sidra",
|
||||
"Insert link": "Vstavi povezavo",
|
||||
"New window": "Novo okno",
|
||||
"None": "Brez",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Vne\u0161eni URL predstavlja zunanjo povezavo. Ali \u017eelite dodati \"http:\/\/\" predpono?",
|
||||
"Target": "Cilj",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Vne\u0161eni URL predstavlja e-po\u0161tni naslov. Ali \u017eelite dodati potrebno \"mailto:\" predpono?",
|
||||
"Insert\/edit link": "Vstavi\/uredi povezavo",
|
||||
"Insert\/edit video": "Vstavi\/uredi video",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Nadomestni vir",
|
||||
"Paste your embed code below:": "Prilepite kodo za vdelavo:",
|
||||
"Insert video": "Vstavi video",
|
||||
"Embed": "Vdelaj",
|
||||
"Nonbreaking space": "Nedeljivi presledek",
|
||||
"Page break": "Prelom strani",
|
||||
"Paste as text": "Vnesi kot besedilo",
|
||||
"Preview": "Predogled",
|
||||
"Print": "Natisni",
|
||||
"Save": "Shrani",
|
||||
"Could not find the specified string.": "Iskanje ni vrnilo rezultatov.",
|
||||
"Replace": "Zamenjaj",
|
||||
"Next": "Naprej",
|
||||
"Whole words": "Cele besede",
|
||||
"Find and replace": "Poi\u0161\u010di in zamenjaj",
|
||||
"Replace with": "Zamenjaj z",
|
||||
"Find": "I\u0161\u010di",
|
||||
"Replace all": "Zamenjaj vse",
|
||||
"Match case": "Ujemanje malih in velikih \u010drk",
|
||||
"Prev": "Nazaj",
|
||||
"Spellcheck": "Preverjanje \u010drkovanja",
|
||||
"Finish": "Zaklju\u010di",
|
||||
"Ignore all": "Prezri vse",
|
||||
"Ignore": "Prezri",
|
||||
"Add to Dictionary": "Dodaj v slovar",
|
||||
"Insert row before": "Vstavi vrstico pred",
|
||||
"Rows": "Vrstice",
|
||||
"Height": "Vi\u0161ina",
|
||||
"Paste row after": "Prilepi vrstico za",
|
||||
"Alignment": "Poravnava",
|
||||
"Border color": "Barva obrobe",
|
||||
"Column group": "Grupiranje stolpcev",
|
||||
"Row": "Vrstica",
|
||||
"Insert column before": "Vstavi stolpec pred",
|
||||
"Split cell": "Razdeli celico",
|
||||
"Cell padding": "Polnilo med celicami",
|
||||
"Cell spacing": "Razmik med celicami",
|
||||
"Row type": "Tip vrstice",
|
||||
"Insert table": "Vstavi tabelo",
|
||||
"Body": "Vsebina",
|
||||
"Caption": "Naslov",
|
||||
"Footer": "Noga",
|
||||
"Delete row": "Izbri\u0161i vrstico",
|
||||
"Paste row before": "Prilepi vrstico pred",
|
||||
"Scope": "Obseg",
|
||||
"Delete table": "Izbri\u0161i tabelo",
|
||||
"H Align": "Horizontalna poravnava",
|
||||
"Top": "Vrh",
|
||||
"Header cell": "Celica glave",
|
||||
"Column": "Stolpec",
|
||||
"Row group": "Grupiranje vrstic",
|
||||
"Cell": "Celica",
|
||||
"Middle": "Sredina",
|
||||
"Cell type": "Tip celice",
|
||||
"Copy row": "Kopiraj vrstico",
|
||||
"Row properties": "Lastnosti vrstice",
|
||||
"Table properties": "Lastnosti tabele",
|
||||
"Bottom": "Dno",
|
||||
"V Align": "Vertikalna poravnava",
|
||||
"Header": "Glava",
|
||||
"Right": "Desno",
|
||||
"Insert column after": "Vstavi stolpec za",
|
||||
"Cols": "Stolpci",
|
||||
"Insert row after": "Vstavi vrstico za",
|
||||
"Width": "\u0160irina",
|
||||
"Cell properties": "Lastnosti celice",
|
||||
"Left": "Levo",
|
||||
"Cut row": "Izre\u017ei vrstico",
|
||||
"Delete column": "Izbri\u0161i stolpec",
|
||||
"Center": "Sredinsko",
|
||||
"Merge cells": "Zdru\u017ei celice",
|
||||
"Insert template": "Vstavi predlogo",
|
||||
"Templates": "Predloge",
|
||||
"Background color": "Barva ozadja",
|
||||
"Custom...": "Po meri ...",
|
||||
"Custom color": "Barva po meri",
|
||||
"No color": "Brezbarvno",
|
||||
"Text color": "Barva besedila",
|
||||
"Show blocks": "Prika\u017ei bloke",
|
||||
"Show invisible characters": "Prika\u017ei skrite znake",
|
||||
"Words: {0}": "Besed: {0}",
|
||||
"Insert": "Vstavi",
|
||||
"File": "Datoteka",
|
||||
"Edit": "Uredi",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Bogato besedilo. Pritisnite ALT-F9 za meni. Pritisnite ALT-F10 za orodno vrstico. Pritisnite ALT-0 za pomo\u010d",
|
||||
"Tools": "Orodja",
|
||||
"View": "Pogled",
|
||||
"Table": "Tabela",
|
||||
"Format": "Oblika"
|
||||
});
|
||||
230
data/web/rc/program/js/tinymce/langs/sv_SE.js
Normal file
230
data/web/rc/program/js/tinymce/langs/sv_SE.js
Normal file
@@ -0,0 +1,230 @@
|
||||
tinymce.addI18n('sv_SE',{
|
||||
"Cut": "Klipp ut",
|
||||
"Heading 5": "Rubrik 5",
|
||||
"Header 2": "Rubrik 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Din browser st\u00f6djer inte direkt \u00e5tkomst till klippboken. V\u00e4nligen anv\u00e4nd kortkommandona Ctrl+X\/C\/V i st\u00e4llet.",
|
||||
"Heading 4": "Rubrik 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Rubrik 2",
|
||||
"Paste": "Klistra in",
|
||||
"Close": "St\u00e4ng",
|
||||
"Font Family": "Teckensnitt",
|
||||
"Pre": "F\u00f6rformaterad",
|
||||
"Align right": "H\u00f6gerst\u00e4ll",
|
||||
"New document": "Nytt dokument",
|
||||
"Blockquote": "Blockcitat",
|
||||
"Numbered list": "Nummerlista",
|
||||
"Heading 1": "Rubrik 1",
|
||||
"Headings": "Rubriker",
|
||||
"Increase indent": "\u00d6ka indrag",
|
||||
"Formats": "Format",
|
||||
"Headers": "Rubriker",
|
||||
"Select all": "Markera allt",
|
||||
"Header 3": "Rubrik 3",
|
||||
"Blocks": "Block",
|
||||
"Undo": "\u00c5ngra",
|
||||
"Strikethrough": "Genomstruken",
|
||||
"Bullet list": "Punktlista",
|
||||
"Header 1": "Rubrik 1",
|
||||
"Superscript": "Upph\u00f6jd text",
|
||||
"Clear formatting": "Avformatera",
|
||||
"Font Sizes": "Storlek",
|
||||
"Subscript": "Neds\u00e4nkt text",
|
||||
"Header 6": "Rubrik 6",
|
||||
"Redo": "G\u00f6r om",
|
||||
"Paragraph": "Br\u00f6dtext",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Fetstil",
|
||||
"Code": "Kod",
|
||||
"Italic": "Kursiv stil",
|
||||
"Align center": "Centrera",
|
||||
"Header 5": "Rubrik 5",
|
||||
"Heading 6": "Rubrik 6",
|
||||
"Heading 3": "Rubrik 3",
|
||||
"Decrease indent": "Minska indrag",
|
||||
"Header 4": "Rubrik 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Klistra in \u00e4r nu i textl\u00e4ge. Inneh\u00e5ll kommer att konverteras till text tills du sl\u00e5r av detta l\u00e4ge.",
|
||||
"Underline": "Understruken",
|
||||
"Cancel": "Avbryt",
|
||||
"Justify": "Justera",
|
||||
"Inline": "Inline",
|
||||
"Copy": "Kopiera",
|
||||
"Align left": "V\u00e4nsterst\u00e4ll",
|
||||
"Visual aids": "Visuella hj\u00e4lpmedel",
|
||||
"Lower Greek": "Grekiska gemener",
|
||||
"Square": "Fyrkant",
|
||||
"Default": "Original",
|
||||
"Lower Alpha": "Gemener",
|
||||
"Circle": "Cirkel",
|
||||
"Disc": "Disk",
|
||||
"Upper Alpha": "Versaler",
|
||||
"Upper Roman": "Romerska versaler",
|
||||
"Lower Roman": "Romerska gemener",
|
||||
"Name": "Namn",
|
||||
"Anchor": "Ankare",
|
||||
"Id": "Id",
|
||||
"Id needs to be starting with a letter and be followed by letters, numbers, dashes, dots, colons or underscores.": "Id m\u00e5ste b\u00f6rja med en bokstav och f\u00f6ljande tecken kan vara bokst\u00e4ver, nummer, punkter, understr\u00e4ck eller kolon.",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Du har f\u00f6r\u00e4ndringar som du inte har sparat. \u00c4r du s\u00e4ker p\u00e5 att du vill navigera vidare?",
|
||||
"Restore last draft": "\u00c5terst\u00e4ll senaste utkast",
|
||||
"Special character": "Specialtecken",
|
||||
"Source code": "K\u00e4llkod",
|
||||
"Language": "Spr\u00e5k",
|
||||
"Insert\/Edit code sample": "Infoga\/Redigera k\u00e5d exempel",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "F\u00e4rg",
|
||||
"Right to left": "H\u00f6ger till v\u00e4nster",
|
||||
"Left to right": "V\u00e4nster till h\u00f6ger",
|
||||
"Emoticons": "Emoticons",
|
||||
"Robots": "Robotar",
|
||||
"Document properties": "Dokumentegenskaper",
|
||||
"Title": "Titel",
|
||||
"Keywords": "Nyckelord",
|
||||
"Encoding": "Encoding",
|
||||
"Description": "Beskrivning",
|
||||
"Author": "F\u00f6rfattare",
|
||||
"Fullscreen": "Fullsk\u00e4rm",
|
||||
"Horizontal line": "Horisontell linje",
|
||||
"Horizontal space": "Horisontellt utrymme",
|
||||
"Insert\/edit image": "Infoga\/redigera bild",
|
||||
"General": "Generella",
|
||||
"Advanced": "Avancerat",
|
||||
"Source": "K\u00e4lla",
|
||||
"Border": "Ram",
|
||||
"Constrain proportions": "Begr\u00e4nsa proportioner",
|
||||
"Vertical space": "Vertikaltutrymme",
|
||||
"Image description": "Bildbeskrivning",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Dimensioner",
|
||||
"Insert image": "Infoga bild",
|
||||
"Image": "Bild",
|
||||
"Zoom in": "Zooma in",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Tillbaka",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Spegelv\u00e4nd horisontellt",
|
||||
"Resize": "Skala om",
|
||||
"Sharpen": "Sk\u00e4rpa",
|
||||
"Zoom out": "Zooma ut",
|
||||
"Image options": "Bild inst\u00e4llningar",
|
||||
"Apply": "Applicera",
|
||||
"Brightness": "Ljusstyrka",
|
||||
"Rotate clockwise": "Rotera medurs",
|
||||
"Rotate counterclockwise": "Rotera moturs",
|
||||
"Edit image": "Redigera bild",
|
||||
"Color levels": "F\u00e4rgniv\u00e5er",
|
||||
"Crop": "Besk\u00e4r",
|
||||
"Orientation": "Orientera",
|
||||
"Flip vertically": "Spegelv\u00e4nd vertikalt",
|
||||
"Invert": "Invertera",
|
||||
"Date\/time": "Datum\/tid",
|
||||
"Insert date\/time": "Infoga datum\/tid",
|
||||
"Remove link": "Ta bort l\u00e4nk",
|
||||
"Url": "Url",
|
||||
"Text to display": "Text att visa",
|
||||
"Anchors": "Bokm\u00e4rken",
|
||||
"Insert link": "Infoga l\u00e4nk",
|
||||
"Link": "L\u00e4nk",
|
||||
"New window": "Nytt f\u00f6nster",
|
||||
"None": "Ingen",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Urlen du angav verkar vara en extern l\u00e4nk. Vill du l\u00e4gga till http:\/\/ prefixet?",
|
||||
"Paste or type a link": "Klistra in eller skriv en l\u00e4nk",
|
||||
"Target": "M\u00e5l",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Urlen du angav verkar vara en epost adress. Vill du l\u00e4gga till ett mailto: prefix?",
|
||||
"Insert\/edit link": "Infoga\/redigera l\u00e4nk",
|
||||
"Insert\/edit video": "Infoga\/redigera video",
|
||||
"Media": "Media",
|
||||
"Alternative source": "Alternativ k\u00e4lla",
|
||||
"Paste your embed code below:": "Klistra in din inb\u00e4ddningskod nedan:",
|
||||
"Insert video": "Infoga video",
|
||||
"Poster": "Affish",
|
||||
"Insert\/edit media": "Infoga\/redigera media",
|
||||
"Embed": "Inb\u00e4ddning",
|
||||
"Nonbreaking space": "Avbrottsfritt mellanrum",
|
||||
"Page break": "Sydbrytning",
|
||||
"Paste as text": "Klistra in som text",
|
||||
"Preview": "F\u00f6rhandsgranska",
|
||||
"Print": "Skriv ut",
|
||||
"Save": "Spara",
|
||||
"Could not find the specified string.": "Kunde inte hitta den specifierade st\u00e4ngen.",
|
||||
"Replace": "Ers\u00e4tt",
|
||||
"Next": "N\u00e4sta",
|
||||
"Whole words": "Hela ord",
|
||||
"Find and replace": "S\u00f6k och ers\u00e4tt",
|
||||
"Replace with": "Ers\u00e4tt med",
|
||||
"Find": "S\u00f6k",
|
||||
"Replace all": "Ers\u00e4tt alla",
|
||||
"Match case": "Matcha gemener\/versaler",
|
||||
"Prev": "F\u00f6reg\u00e5ende",
|
||||
"Spellcheck": "R\u00e4ttstava",
|
||||
"Finish": "Avsluta",
|
||||
"Ignore all": "Ignorera alla",
|
||||
"Ignore": "Ignorera",
|
||||
"Add to Dictionary": "L\u00e4gg till i ordlista",
|
||||
"Insert row before": "Infoga rad f\u00f6re",
|
||||
"Rows": "Rader",
|
||||
"Height": "H\u00f6jd",
|
||||
"Paste row after": "Klistra in rad efter",
|
||||
"Alignment": "Justering",
|
||||
"Border color": "Ramf\u00e4rg",
|
||||
"Column group": "Kolumngrupp",
|
||||
"Row": "Rad",
|
||||
"Insert column before": "Infoga kolumn f\u00f6re",
|
||||
"Split cell": "Bryt is\u00e4r celler",
|
||||
"Cell padding": "Cellpaddning",
|
||||
"Cell spacing": "Cellmellanrum",
|
||||
"Row type": "Radtyp",
|
||||
"Insert table": "Infoga tabell",
|
||||
"Body": "Kropp",
|
||||
"Caption": "Rubrik",
|
||||
"Footer": "Fot",
|
||||
"Delete row": "Radera rad",
|
||||
"Paste row before": "Klista in rad f\u00f6re",
|
||||
"Scope": "Omf\u00e5ng",
|
||||
"Delete table": "Radera tabell",
|
||||
"H Align": "H-justering",
|
||||
"Top": "Toppen",
|
||||
"Header cell": "Huvudcell",
|
||||
"Column": "Kolumn",
|
||||
"Row group": "Radgrupp",
|
||||
"Cell": "Cell",
|
||||
"Middle": "Mitten",
|
||||
"Cell type": "Celltyp",
|
||||
"Copy row": "Kopiera rad",
|
||||
"Row properties": "Radegenskaper",
|
||||
"Table properties": "Tabellegenskaper",
|
||||
"Bottom": "Botten",
|
||||
"V Align": "V-justering",
|
||||
"Header": "Huvud",
|
||||
"Right": "H\u00f6ger",
|
||||
"Insert column after": "Infoga kolumn efter",
|
||||
"Cols": "Kolumner",
|
||||
"Insert row after": "Infoga rad efter",
|
||||
"Width": "Bredd",
|
||||
"Cell properties": "Cellegenskaper",
|
||||
"Left": "V\u00e4nster",
|
||||
"Cut row": "Klipp ut rad",
|
||||
"Delete column": "Radera kolumn",
|
||||
"Center": "Centrum",
|
||||
"Merge cells": "Sammanfoga celler",
|
||||
"Insert template": "Infoga mall",
|
||||
"Templates": "Mallar",
|
||||
"Background color": "Bakgrundsf\u00e4rg",
|
||||
"Custom...": "Anpassad...",
|
||||
"Custom color": "Anpassad f\u00e4rg",
|
||||
"No color": "Ingen f\u00e4rg",
|
||||
"Text color": "Textf\u00e4rg",
|
||||
"Table of Contents": "Inneh\u00e5llsf\u00f6rtecking",
|
||||
"Show blocks": "Visa block",
|
||||
"Show invisible characters": "Visa onsynliga tecken",
|
||||
"Words: {0}": "Ord: {0}",
|
||||
"Insert": "Infoga",
|
||||
"File": "Fil",
|
||||
"Edit": "Redigera",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textredigerare. Tryck ALT-F9 f\u00f6r menyn. Tryck ALT-F10 f\u00f6r verktygsrader. Tryck ALT-0 f\u00f6r hj\u00e4lp.",
|
||||
"Tools": "Verktyg",
|
||||
"View": "Visa",
|
||||
"Table": "Tabell",
|
||||
"Format": "Format"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ta.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ta.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ta',{
|
||||
"Cut": "\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Heading 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5",
|
||||
"Header 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0ba8\u0b95\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0ba8\u0bc7\u0bb0\u0b9f\u0bbf \u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bc8 \u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb2\u0bbe\u0bb5\u0bbf \u0b86\u0ba4\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0b86\u0b95\u0bb5\u0bc7 \u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bbe\u0ba9 Ctrl+X\/C\/V \u0b87\u0bb5\u0bb1\u0bcd\u0bb1\u0bc8 \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95.",
|
||||
"Heading 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4",
|
||||
"Div": "\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1 (Div)",
|
||||
"Heading 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2",
|
||||
"Paste": "\u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Close": "\u0bae\u0bc2\u0b9f\u0bc1\u0b95",
|
||||
"Font Family": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b95\u0bc1\u0b9f\u0bc1\u0bae\u0bcd\u0baa\u0bae\u0bcd",
|
||||
"Pre": "\u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 (Pre)",
|
||||
"Align right": "\u0bb5\u0bb2\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
|
||||
"New document": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b86\u0bb5\u0ba3\u0bae\u0bcd",
|
||||
"Blockquote": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bcb\u0bb3\u0bcd",
|
||||
"Numbered list": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
|
||||
"Heading 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1",
|
||||
"Headings": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Increase indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b85\u0ba4\u0bbf\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Formats": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Headers": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Select all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
|
||||
"Header 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3",
|
||||
"Blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bcd",
|
||||
"Undo": "\u0bae\u0bc1\u0ba9\u0bcd\u0b9a\u0bc6\u0baf\u0bb2\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
|
||||
"Strikethrough": "\u0ba8\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1",
|
||||
"Bullet list": "\u0baa\u0bca\u0b9f\u0bcd\u0b9f\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
|
||||
"Header 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1",
|
||||
"Superscript": "\u0bae\u0bc7\u0bb2\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Clear formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0bb4\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Font Sizes": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Subscript": "\u0b95\u0bc0\u0bb4\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Header 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6",
|
||||
"Redo": "\u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
|
||||
"Paragraph": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf",
|
||||
"Ok": "\u0b9a\u0bb0\u0bbf",
|
||||
"Bold": "\u0ba4\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Code": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1",
|
||||
"Italic": "\u0b9a\u0bbe\u0baf\u0bcd\u0bb5\u0bc1",
|
||||
"Align center": "\u0bae\u0bc8\u0baf \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
|
||||
"Header 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5",
|
||||
"Heading 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6",
|
||||
"Heading 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3",
|
||||
"Decrease indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95",
|
||||
"Header 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0bb5\u0bb0\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd.",
|
||||
"Underline": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1",
|
||||
"Cancel": "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
|
||||
"Justify": "\u0ba8\u0bc7\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
|
||||
"Inline": "\u0b89\u0bb3\u0bcd\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
|
||||
"Copy": "\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Align left": "\u0b87\u0b9f\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
|
||||
"Visual aids": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Lower Greek": "\u0b95\u0bc0\u0bb4\u0bcd \u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"Square": "\u0b9a\u0ba4\u0bc1\u0bb0\u0bae\u0bcd",
|
||||
"Default": "\u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Lower Alpha": "\u0b95\u0bc0\u0bb4\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
|
||||
"Circle": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bae\u0bcd",
|
||||
"Disc": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Upper Alpha": "\u0bae\u0bc7\u0bb2\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
|
||||
"Upper Roman": "\u0bae\u0bc7\u0bb2\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd",
|
||||
"Lower Roman": "\u0b95\u0bc0\u0bb4\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd",
|
||||
"Name": "\u0baa\u0bc6\u0baf\u0bb0\u0bcd",
|
||||
"Anchor": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba9; \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bbe\u0bb3\u0bbe?",
|
||||
"Restore last draft": "\u0b95\u0b9f\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc0\u0b9f\u0bcd\u0b9f\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Special character": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1",
|
||||
"Source code": "\u0bae\u0bc2\u0bb2 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
|
||||
"Right to left": "\u0bb5\u0bb2\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0b9f\u0bae\u0bcd",
|
||||
"Left to right": "\u0b87\u0b9f\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb2\u0bae\u0bcd",
|
||||
"Emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Robots": "\u0baa\u0bca\u0bb1\u0bbf\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd (Robots)",
|
||||
"Document properties": "\u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Title": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Keywords": "\u0bae\u0bc1\u0ba4\u0ba9\u0bcd\u0bae\u0bc8\u0b9a\u0bcd\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Encoding": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"Description": "\u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
|
||||
"Author": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0bb3\u0bb0\u0bcd",
|
||||
"Fullscreen": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8",
|
||||
"Horizontal line": "\u0b95\u0bbf\u0b9f\u0bc8 \u0b95\u0bcb\u0b9f\u0bc1",
|
||||
"Horizontal space": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
|
||||
"Insert\/edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"General": "\u0baa\u0bca\u0ba4\u0bc1",
|
||||
"Advanced": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1",
|
||||
"Source": "\u0bae\u0bc2\u0bb2\u0bae\u0bcd",
|
||||
"Border": "\u0b95\u0bb0\u0bc8",
|
||||
"Constrain proportions": "\u0bb5\u0bbf\u0b95\u0bbf\u0ba4\u0bbe\u0b9a\u0bcd\u0b9a\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
|
||||
"Vertical space": "\u0ba8\u0bc6\u0b9f\u0bc1\u0ba4\u0bb3 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
|
||||
"Image description": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
|
||||
"Style": "\u0baa\u0bbe\u0ba3\u0bbf",
|
||||
"Dimensions": "\u0baa\u0bb0\u0bbf\u0bae\u0bbe\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Insert image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Zoom in": "\u0baa\u0bc6\u0bb0\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Contrast": "\u0ba8\u0bbf\u0bb1\u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Back": "\u0baa\u0bbf\u0ba9\u0bcd",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f\u0bae\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Resize": "\u0bae\u0bb1\u0bc1\u0b85\u0bb3\u0bb5\u0bbf\u0b9f\u0bc1",
|
||||
"Sharpen": "\u0b95\u0bc2\u0bb0\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Zoom out": "\u0b9a\u0bbf\u0bb1\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Image options": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Apply": "\u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
|
||||
"Brightness": "\u0b92\u0bb3\u0bbf\u0bb0\u0bcd\u0bb5\u0bc1",
|
||||
"Rotate clockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1",
|
||||
"Rotate counterclockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0 \u0b8e\u0ba4\u0bbf\u0bb0\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1",
|
||||
"Edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba4\u0bca\u0b95\u0bc1",
|
||||
"Color levels": "\u0bb5\u0ba3\u0bcd\u0ba3 \u0ba8\u0bbf\u0bb2\u0bc8\u0b95\u0bb3\u0bcd",
|
||||
"Crop": "\u0b9a\u0bc6\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Orientation": "\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bae\u0bc8\u0bb5\u0bc1",
|
||||
"Flip vertically": "\u0b9a\u0bc6\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Invert": "\u0ba8\u0bc7\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1",
|
||||
"Insert date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Remove link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
|
||||
"Url": "\u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf",
|
||||
"Text to display": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbf\u0baf \u0b89\u0bb0\u0bc8",
|
||||
"Anchors": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Insert link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"New window": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd",
|
||||
"None": "\u0b8f\u0ba4\u0bc1\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 (external link) \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 http:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?",
|
||||
"Target": "\u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bae\u0bbf\u0ba9\u0bcd-\u0b85\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 mailto: \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?",
|
||||
"Insert\/edit link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Insert\/edit video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Poster": "\u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf",
|
||||
"Alternative source": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2\u0bae\u0bcd",
|
||||
"Paste your embed code below:": "\u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bc6\u0bbe\u0ba4\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0bc0\u0bb4\u0bc7 \u0b92\u0b9f\u0bcd\u0b9f\u0bb5\u0bc1\u0bae\u0bcd:",
|
||||
"Insert video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Embed": "\u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf",
|
||||
"Nonbreaking space": "\u0baa\u0bbf\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
|
||||
"Page break": "\u0baa\u0b95\u0bcd\u0b95 \u0baa\u0bbf\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Paste as text": "\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Preview": "\u0bae\u0bc1\u0ba9\u0bcd\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Print": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95",
|
||||
"Save": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Could not find the specified string.": "\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bb0\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
|
||||
"Replace": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
|
||||
"Next": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4",
|
||||
"Whole words": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Find and replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
|
||||
"Replace with": "\u0b87\u0ba4\u0ba9\u0bc1\u0b9f\u0ba9\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
|
||||
"Find": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Replace all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
|
||||
"Match case": "\u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bc8 \u0baa\u0bca\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
|
||||
"Prev": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf",
|
||||
"Spellcheck": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
|
||||
"Finish": "\u0bae\u0bc1\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Ignore all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Ignore": "\u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Add to Dictionary": "\u0b85\u0b95\u0bb0\u0bbe\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
|
||||
"Insert row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Rows": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd",
|
||||
"Height": "\u0b89\u0baf\u0bb0\u0bae\u0bcd",
|
||||
"Paste row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1",
|
||||
"Border color": "\u0b95\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
|
||||
"Column group": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1",
|
||||
"Row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
|
||||
"Insert column before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Split cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bc8 \u0baa\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Cell padding": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0ba8\u0bbf\u0bb0\u0baa\u0bcd\u0baa\u0bb2\u0bcd",
|
||||
"Cell spacing": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
|
||||
"Row type": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0b95\u0bc8",
|
||||
"Insert table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Body": "\u0b89\u0b9f\u0bb2\u0bcd",
|
||||
"Caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Footer": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Delete row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
|
||||
"Paste row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Scope": "\u0bb5\u0bb0\u0bc8\u0baf\u0bc6\u0bb2\u0bcd\u0bb2\u0bc8",
|
||||
"Delete table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
|
||||
"H Align": "\u0b95\u0bbf (H) \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
|
||||
"Top": "\u0bae\u0bc7\u0bb2\u0bcd",
|
||||
"Header cell": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8",
|
||||
"Column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
|
||||
"Row group": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1",
|
||||
"Cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8",
|
||||
"Middle": "\u0ba8\u0b9f\u0bc1",
|
||||
"Cell type": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0bb5\u0b95\u0bc8",
|
||||
"Copy row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Row properties": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Table properties": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Bottom": "\u0b95\u0bc0\u0bb4\u0bcd",
|
||||
"V Align": "\u0b9a\u0bc6 (V) \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
|
||||
"Header": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Right": "\u0bb5\u0bb2\u0bae\u0bcd",
|
||||
"Insert column after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Cols": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd",
|
||||
"Insert row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Width": "\u0b85\u0b95\u0bb2\u0bae\u0bcd",
|
||||
"Cell properties": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Left": "\u0b87\u0b9f\u0bae\u0bcd",
|
||||
"Cut row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Delete column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
|
||||
"Center": "\u0bae\u0bc8\u0baf\u0bae\u0bcd",
|
||||
"Merge cells": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bc8 \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
|
||||
"Insert template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0bb5\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Templates": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Background color": "\u0baa\u0bbf\u0ba9\u0bcd\u0ba9\u0ba3\u0bbf \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
|
||||
"Custom...": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd...",
|
||||
"Custom color": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
|
||||
"No color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8",
|
||||
"Text color": "\u0b89\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
|
||||
"Show blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Show invisible characters": "\u0b95\u0ba3\u0bcd\u0ba3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Words: {0}": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd: {0}",
|
||||
"Insert": "\u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"File": "\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Edit": "\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-F9 , \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1 ALT-F10 , \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0",
|
||||
"Tools": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd",
|
||||
"View": "\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1\u0b95",
|
||||
"Table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8",
|
||||
"Format": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ta_IN.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ta_IN.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ta_IN',{
|
||||
"Cut": "\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Heading 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5",
|
||||
"Header 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0ba8\u0b95\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0ba8\u0bc7\u0bb0\u0b9f\u0bbf \u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bc8 \u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb2\u0bbe\u0bb5\u0bbf \u0b86\u0ba4\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0b86\u0b95\u0bb5\u0bc7 \u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bbe\u0ba9 Ctrl+X\/C\/V \u0b87\u0bb5\u0bb1\u0bcd\u0bb1\u0bc8 \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95.",
|
||||
"Heading 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4",
|
||||
"Div": "\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1 (Div)",
|
||||
"Heading 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2",
|
||||
"Paste": "\u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Close": "\u0bae\u0bc2\u0b9f\u0bc1\u0b95",
|
||||
"Font Family": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b95\u0bc1\u0b9f\u0bc1\u0bae\u0bcd\u0baa\u0bae\u0bcd",
|
||||
"Pre": "\u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 (Pre)",
|
||||
"Align right": "\u0bb5\u0bb2\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
|
||||
"New document": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b86\u0bb5\u0ba3\u0bae\u0bcd",
|
||||
"Blockquote": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bcb\u0bb3\u0bcd",
|
||||
"Numbered list": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
|
||||
"Heading 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1",
|
||||
"Headings": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Increase indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b85\u0ba4\u0bbf\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Formats": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Headers": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Select all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
|
||||
"Header 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3",
|
||||
"Blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bcd",
|
||||
"Undo": "\u0bae\u0bc1\u0ba9\u0bcd\u0b9a\u0bc6\u0baf\u0bb2\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
|
||||
"Strikethrough": "\u0ba8\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1",
|
||||
"Bullet list": "\u0baa\u0bca\u0b9f\u0bcd\u0b9f\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
|
||||
"Header 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1",
|
||||
"Superscript": "\u0bae\u0bc7\u0bb2\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Clear formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0bb4\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Font Sizes": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Subscript": "\u0b95\u0bc0\u0bb4\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Header 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6",
|
||||
"Redo": "\u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
|
||||
"Paragraph": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf",
|
||||
"Ok": "\u0b9a\u0bb0\u0bbf",
|
||||
"Bold": "\u0ba4\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Code": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1",
|
||||
"Italic": "\u0b9a\u0bbe\u0baf\u0bcd\u0bb5\u0bc1",
|
||||
"Align center": "\u0bae\u0bc8\u0baf \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
|
||||
"Header 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5",
|
||||
"Heading 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6",
|
||||
"Heading 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3",
|
||||
"Decrease indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95",
|
||||
"Header 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0bb5\u0bb0\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd.",
|
||||
"Underline": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1",
|
||||
"Cancel": "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
|
||||
"Justify": "\u0ba8\u0bc7\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
|
||||
"Inline": "\u0b89\u0bb3\u0bcd\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
|
||||
"Copy": "\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Align left": "\u0b87\u0b9f\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
|
||||
"Visual aids": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Lower Greek": "\u0b95\u0bc0\u0bb4\u0bcd \u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"Square": "\u0b9a\u0ba4\u0bc1\u0bb0\u0bae\u0bcd",
|
||||
"Default": "\u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Lower Alpha": "\u0b95\u0bc0\u0bb4\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
|
||||
"Circle": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bae\u0bcd",
|
||||
"Disc": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Upper Alpha": "\u0bae\u0bc7\u0bb2\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
|
||||
"Upper Roman": "\u0bae\u0bc7\u0bb2\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd",
|
||||
"Lower Roman": "\u0b95\u0bc0\u0bb4\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd",
|
||||
"Name": "\u0baa\u0bc6\u0baf\u0bb0\u0bcd",
|
||||
"Anchor": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba9; \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bbe\u0bb3\u0bbe?",
|
||||
"Restore last draft": "\u0b95\u0b9f\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc0\u0b9f\u0bcd\u0b9f\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Special character": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1",
|
||||
"Source code": "\u0bae\u0bc2\u0bb2 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
|
||||
"Right to left": "\u0bb5\u0bb2\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0b9f\u0bae\u0bcd",
|
||||
"Left to right": "\u0b87\u0b9f\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb2\u0bae\u0bcd",
|
||||
"Emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Robots": "\u0baa\u0bca\u0bb1\u0bbf\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd (Robots)",
|
||||
"Document properties": "\u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Title": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Keywords": "\u0bae\u0bc1\u0ba4\u0ba9\u0bcd\u0bae\u0bc8\u0b9a\u0bcd\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Encoding": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
|
||||
"Description": "\u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
|
||||
"Author": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0bb3\u0bb0\u0bcd",
|
||||
"Fullscreen": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8",
|
||||
"Horizontal line": "\u0b95\u0bbf\u0b9f\u0bc8 \u0b95\u0bcb\u0b9f\u0bc1",
|
||||
"Horizontal space": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
|
||||
"Insert\/edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"General": "\u0baa\u0bca\u0ba4\u0bc1",
|
||||
"Advanced": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1",
|
||||
"Source": "\u0bae\u0bc2\u0bb2\u0bae\u0bcd",
|
||||
"Border": "\u0b95\u0bb0\u0bc8",
|
||||
"Constrain proportions": "\u0bb5\u0bbf\u0b95\u0bbf\u0ba4\u0bbe\u0b9a\u0bcd\u0b9a\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
|
||||
"Vertical space": "\u0ba8\u0bc6\u0b9f\u0bc1\u0ba4\u0bb3 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
|
||||
"Image description": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
|
||||
"Style": "\u0baa\u0bbe\u0ba3\u0bbf",
|
||||
"Dimensions": "\u0baa\u0bb0\u0bbf\u0bae\u0bbe\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Insert image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Zoom in": "\u0baa\u0bc6\u0bb0\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Contrast": "\u0ba8\u0bbf\u0bb1\u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1",
|
||||
"Back": "\u0baa\u0bbf\u0ba9\u0bcd",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f\u0bae\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Resize": "\u0bae\u0bb1\u0bc1\u0b85\u0bb3\u0bb5\u0bbf\u0b9f\u0bc1",
|
||||
"Sharpen": "\u0b95\u0bc2\u0bb0\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Zoom out": "\u0b9a\u0bbf\u0bb1\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Image options": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Apply": "\u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
|
||||
"Brightness": "\u0b92\u0bb3\u0bbf\u0bb0\u0bcd\u0bb5\u0bc1",
|
||||
"Rotate clockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1",
|
||||
"Rotate counterclockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0 \u0b8e\u0ba4\u0bbf\u0bb0\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1",
|
||||
"Edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba4\u0bca\u0b95\u0bc1",
|
||||
"Color levels": "\u0bb5\u0ba3\u0bcd\u0ba3 \u0ba8\u0bbf\u0bb2\u0bc8\u0b95\u0bb3\u0bcd",
|
||||
"Crop": "\u0b9a\u0bc6\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Orientation": "\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bae\u0bc8\u0bb5\u0bc1",
|
||||
"Flip vertically": "\u0b9a\u0bc6\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1",
|
||||
"Invert": "\u0ba8\u0bc7\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1",
|
||||
"Insert date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Remove link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
|
||||
"Url": "\u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf",
|
||||
"Text to display": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbf\u0baf \u0b89\u0bb0\u0bc8",
|
||||
"Anchors": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Insert link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"New window": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd",
|
||||
"None": "\u0b8f\u0ba4\u0bc1\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 (external link) \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 http:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?",
|
||||
"Target": "\u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bae\u0bbf\u0ba9\u0bcd-\u0b85\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 mailto: \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?",
|
||||
"Insert\/edit link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Insert\/edit video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Poster": "\u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf",
|
||||
"Alternative source": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2\u0bae\u0bcd",
|
||||
"Paste your embed code below:": "\u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bc6\u0bbe\u0ba4\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0bc0\u0bb4\u0bc7 \u0b92\u0b9f\u0bcd\u0b9f\u0bb5\u0bc1\u0bae\u0bcd:",
|
||||
"Insert video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Embed": "\u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf",
|
||||
"Nonbreaking space": "\u0baa\u0bbf\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
|
||||
"Page break": "\u0baa\u0b95\u0bcd\u0b95 \u0baa\u0bbf\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Paste as text": "\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Preview": "\u0bae\u0bc1\u0ba9\u0bcd\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1",
|
||||
"Print": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95",
|
||||
"Save": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Could not find the specified string.": "\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bb0\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
|
||||
"Replace": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
|
||||
"Next": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4",
|
||||
"Whole words": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Find and replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
|
||||
"Replace with": "\u0b87\u0ba4\u0ba9\u0bc1\u0b9f\u0ba9\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
|
||||
"Find": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Replace all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
|
||||
"Match case": "\u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bc8 \u0baa\u0bca\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
|
||||
"Prev": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf",
|
||||
"Spellcheck": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
|
||||
"Finish": "\u0bae\u0bc1\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Ignore all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Ignore": "\u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Add to Dictionary": "\u0b85\u0b95\u0bb0\u0bbe\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
|
||||
"Insert row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Rows": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd",
|
||||
"Height": "\u0b89\u0baf\u0bb0\u0bae\u0bcd",
|
||||
"Paste row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1",
|
||||
"Border color": "\u0b95\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
|
||||
"Column group": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1",
|
||||
"Row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
|
||||
"Insert column before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Split cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bc8 \u0baa\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95",
|
||||
"Cell padding": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0ba8\u0bbf\u0bb0\u0baa\u0bcd\u0baa\u0bb2\u0bcd",
|
||||
"Cell spacing": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
|
||||
"Row type": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0b95\u0bc8",
|
||||
"Insert table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Body": "\u0b89\u0b9f\u0bb2\u0bcd",
|
||||
"Caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Footer": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Delete row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
|
||||
"Paste row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Scope": "\u0bb5\u0bb0\u0bc8\u0baf\u0bc6\u0bb2\u0bcd\u0bb2\u0bc8",
|
||||
"Delete table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
|
||||
"H Align": "\u0b95\u0bbf (H) \u0b87\u0b9a\u0bc8\u0bb5\u0bc1",
|
||||
"Top": "\u0bae\u0bc7\u0bb2\u0bcd",
|
||||
"Header cell": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8",
|
||||
"Column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
|
||||
"Row group": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1",
|
||||
"Cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8",
|
||||
"Middle": "\u0ba8\u0b9f\u0bc1",
|
||||
"Cell type": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0bb5\u0b95\u0bc8",
|
||||
"Copy row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Row properties": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Table properties": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Bottom": "\u0bae\u0bc7\u0bb2\u0bcd",
|
||||
"V Align": "\u0b9a\u0bc6 (V) \u0b87\u0b9a\u0bc8\u0bb5\u0bc1",
|
||||
"Header": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Right": "\u0bb5\u0bb2\u0bae\u0bcd",
|
||||
"Insert column after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Cols": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd",
|
||||
"Insert row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Width": "\u0b85\u0b95\u0bb2\u0bae\u0bcd",
|
||||
"Cell properties": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
|
||||
"Left": "\u0b87\u0b9f\u0bae\u0bcd",
|
||||
"Cut row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Delete column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
|
||||
"Center": "\u0bae\u0bc8\u0baf\u0bae\u0bcd",
|
||||
"Merge cells": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bc8 \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
|
||||
"Insert template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0bb5\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"Templates": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
|
||||
"Background color": "\u0baa\u0bbf\u0ba9\u0bcd\u0ba9\u0ba3\u0bbf \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
|
||||
"Custom...": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd...",
|
||||
"Custom color": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
|
||||
"No color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8",
|
||||
"Text color": "\u0b89\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
|
||||
"Show blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Show invisible characters": "\u0b95\u0ba3\u0bcd\u0ba3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
|
||||
"Words: {0}": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd: {0}",
|
||||
"Insert": "\u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
|
||||
"File": "\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1",
|
||||
"Edit": "\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-F9 , \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1 ALT-F10 , \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0",
|
||||
"Tools": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd",
|
||||
"View": "\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1\u0b95",
|
||||
"Table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8",
|
||||
"Format": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/tg.js
Normal file
219
data/web/rc/program/js/tinymce/langs/tg.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('tg',{
|
||||
"Cut": "\u0411\u0443\u0440\u0438\u0434\u0430\u043d",
|
||||
"Heading 5": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 5",
|
||||
"Header 2": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0411\u0430\u0440\u0438 \u0448\u0443\u0441\u0445\u0430\u0431\u0430\u0440\u0434\u043e\u0440\u0438 \u043a\u0430\u0440\u0434\u0430\u043d Ctrl+X\/C\/V \u0438\u0441\u0442\u0438\u0444\u043e\u0434\u0430 \u043a\u0443\u043d\u0435\u0434",
|
||||
"Heading 4": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 2",
|
||||
"Paste": "\u0413\u0443\u0437\u043e\u0448\u0442\u0430\u043d",
|
||||
"Close": "\u041c\u0430\u04b3\u043a\u0430\u043c \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u0420\u043e\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d \u0430\u0437 \u0440\u043e\u0441\u0442",
|
||||
"New document": "\u04b2\u0443\u04b7\u04b7\u0430\u0442\u0438 \u043d\u0430\u0432",
|
||||
"Blockquote": "\u041d\u043e\u0445\u0443\u043d\u0430\u043a",
|
||||
"Numbered list": "\u0420\u0443\u0439\u0445\u0430\u0442\u0438 \u0431\u043e \u0442\u0430\u0440\u0442\u0438\u0431",
|
||||
"Heading 1": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 1",
|
||||
"Headings": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u04b3\u043e",
|
||||
"Increase indent": "\u0410\u0431\u0437\u0430\u0441\u0442\u0440\u043e \u0432\u0430\u0441\u0435\u044a \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Formats": "\u0424\u0430\u0440\u043c\u0430\u0442\u04b3\u043e",
|
||||
"Headers": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u04b3\u043e",
|
||||
"Select all": "\u0418\u043d\u0442\u0438\u0445\u043e\u0431\u0438 \u043a\u0443\u043b\u043b\u0438",
|
||||
"Header 3": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 3",
|
||||
"Blocks": "\u0425\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u04e3",
|
||||
"Undo": "\u0411\u043e\u0437 \u0433\u0430\u0440\u0434\u043e\u043d\u0438\u0434\u0430\u043d",
|
||||
"Strikethrough": "\u0410\u0437 \u043c\u043e\u0431\u0430\u0439\u043d\u0430\u0448 \u0445\u0430\u0442 \u043a\u0430\u0448\u0438\u0434\u0430\u043d",
|
||||
"Bullet list": "\u0420\u0443\u0439\u0445\u0430\u0442\u0438 \u0431\u0435 \u0442\u0430\u0440\u0442\u0438\u0431",
|
||||
"Header 1": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 1",
|
||||
"Superscript": "\u0410\u0437 \u0445\u0430\u0442 \u0431\u043e\u043b\u043e\u0442\u0430\u0440",
|
||||
"Clear formatting": "\u0424\u043e\u0440\u043c\u0430\u0442\u04b3\u043e\u0440\u043e \u0431\u0435\u043a\u043e\u0440 \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Font Sizes": "\u04b2\u0430\u04b7\u043c\u0438 \u0448\u0440\u0438\u0444\u0442",
|
||||
"Subscript": "\u0410\u0437 \u0445\u0430\u0442 \u043f\u043e\u0451\u043d\u0442\u0430\u0440",
|
||||
"Header 6": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 6",
|
||||
"Redo": "\u0411\u0435\u043a\u043e\u0440 \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Paragraph": "\u0410\u0431\u0437\u0430\u0441\u0442",
|
||||
"Ok": "\u041e\u043a",
|
||||
"Bold": "\u0492\u0430\u0444\u0441",
|
||||
"Code": "Code",
|
||||
"Italic": "\u0418\u0442\u0430\u043b\u0438\u043a",
|
||||
"Align center": "\u0420\u043e\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d \u0430\u0437 \u043c\u043e\u0431\u0430\u0439\u043d",
|
||||
"Header 5": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 5",
|
||||
"Heading 6": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 6",
|
||||
"Heading 3": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 3",
|
||||
"Decrease indent": "\u0410\u0431\u0437\u0430\u0441\u0442\u0440\u043e \u0445\u0443\u0440\u0434 \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Header 4": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430\u0438 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0422\u043e \u043e\u043d \u0437\u0430\u043c\u043e\u043d\u0435, \u043a\u0438 \u0438\u043d \u0445\u043e\u043c\u0443\u0448 \u0430\u0441\u0442, \u04b3\u0430\u043c\u0447\u0443\u043d \u043c\u0430\u043d\u0442 \u0432\u043e\u0440\u0438\u0434 \u043a\u0443\u043d\u0435\u0434.",
|
||||
"Underline": "\u0414\u0430\u0440 \u0442\u0430\u0433\u0430\u0448 \u0445\u0430\u0442 \u043a\u0430\u0448\u0438\u0434\u0430\u043d",
|
||||
"Cancel": "\u0411\u0435\u043a\u043e\u0440 \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Justify": "\u0410\u0437 \u04b3\u0430\u0440 \u0434\u0443 \u0442\u0430\u0440\u0430\u0444 \u0440\u043e\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Inline": "\u0414\u0430\u0440 \u044f\u043a \u0445\u0430\u0442",
|
||||
"Copy": "\u041d\u0443\u0441\u0445\u0430\u0431\u043e\u0440\u0434\u043e\u043d\u0438 \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Align left": "\u0420\u043e\u0441 \u043a\u0430\u0440\u0434\u0430\u043d \u0430\u0437 \u0447\u0430\u043f",
|
||||
"Visual aids": "\u041a\u0443\u043c\u043c\u0430\u043a\u0438 \u0430\u0451\u043d\u04e3",
|
||||
"Lower Greek": "\u0425\u0443\u0440\u0434\u0438 \u042e\u043d\u043e\u043d\u04e3",
|
||||
"Square": "\u0427\u043e\u0440\u043a\u0443\u043d\u04b7\u0430",
|
||||
"Default": "\u0411\u043e \u0442\u0430\u0440\u0437\u0438 \u0445\u043e\u043c\u0443\u0448\u04e3",
|
||||
"Lower Alpha": "\u0425\u0443\u0440\u0434\u0438 \u044e\u043d\u043e\u043d\u04e3",
|
||||
"Circle": "\u0414\u043e\u0438\u0440\u0430",
|
||||
"Disc": "\u0414\u0438\u0441\u043a",
|
||||
"Upper Alpha": "\u041a\u0430\u043b\u043e\u043d\u0438 \u044e\u043d\u043e\u043d\u04e3",
|
||||
"Upper Roman": "\u041a\u0430\u043b\u043e\u043d\u0438 \u0440\u043e\u043c\u0430\u043d\u04e3",
|
||||
"Lower Roman": "\u0425\u0443\u0440\u0434\u0438 \u0440\u043e\u043c\u0430\u043d\u04e3",
|
||||
"Name": "\u041d\u043e\u043c",
|
||||
"Anchor": "\u041b\u0430\u043d\u0433\u0430\u0440",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0422\u0430\u0493\u0438\u0440\u043e\u0442\u04b3\u043e\u0438 \u043a\u0430\u0440\u0434\u0430\u0430\u0442\u043e\u043d\u0440\u043e \u0442\u043e \u04b3\u043e\u043b \u043d\u0438\u0433\u043e\u04b3 \u043d\u0430\u0434\u043e\u0448\u0442\u0430\u0435\u0434!\n\u041e\u0451 \u0448\u0443\u043c\u043e \u0434\u0430\u0440 \u04b3\u0430\u049b\u0438\u049b\u0430\u0442 \u043c\u0435\u0445\u043e\u04b3\u0435\u0434 \u043a\u0438 \u0431\u0430 \u0434\u0438\u0433\u0430\u0440 \u049b\u0438\u0441\u043c \u0433\u0443\u0437\u0430\u0440\u0435\u0434?",
|
||||
"Restore last draft": "\u0422\u0430\u0493\u0438\u0440\u043e\u0442\u04b3\u043e\u0438 \u043e\u0445\u0438\u0440\u0438\u043d\u0440\u043e \u0431\u0435\u043a\u043e\u0440 \u043a\u0443\u043d",
|
||||
"Special character": "\u0420\u0430\u043c\u0437\u04b3\u043e\u0438 \u043c\u0430\u0445\u0441\u0443\u0441",
|
||||
"Source code": "\u041a\u043e\u0434\u0438 \u0430\u0441\u043b\u0438",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0420\u0430\u043d\u0433",
|
||||
"Right to left": "\u0410\u0437 \u0440\u043e\u0441\u0442 \u0431\u0430 \u0447\u0430\u043f",
|
||||
"Left to right": "\u0410\u0437 \u0447\u0430\u043f \u0431\u0430 \u0440\u043e\u0441\u0442",
|
||||
"Emoticons": "\u042d\u04b3\u0441\u043e\u0441\u04b3\u043e",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "\u04b2\u043e\u043b\u0430\u0442\u0438 \u04b3\u0443\u04b7\u04b7\u0430\u0442",
|
||||
"Title": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430",
|
||||
"Keywords": "\u041a\u0430\u043b\u0438\u043c\u0430\u04b3\u043e\u0438 \u043c\u0443\u0442\u0430\u043d\u043e\u0441\u0438\u0431",
|
||||
"Encoding": "\u0411\u043e \u0440\u0430\u043c\u0437 \u0433\u0430\u0440\u0434\u043e\u043d\u0438\u0434\u0430\u043d",
|
||||
"Description": "\u041c\u0430\u044a\u043b\u0443\u043c\u043e\u0442\u0438 \u043c\u0443\u0445\u0442\u0430\u0441\u0430\u0440",
|
||||
"Author": "\u041c\u0443\u0430\u043b\u043b\u0438\u0444",
|
||||
"Fullscreen": "\u041a\u0430\u043b\u043e\u043d \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Horizontal line": "\u0425\u0430\u0442\u0438 \u0443\u0444\u0443\u049b\u04e3",
|
||||
"Horizontal space": "\u0424\u043e\u0441\u0438\u043b\u0430\u0438 \u0443\u0444\u0443\u049b\u04e3",
|
||||
"Insert\/edit image": "\u0412\u043e\u0440\u0438\u0434\/\u0422\u0430\u0493\u0438\u0440\u0438 \u0440\u0430\u0441\u043c",
|
||||
"General": "\u041e\u0434\u0434\u0438",
|
||||
"Advanced": "\u041c\u0443\u0442\u0430\u0440\u0430\u049b\u0438",
|
||||
"Source": "\u041c\u0430\u043a\u043e\u043d\u0438 \u0430\u0441\u043e\u0441\u04e3",
|
||||
"Border": "\u04b2\u0443\u0434\u0443\u0434",
|
||||
"Constrain proportions": "\u0427\u0435\u043d\u0430\u043a\u04b3\u043e\u0438 \u043c\u0430\u04b7\u0431\u0443\u0440\u0438",
|
||||
"Vertical space": "\u0424\u043e\u0441\u0438\u043b\u0430\u0438 \u0430\u043c\u0443\u0434\u04e3",
|
||||
"Image description": "\u041c\u0430\u044a\u043b\u0443\u043c\u043e\u0442\u0438 \u043c\u0443\u0445\u0442\u0430\u0441\u0430\u0440",
|
||||
"Style": "\u0421\u0442\u0438\u043b",
|
||||
"Dimensions": "\u0427\u0435\u043d\u0430\u043a\u04b3\u043e",
|
||||
"Insert image": "\u0420\u0430\u0441\u043c \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "\u0412\u043e\u0440\u0438\u0434\u0438 \u0420\u04ef\u0437\/\u0421\u043e\u0430\u0442",
|
||||
"Remove link": "\u041d\u0435\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d\u0438 \u0438\u0441\u0442\u0438\u043d\u043e\u0434",
|
||||
"Url": "Url",
|
||||
"Text to display": "\u041c\u0430\u0442\u043d \u0431\u0430\u0440\u043e\u0438 \u043c\u0430\u043d\u0437\u0443\u0440",
|
||||
"Anchors": "\u041b\u0430\u043d\u0433\u0430\u0440",
|
||||
"Insert link": "\u0418\u0441\u0442\u0438\u043d\u043e\u0434 \u0433\u0443\u0437\u043e\u0448\u0442\u0430\u043d",
|
||||
"New window": "\u0422\u0438\u0440\u0435\u0437\u0430\u0438 \u043d\u0430\u0432",
|
||||
"None": "\u04b2\u0435\u04b7 \u0447\u0438\u0437",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u0435, \u043a\u0438 \u0448\u0443\u043c\u043e \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0435\u0434 \u0438\u0441\u0442\u0438\u043d\u043e\u0434 \u0430\u0441\u0442. \u041f\u0440\u0435\u0444\u0438\u043a\u0441\u0438 http:\/\/: \u0438\u043b\u043e\u0432\u0430 \u043a\u0443\u043d\u0430\u043c?",
|
||||
"Target": "\u041d\u0438\u0448\u043e\u043d\u0430",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u0435, \u043a\u0438 \u0448\u0443\u043c\u043e \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0435\u0434 Email \u0430\u0434\u0440\u0435\u0441 \u0430\u0441\u0442. G\u0440\u0435\u0444\u0438\u043a\u0441\u0438 mailto: \u0438\u043b\u043e\u0432\u0430 \u043a\u0443\u043d\u0430\u043c?",
|
||||
"Insert\/edit link": "\u0412\u043e\u0440\u0438\u0434\/\u0442\u0430\u0493\u0438\u0440 \u0434\u043e\u0434\u0430\u043d\u0438 \u0438\u0441\u0442\u0438\u043d\u043e\u0434",
|
||||
"Insert\/edit video": "\u0412\u043e\u0440\u0438\u0434\/\u0442\u0430\u0493\u0438\u0440\u0438 \u0432\u0438\u0434\u0435\u043e",
|
||||
"Poster": "\u042d\u044a\u043b\u043e\u043d\u043d\u043e\u043c\u0430",
|
||||
"Alternative source": "\u0421\u0430\u0440\u0447\u0430\u0448\u043c\u0430\u0438 \u0430\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u04e3",
|
||||
"Paste your embed code below:": "embed \u043a\u043e\u0434\u0440\u043e \u0438\u043d\u04b7\u043e \u0432\u043e\u0440\u0438\u0434 \u043a\u0443\u043d\u0435\u0434",
|
||||
"Insert video": "\u0412\u043e\u0440\u0438\u0434\u0438 \u0432\u0438\u0434\u0435\u043e",
|
||||
"Embed": "Embed",
|
||||
"Nonbreaking space": "\u0411\u0435\u0444\u043e\u0441\u0438\u043b\u0430",
|
||||
"Page break": "\u0421\u0430\u04b3\u0438\u0444\u0430\u0440\u043e \u0448\u0438\u043a\u0430\u0441\u0442\u0430\u043d",
|
||||
"Paste as text": "\u0413\u0443\u0437\u043e\u0448\u0442\u0430\u043d \u04b3\u0430\u043c\u0447\u0443 \u043c\u0430\u0442\u043d",
|
||||
"Preview": "\u041c\u0430\u043d\u0437\u0443\u0440",
|
||||
"Print": "\u0427\u043e\u043f \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Save": "\u041d\u0438\u0433\u043e\u04b3 \u0434\u043e\u0448\u0442\u0430\u043d",
|
||||
"Could not find the specified string.": "\u0425\u0430\u0442\u0438 \u0434\u0430\u0440\u0445\u043e\u0441\u0442\u0448\u0443\u0434\u0430\u0440\u043e \u0451\u0444\u0442\u0430 \u043d\u0430\u0442\u0430\u0432\u043e\u043d\u0438\u0441\u0442\u0430\u043c",
|
||||
"Replace": "\u0422\u0430\u0493\u0438\u0440",
|
||||
"Next": "\u041e\u044f\u043d\u0434\u0430",
|
||||
"Whole words": "\u041a\u0430\u043b\u0438\u043c\u0430\u04b3\u043e\u0438 \u043f\u0443\u0440\u0440\u0430",
|
||||
"Find and replace": "\u0401\u0444\u0442\u0430\u043d \u0432\u0430 \u0442\u0430\u0493\u0438\u0440 \u0434\u043e\u0434\u0430\u043d",
|
||||
"Replace with": "\u0422\u0430\u0493\u0438\u0440 \u0431\u0430",
|
||||
"Find": "\u0401\u0444\u0442\u0430\u043d",
|
||||
"Replace all": "\u0422\u0430\u0493\u0438\u0440\u0438 \u04b3\u0430\u043c\u0430\u0430\u0448",
|
||||
"Match case": "\u041c\u0443\u0432\u043e\u0444\u0438\u049b\u0430\u0442",
|
||||
"Prev": "\u0413\u0443\u0437\u0430\u0448\u0442\u0430",
|
||||
"Spellcheck": "\u0422\u0430\u0444\u0442\u0438\u0448\u0438 \u0433\u0440\u0430\u043c\u043c\u0430\u0442\u0438\u043a\u04e3",
|
||||
"Finish": "\u0422\u0430\u043c\u043e\u043c",
|
||||
"Ignore all": "\u0410\u04b3\u0430\u043c\u0438\u044f\u0442 \u043d\u0430\u0434\u043e\u0434\u0430\u043d \u0431\u0430 \u04b3\u0430\u043c\u043c\u0430\u0448",
|
||||
"Ignore": "\u0410\u04b3\u0430\u043c\u0438\u044f\u0442 \u043d\u0430\u0434\u043e\u0434\u0430\u043d",
|
||||
"Add to Dictionary": "\u0414\u0430\u0440 \u043b\u0443\u0493\u0430\u0442 \u0438\u043b\u043e\u0432\u0430 \u043a\u0443\u043d",
|
||||
"Insert row before": "\u0425\u0430\u0442 \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d \u043f\u0435\u0448 \u0430\u0437",
|
||||
"Rows": "\u0425\u0430\u0442\u04b3\u043e",
|
||||
"Height": "\u0411\u0430\u043b\u0430\u043d\u0434\u0438",
|
||||
"Paste row after": "\u0425\u0430\u0442 \u0433\u0443\u0437\u043e\u0448\u0442\u0430\u043d \u043f\u0430\u0441 \u0430\u0437",
|
||||
"Alignment": "\u0420\u043e\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Border color": "\u0420\u0430\u043d\u0433\u0438 \u04b3\u0443\u0434\u0443\u0434",
|
||||
"Column group": "\u0413\u0443\u0440\u0443\u04b3\u0438 \u0441\u0443\u0442\u0443\u043d",
|
||||
"Row": "\u0425\u0430\u0442",
|
||||
"Insert column before": "\u0421\u0443\u0442\u0443\u043d \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d \u043f\u0435\u0448 \u0430\u0437",
|
||||
"Split cell": "\u0421\u04ef\u0440\u043e\u0445\u0438\u04b3\u043e\u0440\u043e \u0431\u0443\u0440\u0438\u0434\u0430\u043d",
|
||||
"Cell padding": "\u0424\u043e\u0441\u0438\u043b\u0430\u0438 \u0434\u0430\u0440\u0443\u043d\u0430",
|
||||
"Cell spacing": "\u0424\u043e\u0441\u0438\u043b\u0430\u0438 \u0431\u0435\u0440\u0443\u043d\u0430",
|
||||
"Row type": "\u041d\u0430\u043c\u0443\u0434\u0438 \u0445\u0430\u0442",
|
||||
"Insert table": "\u0412\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d\u0438 \u04b7\u0430\u0434\u0432\u0430\u043b",
|
||||
"Body": "\u049a\u0438\u0441\u043c\u0438 \u0430\u0441\u043b\u0438",
|
||||
"Caption": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430",
|
||||
"Footer": "\u049a\u0438\u0441\u043c\u0438 \u043f\u043e\u0451\u043d\u0438",
|
||||
"Delete row": "\u041d\u0435\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d\u0438 \u0445\u0430\u0442",
|
||||
"Paste row before": "\u0425\u0430\u0442 \u0433\u0443\u0437\u043e\u0448\u0442\u0430\u043d \u043f\u0435\u0448 \u0430\u0437",
|
||||
"Scope": "Scope",
|
||||
"Delete table": "\u041d\u0435\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d\u0438 \u04b7\u0430\u0434\u0432\u0430\u043b",
|
||||
"H Align": "\u0410\u0437 \u0431\u043e\u043b\u043e \u0431\u0430 \u043f\u043e\u0451\u043d",
|
||||
"Top": "\u0411\u043e\u043b\u043e",
|
||||
"Header cell": "\u0421\u0430\u0440\u043b\u0430\u0432\u04b3\u0430",
|
||||
"Column": "\u0421\u0443\u0442\u0443\u043d",
|
||||
"Row group": "\u0413\u0443\u0440\u0443\u04b3\u0438 \u0445\u0430\u0442\u04b3\u043e",
|
||||
"Cell": "\u0421\u04ef\u0440\u043e\u0445",
|
||||
"Middle": "\u041c\u043e\u0431\u0430\u0439\u043d",
|
||||
"Cell type": "\u041d\u0430\u043c\u0443\u0434\u0438 \u0441\u0443\u0440\u043e\u0445\u04e3",
|
||||
"Copy row": "\u041d\u0443\u0441\u0445\u0430\u0431\u043e\u0440\u0434\u043e\u0440\u0438\u0438 \u0445\u0430\u0442",
|
||||
"Row properties": "\u0425\u0443\u0441\u0443\u0441\u0438\u044f\u0442\u0438 \u0445\u0430\u0442",
|
||||
"Table properties": "\u0425\u0443\u0441\u0443\u0441\u0438\u044f\u0442\u0438 \u04b7\u0430\u0434\u0432\u0430\u043b",
|
||||
"Bottom": "\u041f\u043e\u0451\u043d",
|
||||
"V Align": "\u0410\u0437 \u0447\u0430\u043f \u0431\u0430 \u0440\u043e\u0441\u0442",
|
||||
"Header": "\u049a\u0438\u0441\u043c\u0438 \u0431\u043e\u043b\u043e\u0438",
|
||||
"Right": "\u0420\u043e\u0441\u0442",
|
||||
"Insert column after": "\u0421\u0443\u0442\u0443\u043d \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d \u043f\u0430\u0441 \u0430\u0437",
|
||||
"Cols": "\u0421\u0443\u0442\u0443\u043d\u04b3\u043e",
|
||||
"Insert row after": "\u0425\u0430\u0442 \u0432\u043e\u0440\u0438\u0434 \u043a\u0430\u0440\u0434\u0430\u043d \u043f\u0430\u0441 \u0430\u0437",
|
||||
"Width": "\u041f\u0430\u04b3\u043d\u0438",
|
||||
"Cell properties": "\u0425\u0443\u0441\u0443\u0441\u0438\u044f\u0442\u0438 \u0441\u04ef\u0440\u043e\u0445",
|
||||
"Left": "\u0427\u0430\u043f",
|
||||
"Cut row": "\u0411\u0443\u0440\u0438\u0434\u0430\u043d\u0438 \u0445\u0430\u0442",
|
||||
"Delete column": "\u041d\u0435\u0441\u0442 \u043a\u0430\u0440\u0434\u0430\u043d\u0438 \u0441\u0443\u0442\u0443\u043d",
|
||||
"Center": "\u041c\u0430\u0440\u043a\u0430\u0437",
|
||||
"Merge cells": "\u0421\u04ef\u0440\u043e\u0445\u0438\u04b3\u043e\u0440\u043e \u044f\u043a\u04b7\u043e\u044f \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Insert template": "\u0412\u043e\u0440\u0438\u0434\u0438 \u049b\u043e\u043b\u0430\u0431",
|
||||
"Templates": "\u049a\u043e\u043b\u0430\u0431",
|
||||
"Background color": "\u0420\u0430\u043d\u0433\u0438 \u043f\u0443\u0448\u0442\u0438 \u043c\u0430\u0442\u043d",
|
||||
"Custom...": "\u0425\u0443\u0441\u0443\u0441\u04e3",
|
||||
"Custom color": "\u0420\u0430\u043d\u0433\u0438 \u0445\u0443\u0441\u0443\u0441\u04e3",
|
||||
"No color": "\u0411\u0435 \u0440\u0430\u043d\u0433",
|
||||
"Text color": "\u0420\u0430\u043d\u0433\u0438 \u043c\u0430\u0442\u043d",
|
||||
"Show blocks": "\u041d\u0438\u0448\u043e\u043d \u0434\u043e\u0434\u0430\u043d\u0438 \u0433\u0443\u0440\u0443\u04b3\u04b3\u043e",
|
||||
"Show invisible characters": "\u0420\u0430\u043c\u0437\u04b3\u043e\u0438 \u043c\u0430\u0445\u0441\u0443\u0441\u0440\u043e \u043d\u0438\u0448\u043e\u043d \u0434\u043e\u0434\u0430\u043d",
|
||||
"Words: {0}": "\u041a\u043b\u0438\u043c\u0430\u04b3\u043e: {0}",
|
||||
"Insert": "\u0412\u043e\u0440\u0438\u0434",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u0422\u0430\u0493\u0438\u0440\u043e\u0442",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041c\u0435\u043d\u044e ALT-F9. \u0410\u0441\u0431\u043e\u0431\u04b3\u043e ALT-F10. \u041a\u0443\u043c\u043c\u0430\u043a ALT-0",
|
||||
"Tools": "\u0410\u0441\u0431\u043e\u0431\u04b3\u043e",
|
||||
"View": "\u041c\u0430\u043d\u0437\u0443\u0440 \u043a\u0430\u0440\u0434\u0430\u043d",
|
||||
"Table": "\u04b6\u0430\u0434\u0432\u0430\u043b",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/th_TH.js
Normal file
219
data/web/rc/program/js/tinymce/langs/th_TH.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('th_TH',{
|
||||
"Cut": "\u0e15\u0e31\u0e14",
|
||||
"Heading 5": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 5",
|
||||
"Header 2": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e16\u0e36\u0e07\u0e42\u0e14\u0e22\u0e15\u0e23\u0e07\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e04\u0e25\u0e34\u0e1b\u0e1a\u0e2d\u0e23\u0e4c\u0e14 \u0e01\u0e23\u0e38\u0e13\u0e32\u0e43\u0e0a\u0e49\u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e25\u0e31\u0e14 Ctrl+X\/C\/V \u0e41\u0e17\u0e19",
|
||||
"Heading 4": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 2",
|
||||
"Paste": "\u0e27\u0e32\u0e07",
|
||||
"Close": "\u0e1b\u0e34\u0e14",
|
||||
"Font Family": "\u0e15\u0e23\u0e30\u0e01\u0e39\u0e25\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23",
|
||||
"Pre": "\u0e01\u0e48\u0e2d\u0e19",
|
||||
"Align right": "\u0e08\u0e31\u0e14\u0e0a\u0e34\u0e14\u0e02\u0e27\u0e32",
|
||||
"New document": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e43\u0e2b\u0e21\u0e48",
|
||||
"Blockquote": "\u0e22\u0e01\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e17\u0e31\u0e49\u0e07\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32",
|
||||
"Numbered list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e40\u0e25\u0e02",
|
||||
"Heading 1": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 1",
|
||||
"Headings": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 1",
|
||||
"Increase indent": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e01\u0e32\u0e23\u0e40\u0e22\u0e37\u0e49\u0e2d\u0e07",
|
||||
"Formats": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
|
||||
"Headers": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27",
|
||||
"Select all": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14",
|
||||
"Header 3": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 3",
|
||||
"Blocks": "\u0e1a\u0e25\u0e47\u0e2d\u0e01",
|
||||
"Undo": "\u0e40\u0e25\u0e34\u0e01\u0e17\u0e33",
|
||||
"Strikethrough": "\u0e02\u0e35\u0e14\u0e17\u0e31\u0e1a",
|
||||
"Bullet list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d\u0e22\u0e48\u0e2d\u0e22",
|
||||
"Header 1": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 1",
|
||||
"Superscript": "\u0e15\u0e31\u0e27\u0e22\u0e01",
|
||||
"Clear formatting": "\u0e25\u0e49\u0e32\u0e07\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
|
||||
"Font Sizes": "\u0e02\u0e19\u0e32\u0e14\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23",
|
||||
"Subscript": "\u0e15\u0e31\u0e27\u0e2b\u0e49\u0e2d\u0e22",
|
||||
"Header 6": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 6",
|
||||
"Redo": "\u0e17\u0e4d\u0e32\u0e0b\u0e49\u0e33",
|
||||
"Paragraph": "\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32",
|
||||
"Ok": "\u0e15\u0e01\u0e25\u0e07",
|
||||
"Bold": "\u0e15\u0e31\u0e27\u0e2b\u0e19\u0e32",
|
||||
"Code": "\u0e42\u0e04\u0e49\u0e14",
|
||||
"Italic": "\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e35\u0e22\u0e07",
|
||||
"Align center": "\u0e08\u0e31\u0e14\u0e01\u0e36\u0e48\u0e07\u0e01\u0e25\u0e32\u0e07",
|
||||
"Header 5": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 5",
|
||||
"Heading 6": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 6",
|
||||
"Heading 3": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 3",
|
||||
"Decrease indent": "\u0e25\u0e14\u0e01\u0e32\u0e23\u0e40\u0e22\u0e37\u0e49\u0e2d\u0e07",
|
||||
"Header 4": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e42\u0e2b\u0e21\u0e14\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32 \u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e27\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32\u0e08\u0e19\u0e01\u0e27\u0e48\u0e32\u0e04\u0e38\u0e13\u0e08\u0e30\u0e1b\u0e34\u0e14\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e35\u0e49",
|
||||
"Underline": "\u0e02\u0e35\u0e14\u0e40\u0e2a\u0e49\u0e19\u0e43\u0e15\u0e49",
|
||||
"Cancel": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01",
|
||||
"Justify": "\u0e40\u0e15\u0e47\u0e21\u0e41\u0e19\u0e27",
|
||||
"Inline": "\u0e41\u0e1a\u0e1a\u0e2d\u0e34\u0e19\u0e44\u0e25\u0e19\u0e4c",
|
||||
"Copy": "\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01",
|
||||
"Align left": "\u0e08\u0e31\u0e14\u0e0a\u0e34\u0e14\u0e0b\u0e49\u0e32\u0e22",
|
||||
"Visual aids": "\u0e17\u0e31\u0e28\u0e19\u0e39\u0e1b\u0e01\u0e23\u0e13\u0e4c",
|
||||
"Lower Greek": "\u0e01\u0e23\u0e35\u0e01\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32",
|
||||
"Square": "\u0e08\u0e31\u0e15\u0e38\u0e23\u0e31\u0e2a",
|
||||
"Default": "\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19",
|
||||
"Lower Alpha": "\u0e2d\u0e31\u0e25\u0e1f\u0e32\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32",
|
||||
"Circle": "\u0e27\u0e07\u0e01\u0e25\u0e21",
|
||||
"Disc": "\u0e14\u0e34\u0e2a\u0e01\u0e4c",
|
||||
"Upper Alpha": "\u0e2d\u0e31\u0e25\u0e1f\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e39\u0e07\u0e01\u0e27\u0e48\u0e32",
|
||||
"Upper Roman": "\u0e42\u0e23\u0e21\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e39\u0e07\u0e01\u0e27\u0e48\u0e32",
|
||||
"Lower Roman": "\u0e42\u0e23\u0e21\u0e31\u0e19\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32",
|
||||
"Name": "\u0e0a\u0e37\u0e48\u0e2d",
|
||||
"Anchor": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0e04\u0e38\u0e13\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2d\u0e2d\u0e01\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?",
|
||||
"Restore last draft": "\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e41\u0e1a\u0e1a\u0e23\u0e48\u0e32\u0e07\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14",
|
||||
"Special character": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e1e\u0e34\u0e40\u0e28\u0e29",
|
||||
"Source code": "\u0e42\u0e04\u0e49\u0e14\u0e15\u0e49\u0e19\u0e09\u0e1a\u0e31\u0e1a",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0e2a\u0e35",
|
||||
"Right to left": "\u0e02\u0e27\u0e32\u0e44\u0e1b\u0e0b\u0e49\u0e32\u0e22",
|
||||
"Left to right": "\u0e0b\u0e49\u0e32\u0e22\u0e44\u0e1b\u0e02\u0e27\u0e32",
|
||||
"Emoticons": "\u0e2d\u0e34\u0e42\u0e21\u0e15\u0e34\u0e04\u0e2d\u0e19",
|
||||
"Robots": "\u0e2b\u0e38\u0e48\u0e19\u0e22\u0e19\u0e15\u0e4c",
|
||||
"Document properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23",
|
||||
"Title": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07",
|
||||
"Keywords": "\u0e04\u0e33\u0e2a\u0e33\u0e04\u0e31\u0e0d",
|
||||
"Encoding": "\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e2b\u0e31\u0e2a",
|
||||
"Description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22",
|
||||
"Author": "\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e35\u0e22\u0e19",
|
||||
"Fullscreen": "\u0e40\u0e15\u0e47\u0e21\u0e08\u0e2d",
|
||||
"Horizontal line": "\u0e40\u0e2a\u0e49\u0e19\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19",
|
||||
"Horizontal space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19",
|
||||
"Insert\/edit image": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e39\u0e1b",
|
||||
"General": "\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b",
|
||||
"Advanced": "\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07",
|
||||
"Source": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32",
|
||||
"Border": "\u0e40\u0e2a\u0e49\u0e19\u0e02\u0e2d\u0e1a",
|
||||
"Constrain proportions": "\u0e08\u0e33\u0e01\u0e31\u0e14\u0e2a\u0e31\u0e14\u0e2a\u0e48\u0e27\u0e19",
|
||||
"Vertical space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07",
|
||||
"Image description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e23\u0e39\u0e1b",
|
||||
"Style": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
|
||||
"Dimensions": "\u0e02\u0e19\u0e32\u0e14",
|
||||
"Insert image": "\u0e41\u0e17\u0e23\u0e01\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e",
|
||||
"Zoom in": "Zoom in",
|
||||
"Contrast": "Contrast",
|
||||
"Back": "Back",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "Resize",
|
||||
"Sharpen": "Sharpen",
|
||||
"Zoom out": "Zoom out",
|
||||
"Image options": "Image options",
|
||||
"Apply": "Apply",
|
||||
"Brightness": "Brightness",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "Edit image",
|
||||
"Color levels": "Color levels",
|
||||
"Crop": "Crop",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "Invert",
|
||||
"Insert date\/time": "\u0e41\u0e17\u0e23\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\/\u0e40\u0e27\u0e25\u0e32",
|
||||
"Remove link": "\u0e40\u0e2d\u0e32\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e2d\u0e2d\u0e01",
|
||||
"Url": "URL",
|
||||
"Text to display": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e2a\u0e14\u0e07",
|
||||
"Anchors": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14",
|
||||
"Insert link": "\u0e41\u0e17\u0e23\u0e01\u0e25\u0e34\u0e07\u0e01\u0e4c",
|
||||
"New window": "\u0e40\u0e1b\u0e34\u0e14\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e48\u0e32\u0e07\u0e43\u0e2b\u0e21\u0e48",
|
||||
"None": "\u0e44\u0e21\u0e48\u0e21\u0e35",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e23\u0e30\u0e1a\u0e38\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e25\u0e34\u0e49\u0e07\u0e04\u0e4c\u0e20\u0e32\u0e22\u0e19\u0e2d\u0e01 \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2a\u0e48 http:\/\/ \u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48",
|
||||
"Target": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e23\u0e30\u0e1a\u0e38\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e41\u0e2d\u0e14\u0e40\u0e14\u0e23\u0e2a \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2a\u0e48 mailto: \u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48",
|
||||
"Insert\/edit link": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e25\u0e34\u0e07\u0e01\u0e4c",
|
||||
"Insert\/edit video": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d",
|
||||
"Poster": "\u0e42\u0e1b\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c",
|
||||
"Alternative source": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e2a\u0e33\u0e23\u0e2d\u0e07",
|
||||
"Paste your embed code below:": "\u0e27\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14\u0e1d\u0e31\u0e07\u0e15\u0e31\u0e27\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07:",
|
||||
"Insert video": "\u0e41\u0e17\u0e23\u0e01\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d",
|
||||
"Embed": "\u0e1d\u0e31\u0e07",
|
||||
"Nonbreaking space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e44\u0e21\u0e48\u0e41\u0e22\u0e01",
|
||||
"Page break": "\u0e15\u0e31\u0e27\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32",
|
||||
"Paste as text": "\u0e27\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21",
|
||||
"Preview": "\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07",
|
||||
"Print": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c",
|
||||
"Save": "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01",
|
||||
"Could not find the specified string.": "\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e2a\u0e15\u0e23\u0e34\u0e07\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38",
|
||||
"Replace": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48",
|
||||
"Next": "\u0e16\u0e31\u0e14\u0e44\u0e1b",
|
||||
"Whole words": "\u0e17\u0e31\u0e49\u0e07\u0e04\u0e33",
|
||||
"Find and replace": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e41\u0e25\u0e30\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48",
|
||||
"Replace with": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e14\u0e49\u0e27\u0e22",
|
||||
"Find": "\u0e04\u0e49\u0e19\u0e2b\u0e32",
|
||||
"Replace all": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14",
|
||||
"Match case": "\u0e15\u0e23\u0e07\u0e15\u0e32\u0e21\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e2b\u0e0d\u0e48-\u0e40\u0e25\u0e47\u0e01",
|
||||
"Prev": "\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32",
|
||||
"Spellcheck": "\u0e15\u0e23\u0e27\u0e08\u0e01\u0e32\u0e23\u0e2a\u0e30\u0e01\u0e14",
|
||||
"Finish": "\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e34\u0e49\u0e19",
|
||||
"Ignore all": "\u0e25\u0e30\u0e40\u0e27\u0e49\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14",
|
||||
"Ignore": "\u0e25\u0e30\u0e40\u0e27\u0e49\u0e19",
|
||||
"Add to Dictionary": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e19\u0e1e\u0e08\u0e19\u0e32\u0e19\u0e38\u0e01\u0e23\u0e21",
|
||||
"Insert row before": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19",
|
||||
"Rows": "\u0e41\u0e16\u0e27",
|
||||
"Height": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e39\u0e07",
|
||||
"Paste row after": "\u0e27\u0e32\u0e07\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07",
|
||||
"Alignment": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e41\u0e19\u0e27",
|
||||
"Border color": "\u0e2a\u0e35\u0e02\u0e2d\u0e1a",
|
||||
"Column group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c",
|
||||
"Row": "\u0e41\u0e16\u0e27",
|
||||
"Insert column before": "\u0e41\u0e17\u0e23\u0e01\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e19\u0e49\u0e32",
|
||||
"Split cell": "\u0e41\u0e22\u0e01\u0e40\u0e0b\u0e25\u0e25\u0e4c",
|
||||
"Cell padding": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e20\u0e32\u0e22\u0e43\u0e19\u0e40\u0e0b\u0e25\u0e25\u0e4c",
|
||||
"Cell spacing": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c",
|
||||
"Row type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27",
|
||||
"Insert table": "\u0e41\u0e17\u0e23\u0e01\u0e15\u0e32\u0e23\u0e32\u0e07",
|
||||
"Body": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21",
|
||||
"Caption": "\u0e1b\u0e49\u0e32\u0e22\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22",
|
||||
"Footer": "\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22",
|
||||
"Delete row": "\u0e25\u0e1a\u0e41\u0e16\u0e27",
|
||||
"Paste row before": "\u0e27\u0e32\u0e07\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19",
|
||||
"Scope": "\u0e02\u0e2d\u0e1a\u0e40\u0e02\u0e15",
|
||||
"Delete table": "\u0e25\u0e1a\u0e15\u0e32\u0e23\u0e32\u0e07",
|
||||
"H Align": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e43\u0e19\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19",
|
||||
"Top": "\u0e1a\u0e19",
|
||||
"Header cell": "\u0e40\u0e0b\u0e25\u0e25\u0e4c\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27",
|
||||
"Column": "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c",
|
||||
"Row group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e41\u0e16\u0e27",
|
||||
"Cell": "\u0e40\u0e0b\u0e25\u0e25\u0e4c",
|
||||
"Middle": "\u0e01\u0e25\u0e32\u0e07",
|
||||
"Cell type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c",
|
||||
"Copy row": "\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01\u0e41\u0e16\u0e27",
|
||||
"Row properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27",
|
||||
"Table properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e15\u0e32\u0e23\u0e32\u0e07",
|
||||
"Bottom": "\u0e25\u0e48\u0e32\u0e07",
|
||||
"V Align": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e43\u0e19\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07",
|
||||
"Header": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27",
|
||||
"Right": "\u0e02\u0e27\u0e32",
|
||||
"Insert column after": "\u0e41\u0e17\u0e23\u0e01\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e25\u0e31\u0e07",
|
||||
"Cols": "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c",
|
||||
"Insert row after": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07",
|
||||
"Width": "\u0e04\u0e27\u0e32\u0e21\u0e01\u0e27\u0e49\u0e32\u0e07",
|
||||
"Cell properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c",
|
||||
"Left": "\u0e0b\u0e49\u0e32\u0e22",
|
||||
"Cut row": "\u0e15\u0e31\u0e14\u0e41\u0e16\u0e27",
|
||||
"Delete column": "\u0e25\u0e1a\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c",
|
||||
"Center": "\u0e01\u0e36\u0e48\u0e07\u0e01\u0e25\u0e32\u0e07",
|
||||
"Merge cells": "\u0e1c\u0e2a\u0e32\u0e19\u0e40\u0e0b\u0e25\u0e25\u0e4c",
|
||||
"Insert template": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a",
|
||||
"Templates": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a",
|
||||
"Background color": "\u0e2a\u0e35\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07",
|
||||
"Custom...": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07",
|
||||
"Custom color": "\u0e2a\u0e35\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07",
|
||||
"No color": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2a\u0e35",
|
||||
"Text color": "\u0e2a\u0e35\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21",
|
||||
"Show blocks": "\u0e41\u0e2a\u0e14\u0e07\u0e1a\u0e25\u0e47\u0e2d\u0e01",
|
||||
"Show invisible characters": "\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e17\u0e35\u0e48\u0e21\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e47\u0e19",
|
||||
"Words: {0}": "\u0e04\u0e33: {0}",
|
||||
"Insert": "\u0e41\u0e17\u0e23\u0e01",
|
||||
"File": "\u0e44\u0e1f\u0e25\u0e4c",
|
||||
"Edit": "\u0e41\u0e01\u0e49\u0e44\u0e02",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48 Rich Text \u0e01\u0e14 ALT-F9 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e21\u0e19\u0e39 \u0e01\u0e14 ALT-F10 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e16\u0e1a\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d \u0e01\u0e14 ALT-0 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d",
|
||||
"Tools": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d",
|
||||
"View": "\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07",
|
||||
"Table": "\u0e15\u0e32\u0e23\u0e32\u0e07",
|
||||
"Format": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/tr.js
Normal file
219
data/web/rc/program/js/tinymce/langs/tr.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('tr',{
|
||||
"Cut": "Kes",
|
||||
"Heading 5": "Ba\u015fl\u0131k 5",
|
||||
"Header 2": "Ba\u015fl\u0131k 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Taray\u0131c\u0131n\u0131z panoya do\u011frudan eri\u015fimi desteklemiyor. L\u00fctfen Ctrl+X\\\/C\\\/V klavye k\u0131sayollar\u0131n\u0131 kullan\u0131n\u0131z.",
|
||||
"Heading 4": "Ba\u015fl\u0131k 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Ba\u015fl\u0131k 2",
|
||||
"Paste": "Yap\u0131\u015ft\u0131r",
|
||||
"Close": "Kapat",
|
||||
"Font Family": "Yaz\u0131 Tipleri",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Sa\u011fa hizala",
|
||||
"New document": "Yeni dok\u00fcman",
|
||||
"Blockquote": "Al\u0131nt\u0131",
|
||||
"Numbered list": "Numaral\u0131 liste ",
|
||||
"Heading 1": "Ba\u015fl\u0131k 1",
|
||||
"Headings": "Ba\u015fl\u0131klar",
|
||||
"Increase indent": "Girintiyi art\u0131r",
|
||||
"Formats": "Bi\u00e7imler",
|
||||
"Headers": "Ba\u015fl\u0131klar",
|
||||
"Select all": "T\u00fcm\u00fcn\u00fc se\u00e7",
|
||||
"Header 3": "Ba\u015fl\u0131k 3",
|
||||
"Blocks": "Bloklar",
|
||||
"Undo": "Geri al",
|
||||
"Strikethrough": "\u00dcst\u00fc \u00e7izili",
|
||||
"Bullet list": "\u0130\u015faretli liste",
|
||||
"Header 1": "Ba\u015fl\u0131k 1",
|
||||
"Superscript": "\u00dcst simge",
|
||||
"Clear formatting": "Bi\u00e7imi temizle",
|
||||
"Font Sizes": "Yaz\u0131 Boyutlar\u0131",
|
||||
"Subscript": "Alt simge",
|
||||
"Header 6": "Ba\u015fl\u0131k 6",
|
||||
"Redo": "Yinele",
|
||||
"Paragraph": "Paragraf",
|
||||
"Ok": "Tamam",
|
||||
"Bold": "Kal\u0131n",
|
||||
"Code": "Kod",
|
||||
"Italic": "\u0130talik",
|
||||
"Align center": "Ortala",
|
||||
"Header 5": "Ba\u015fl\u0131k 5",
|
||||
"Heading 6": "Ba\u015fl\u0131k 6",
|
||||
"Heading 3": "Ba\u015fl\u0131k 3",
|
||||
"Decrease indent": "Girintiyi azalt",
|
||||
"Header 4": "Ba\u015fl\u0131k 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00fcz metin modunda yap\u0131\u015ft\u0131r. Bu se\u00e7ene\u011fi kapatana kadar i\u00e7erikler d\u00fcz metin olarak yap\u0131\u015ft\u0131r\u0131l\u0131r.",
|
||||
"Underline": "Alt\u0131 \u00e7izili",
|
||||
"Cancel": "\u0130ptal",
|
||||
"Justify": "\u0130ki yana yasla",
|
||||
"Inline": "Sat\u0131r i\u00e7i",
|
||||
"Copy": "Kopyala",
|
||||
"Align left": "Sola hizala",
|
||||
"Visual aids": "G\u00f6rsel ara\u00e7lar",
|
||||
"Lower Greek": "K\u00fc\u00e7\u00fck Yunan Harfleri",
|
||||
"Square": "Kare",
|
||||
"Default": "Varsay\u0131lan",
|
||||
"Lower Alpha": "K\u00fc\u00e7\u00fck Harf",
|
||||
"Circle": "Daire",
|
||||
"Disc": "Disk",
|
||||
"Upper Alpha": "B\u00fcy\u00fck Harf",
|
||||
"Upper Roman": "B\u00fcy\u00fck Roman Harfleri ",
|
||||
"Lower Roman": "K\u00fc\u00e7\u00fck Roman Harfleri ",
|
||||
"Name": "\u0130sim",
|
||||
"Anchor": "\u00c7apa",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Kaydedilmemi\u015f de\u011fi\u015fiklikler var, sayfadan ayr\u0131lmak istedi\u011finize emin misiniz?",
|
||||
"Restore last draft": "Son tasla\u011f\u0131 geri y\u00fckle",
|
||||
"Special character": "\u00d6zel karakter",
|
||||
"Source code": "Kaynak kodu",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Renk",
|
||||
"Right to left": "Sa\u011fdan sola",
|
||||
"Left to right": "Soldan sa\u011fa",
|
||||
"Emoticons": "\u0130fadeler",
|
||||
"Robots": "Robotlar",
|
||||
"Document properties": "Dok\u00fcman \u00f6zellikleri",
|
||||
"Title": "Ba\u015fl\u0131k",
|
||||
"Keywords": "Anahtar kelimeler",
|
||||
"Encoding": "Kodlama",
|
||||
"Description": "A\u00e7\u0131klama",
|
||||
"Author": "Yazar",
|
||||
"Fullscreen": "Tam ekran",
|
||||
"Horizontal line": "Yatay \u00e7izgi",
|
||||
"Horizontal space": "Yatay bo\u015fluk",
|
||||
"Insert\/edit image": "Resim ekle\/d\u00fczenle",
|
||||
"General": "Genel",
|
||||
"Advanced": "Geli\u015fmi\u015f",
|
||||
"Source": "Kaynak",
|
||||
"Border": "Kenarl\u0131k",
|
||||
"Constrain proportions": "Oranlar\u0131 koru",
|
||||
"Vertical space": "Dikey bo\u015fluk",
|
||||
"Image description": "Resim a\u00e7\u0131klamas\u0131",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Boyutlar",
|
||||
"Insert image": "Resim ekle",
|
||||
"Zoom in": "Yak\u0131nla\u015ft\u0131r",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Geri",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "Enine \u00e7evir",
|
||||
"Resize": "Yeniden Boyutland\u0131r",
|
||||
"Sharpen": "Keskinle\u015ftir",
|
||||
"Zoom out": "Uzakla\u015ft\u0131r",
|
||||
"Image options": "Resim ayarlar\u0131",
|
||||
"Apply": "Uygula",
|
||||
"Brightness": "Parlakl\u0131k",
|
||||
"Rotate clockwise": "Saat y\u00f6n\u00fcnde d\u00f6nd\u00fcr",
|
||||
"Rotate counterclockwise": "Saatin tersi y\u00f6n\u00fcnde d\u00f6nd\u00fcr",
|
||||
"Edit image": "Resmi d\u00fczenle",
|
||||
"Color levels": "Renk d\u00fczeyleri",
|
||||
"Crop": "K\u0131rp",
|
||||
"Orientation": "Oryantasyon",
|
||||
"Flip vertically": "Dikine \u00e7evir",
|
||||
"Invert": "Ters \u00c7evir",
|
||||
"Insert date\/time": "Tarih\/saat ekle",
|
||||
"Remove link": "Ba\u011flant\u0131y\u0131 kald\u0131r",
|
||||
"Url": "Url",
|
||||
"Text to display": "Yaz\u0131y\u0131 g\u00f6r\u00fcnt\u00fcle",
|
||||
"Anchors": "\u00c7apalar",
|
||||
"Insert link": "Ba\u011flant\u0131 ekle",
|
||||
"New window": "Yeni pencere",
|
||||
"None": "Hi\u00e7biri",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Girdi\u011finiz URL bir d\u0131\u015f ba\u011flant\u0131 gibi g\u00f6r\u00fcn\u00fcyor. Gerekli olan http:\/\/ \u00f6nekini eklemek ister misiniz?",
|
||||
"Target": "Hedef",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Girdi\u011finiz URL bir e-posta adresi gibi g\u00f6r\u00fcn\u00fcyor. Gerekli olan mailto: \u00f6nekini eklemek ister misiniz?",
|
||||
"Insert\/edit link": "Ba\u011flant\u0131 ekle\/d\u00fczenle",
|
||||
"Insert\/edit video": "Video ekle\/d\u00fczenle",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternatif kaynak",
|
||||
"Paste your embed code below:": "Video g\u00f6mme kodunu a\u015fa\u011f\u0131ya yap\u0131\u015ft\u0131r\u0131n\u0131z:",
|
||||
"Insert video": "Video ekle",
|
||||
"Embed": "G\u00f6mme",
|
||||
"Nonbreaking space": "B\u00f6l\u00fcnemez bo\u015fluk",
|
||||
"Page break": "Sayfa sonu",
|
||||
"Paste as text": "Metin olarak yap\u0131\u015ft\u0131r",
|
||||
"Preview": "\u00d6nizleme",
|
||||
"Print": "Yazd\u0131r",
|
||||
"Save": "Kaydet",
|
||||
"Could not find the specified string.": "Herhangi bir sonu\u00e7 bulunamad\u0131.",
|
||||
"Replace": "De\u011fi\u015ftir",
|
||||
"Next": "Sonraki",
|
||||
"Whole words": "Tam kelimeler",
|
||||
"Find and replace": "Bul ve de\u011fi\u015ftir",
|
||||
"Replace with": "Bununla de\u011fi\u015ftir",
|
||||
"Find": "Bul",
|
||||
"Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir",
|
||||
"Match case": "B\u00fcy\u00fck\/k\u00fc\u00e7\u00fck harf duyarl\u0131",
|
||||
"Prev": "\u00d6nceki",
|
||||
"Spellcheck": "Yaz\u0131m denetimi",
|
||||
"Finish": "Bitir",
|
||||
"Ignore all": "T\u00fcm\u00fcn\u00fc yoksay",
|
||||
"Ignore": "Yoksay",
|
||||
"Add to Dictionary": "S\u00f6zl\u00fc\u011fe Ekle",
|
||||
"Insert row before": "\u00dcste sat\u0131r ekle",
|
||||
"Rows": "Sat\u0131rlar",
|
||||
"Height": "Y\u00fckseklik",
|
||||
"Paste row after": "Alta sat\u0131r yap\u0131\u015ft\u0131r",
|
||||
"Alignment": "Hizalama",
|
||||
"Border color": "Kenarl\u0131k rengi",
|
||||
"Column group": "S\u00fctun grubu",
|
||||
"Row": "Sat\u0131r",
|
||||
"Insert column before": "Sola s\u00fctun ekle",
|
||||
"Split cell": "H\u00fccre b\u00f6l",
|
||||
"Cell padding": "H\u00fccre dolgusu",
|
||||
"Cell spacing": "H\u00fccre aral\u0131\u011f\u0131",
|
||||
"Row type": "Sat\u0131r tipi",
|
||||
"Insert table": "Tablo ekle",
|
||||
"Body": "G\u00f6vde",
|
||||
"Caption": "Ba\u015fl\u0131k",
|
||||
"Footer": "Alt",
|
||||
"Delete row": "Sat\u0131r sil",
|
||||
"Paste row before": "\u00dcste sat\u0131r yap\u0131\u015ft\u0131r",
|
||||
"Scope": "Kapsam",
|
||||
"Delete table": "Tablo sil",
|
||||
"H Align": "Yatay Hizalama",
|
||||
"Top": "\u00dcst",
|
||||
"Header cell": "Ba\u015fl\u0131k h\u00fccresi",
|
||||
"Column": "S\u00fctun",
|
||||
"Row group": "Sat\u0131r grubu",
|
||||
"Cell": "H\u00fccre",
|
||||
"Middle": "Orta",
|
||||
"Cell type": "H\u00fccre tipi",
|
||||
"Copy row": "Sat\u0131r\u0131 kopyala",
|
||||
"Row properties": "Sat\u0131r \u00f6zellikleri",
|
||||
"Table properties": "Tablo \u00f6zellikleri",
|
||||
"Bottom": "Alt",
|
||||
"V Align": "Dikey Hizalama",
|
||||
"Header": "Ba\u015fl\u0131k",
|
||||
"Right": "Sa\u011f",
|
||||
"Insert column after": "Sa\u011fa s\u00fctun ekle",
|
||||
"Cols": "S\u00fctunlar",
|
||||
"Insert row after": "Alta sat\u0131r ekle ",
|
||||
"Width": "Geni\u015flik",
|
||||
"Cell properties": "H\u00fccre \u00f6zellikleri",
|
||||
"Left": "Sol",
|
||||
"Cut row": "Sat\u0131r\u0131 kes",
|
||||
"Delete column": "S\u00fctun sil",
|
||||
"Center": "Orta",
|
||||
"Merge cells": "H\u00fccreleri birle\u015ftir",
|
||||
"Insert template": "\u015eablon ekle",
|
||||
"Templates": "\u015eablonlar",
|
||||
"Background color": "Arka plan rengi",
|
||||
"Custom...": "\u00d6zel...",
|
||||
"Custom color": "\u00d6zel renk",
|
||||
"No color": "Renk yok",
|
||||
"Text color": "Yaz\u0131 rengi",
|
||||
"Show blocks": "Bloklar\u0131 g\u00f6ster",
|
||||
"Show invisible characters": "G\u00f6r\u00fcnmez karakterleri g\u00f6ster",
|
||||
"Words: {0}": "Kelime: {0}",
|
||||
"Insert": "Ekle",
|
||||
"File": "Dosya",
|
||||
"Edit": "D\u00fczenle",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zengin Metin Alan\u0131. Men\u00fc i\u00e7in ALT-F9 tu\u015funa bas\u0131n\u0131z. Ara\u00e7 \u00e7ubu\u011fu i\u00e7in ALT-F10 tu\u015funa bas\u0131n\u0131z. Yard\u0131m i\u00e7in ALT-0 tu\u015funa bas\u0131n\u0131z.",
|
||||
"Tools": "Ara\u00e7lar",
|
||||
"View": "G\u00f6r\u00fcn\u00fcm",
|
||||
"Table": "Tablo",
|
||||
"Format": "Bi\u00e7im"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/tr_TR.js
Normal file
219
data/web/rc/program/js/tinymce/langs/tr_TR.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('tr_TR',{
|
||||
"Cut": "Kes",
|
||||
"Heading 5": "Ba\u015fl\u0131k 5",
|
||||
"Header 2": "Ba\u015fl\u0131k 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Taray\u0131c\u0131n\u0131z panoya direk eri\u015fimi desteklemiyor. L\u00fctfen Ctrl+X\/C\/V klavye k\u0131sayollar\u0131n\u0131 kullan\u0131n.",
|
||||
"Heading 4": "Ba\u015fl\u0131k 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Ba\u015fl\u0131k 2",
|
||||
"Paste": "Yap\u0131\u015ft\u0131r",
|
||||
"Close": "Kapat",
|
||||
"Font Family": "Yaz\u0131tipi Ailesi",
|
||||
"Pre": "\u00d6n",
|
||||
"Align right": "Sa\u011fa hizala",
|
||||
"New document": "Yeni dok\u00fcman",
|
||||
"Blockquote": "Al\u0131nt\u0131",
|
||||
"Numbered list": "S\u0131ral\u0131 liste",
|
||||
"Heading 1": "Ba\u015fl\u0131k 1",
|
||||
"Headings": "Ba\u015fl\u0131klar",
|
||||
"Increase indent": "Girintiyi art\u0131r",
|
||||
"Formats": "Bi\u00e7imler",
|
||||
"Headers": "Ba\u015fl\u0131klar",
|
||||
"Select all": "T\u00fcm\u00fcn\u00fc se\u00e7",
|
||||
"Header 3": "Ba\u015fl\u0131k 3",
|
||||
"Blocks": "Bloklar",
|
||||
"Undo": "Geri Al",
|
||||
"Strikethrough": "\u00dcst\u00fc \u00e7izili",
|
||||
"Bullet list": "S\u0131ras\u0131z liste",
|
||||
"Header 1": "Ba\u015fl\u0131k 1",
|
||||
"Superscript": "\u00dcst simge",
|
||||
"Clear formatting": "Bi\u00e7imi temizle",
|
||||
"Font Sizes": "Yaz\u0131tipi B\u00fcy\u00fckl\u00fc\u011f\u00fc",
|
||||
"Subscript": "Alt simge",
|
||||
"Header 6": "Ba\u015fl\u0131k 6",
|
||||
"Redo": "Yinele",
|
||||
"Paragraph": "Paragraf",
|
||||
"Ok": "Tamam",
|
||||
"Bold": "Kal\u0131n",
|
||||
"Code": "Kod",
|
||||
"Italic": "\u0130talik",
|
||||
"Align center": "Ortala",
|
||||
"Header 5": "Ba\u015fl\u0131k 5",
|
||||
"Heading 6": "Ba\u015fl\u0131k 6",
|
||||
"Heading 3": "Ba\u015fl\u0131k 3",
|
||||
"Decrease indent": "Girintiyi azalt",
|
||||
"Header 4": "Ba\u015fl\u0131k 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00fcz metin modunda yap\u0131\u015ft\u0131r. Bu se\u00e7ene\u011fi kapatana kadar i\u00e7erikler d\u00fcz metin olarak yap\u0131\u015ft\u0131r\u0131l\u0131r.",
|
||||
"Underline": "Alt\u0131 \u00e7izili",
|
||||
"Cancel": "\u0130ptal",
|
||||
"Justify": "\u0130ki yana yasla",
|
||||
"Inline": "Sat\u0131r i\u00e7i",
|
||||
"Copy": "Kopyala",
|
||||
"Align left": "Sola hizala",
|
||||
"Visual aids": "G\u00f6rsel ara\u00e7lar",
|
||||
"Lower Greek": "K\u00fc\u00e7\u00fck Yunan alfabesi",
|
||||
"Square": "Kare",
|
||||
"Default": "Varsay\u0131lan",
|
||||
"Lower Alpha": "K\u00fc\u00e7\u00fck ABC",
|
||||
"Circle": "Daire",
|
||||
"Disc": "Disk",
|
||||
"Upper Alpha": "B\u00fcy\u00fck ABC",
|
||||
"Upper Roman": "B\u00fcy\u00fck Roman alfabesi",
|
||||
"Lower Roman": "K\u00fc\u00e7\u00fck Roman alfabesi",
|
||||
"Name": "\u0130sim",
|
||||
"Anchor": "\u00c7apa",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Kaydedilmemi\u015f de\u011fi\u015fiklikler var, sayfadan ayr\u0131lmak istedi\u011finize emin misiniz?",
|
||||
"Restore last draft": "Son tasla\u011f\u0131 kurtar",
|
||||
"Special character": "\u00d6zel karakter",
|
||||
"Source code": "Kaynak kodu",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Renk",
|
||||
"Right to left": "Sa\u011fdan sola",
|
||||
"Left to right": "Soldan sa\u011fa",
|
||||
"Emoticons": "G\u00fcl\u00fcc\u00fckler",
|
||||
"Robots": "Robotlar",
|
||||
"Document properties": "Dok\u00fcman \u00f6zellikleri",
|
||||
"Title": "Ba\u015fl\u0131k",
|
||||
"Keywords": "Anahtar kelimeler",
|
||||
"Encoding": "Kodlama",
|
||||
"Description": "A\u00e7\u0131klama",
|
||||
"Author": "Yazar",
|
||||
"Fullscreen": "Tam ekran",
|
||||
"Horizontal line": "Yatay \u00e7izgi",
|
||||
"Horizontal space": "Yatay bo\u015fluk",
|
||||
"Insert\/edit image": "Resim ekle\/d\u00fczenle",
|
||||
"General": "Genel",
|
||||
"Advanced": "Geli\u015fmi\u015f",
|
||||
"Source": "Kaynak",
|
||||
"Border": "\u00c7er\u00e7eve",
|
||||
"Constrain proportions": "En - Boy oran\u0131n\u0131 koru",
|
||||
"Vertical space": "Dikey bo\u015fluk",
|
||||
"Image description": "Resim a\u00e7\u0131klamas\u0131",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Boyutlar",
|
||||
"Insert image": "Resim ekle",
|
||||
"Zoom in": "Yak\u0131nla\u015ft\u0131r",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Geri",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "Yatay \u00e7evir",
|
||||
"Resize": "Yeniden Boyutland\u0131r",
|
||||
"Sharpen": "Keskinle\u015ftir",
|
||||
"Zoom out": "Uzakla\u015ft\u0131r",
|
||||
"Image options": "G\u00f6r\u00fcnt\u00fc se\u00e7enekleri",
|
||||
"Apply": "Uygula",
|
||||
"Brightness": "Parlakl\u0131k",
|
||||
"Rotate clockwise": "Saat y\u00f6n\u00fcnde d\u00f6nd\u00fcr",
|
||||
"Rotate counterclockwise": "Saat y\u00f6n\u00fcn\u00fcn tersine d\u00f6nd\u00fcr",
|
||||
"Edit image": "G\u00f6r\u00fcnt\u00fcy\u00fc d\u00fczenle",
|
||||
"Color levels": "Renk seviyesi",
|
||||
"Crop": "Kes",
|
||||
"Orientation": "Y\u00f6n\u00fcn\u00fc Belirle",
|
||||
"Flip vertically": "Dikey \u00e7evir",
|
||||
"Invert": "Tersine \u00e7evir",
|
||||
"Insert date\/time": "Tarih \/ Zaman ekle",
|
||||
"Remove link": "Ba\u011flant\u0131y\u0131 kald\u0131r",
|
||||
"Url": "Url",
|
||||
"Text to display": "G\u00f6r\u00fcnen yaz\u0131",
|
||||
"Anchors": "\u00c7apalar",
|
||||
"Insert link": "Ba\u011flant\u0131 ekle",
|
||||
"New window": "Yeni pencere",
|
||||
"None": "Hi\u00e7biri",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Girdi\u011finiz URL bir d\u0131\u015f ba\u011flant\u0131 gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan http:\/\/ \u00f6nekini eklemek ister misiniz?",
|
||||
"Target": "Hedef",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Girdi\u011finiz URL bir eposta adresi gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan mailto: \u00f6nekini eklemek ister misiniz?",
|
||||
"Insert\/edit link": "Ba\u011flant\u0131 ekle\/d\u00fczenle",
|
||||
"Insert\/edit video": "Video ekle\/d\u00fczenle",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternatif kaynak",
|
||||
"Paste your embed code below:": "Medya g\u00f6mme kodunu buraya yap\u0131\u015ft\u0131r:",
|
||||
"Insert video": "Video ekle",
|
||||
"Embed": "G\u00f6mme",
|
||||
"Nonbreaking space": "B\u00f6l\u00fcnemez bo\u015fluk",
|
||||
"Page break": "Sayfa sonu",
|
||||
"Paste as text": "Metin olarak yap\u0131\u015ft\u0131r",
|
||||
"Preview": "\u00d6nizleme",
|
||||
"Print": "Yazd\u0131r",
|
||||
"Save": "Kaydet",
|
||||
"Could not find the specified string.": "Herhangi bir sonu\u00e7 bulunamad\u0131.",
|
||||
"Replace": "De\u011fi\u015ftir",
|
||||
"Next": "Sonraki",
|
||||
"Whole words": "Tam s\u00f6zc\u00fckler",
|
||||
"Find and replace": "Bul ve de\u011fi\u015ftir",
|
||||
"Replace with": "Bununla de\u011fi\u015ftir",
|
||||
"Find": "Bul",
|
||||
"Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir",
|
||||
"Match case": "B\u00fcy\u00fck \/ K\u00fc\u00e7\u00fck harfe duyarl\u0131",
|
||||
"Prev": "\u00d6nceki",
|
||||
"Spellcheck": "Yaz\u0131m denetimi",
|
||||
"Finish": "Bitir",
|
||||
"Ignore all": "T\u00fcm\u00fcn\u00fc yoksay",
|
||||
"Ignore": "Yoksay",
|
||||
"Add to Dictionary": "S\u00f6zl\u00fc\u011fe ekle",
|
||||
"Insert row before": "\u00d6ncesine yeni sat\u0131r ekle",
|
||||
"Rows": "Sat\u0131rlar",
|
||||
"Height": "Y\u00fckseklik",
|
||||
"Paste row after": "Sonras\u0131na sat\u0131r yap\u0131\u015ft\u0131r",
|
||||
"Alignment": "Hizalama",
|
||||
"Border color": "Kenarl\u0131k Rengi",
|
||||
"Column group": "S\u00fctun grubu",
|
||||
"Row": "Sat\u0131r",
|
||||
"Insert column before": "\u00d6ncesine yeni s\u00fctun ekle",
|
||||
"Split cell": "H\u00fccreleri ay\u0131r",
|
||||
"Cell padding": "H\u00fccre i\u00e7 bo\u015flu\u011fu",
|
||||
"Cell spacing": "H\u00fccre aral\u0131\u011f\u0131",
|
||||
"Row type": "Sat\u0131r tipi",
|
||||
"Insert table": "Tablo ekle",
|
||||
"Body": "G\u00f6vde",
|
||||
"Caption": "Ba\u015fl\u0131k",
|
||||
"Footer": "Alt",
|
||||
"Delete row": "Sat\u0131r\u0131 sil",
|
||||
"Paste row before": "\u00d6ncesine sat\u0131r yap\u0131\u015ft\u0131r",
|
||||
"Scope": "Kapsam",
|
||||
"Delete table": "Tabloyu sil",
|
||||
"H Align": "Yatay Hizalama",
|
||||
"Top": "\u00dcst",
|
||||
"Header cell": "Ba\u015fl\u0131k h\u00fccresi",
|
||||
"Column": "S\u00fctun",
|
||||
"Row group": "Sat\u0131r grubu",
|
||||
"Cell": "H\u00fccre",
|
||||
"Middle": "Orta",
|
||||
"Cell type": "H\u00fccre tipi",
|
||||
"Copy row": "Sat\u0131r\u0131 kopyala",
|
||||
"Row properties": "Sat\u0131r \u00f6zellikleri",
|
||||
"Table properties": "Tablo \u00f6zellikleri",
|
||||
"Bottom": "Alt",
|
||||
"V Align": "Dikey Hizalama",
|
||||
"Header": "Ba\u015fl\u0131k",
|
||||
"Right": "Sa\u011f",
|
||||
"Insert column after": "Sonras\u0131na yeni s\u00fctun ekle",
|
||||
"Cols": "S\u00fctunlar",
|
||||
"Insert row after": "Sonras\u0131na yeni sat\u0131r ekle",
|
||||
"Width": "Geni\u015flik",
|
||||
"Cell properties": "H\u00fccre \u00f6zellikleri",
|
||||
"Left": "Sol",
|
||||
"Cut row": "Sat\u0131r\u0131 kes",
|
||||
"Delete column": "S\u00fctunu sil",
|
||||
"Center": "Orta",
|
||||
"Merge cells": "H\u00fccreleri birle\u015ftir",
|
||||
"Insert template": "\u015eablon ekle",
|
||||
"Templates": "\u015eablonlar",
|
||||
"Background color": "Arkaplan rengi",
|
||||
"Custom...": "\u00d6zel",
|
||||
"Custom color": "\u00d6zel Renk",
|
||||
"No color": "Renk Yok",
|
||||
"Text color": "Yaz\u0131 rengi",
|
||||
"Show blocks": "Bloklar\u0131 g\u00f6r\u00fcnt\u00fcle",
|
||||
"Show invisible characters": "G\u00f6r\u00fcnmez karakterleri g\u00f6ster",
|
||||
"Words: {0}": "Kelime: {0}",
|
||||
"Insert": "Ekle",
|
||||
"File": "Dosya",
|
||||
"Edit": "D\u00fczenle",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zengin Metin Alan\u0131. Men\u00fc i\u00e7in ALT-F9 k\u0131sayolunu kullan\u0131n. Ara\u00e7 \u00e7ubu\u011fu i\u00e7in ALT-F10 k\u0131sayolunu kullan\u0131n. Yard\u0131m i\u00e7in ALT-0 k\u0131sayolunu kullan\u0131n.",
|
||||
"Tools": "Ara\u00e7lar",
|
||||
"View": "G\u00f6r\u00fcnt\u00fcle",
|
||||
"Table": "Tablo",
|
||||
"Format": "Bi\u00e7im"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/tt.js
Normal file
219
data/web/rc/program/js/tinymce/langs/tt.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('tt',{
|
||||
"Cut": "\u041a\u0438\u0441\u0435\u043f \u0430\u043b\u0443",
|
||||
"Heading 5": "\u0411\u0430\u0448\u043b\u0430\u043c 5",
|
||||
"Header 2": "\u0411\u0430\u0448\u043b\u0430\u043c 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0411\u0440\u0430\u0443\u0437\u0435\u0440\u044b\u0433\u044b\u0437 \u0430\u043b\u043c\u0430\u0448\u0443 \u0431\u0443\u0444\u0435\u0440\u044b\u043d\u0430 \u043a\u0435\u0440\u04af \u043c\u04e9\u043c\u043a\u0438\u043d\u043b\u0435\u0433\u0435 \u0431\u0435\u043b\u04d9\u043d \u0442\u04d9\u044d\u043c\u0438\u043d \u0438\u0442\u0435\u043b\u043c\u04d9\u0433\u04d9\u043d. \u0410\u043b\u043c\u0430\u0448\u043a\u0430 Ctrl+X\/C\/V \u043a\u0443\u043b\u043b\u0430\u043d\u044b\u0433\u044b\u0437.",
|
||||
"Heading 4": "\u0411\u0430\u0448\u043b\u0430\u043c 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u0411\u0430\u0448\u043b\u0430\u043c 2",
|
||||
"Paste": "\u04e8\u0441\u0442\u04d9\u04af",
|
||||
"Close": "\u042f\u0431\u044b\u0440\u0433\u0430",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442 \u0442\u04e9\u0440\u0435",
|
||||
"Pre": "\u0410\u043b\u0434\u0430\u043d \u0444\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u043d\u0433\u0430\u043d \u0442\u0435\u043a\u0441\u0442",
|
||||
"Align right": "\u0423\u04a3 \u044f\u043a \u043a\u044b\u0440\u044b\u0439\u0434\u0430\u043d \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af",
|
||||
"New document": "\u042f\u04a3\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
||||
"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u044f",
|
||||
"Heading 1": "\u0411\u0430\u0448\u043b\u0430\u043c 1",
|
||||
"Headings": "\u0411\u0430\u0448\u043b\u0430\u043c\u043b\u0430\u0440",
|
||||
"Increase indent": "\u041e\u0442\u0441\u0442\u0443\u043f\u043d\u044b \u0430\u0440\u0442\u0442\u044b\u0440\u0443",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0440",
|
||||
"Headers": "\u0411\u0430\u0448\u043b\u0430\u043c\u043b\u0430\u0440",
|
||||
"Select all": "\u0411\u0430\u0440\u044b\u0441\u044b\u043d \u0441\u0430\u0439\u043b\u0430\u0443",
|
||||
"Header 3": "\u0411\u0430\u0448\u043b\u0430\u043c 3",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u043b\u0430\u0440",
|
||||
"Undo": "\u041a\u0430\u0439\u0442\u0430\u0440\u0443",
|
||||
"Strikethrough": "\u0421\u044b\u0437\u044b\u043b\u0433\u0430\u043d",
|
||||
"Bullet list": "\u041c\u0430\u0440\u043a\u0435\u0440\u043b\u0430\u0440",
|
||||
"Header 1": "\u0411\u0430\u0448\u043b\u0430\u043c 1",
|
||||
"Superscript": "\u04e8\u0441\u043a\u0435 \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Clear formatting": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0443\u043d\u044b \u0447\u0438\u0441\u0442\u0430\u0440\u0442\u0443",
|
||||
"Font Sizes": "\u0428\u0440\u0438\u0444\u0442 \u0437\u0443\u0440\u043b\u044b\u043a\u043b\u0430\u0440\u044b",
|
||||
"Subscript": "\u0410\u0441\u043a\u044b \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Header 6": "\u0411\u0430\u0448\u043b\u0430\u043c 6",
|
||||
"Redo": "\u041a\u0430\u0431\u0430\u0442\u043b\u0430\u0443",
|
||||
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
||||
"Ok": "\u0422\u04d9\u043c\u0430\u043c",
|
||||
"Bold": "\u041a\u0430\u043b\u044b\u043d",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
||||
"Align center": "\u04ae\u0437\u04d9\u043a\u043a\u04d9 \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af",
|
||||
"Header 5": "\u0411\u0430\u0448\u043b\u0430\u043c 5",
|
||||
"Heading 6": "\u0411\u0430\u0448\u043b\u0430\u043c 6",
|
||||
"Heading 3": "\u0411\u0430\u0448\u043b\u0430\u043c 3",
|
||||
"Decrease indent": "\u041e\u0442\u0441\u0442\u0443\u043f\u043d\u044b \u043a\u0435\u0447\u0435\u0440\u04d9\u0439\u0442\u04af",
|
||||
"Header 4": "\u0411\u0430\u0448\u043b\u0430\u043c 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u04e8\u0441\u0442\u04d9\u043b\u04d9\u0441\u0435 \u0442\u0435\u043a\u0441\u0442 \u0445\u04d9\u0437\u0435\u0440 \u0444\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u043d\u043c\u0430\u0433\u0430\u043d \u0440\u0435\u0436\u0438\u043c\u0434\u0430. \u04d8\u043b\u0435\u0433\u0435 \u04af\u0437\u043b\u0435\u043a\u043d\u0435 \u0441\u04af\u043d\u0434\u0435\u0440\u043c\u04d9\u0433\u04d9\u043d \u043e\u0447\u0440\u0430\u043a\u0442\u0430 \u0442\u0435\u043a\u0441\u0442 \u0444\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u043d\u043c\u0430\u0433\u0430\u043d \u043a\u0438\u043b\u0435\u0448 \u04e9\u0441\u0442\u04d9\u043b\u0435\u0440.",
|
||||
"Underline": "\u0410\u0441\u0442\u044b\u043d\u0430 \u0441\u044b\u0437\u044b\u043b\u0433\u0430\u043d",
|
||||
"Cancel": "\u0411\u0430\u0448 \u0442\u0430\u0440\u0442\u0443",
|
||||
"Justify": "\u041a\u0438\u04a3\u043b\u0435\u043a\u043a\u04d9 \u043a\u0430\u0440\u0430\u043f \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af",
|
||||
"Inline": "\u042e\u043b \u0445\u04d9\u0440\u0435\u0444\u043b\u04d9\u0440\u0435",
|
||||
"Copy": "\u041a\u04af\u0447\u0435\u0440\u043c\u04d9\u043b\u04d9\u04af",
|
||||
"Align left": "\u0421\u0443\u043b \u044f\u043a \u043a\u044b\u0440\u044b\u0439\u0434\u0430\u043d \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af",
|
||||
"Visual aids": "\u041a\u04af\u0440\u0441\u04d9\u0442\u043c\u04d9 \u04d9\u0441\u0431\u0430\u043f\u043b\u0430\u0440",
|
||||
"Lower Greek": "\u0413\u0440\u0435\u043a \u044e\u043b \u0445\u04d9\u0440\u0435\u0444\u0435",
|
||||
"Square": "\u0428\u0430\u043a\u043c\u0430\u043a",
|
||||
"Default": "\u04d8\u04af\u0432\u04d9\u043b\u0433\u0435 \u043a\u04e9\u0439\u043b\u04d9\u04af\u043b\u04d9\u0440",
|
||||
"Lower Alpha": "\u0410\u043b\u044c\u0444\u0430 \u044e\u043b \u0445\u04d9\u0440\u0435\u0444\u0435",
|
||||
"Circle": "\u0422\u04af\u0433\u0259\u0440\u0259\u043a",
|
||||
"Disc": "\u0414\u0438\u0441\u043a",
|
||||
"Upper Alpha": "\u0410\u043b\u044c\u0444\u0430 \u0431\u0430\u0448 \u0445\u04d9\u0440\u0435\u0444\u0435",
|
||||
"Upper Roman": "\u0420\u0438\u043c \u0431\u0430\u0448 \u0445\u04d9\u0440\u0435\u0444\u0435",
|
||||
"Lower Roman": "\u0420\u0438\u043c \u044e\u043b \u0445\u04d9\u0440\u0435\u0444\u0435",
|
||||
"Name": "\u0418\u0441\u0435\u043c",
|
||||
"Anchor": "\u042f\u043a\u043e\u0440\u044c",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0421\u0430\u043a\u043b\u0430\u043d\u043c\u0430\u0433\u0430\u043d \u04af\u0437\u0433\u04d9\u0440\u0435\u0448\u043b\u04d9\u0440 \u0431\u0430\u0440. \u0421\u0435\u0437 \u0447\u044b\u043d\u043d\u0430\u043d \u0434\u0430 \u0447\u044b\u0433\u0430\u0440\u0433\u0430 \u0442\u0435\u043b\u0438\u0441\u0435\u0437\u043c\u0435?",
|
||||
"Restore last draft": "\u0421\u043e\u04a3\u0433\u044b \u043a\u0430\u0440\u0430\u043b\u0430\u043c\u0430\u043d\u044b \u043a\u0430\u0439\u0442\u0430\u0440\u0443",
|
||||
"Special character": "\u041c\u0430\u0445\u0441\u0443\u0441 \u0441\u0438\u043c\u0432\u043e\u043b",
|
||||
"Source code": "\u0427\u044b\u0433\u0430\u043d\u0430\u043a \u043a\u043e\u0434",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0422\u04e9\u0441",
|
||||
"Right to left": "\u0423\u04a3\u043d\u0430\u043d \u0441\u0443\u043b\u0433\u0430 \u044f\u0437\u044b\u043b\u044b\u0448",
|
||||
"Left to right": "\u0421\u0443\u043b\u0434\u0430\u043d \u0443\u04a3\u0433\u0430 \u044f\u0437\u044b\u043b\u044b\u0448",
|
||||
"Emoticons": "\u0421\u043c\u0430\u0439\u043b\u043b\u0430\u0440",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u043b\u0430\u0440",
|
||||
"Document properties": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u04af\u0437\u043b\u0435\u043a\u043b\u04d9\u0440\u0435",
|
||||
"Title": "\u0418\u0441\u0435\u043c",
|
||||
"Keywords": "\u0410\u0447\u043a\u044b\u0447 \u0441\u04af\u0437\u043b\u04d9\u0440",
|
||||
"Encoding": "\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430",
|
||||
"Description": "\u0422\u0430\u0441\u0432\u0438\u0440\u043b\u0430\u043c\u0430",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Fullscreen": "\u0422\u0443\u043b\u044b \u044d\u043a\u0440\u0430\u043d\u0434\u0430",
|
||||
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c \u0441\u044b\u0437\u044b\u043a",
|
||||
"Horizontal space": "\u042f\u0442\u043c\u0430 \u0430\u0440\u0430",
|
||||
"Insert\/edit image": "\u0420\u04d9\u0441\u0435\u043c \u04e9\u0441\u0442\u04d9\u04af\/\u04af\u0437\u0433\u04d9\u0440\u0442\u04af",
|
||||
"General": "\u0413\u043e\u043c\u0443\u043c\u0438",
|
||||
"Advanced": "\u041a\u0438\u04a3\u04d9\u0439\u0442\u0435\u043b\u0433\u04d9\u043d \u043a\u04e9\u0439\u043b\u04d9\u04af\u043b\u04d9\u0440",
|
||||
"Source": "\u0427\u044b\u0433\u0430\u043d\u0430\u043a",
|
||||
"Border": "\u0427\u0438\u043a",
|
||||
"Constrain proportions": "\u0427\u0438\u043a\u043b\u04d9\u043c\u04d9\u043b\u04d9\u0440 \u043f\u0440\u043e\u043f\u0440\u043e\u0440\u0446\u0438\u044f\u043b\u04d9\u0440\u0435",
|
||||
"Vertical space": "\u0410\u0441\u043c\u0430 \u0430\u0440\u0430",
|
||||
"Image description": "\u0422\u0430\u0441\u0432\u0438\u0440\u043b\u0430\u043c\u0430",
|
||||
"Style": "\u0421\u0442\u0438\u043b\u044c",
|
||||
"Dimensions": "\u04ae\u043b\u0447\u04d9\u043d\u0435\u0448\u043b\u04d9\u0440",
|
||||
"Insert image": "\u0420\u04d9\u0441\u0435\u043c \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Zoom in": "\u0417\u0443\u0440\u0430\u0439\u0442\u044b\u0440\u0433\u0430",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Back": "\u0411\u0430\u0448 \u0442\u0430\u0440\u0442\u0443",
|
||||
"Gamma": "\u0413\u0430\u043c\u043c\u0430",
|
||||
"Flip horizontally": "Flip horizontally",
|
||||
"Resize": "\u0417\u0443\u0440\u043b\u044b\u043a\u043d\u044b \u04af\u0437\u0433\u04d9\u0440\u0442\u04af",
|
||||
"Sharpen": "\u04ae\u0442\u043a\u0435\u043d\u043b\u0435\u043a",
|
||||
"Zoom out": "\u041a\u0435\u0447\u0435\u0440\u04d9\u0439\u0442\u0435\u0440\u0433\u04d9",
|
||||
"Image options": "Image options",
|
||||
"Apply": "\u0422\u04d9\u043c\u0430\u043c",
|
||||
"Brightness": "\u042f\u043a\u0442\u044b\u043b\u044b\u043a",
|
||||
"Rotate clockwise": "Rotate clockwise",
|
||||
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||
"Edit image": "\u0420\u04d9\u0441\u0435\u043c \u04af\u0437\u0433\u04d9\u0440\u0442\u04af",
|
||||
"Color levels": "\u0422\u04e9\u0441\u043b\u04d9\u0440 \u043a\u04af\u043b\u04d9\u043c\u0435",
|
||||
"Crop": "\u041a\u0438\u0441\u04af",
|
||||
"Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
|
||||
"Flip vertically": "Flip vertically",
|
||||
"Invert": "\u04d8\u0432\u0435\u0440\u0435\u043b\u0434\u0435\u0440\u04af",
|
||||
"Insert date\/time": "\u0414\u0430\u0442\u0430\/\u0432\u0430\u043a\u044b\u0442 \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Remove link": "\u0421\u044b\u043b\u0442\u0430\u043b\u0430\u043c\u0430\u043d\u044b \u0431\u0435\u0442\u0435\u0440\u04af",
|
||||
"Url": "\u0421\u044b\u043b\u0442\u0430\u043b\u0430\u043c\u0430",
|
||||
"Text to display": "\u041a\u04af\u0440\u0441\u04d9\u0442\u0435\u043b\u0433\u04d9\u043d \u0442\u0435\u043a\u0441\u0442",
|
||||
"Anchors": "\u042f\u043a\u043e\u0440\u044c\u043b\u04d9\u0440",
|
||||
"Insert link": "\u0421\u044b\u043b\u0442\u0430\u043b\u0430\u043c\u0430 \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"New window": "\u042f\u04a3\u0430 \u0442\u04d9\u0440\u04d9\u0437\u04d9",
|
||||
"None": "\u04ba\u0438\u0447\u0431\u0435\u0440",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u04e8\u0441\u0442\u04d9\u043b\u0433\u04d9\u043d URL \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d \u043f\u043e\u0447\u0442\u0430 \u0430\u0434\u0440\u0435\u0441\u044b \u0431\u0443\u043b\u0441\u0430 \u043a\u0438\u0440\u04d9\u043a. \u0417\u0430\u0440\u0443\u0440\u0438 mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u04e9\u0441\u0442\u04d9\u043b\u0441\u0435\u043d\u043c\u0435?",
|
||||
"Target": "\u041c\u0430\u043a\u0441\u0430\u0442",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u04e8\u0441\u0442\u04d9\u043b\u0433\u04d9\u043d URL \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d \u043f\u043e\u0447\u0442\u0430 \u0430\u0434\u0440\u0435\u0441\u044b \u0431\u0443\u043b\u0441\u0430 \u043a\u0438\u0440\u04d9\u043a. \u0417\u0430\u0440\u0443\u0440\u0438 mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u04e9\u0441\u0442\u04d9\u043b\u0441\u0435\u043d\u043c\u0435?",
|
||||
"Insert\/edit link": "\u0421\u044b\u043b\u0442\u0430\u043b\u0430\u043c\u0430 \u04e9\u0441\u0442\u04d9\u04af\/\u04af\u0437\u0433\u04d9\u0440\u0442\u04af",
|
||||
"Insert\/edit video": "\u0412\u0438\u0434\u0435\u043e \u04e9\u0441\u0442\u04d9\u04af\/\u04af\u0437\u0433\u04d9\u0440\u0442\u04af",
|
||||
"Poster": "\u041f\u043e\u0441\u0442\u0435\u0440",
|
||||
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432 \u0447\u044b\u0433\u0430\u043d\u0430\u043a",
|
||||
"Paste your embed code below:": "\u042d\u0447\u0435\u043d\u04d9 \u0441\u0430\u043b\u044b\u043d\u0433\u0430\u043d \u043a\u043e\u0434\u043d\u044b \u0442\u04af\u0431\u04d9\u043d\u0440\u04d9\u043a \u04e9\u0441\u0442\u04d9\u0433\u0435\u0437:",
|
||||
"Insert video": "\u0412\u0438\u0434\u0435\u043e \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Embed": "\u042d\u0447\u0435\u043d\u04d9 \u0441\u0430\u043b\u0443",
|
||||
"Nonbreaking space": "\u04e8\u0437\u0435\u043b\u043c\u04d9\u0441 \u0431\u0443\u0448\u043b\u044b\u043a",
|
||||
"Page break": "\u0411\u0438\u0442 \u0431\u04af\u043b\u0433\u0435\u0447\u0435",
|
||||
"Paste as text": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0443\u0441\u044b\u0437 \u0442\u0435\u043a\u0441\u0442 \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Preview": "\u041a\u0430\u0440\u0430\u043f \u0430\u043b\u0443",
|
||||
"Print": "\u0411\u0430\u0441\u0442\u044b\u0440\u0443",
|
||||
"Save": "\u0421\u0430\u043a\u043b\u0430\u0443",
|
||||
"Could not find the specified string.": "\u042d\u0437\u043b\u04d9\u043d\u0433\u04d9\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.",
|
||||
"Replace": "\u0410\u043b\u043c\u0430\u0448\u0442\u044b\u0440\u0443",
|
||||
"Next": "\u041a\u0438\u043b\u04d9\u0441\u0435",
|
||||
"Whole words": "\u0421\u04af\u0437\u043b\u04d9\u0440\u043d\u0435 \u0442\u0443\u043b\u044b\u0441\u044b\u043d\u0447\u0430 \u0433\u044b\u043d\u0430 \u044d\u0437\u043b\u04d9\u04af",
|
||||
"Find and replace": "\u042d\u0437\u043b\u04d9\u043f \u0442\u0430\u0431\u0443 \u04bb\u04d9\u043c \u0430\u043b\u043c\u0430\u0448\u0442\u044b\u0440\u0443",
|
||||
"Replace with": "\u041d\u04d9\u0440\u0441\u04d9\u0433\u04d9 \u0430\u043b\u043c\u0430\u0448\u0442\u044b\u0440\u0443",
|
||||
"Find": "\u042d\u0437\u043b\u04d9\u04af",
|
||||
"Replace all": "\u0411\u0430\u0440\u044b\u0441\u044b\u043d \u0434\u0430 \u0430\u043b\u043c\u0430\u0448\u0442\u044b\u0440\u0443",
|
||||
"Match case": "\u0411\u0430\u0448 \u04bb\u04d9\u043c \u044e\u043b \u0445\u04d9\u0440\u0435\u0444\u043b\u04d9\u0440\u0435\u043d \u0438\u0441\u04d9\u043f\u043a\u04d9 \u0430\u043b\u0443",
|
||||
"Prev": "\u0410\u043b\u0434\u0430\u0433\u044b",
|
||||
"Spellcheck": "\u0414\u04e9\u0440\u0435\u0441 \u044f\u0437\u044b\u043b\u044b\u0448",
|
||||
"Finish": "\u0422\u04d9\u043c\u0430\u043c",
|
||||
"Ignore all": "\u0411\u0430\u0440\u044b\u0441\u044b\u043d \u0434\u0430 \u043a\u0430\u043b\u0434\u044b\u0440\u0443",
|
||||
"Ignore": "\u0418\u0433\u044a\u0442\u0438\u0431\u0430\u0440\u0441\u044b\u0437 \u043a\u0430\u043b\u0434\u044b\u0440\u0443",
|
||||
"Add to Dictionary": "\u0421\u04af\u0437\u043b\u0435\u043a\u043a\u04d9 \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Insert row before": "\u04e8\u0441\u0442\u04d9\u043d \u044e\u043b\u043b\u0430\u0440 \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Rows": "\u042e\u043b\u043b\u0430\u0440",
|
||||
"Height": "\u0411\u0438\u0435\u043a\u043b\u0435\u043a",
|
||||
"Paste row after": "\u042e\u043b\u043d\u044b \u0430\u0441\u0442\u0430\u043d \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Alignment": "\u0422\u0438\u0433\u0435\u0437\u043b\u04d9\u04af",
|
||||
"Border color": "\u0427\u0438\u043a \u0442\u04e9\u0441\u0435",
|
||||
"Column group": "\u0411\u0430\u0433\u0430\u043d\u0430\u043b\u0430\u0440 \u0433\u0440\u0443\u043f\u043f\u0430\u0441\u044b",
|
||||
"Row": "\u042e\u043b",
|
||||
"Insert column before": "\u0421\u0443\u043b\u0434\u0430\u043d \u0431\u0430\u0433\u0430\u043d\u0430\u043b\u0430\u0440 \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Split cell": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a\u043d\u0435 \u0431\u04af\u043b\u04af",
|
||||
"Cell padding": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a\u043d\u0435 \u0442\u0443\u0442\u044b\u0440\u0443",
|
||||
"Cell spacing": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a\u043b\u04d9\u0440 \u0430\u0440\u0430\u0441\u044b",
|
||||
"Row type": "\u042e\u043b \u0442\u04e9\u0440\u0435",
|
||||
"Insert table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Body": "\u0411\u04d9\u0434\u04d9\u043d",
|
||||
"Caption": "\u0418\u0441\u0435\u043c",
|
||||
"Footer": "\u0410\u0441\u043a\u044b \u04e9\u043b\u0435\u0448",
|
||||
"Delete row": "\u042e\u043b\u043d\u044b \u0431\u0435\u0442\u0435\u0440\u04af",
|
||||
"Paste row before": "\u042e\u043b\u043d\u044b \u04e9\u0441\u0442\u04d9\u043d \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Scope": "\u04e8\u043b\u043a\u04d9",
|
||||
"Delete table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430\u043d\u044b \u0431\u0435\u0442\u0435\u0440\u04af",
|
||||
"H Align": "\u042f\u0442\u043c\u0430 \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af",
|
||||
"Top": "\u04e8\u0441\u043a\u04d9",
|
||||
"Header cell": "\u0411\u0430\u0448 \u043a\u04af\u0437\u04d9\u043d\u04d9\u043a",
|
||||
"Column": "\u0411\u0430\u0433\u0430\u043d\u0430",
|
||||
"Row group": "\u042e\u043b\u043b\u0430\u0440 \u0433\u0440\u0443\u043f\u043f\u0430\u0441\u044b",
|
||||
"Cell": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a",
|
||||
"Middle": "\u0423\u0440\u0442\u0430\u0433\u0430",
|
||||
"Cell type": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a \u0442\u04e9\u0440\u0435",
|
||||
"Copy row": "\u042e\u043b\u043d\u044b \u043a\u04af\u0447\u0435\u0440\u043c\u04d9\u043b\u04d9\u04af",
|
||||
"Row properties": "\u042e\u043b \u04af\u0437\u043b\u0435\u043a\u043b\u04d9\u0440\u0435",
|
||||
"Table properties": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u04af\u0437\u043b\u0435\u043a\u043b\u04d9\u0440\u0435",
|
||||
"Bottom": "\u0410\u0441\u043a\u0430",
|
||||
"V Align": "\u0410\u0441\u043c\u0430 \u0442\u0438\u0433\u0435\u0437\u043b\u04d9\u04af",
|
||||
"Header": "\u04e8\u0441\u043a\u0435 \u04e9\u043b\u0435\u0448",
|
||||
"Right": "\u0423\u04a3",
|
||||
"Insert column after": "\u0423\u04a3\u043d\u0430\u043d \u0431\u0430\u0433\u0430\u043d\u0430\u043b\u0430\u0440 \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Cols": "\u0411\u0430\u0433\u0430\u043d\u0430\u043b\u0430\u0440",
|
||||
"Insert row after": "\u0410\u0441\u0442\u0430\u043d \u044e\u043b\u043b\u0430\u0440 \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Width": "\u041a\u0438\u04a3\u043b\u0435\u043a",
|
||||
"Cell properties": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a \u04af\u0437\u043b\u0435\u043a\u043b\u04d9\u0440\u0435",
|
||||
"Left": "\u0421\u0443\u043b",
|
||||
"Cut row": "\u042e\u043b\u043d\u044b \u043a\u0438\u0441\u0435\u043f \u0430\u043b\u0443",
|
||||
"Delete column": "\u0411\u0430\u0433\u0430\u043d\u0430\u043d\u044b \u0431\u0435\u0442\u0435\u0440\u04af",
|
||||
"Center": "\u04ae\u0437\u04d9\u043a",
|
||||
"Merge cells": "\u041a\u04af\u0437\u04d9\u043d\u04d9\u043a\u043b\u04d9\u0440\u043d\u0435 \u0431\u0435\u0440\u043b\u04d9\u0448\u0442\u0435\u0440\u04af",
|
||||
"Insert template": "\u0428\u0430\u0431\u043b\u043e\u043d \u04e9\u0441\u0442\u04d9\u04af",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u043d\u0430\u0440",
|
||||
"Background color": "\u0424\u043e\u043d \u0442\u04e9\u0441\u0435",
|
||||
"Custom...": "\u04ae\u0437\u0435\u043d\u0447\u04d9\u043b\u0435\u043a\u043b\u0435...",
|
||||
"Custom color": "\u04ae\u0437\u0435\u043d\u0447\u04d9\u043b\u0435\u043a\u043b\u0435 \u0442\u04e9\u0441",
|
||||
"No color": "\u0422\u04e9\u0441\u0441\u0435\u0437",
|
||||
"Text color": "\u0422\u0435\u043a\u0441\u0442 \u0442\u04e9\u0441\u0435",
|
||||
"Show blocks": "\u0411\u043b\u043e\u043a\u043b\u0430\u0440\u043d\u044b \u043a\u04af\u0440\u0441\u04d9\u0442\u04af",
|
||||
"Show invisible characters": "\u042f\u0448\u0435\u0440\u0435\u043d \u0441\u0438\u043c\u0432\u043e\u043b\u043b\u0430\u0440\u043d\u044b \u043a\u04af\u0440\u0441\u04d9\u0442\u04af",
|
||||
"Words: {0}": "\u0421\u04af\u0437\u043b\u04d9\u0440 \u0441\u0430\u043d\u044b: {0}",
|
||||
"Insert": "\u04e8\u0441\u0442\u04d9\u04af",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u0422\u04e9\u043f",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0443\u043b\u044b \u0442\u0435\u043a\u0441\u0442 \u04e9\u043b\u043a\u04d9\u0441\u0435. \u041c\u0435\u043d\u044e\u0433\u0430 \u043a\u0435\u0440\u0435\u0440 \u04e9\u0447\u0435\u043d ALT-F9 \u0431\u0430\u0441\u044b\u0433\u044b\u0437. \u041a\u043e\u0440\u0430\u043b\u043b\u0430\u0440 \u043f\u0430\u043d\u0435\u043b\u0435\u043d\u04d9 \u043a\u04af\u0447\u0435\u0440 \u04e9\u0447\u0435\u043d ALT-F10 \u0431\u0430\u0441\u044b\u0433\u044b\u0437. \u042f\u0440\u0434\u04d9\u043c \u04e9\u0447\u0435\u043d ALT-0 \u0431\u0430\u0441\u044b\u0433\u044b\u0437.",
|
||||
"Tools": "\u041a\u043e\u0440\u0430\u043b\u043b\u0430\u0440",
|
||||
"View": "\u041a\u04af\u0440\u0435\u043d\u0435\u0448",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442\u043b\u0430\u0443"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/ug.js
Normal file
219
data/web/rc/program/js/tinymce/langs/ug.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('ug',{
|
||||
"Cut": "\u0643\u06d0\u0633\u0649\u0634",
|
||||
"Heading 5": "5 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
|
||||
"Header 2": "\u062a\u06d0\u0645\u0627 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0633\u0649\u0632\u0646\u0649\u06ad \u062a\u0648\u0631 \u0643\u06c6\u0631\u06af\u06c8\u0686\u0649\u06ad\u0649\u0632 \u0642\u0649\u064a\u0649\u067e \u0686\u0627\u067e\u0644\u0627\u0634 \u062a\u0627\u062e\u062a\u0649\u0633\u0649 \u0632\u0649\u064a\u0627\u0631\u06d5\u062a \u0642\u0649\u0644\u0649\u0634\u0646\u0649 \u0642\u0648\u0644\u0644\u0649\u0645\u0627\u064a\u062f\u06c7. Ctrl+X\/C\/V \u062a\u06d0\u0632\u0644\u06d5\u062a\u0645\u06d5 \u0643\u06c7\u0646\u06c7\u067e\u0643\u0649\u0633\u0649 \u0626\u0627\u0631\u0642\u0649\u0644\u0649\u0642 \u0643\u06d0\u0633\u0649\u067e \u0686\u0627\u067e\u0644\u0627\u0634 \u0645\u06d5\u0634\u063a\u06c7\u0644\u0627\u062a\u0649 \u0642\u0649\u0644\u0649\u06ad.",
|
||||
"Heading 4": "4 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
|
||||
"Div": "Div",
|
||||
"Heading 2": "2 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
|
||||
"Paste": "\u0686\u0627\u067e\u0644\u0627\u0634",
|
||||
"Close": "\u062a\u0627\u0642\u0627\u0634",
|
||||
"Font Family": "\u062e\u06d5\u062a \u0646\u06c7\u0633\u062e\u0649\u0633\u0649",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u0626\u0648\u06ad\u063a\u0627 \u062a\u0648\u063a\u06c7\u0631\u0644\u0627\u0634",
|
||||
"New document": "\u064a\u06d0\u06ad\u0649 \u067e\u06c8\u062a\u06c8\u0643",
|
||||
"Blockquote": "\u0626\u06d5\u0633\u0643\u06d5\u0631\u062a\u0649\u0634",
|
||||
"Numbered list": "\u0633\u0627\u0646\u0644\u0649\u0642 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643",
|
||||
"Heading 1": "1 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
|
||||
"Headings": "\u0645\u0627\u06cb\u0632\u06c7",
|
||||
"Increase indent": "\u0643\u06d5\u064a\u0646\u0649\u06af\u06d5 \u0633\u06c8\u0631\u06c8\u0634",
|
||||
"Formats": "\u0641\u0648\u0631\u0645\u0627\u062a",
|
||||
"Headers": "\u0628\u06d0\u0634\u0649",
|
||||
"Select all": "\u06be\u06d5\u0645\u0645\u0649\u0646\u0649 \u062a\u0627\u0644\u0644\u0627\u0634",
|
||||
"Header 3": "\u062a\u06d0\u0645\u0627 3",
|
||||
"Blocks": "\u0631\u0627\u064a\u0648\u0646",
|
||||
"Undo": "\u0626\u0627\u0631\u0642\u0649\u063a\u0627 \u064a\u06d0\u0646\u0649\u0634",
|
||||
"Strikethrough": "\u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634 \u0633\u0649\u0632\u0649\u0642\u0649",
|
||||
"Bullet list": "\u0628\u06d5\u0644\u06af\u06d5 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643",
|
||||
"Header 1": "\u062a\u06d0\u0645\u0627 1",
|
||||
"Superscript": "\u0626\u06c8\u0633\u062a\u06c8\u0646\u0643\u0649 \u0628\u06d5\u0644\u06af\u06d5",
|
||||
"Clear formatting": "\u0641\u0648\u0631\u0645\u0627\u062a\u0646\u0649 \u062a\u0627\u0632\u0644\u0627\u0634",
|
||||
"Font Sizes": "\u062e\u06d5\u062a \u0686\u0648\u06ad\u0644\u06c7\u0642\u0649",
|
||||
"Subscript": "\u0626\u0627\u0633\u062a\u0649\u0646\u0642\u0649 \u0628\u06d5\u0644\u06af\u06d5",
|
||||
"Header 6": "\u062a\u06d0\u0645\u0627 6",
|
||||
"Redo": "\u0642\u0627\u064a\u062a\u0627 \u0642\u0649\u0644\u0649\u0634",
|
||||
"Paragraph": "\u067e\u0627\u0631\u0627\u06af\u0649\u0631\u0627 \u0641",
|
||||
"Ok": "\u062c\u06d5\u0632\u0649\u0645\u0644\u06d5\u0634",
|
||||
"Bold": "\u062a\u0648\u0645",
|
||||
"Code": "\u0643\u0648\u062f",
|
||||
"Italic": "\u064a\u0627\u0646\u062a\u06c7",
|
||||
"Align center": "\u0645\u06d5\u0631\u0643\u06d5\u0632\u06af\u06d5 \u062a\u0648\u063a\u06c7\u0631\u0644\u0627\u0634",
|
||||
"Header 5": "\u062a\u06d0\u0645\u0627 5",
|
||||
"Heading 6": "6 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
|
||||
"Heading 3": "3 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
|
||||
"Decrease indent": "\u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0633\u06c8\u0631\u06c8\u0634",
|
||||
"Header 4": "\u062a\u06d0\u0645\u0627 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u06be\u0627\u0632\u0649\u0631 \u0686\u0627\u067e\u0644\u0649\u0633\u0649\u06ad\u0649\u0632 \u0633\u0627\u067e \u062a\u06d0\u0643\u0649\u0634 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0649 \u0686\u0627\u067e\u0644\u0649\u0646\u0649\u062f\u06c7. \u062a\u06d0\u0643\u0649\u0634 \u0634\u06d5\u0643\u0644\u0649\u062f\u06d5 \u0686\u0627\u067e\u0644\u0627\u0634 \u062a\u06d5\u06ad\u0634\u0649\u0643\u0649\u0646\u0649 \u062a\u0627\u0642\u0649\u06cb\u06d5\u062a\u0643\u06d5\u0646\u06af\u06d5 \u0642\u06d5\u062f\u06d5\u0631.",
|
||||
"Underline": "\u0626\u0627\u0633\u062a\u0649 \u0633\u0649\u0632\u0649\u0642",
|
||||
"Cancel": "\u0642\u0627\u0644\u062f\u06c7\u0631\u06c7\u0634",
|
||||
"Justify": "\u0626\u0649\u0643\u0643\u0649 \u064a\u0627\u0646\u063a\u0627 \u062a\u0648\u063a\u06c7\u0631\u0644\u0627\u0634",
|
||||
"Inline": "\u0626\u0649\u0686\u0643\u0649",
|
||||
"Copy": "\u0643\u06c6\u0686\u06c8\u0631\u06c8\u0634",
|
||||
"Align left": "\u0633\u0648\u0644\u063a\u0627 \u062a\u0648\u063a\u0631\u0649\u0644\u0627\u0634",
|
||||
"Visual aids": "\u0626\u06d5\u0633\u0643\u06d5\u0631\u062a\u0649\u0634",
|
||||
"Lower Greek": "\u06af\u0631\u06d0\u062a\u0633\u0649\u064a\u0649\u0686\u06d5 \u0643\u0649\u0686\u0649\u0643 \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649",
|
||||
"Square": "\u0643\u06cb\u0627\u062f\u0631\u0627\u062a",
|
||||
"Default": "\u0633\u06c8\u0643\u06c8\u062a",
|
||||
"Lower Alpha": "\u0626\u0649\u0646\u06af\u0649\u0644\u0649\u0632\u0686\u06d5 \u0643\u0649\u0686\u0649\u0643 \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649",
|
||||
"Circle": "\u0686\u06d5\u0645\u0628\u06d5\u0631",
|
||||
"Disc": "\u062f\u06d0\u0633\u0643\u0627",
|
||||
"Upper Alpha": "\u0626\u0649\u0646\u06af\u0649\u0644\u0649\u0632\u0686\u06d5 \u0686\u0648\u06ad \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649",
|
||||
"Upper Roman": "\u0631\u0649\u0645\u0686\u06d5 \u0686\u0648\u06ad \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649",
|
||||
"Lower Roman": "\u0631\u0649\u0645\u0686\u06d5 \u0643\u0649\u0686\u0649\u0643 \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649",
|
||||
"Name": "\u0646\u0627\u0645\u0649",
|
||||
"Anchor": "\u0626\u06c7\u0644\u0627\u0646\u0645\u0627",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0633\u0649\u0632 \u062a\u06d0\u062e\u0649 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0646\u0649 \u0633\u0627\u0642\u0644\u0649\u0645\u0649\u062f\u0649\u06ad\u0649\u0632\u060c \u0626\u0627\u064a\u0631\u0649\u0644\u0627\u0645\u0633\u0649\u0632\u061f",
|
||||
"Restore last draft": "\u0626\u0627\u062e\u0649\u0631\u0642\u0649 \u0643\u06c7\u067e\u0649\u064a\u0649\u06af\u06d5 \u0642\u0627\u064a\u062a\u0649\u0634",
|
||||
"Special character": "\u0626\u0627\u0644\u0627\u06be\u0649\u062f\u06d5 \u0628\u06d5\u0644\u06af\u0649\u0644\u06d5\u0631",
|
||||
"Source code": "\u0626\u06d5\u0633\u0644\u0649 \u0643\u0648\u062f\u0649",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0631\u06d5\u06ad",
|
||||
"Right to left": "\u0626\u0648\u06ad\u062f\u0649\u0646 \u0633\u0648\u0644\u063a\u0627",
|
||||
"Left to right": "\u0633\u0648\u0644\u062f\u0649\u0646 \u0626\u0648\u06ad\u063a\u0627 ",
|
||||
"Emoticons": "\u0686\u0649\u0631\u0627\u064a \u0626\u0649\u067e\u0627\u062f\u06d5",
|
||||
"Robots": "\u0645\u0627\u0634\u0649\u0646\u0627 \u0626\u0627\u062f\u06d5\u0645",
|
||||
"Document properties": "\u06be\u06c6\u062c\u062c\u06d5\u062a \u062e\u0627\u0633\u0644\u0649\u0642\u0649",
|
||||
"Title": "\u062a\u06d0\u0645\u0627",
|
||||
"Keywords": "\u06be\u0627\u0644\u0642\u0649\u0644\u0649\u0642 \u0633\u06c6\u0632",
|
||||
"Encoding": "\u0643\u0648\u062f\u0644\u0627\u0634",
|
||||
"Description": "\u062a\u06d5\u0633\u0649\u06cb\u0649\u0631",
|
||||
"Author": "\u0626\u06c7\u0644\u0627\u0646\u0645\u0627",
|
||||
"Fullscreen": "\u067e\u06c8\u062a\u06c8\u0646 \u0626\u06d0\u0643\u0631\u0627\u0646",
|
||||
"Horizontal line": "\u06af\u0648\u0631\u0632\u0649\u0646\u062a\u0627\u0644 \u0642\u06c7\u0631",
|
||||
"Horizontal space": "\u06af\u0648\u0631\u0632\u0649\u0646\u062a\u0627\u0644 \u0628\u0648\u0634\u0644\u06c7\u0642",
|
||||
"Insert\/edit image": "\u0631\u06d5\u0633\u0649\u0645 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634 \u064a\u0627\u0643\u0649 \u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
|
||||
"General": "\u0626\u0627\u062f\u06d5\u062a\u062a\u0649\u0643\u0649",
|
||||
"Advanced": "\u0626\u0627\u0644\u0627\u06be\u0649\u062f\u06d5",
|
||||
"Source": "\u0645\u06d5\u0646\u0628\u06d5",
|
||||
"Border": "\u064a\u0627\u0642\u0627",
|
||||
"Constrain proportions": "\u0626\u06d0\u06af\u0649\u0632\u0644\u0649\u0643-\u0643\u06d5\u06ad\u0644\u0649\u0643 \u0646\u0649\u0633\u067e\u0649\u062a\u0649\u0646\u0649 \u0633\u0627\u0642\u0644\u0627\u0634",
|
||||
"Vertical space": "\u06cb\u06d0\u0631\u062a\u0649\u0643\u0627\u0644 \u0628\u0648\u0634\u0644\u06c7\u0642",
|
||||
"Image description": "\u0631\u06d5\u0633\u0649\u0645 \u062a\u06d5\u0633\u06cb\u0649\u0631\u0649",
|
||||
"Style": "\u0626\u06c7\u0633\u0644\u06c7\u067e",
|
||||
"Dimensions": "\u0686\u0648\u06ad-\u0643\u0649\u0686\u0649\u0643",
|
||||
"Insert image": "\u0631\u06d5\u0633\u0649\u0645 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Zoom in": "\u064a\u06d0\u0642\u0649\u0646\u0644\u0627\u062a\u0645\u0627\u0642",
|
||||
"Contrast": "\u0633\u06d0\u0644\u0649\u0634\u062a\u06c7\u0631\u0645\u0627",
|
||||
"Back": "\u0642\u0627\u064a\u062a\u0649\u0634",
|
||||
"Gamma": "\u06af\u0627\u0645\u0645\u0627",
|
||||
"Flip horizontally": "\u06af\u0648\u0631\u0649\u0632\u0648\u0646\u062a\u0627\u0644 \u0626\u06c6\u0631\u06c8\u0634",
|
||||
"Resize": "\u0686\u0648\u06ad\u0644\u06c7\u0642\u0649\u0646\u0649 \u0626\u06c6\u0632\u06af\u06d5\u0631\u062a\u0649\u0634",
|
||||
"Sharpen": "\u0626\u06c6\u062a\u0643\u06c8\u0631\u0644\u06d5\u0634\u062a\u06c8\u0631\u06c8\u0634",
|
||||
"Zoom out": "\u064a\u0649\u0631\u0627\u0642\u0644\u0627\u062a\u0645\u0627\u0642",
|
||||
"Image options": "\u0631\u06d5\u0633\u0649\u0645 \u062a\u0627\u0644\u0644\u0627\u0646\u0645\u0649\u0644\u0649\u0631\u0649",
|
||||
"Apply": "\u0642\u0648\u0644\u0644\u0649\u0646\u0649\u0634",
|
||||
"Brightness": "\u064a\u0648\u0631\u06c7\u0642\u0644\u06c7\u0642\u0649",
|
||||
"Rotate clockwise": "\u200f\u200f\u0633\u0627\u0626\u06d5\u062a \u064a\u06c6\u0646\u0649\u0644\u0649\u0634\u0649\u062f\u06d5 \u0686\u06c6\u0631\u06c8\u0634",
|
||||
"Rotate counterclockwise": "\u200f\u200f\u0633\u0627\u0626\u06d5\u062a\u0643\u06d5 \u0642\u0627\u0631\u0634\u0649 \u0686\u06c6\u0631\u06c8\u0634",
|
||||
"Edit image": "\u0631\u06d5\u0633\u0649\u0645 \u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
|
||||
"Color levels": "\u0631\u06d5\u06ad \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0631\u0649",
|
||||
"Crop": "\u0642\u0649\u064a\u0649\u0634",
|
||||
"Orientation": "\u064a\u06c6\u0646\u0649\u0644\u0649\u0634",
|
||||
"Flip vertically": "\u06cb\u06d0\u0631\u062a\u0649\u0643\u0627\u0644 \u0626\u06c6\u0631\u06c8\u0634",
|
||||
"Invert": "\u062a\u06d5\u062a\u06c8\u0631",
|
||||
"Insert date\/time": "\u0686\u0649\u0633\u0644\u0627\/\u06cb\u0627\u0642\u0649\u062a \u0643\u0649\u0631\u06af\u06c8\u0632\u06c8\u0634",
|
||||
"Remove link": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634 \u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634",
|
||||
"Url": "\u0626\u0627\u062f\u0631\u0649\u0633",
|
||||
"Text to display": "\u0643\u06c6\u0631\u06c8\u0646\u0649\u062f\u0649\u063a\u0627\u0646 \u0645\u06d5\u0632\u0645\u06c7\u0646",
|
||||
"Anchors": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634",
|
||||
"Insert link": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"New window": "\u064a\u06d0\u06ad\u0649 \u0643\u06c6\u0632\u0646\u06d5\u0643",
|
||||
"None": "\u064a\u0648\u0642",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0633\u0649\u0632 \u0643\u0649\u0631\u06af\u06c8\u0632\u06af\u06d5\u0646 \u062a\u0648\u0631 \u0626\u0627\u062f\u0631\u06d0\u0633\u0649 \u0633\u0649\u0631\u062a\u0642\u0649 \u0626\u06c7\u0644\u0627\u0646\u0645\u0649\u062f\u06d5\u0643 \u0642\u0649\u0644\u0649\u067e \u062a\u06c7\u0631\u0649\u062f\u06c7 \u060c\u062a\u06d5\u0644\u06d5\u067e \u0642\u0649\u0644\u0649\u0646\u063a\u0627\u0646 http:\/\/ \u0646\u0649 \u0642\u0648\u0634\u0627\u0645\u0633\u0649\u0632\u061f",
|
||||
"Target": "\u0646\u0649\u0634\u0627\u0646",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0633\u0649\u0632 \u0643\u0649\u0631\u06af\u06c8\u0632\u06af\u06d5\u0646 URL \u0628\u0649\u0631 \u0626\u06d0\u0644\u062e\u06d5\u062a \u0626\u0627\u062f\u0631\u06d0\u0633\u0649\u062f\u06d5\u0643 \u0642\u0649\u0644\u0649\u067e \u062a\u06c7\u0631\u0649\u062f\u06c7\u060c\u062a\u06d5\u0644\u06d5\u067e \u0642\u0649\u0644\u0649\u0646\u063a\u0627\u0646 mailto \u0646\u0649 \u0642\u06c7\u0634\u0627\u0645\u0633\u0649\u0632\u061f",
|
||||
"Insert\/edit link": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634 \u0642\u06c7\u0633\u062a\u06c7\u0631\u06c7\u0634\/\u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
|
||||
"Insert\/edit video": "\u0633\u0649\u0646 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634\/\u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
|
||||
"Poster": "\u064a\u0648\u0644\u0644\u0649\u063a\u06c7\u0686\u0649",
|
||||
"Alternative source": "\u062a\u06d5\u0633\u06cb\u0649\u0631\u0649",
|
||||
"Paste your embed code below:": "\u0642\u0649\u0633\u062a\u06c7\u0631\u0645\u0627\u0642\u0686\u0649 \u0628\u0648\u0644\u063a\u0627\u0646 \u0643\u0648\u062f\u0646\u0649 \u0686\u0627\u067e\u0644\u0627\u06ad",
|
||||
"Insert video": "\u0633\u0649\u0646 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Embed": "\u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Nonbreaking space": "\u0628\u0648\u0634\u0644\u06c7\u0642",
|
||||
"Page break": "\u0628\u06d5\u062a \u0626\u0627\u062e\u0649\u0631\u0644\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Paste as text": "\u062a\u06d0\u0643\u0649\u0634 \u0634\u06d5\u0643\u0644\u0649\u062f\u06d5 \u0686\u0627\u067e\u0644\u0627\u0634",
|
||||
"Preview": "\u0643\u06c6\u0631\u06c8\u0634",
|
||||
"Print": "\u0628\u06d0\u0633\u0649\u0634",
|
||||
"Save": "\u0633\u0627\u0642\u0644\u0627\u0634",
|
||||
"Could not find the specified string.": "\u0626\u0649\u0632\u062f\u0649\u0645\u06d5\u0643\u0686\u0649 \u0628\u0648\u0644\u063a\u0627\u0646 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0646\u0649 \u062a\u0627\u067e\u0627\u0644\u0645\u0649\u062f\u0649.",
|
||||
"Replace": "\u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Next": "\u0643\u06d0\u064a\u0649\u0646\u0643\u0649\u0633\u0649",
|
||||
"Whole words": "\u062a\u0648\u0644\u06c7\u0642 \u0645\u0627\u0633\u0644\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Find and replace": "\u0626\u0649\u0632\u062f\u06d5\u0634 \u06cb\u06d5 \u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Replace with": "\u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Find": "\u0626\u0649\u0632\u062f\u06d5\u0634",
|
||||
"Replace all": "\u06be\u06d5\u0645\u0645\u0649\u0646\u0649 \u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Match case": "\u0686\u0648\u06ad \u0643\u0649\u0686\u0649\u0643 \u06be\u06d5\u0631\u0649\u067e\u0646\u0649 \u067e\u06d5\u0631\u0649\u0642\u0644\u06d5\u0646\u062f\u06c8\u0631\u06c8\u0634",
|
||||
"Prev": "\u0626\u0627\u0644\u062f\u0649\u0646\u0642\u0649\u0633\u0649",
|
||||
"Spellcheck": "\u0626\u0649\u0645\u0644\u0627 \u062a\u06d5\u0643\u0634\u06c8\u0631\u06c8\u0634",
|
||||
"Finish": "\u0626\u0627\u062e\u0649\u0631\u0644\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Ignore all": "\u06be\u06d5\u0645\u0645\u0649\u0646\u0649 \u0626\u06c6\u062a\u0643\u06c8\u0632\u06c8\u0634",
|
||||
"Ignore": "\u0626\u06c6\u062a\u0643\u06c8\u0632\u06c8\u0634",
|
||||
"Add to Dictionary": "\u0644\u06c7\u063a\u06d5\u062a \u0642\u0648\u0634\u06c7\u0634",
|
||||
"Insert row before": "\u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0642\u06c7\u0631 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Rows": "\u0642\u06c7\u0631",
|
||||
"Height": "\u0626\u06d0\u06af\u0649\u0632\u0644\u0649\u0643\u0649",
|
||||
"Paste row after": "\u0642\u06c7\u0631 \u0643\u06d5\u064a\u0646\u0649\u06af\u06d5 \u0686\u0627\u067e\u0644\u0627\u0634",
|
||||
"Alignment": "\u064a\u06c6\u0644\u0649\u0646\u0649\u0634\u0649",
|
||||
"Border color": "\u0631\u0627\u0645\u0643\u0627 \u0631\u06d5\u06ad\u06af\u0649",
|
||||
"Column group": "\u0631\u06d5\u062a \u06af\u06c7\u0631\u06c7\u067e\u067e\u0649\u0633\u0649",
|
||||
"Row": "\u0642\u06c7\u0631",
|
||||
"Insert column before": "\u0631\u06d5\u062a \u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Split cell": "\u0643\u0627\u062a\u06d5\u0643 \u067e\u0627\u0631\u0686\u0649\u0644\u0627\u0634",
|
||||
"Cell padding": "\u0643\u0627\u062a\u06d5\u0643 \u0626\u0649\u0686\u0643\u0649 \u0626\u0627\u0631\u0649\u0644\u0649\u0642\u0649",
|
||||
"Cell spacing": "\u0643\u0627\u062a\u06d5\u0643 \u0633\u0649\u0631\u062a\u0642\u0649 \u0626\u0627\u0631\u0649\u0644\u0649\u0642\u0649",
|
||||
"Row type": "\u0642\u06c7\u0631 \u062a\u0649\u067e\u0649",
|
||||
"Insert table": "\u062c\u06d5\u062f\u06cb\u06d5\u0644 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Body": "\u0628\u06d5\u062f\u0649\u0646\u0649",
|
||||
"Caption": "\u0686\u06c8\u0634\u06d5\u0646\u062f\u06c8\u0631\u06c8\u0634",
|
||||
"Footer": "\u067e\u06c7\u062a\u0649",
|
||||
"Delete row": "\u0642\u06c7\u0631 \u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634",
|
||||
"Paste row before": "\u0642\u06c7\u0631 \u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0686\u0627\u067e\u0644\u0627\u0634",
|
||||
"Scope": "\u062f\u0627\u0626\u0649\u0631\u06d5",
|
||||
"Delete table": "\u062c\u06d5\u062f\u06cb\u06d5\u0644 \u0626\u06c6\u0686\u06c8\u0631\u0634",
|
||||
"H Align": "\u06af\u0648\u0631\u0632\u0649\u0646\u062a\u0627\u0644 \u062a\u0648\u063a\u0631\u0649\u0644\u0627\u0634",
|
||||
"Top": "\u0626\u06c8\u0633\u062a\u0649",
|
||||
"Header cell": "\u0628\u0627\u0634 \u0643\u0627\u062a\u06d5\u0643",
|
||||
"Column": "\u0631\u06d5\u062a",
|
||||
"Row group": "\u0642\u06c7\u0631 \u06af\u06c7\u0631\u06c7\u067e\u067e\u0649\u0633\u0649",
|
||||
"Cell": "\u0643\u0627\u062a\u06d5\u0643",
|
||||
"Middle": "\u0626\u0648\u062a\u062a\u06c7\u0631\u0633\u0649",
|
||||
"Cell type": "\u0643\u0627\u062a\u06d5\u0643 \u062a\u0649\u067e\u0649",
|
||||
"Copy row": "\u0642\u06c7\u0631 \u0643\u06c6\u0686\u06c8\u0631\u06c8\u0634",
|
||||
"Row properties": "\u0642\u06c7\u0631 \u062e\u0627\u0633\u0644\u0649\u0642\u0649",
|
||||
"Table properties": "\u062c\u06d5\u062f\u06cb\u06d5\u0644 \u062e\u0627\u0633\u0644\u0649\u0642\u0649",
|
||||
"Bottom": "\u0626\u0627\u0633\u062a\u0649",
|
||||
"V Align": "\u06cb\u06d0\u0631\u062a\u0649\u0643\u0627\u0644 \u062a\u0648\u063a\u0631\u0649\u0644\u0627\u0634",
|
||||
"Header": "\u0628\u06d0\u0634\u0649",
|
||||
"Right": "\u0626\u0648\u06ad",
|
||||
"Insert column after": "\u0631\u06d5\u062a \u0643\u06d5\u064a\u0646\u0649\u06af\u06d5 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Cols": "\u0631\u06d5\u062a",
|
||||
"Insert row after": "\u0626\u0627\u0631\u0642\u0649\u063a\u0627 \u0642\u06c7\u0631 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Width": "\u0643\u06d5\u06ad\u0644\u0649\u0643\u0649",
|
||||
"Cell properties": "\u0643\u0627\u062a\u06d5\u0643 \u062e\u0627\u0633\u0644\u0649\u0642\u0649",
|
||||
"Left": "\u0633\u0648\u0644",
|
||||
"Cut row": "\u0642\u06c7\u0631 \u0643\u06d0\u0633\u0649\u0634",
|
||||
"Delete column": "\u0631\u06d5\u062a \u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634",
|
||||
"Center": "\u0645\u06d5\u0631\u0643\u06d5\u0632",
|
||||
"Merge cells": "\u0643\u0627\u062a\u06d5\u0643 \u0628\u0649\u0631\u0644\u06d5\u0634\u062a\u06c8\u0631\u06c8\u0634",
|
||||
"Insert template": "\u0626\u06c8\u0644\u06af\u06d5 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"Templates": "\u0626\u06c8\u0644\u06af\u0649\u0644\u06d5\u0631",
|
||||
"Background color": "\u0626\u0627\u0631\u0642\u0627 \u0631\u06d5\u06ad\u06af\u0649",
|
||||
"Custom...": "\u0626\u0649\u062e\u062a\u0649\u064a\u0627\u0631\u0649",
|
||||
"Custom color": "\u0626\u0649\u062e\u062a\u0649\u064a\u0627\u0631\u0649 \u0631\u06d5\u06ad",
|
||||
"No color": "\u0631\u06d5\u06ad \u064a\u0648\u0642",
|
||||
"Text color": "\u062e\u06d5\u062a \u0631\u06d5\u06ad\u06af\u0649",
|
||||
"Show blocks": "\u0631\u0627\u064a\u0648\u0646 \u0643\u06c6\u0631\u0633\u0649\u062a\u0649\u0634",
|
||||
"Show invisible characters": "\u0643\u06c6\u0631\u06c8\u0646\u0645\u06d5\u064a\u062f\u0649\u063a\u0627\u0646 \u06be\u06d5\u0631\u0649\u067e\u0644\u06d5\u0631\u0646\u0649 \u0643\u06c6\u0631\u0633\u0649\u062a\u0649\u0634",
|
||||
"Words: {0}": "\u0633\u06c6\u0632: {0}",
|
||||
"Insert": "\u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
|
||||
"File": "\u06be\u06c6\u062c\u062c\u06d5\u062a",
|
||||
"Edit": "\u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0645\u0648\u0644 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0644\u06c7\u0642 \u062a\u06d0\u0643\u06d0\u0633\u0649\u062a \u0631\u0627\u0645\u0643\u0649\u0633\u0649 \u0631\u0627\u064a\u0648\u0646\u0649\u062f\u0627 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643 \u0626\u06c8\u0686\u06c8\u0646 ALT-F9 \u0646\u0649\u060c \u0642\u0648\u0631\u0627\u0644 \u0628\u0627\u0644\u062f\u0649\u0642\u0649 \u0626\u06c8\u0686\u06c8\u0646 ALT-F10 \u0646\u0649\u060c \u064a\u0627\u0631\u062f\u06d5\u0645 \u0626\u06c8\u0686\u06c8\u0646 ALT-0 \u0646\u0649 \u0628\u06d0\u0633\u0649\u06ad",
|
||||
"Tools": "\u0642\u06c7\u0631\u0627\u0644",
|
||||
"View": "\u0643\u06c6\u0631\u06c8\u0634",
|
||||
"Table": "\u062c\u06d5\u062f\u06cb\u06d5\u0644",
|
||||
"Format": "\u0641\u0648\u0631\u0645\u0627\u062a"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/uk.js
Normal file
219
data/web/rc/program/js/tinymce/langs/uk.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('uk',{
|
||||
"Cut": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438",
|
||||
"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454 \u043f\u0440\u044f\u043c\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0456\u043d\u0443. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 Ctrl+X\/C\/V \u0437\u0430\u043c\u0456\u0441\u0442\u044c \u0441\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448.",
|
||||
"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Div": "\u0411\u043b\u043e\u043a",
|
||||
"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||
"Close": "\u0417\u0430\u043a\u0440\u0438\u0442\u0438",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442 \u0437\u043c\u0456\u0441\u0442\u0443",
|
||||
"Pre": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0454 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"Align right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"New document": "\u041d\u043e\u0432\u0438\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
||||
"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Increase indent": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438",
|
||||
"Headers": "Headers",
|
||||
"Select all": "\u0412\u0438\u0434\u0456\u043b\u0438\u0442\u0438 \u0432\u0441\u0435",
|
||||
"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
||||
"Undo": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Strikethrough": "\u0417\u0430\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
||||
"Bullet list": "\u041d\u0435\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441",
|
||||
"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"Font Sizes": "\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0443",
|
||||
"Subscript": "\u041d\u0438\u0436\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441",
|
||||
"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Redo": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438",
|
||||
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
||||
"Ok": "\u0413\u0430\u0440\u0430\u0437\u0434",
|
||||
"Bold": "\u0416\u0438\u0440\u043d\u0438\u0439",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
||||
"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Decrease indent": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||
"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0437\u0434\u0456\u0439\u0441\u043d\u044e\u0454\u0442\u044c\u0441\u044f \u0443 \u0432\u0438\u0433\u043b\u044f\u0434\u0456 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443, \u043f\u043e\u043a\u0438 \u043d\u0435 \u0432\u0456\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u0438 \u0434\u0430\u043d\u0443 \u043e\u043f\u0446\u0456\u044e.",
|
||||
"Underline": "\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
||||
"Cancel": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Justify": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Inline": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0456",
|
||||
"Copy": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438",
|
||||
"Align left": "\u041f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Visual aids": "\u041d\u0430\u043e\u0447\u043d\u0456 \u043f\u0440\u0438\u043b\u0430\u0434\u0434\u044f",
|
||||
"Lower Greek": "\u041c\u0430\u043b\u0456 \u0433\u0440\u0435\u0446\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u0438",
|
||||
"Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u0439",
|
||||
"Lower Alpha": "\u041c\u0430\u043b\u0456 \u043b\u0430\u0442\u0438\u043d\u0441\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0456",
|
||||
"Disc": "\u041a\u0440\u0443\u0433\u0438",
|
||||
"Upper Alpha": "\u0412\u0435\u043b\u0438\u043a\u0456 \u043b\u0430\u0442\u0438\u043d\u0441\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Upper Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438",
|
||||
"Lower Roman": "\u041c\u0430\u043b\u0456 \u0440\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438",
|
||||
"Name": "\u041d\u0430\u0437\u0432\u0430",
|
||||
"Anchor": "\u042f\u043a\u0456\u0440",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0412\u0430\u0441 \u0454 \u043d\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438. \u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u043f\u0456\u0442\u0438?",
|
||||
"Restore last draft": "\u0412\u0456\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043e\u0441\u0442\u0430\u043d\u043d\u044c\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0443",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438",
|
||||
"Source code": "\u0412\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u043a\u043e\u0434",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u043a\u043e\u043b\u0456\u0440",
|
||||
"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0456\u0432\u043e",
|
||||
"Left to right": "\u0417\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
||||
"Emoticons": "\u0415\u043c\u043e\u0446\u0456\u0457",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438",
|
||||
"Document properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||
"Encoding": "\u041a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"Description": "\u041e\u043f\u0438\u0441",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Fullscreen": "\u041f\u043e\u0432\u043d\u043e\u0435\u043a\u0440\u0430\u043d\u043d\u0438\u0439 \u0440\u0435\u0436\u0438\u043c",
|
||||
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043b\u0456\u043d\u0456\u044f",
|
||||
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||
"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"General": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0456",
|
||||
"Advanced": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u0456",
|
||||
"Source": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"Border": "\u041c\u0435\u0436\u0430",
|
||||
"Constrain proportions": "\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0456\u0457",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||
"Image description": "\u041e\u043f\u0438\u0441 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Style": "\u0421\u0442\u0438\u043b\u044c",
|
||||
"Dimensions": "\u0420\u043e\u0437\u043c\u0456\u0440",
|
||||
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Zoom in": "\u041d\u0430\u0431\u043b\u0438\u0437\u0438\u0442\u0438",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Back": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044f",
|
||||
"Gamma": "\u0413\u0430\u043c\u043c\u0430",
|
||||
"Flip horizontally": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0456",
|
||||
"Resize": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0440",
|
||||
"Sharpen": "\u0427\u0456\u0442\u043a\u0456\u0441\u0442\u044c",
|
||||
"Zoom out": "\u0412\u0456\u0434\u0434\u0430\u043b\u0438\u0442\u0438",
|
||||
"Image options": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Apply": "\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438",
|
||||
"Brightness": "\u042f\u0441\u043a\u0440\u0430\u0432\u0456\u0441\u0442\u044c",
|
||||
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u0437\u0430 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u044e \u0441\u0442\u0440\u0456\u043b\u043a\u043e\u044e",
|
||||
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u043f\u0440\u043e\u0442\u0438 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u0457 \u0441\u0442\u0440\u0456\u043b\u043a\u0438",
|
||||
"Edit image": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Color levels": "\u0420\u0456\u0432\u043d\u0456 \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432",
|
||||
"Crop": "\u041e\u0431\u0440\u0456\u0437\u0430\u0442\u0438",
|
||||
"Orientation": "\u041e\u0440\u0456\u0454\u043d\u0442\u0430\u0446\u0456\u044f",
|
||||
"Flip vertically": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0456",
|
||||
"Invert": "\u0406\u043d\u0432\u0435\u0440\u0441\u0456\u044f",
|
||||
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441",
|
||||
"Remove link": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Url": "\u0410\u0434\u0440\u0435\u0441\u0430 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Anchors": "\u042f\u043a\u043e\u0440\u0456",
|
||||
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"New window": "\u0423 \u043d\u043e\u0432\u043e\u043c\u0443 \u0432\u0456\u043a\u043d\u0456",
|
||||
"None": "\u041d\u0456",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 http:\/\/ \u043f\u0440\u0435\u0444\u0456\u043a\u0441?",
|
||||
"Target": "\u0412\u0456\u0434\u043a\u0440\u0438\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u0443 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 mailto: \u043f\u0440\u0435\u0444\u0456\u043a\u0441?",
|
||||
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
||||
"Poster": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0447\u0435:",
|
||||
"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
||||
"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438",
|
||||
"Nonbreaking space": "\u041d\u0435\u0440\u043e\u0437\u0440\u0438\u0432\u043d\u0438\u0439 \u043f\u0440\u043e\u0431\u0456\u043b",
|
||||
"Page break": "\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438",
|
||||
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u044f\u043a \u0442\u0435\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434",
|
||||
"Print": "\u0414\u0440\u0443\u043a\u0443\u0432\u0430\u0442\u0438",
|
||||
"Save": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438",
|
||||
"Could not find the specified string.": "\u0412\u043a\u0430\u0437\u0430\u043d\u0438\u0439 \u0440\u044f\u0434\u043e\u043a \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e",
|
||||
"Replace": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Next": "\u0412\u043d\u0438\u0437",
|
||||
"Whole words": "\u0426\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||
"Find and replace": "\u041f\u043e\u0448\u0443\u043a \u0456 \u0437\u0430\u043c\u0456\u043d\u0430",
|
||||
"Replace with": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u043d\u0430",
|
||||
"Find": "\u0417\u043d\u0430\u0439\u0442\u0438",
|
||||
"Replace all": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0441\u0435",
|
||||
"Match case": "\u0412\u0440\u0430\u0445\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0440\u0435\u0433\u0456\u0441\u0442\u0440",
|
||||
"Prev": "\u0412\u0433\u043e\u0440\u0443",
|
||||
"Spellcheck": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0456\u0457",
|
||||
"Finish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0438",
|
||||
"Ignore all": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0435",
|
||||
"Ignore": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438",
|
||||
"Add to Dictionary": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0434\u043e \u0421\u043b\u043e\u0432\u043d\u0438\u043a\u0430",
|
||||
"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0440\u044f\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443",
|
||||
"Rows": "\u0420\u044f\u0434\u043a\u0438",
|
||||
"Height": "\u0412\u0438\u0441\u043e\u0442\u0430",
|
||||
"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u0437\u043d\u0438\u0437\u0443",
|
||||
"Alignment": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Border color": "\u043a\u043e\u043b\u0456\u0440 \u0440\u0430\u043c\u043a\u0438",
|
||||
"Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432",
|
||||
"Row": "\u0420\u044f\u0434\u043e\u043a",
|
||||
"Insert column before": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043b\u0456\u0432\u043e\u0440\u0443\u0447",
|
||||
"Split cell": "\u0420\u043e\u0437\u0431\u0438\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0443",
|
||||
"Cell padding": "\u041f\u043e\u043b\u044f \u043a\u043e\u043c\u0456\u0440\u043e\u043a",
|
||||
"Cell spacing": "\u0412\u0456\u0434\u0441\u0442\u0430\u043d\u044c \u043c\u0456\u0436 \u043a\u043e\u043c\u0456\u0440\u043a\u0430\u043c\u0438",
|
||||
"Row type": "\u0422\u0438\u043f \u0440\u044f\u0434\u043a\u0430",
|
||||
"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
||||
"Body": "\u0422\u0456\u043b\u043e",
|
||||
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Footer": "\u041d\u0438\u0436\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
||||
"Delete row": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443",
|
||||
"Scope": "\u0421\u0444\u0435\u0440\u0430",
|
||||
"Delete table": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
||||
"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Column": "\u0421\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
||||
"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u044f\u0434\u043a\u0456\u0432",
|
||||
"Cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430",
|
||||
"Middle": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Cell type": "\u0422\u0438\u043f \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Copy row": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0440\u044f\u0434\u043a\u0430",
|
||||
"Table properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0442\u0430\u0431\u043b\u0438\u0446\u0456",
|
||||
"Bottom": "\u041f\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Header": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
||||
"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Insert column after": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
||||
"Cols": "\u0421\u0442\u043e\u0432\u043f\u0446\u0456",
|
||||
"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0440\u044f\u0434\u043e\u043a \u0437\u043d\u0438\u0437\u0443",
|
||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||
"Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Left": "\u041f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Cut row": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Delete column": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
||||
"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Merge cells": "\u041e\u0431'\u0454\u0434\u043d\u0430\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
||||
"Background color": "\u041a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443",
|
||||
"Custom...": "\u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439",
|
||||
"Custom color": "\u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439 \u043a\u043e\u043b\u0456\u0440",
|
||||
"No color": "\u0431\u0435\u0437 \u043a\u043e\u043b\u044c\u043e\u0440\u0443",
|
||||
"Text color": "\u041a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443",
|
||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u0438",
|
||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438",
|
||||
"Words: {0}": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0441\u043b\u0456\u0432: {0}",
|
||||
"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F9 \u0449\u043e\u0431 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u0442\u0438 \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432, ALT-0 \u0434\u043b\u044f \u0432\u0438\u043a\u043b\u0438\u043a\u0443 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0438.",
|
||||
"Tools": "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438",
|
||||
"View": "\u0412\u0438\u0433\u043b\u044f\u0434",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u044f",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/uk_UA.js
Normal file
219
data/web/rc/program/js/tinymce/langs/uk_UA.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('uk_UA',{
|
||||
"Cut": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438",
|
||||
"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454 \u043f\u0440\u044f\u043c\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0431\u0443\u0444\u0435\u0440\u0430 \u043e\u0431\u043c\u0456\u043d\u0443. \u0417\u0430\u043c\u0456\u0441\u0442\u044c \u0446\u044c\u043e\u0433\u043e \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u043f\u043e\u0454\u0434\u043d\u0430\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448 Ctrl + X\/C\/V.",
|
||||
"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||
"Close": "\u0417\u0430\u043a\u0440\u0438\u0442\u0438",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
||||
"New document": "\u041d\u043e\u0432\u0438\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
||||
"Numbered list": "\u041f\u0440\u043e\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Increase indent": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438",
|
||||
"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Select all": "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0443\u0441\u0435",
|
||||
"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
||||
"Undo": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Strikethrough": "\u041f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
||||
"Bullet list": "\u041c\u0430\u0440\u043a\u0456\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441",
|
||||
"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"Font Sizes": "\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Subscript": "\u0406\u043d\u0434\u0435\u043a\u0441",
|
||||
"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Redo": "\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438",
|
||||
"Paragraph": "\u0410\u0431\u0437\u0430\u0446",
|
||||
"Ok": "Ok",
|
||||
"Bold": "\u0416\u0438\u0440\u043d\u0438\u0439",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
||||
"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Decrease indent": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||
"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0437\u0430\u0440\u0430\u0437 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0437\u0432\u0438\u0447\u0430\u0439\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443. \u0417\u043c\u0456\u0441\u0442 \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0439 \u044f\u043a \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0442\u0435\u043a\u0441\u0442, \u043f\u043e\u043a\u0438 \u0412\u0438 \u043d\u0435 \u0432\u0438\u043c\u043a\u043d\u0435\u0442\u0435 \u0446\u044e \u043e\u043f\u0446\u0456\u044e.",
|
||||
"Underline": "\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
||||
"Cancel": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Justify": "\u0412\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438",
|
||||
"Inline": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439",
|
||||
"Copy": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438",
|
||||
"Align left": "\u041b\u0456\u0432\u043e\u0440\u0443\u0447",
|
||||
"Visual aids": "\u0412\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u0456 \u0437\u0430\u0441\u043e\u0431\u0438",
|
||||
"Lower Greek": "\u041c\u0430\u043b\u0456 \u0433\u0440\u0435\u0446\u044c\u043a\u0456 \u043b\u0456\u0442\u0435\u0440\u0438",
|
||||
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442",
|
||||
"Default": "\u0423\u043c\u043e\u0432\u0447\u0430\u043d\u043d\u044f",
|
||||
"Lower Alpha": "\u041d\u0438\u0436\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440",
|
||||
"Circle": "\u041a\u043e\u043b\u043e",
|
||||
"Disc": "\u0414\u0438\u0441\u043a",
|
||||
"Upper Alpha": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440",
|
||||
"Upper Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438 \u0443 \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0456",
|
||||
"Lower Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438 \u0443 \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0456",
|
||||
"Name": "\u0406\u043c'\u044f",
|
||||
"Anchor": "\u041f\u0440\u0438\u0432'\u044f\u0437\u043a\u0430",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0454 \u043d\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438. \u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u043f\u0456\u0442\u0438 ?",
|
||||
"Restore last draft": "\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438 \u043e\u0441\u0442\u0430\u043d\u043d\u0456\u0439 \u043f\u0440\u043e\u0435\u043a\u0442",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0439 \u0441\u0438\u043c\u0432\u043e\u043b",
|
||||
"Source code": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u041a\u043e\u043b\u0456\u0440",
|
||||
"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0456\u0432\u043e",
|
||||
"Left to right": "\u0417\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
||||
"Emoticons": "\u0421\u043c\u0430\u0439\u043b\u0438",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438",
|
||||
"Document properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443",
|
||||
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||
"Encoding": "\u041a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"Description": "\u041e\u043f\u0438\u0441",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Fullscreen": "\u041d\u0430 \u0432\u0435\u0441\u044c \u0435\u043a\u0440\u0430\u043d",
|
||||
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043b\u0456\u043d\u0456\u044f",
|
||||
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
||||
"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"General": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0435",
|
||||
"Advanced": "\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u043e",
|
||||
"Source": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"Border": "\u041c\u0435\u0436\u0430",
|
||||
"Constrain proportions": "\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0456\u0457",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
||||
"Image description": "\u041e\u043f\u0438\u0441 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Style": "\u0421\u0442\u0438\u043b\u044c",
|
||||
"Dimensions": "\u0420\u043e\u0437\u043c\u0456\u0440",
|
||||
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Zoom in": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Back": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044f",
|
||||
"Gamma": "\u0413\u0430\u043c\u043c\u0430",
|
||||
"Flip horizontally": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0456",
|
||||
"Resize": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0440",
|
||||
"Sharpen": "\u0427\u0456\u0442\u043a\u0456\u0441\u0442\u044c",
|
||||
"Zoom out": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438",
|
||||
"Image options": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Apply": "\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438",
|
||||
"Brightness": "\u042f\u0441\u043a\u0440\u0430\u0432\u0456\u0441\u0442\u044c",
|
||||
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u0437\u0430 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u044e \u0441\u0442\u0440\u0456\u043b\u043a\u043e\u044e",
|
||||
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u043f\u0440\u043e\u0442\u0438 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u0457 \u0441\u0442\u0440\u0456\u043b\u043a\u0438",
|
||||
"Edit image": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Color levels": "\u0420\u0456\u0432\u043d\u0456 \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432",
|
||||
"Crop": "\u041e\u0431\u0440\u0456\u0437\u0430\u0442\u0438",
|
||||
"Orientation": "\u041e\u0440\u0456\u0454\u043d\u0442\u0430\u0446\u0456\u044f",
|
||||
"Flip vertically": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0456",
|
||||
"Invert": "\u0406\u043d\u0432\u0435\u0440\u0441\u0456\u044f",
|
||||
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441",
|
||||
"Remove link": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Url": "URL",
|
||||
"Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Anchors": "\u042f\u043a\u043e\u0440\u044f",
|
||||
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"New window": "\u041d\u043e\u0432\u0435 \u0432\u0456\u043a\u043d\u043e",
|
||||
"None": "\u041d\u0456",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 \u043f\u0440\u0435\u0444\u0456\u043a\u0441 http:\/\/?",
|
||||
"Target": "\u041c\u0435\u0442\u0430",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u0443 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 \u043f\u0440\u0435\u0444\u0456\u043a\u0441 mailto:?",
|
||||
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
||||
"Poster": "\u041f\u043b\u0430\u043a\u0430\u0442",
|
||||
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0447\u0435:",
|
||||
"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
||||
"Embed": "\u0412\u043f\u0440\u043e\u0432\u0430\u0434\u0438\u0442\u0438",
|
||||
"Nonbreaking space": "\u041d\u0435\u0440\u043e\u0437\u0440\u0438\u0432\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
||||
"Page break": "\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438",
|
||||
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u044f\u043a \u0442\u0435\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434",
|
||||
"Print": "\u0414\u0440\u0443\u043a",
|
||||
"Save": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438",
|
||||
"Could not find the specified string.": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u043d\u0430\u0439\u0442\u0438 \u0437\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0440\u044f\u0434\u043e\u043a.",
|
||||
"Replace": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Next": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439",
|
||||
"Whole words": "\u0426\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||
"Find and replace": "\u0417\u043d\u0430\u0439\u0442\u0438 \u0456 \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Replace with": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u043d\u0430",
|
||||
"Find": "\u0417\u043d\u0430\u0439\u0442\u0438",
|
||||
"Replace all": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0441\u0435",
|
||||
"Match case": "\u0417 \u0443\u0440\u0430\u0445\u0443\u0432\u0430\u043d\u043d\u044f\u043c \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0443",
|
||||
"Prev": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439",
|
||||
"Spellcheck": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0456\u0457",
|
||||
"Finish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0438",
|
||||
"Ignore all": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0435",
|
||||
"Ignore": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438",
|
||||
"Add to Dictionary": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0432 \u0441\u043b\u043e\u0432\u043d\u0438\u043a",
|
||||
"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0440\u044f\u0434\u043e\u043a \u043f\u0435\u0440\u0435\u0434",
|
||||
"Rows": "\u0420\u044f\u0434\u043a\u0438",
|
||||
"Height": "\u0412\u0438\u0441\u043e\u0442\u0430",
|
||||
"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f",
|
||||
"Alignment": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Border color": "\u041a\u043e\u043b\u0456\u0440 \u043c\u0435\u0436\u0456",
|
||||
"Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432",
|
||||
"Row": "\u0420\u044f\u0434\u043e\u043a",
|
||||
"Insert column before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0435\u0440\u0435\u0434",
|
||||
"Split cell": "\u0420\u043e\u0437\u0431\u0438\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0443",
|
||||
"Cell padding": "\u0417\u0430\u043f\u043e\u0432\u043d\u0435\u043d\u043d\u044f \u043a\u043e\u043c\u0456\u0440\u043e\u043a",
|
||||
"Cell spacing": "\u0406\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u043c\u0456\u0436 \u043a\u043e\u043c\u0456\u0440\u043a\u0430\u043c\u0438",
|
||||
"Row type": "\u0422\u0438\u043f \u0440\u044f\u0434\u043a\u0430",
|
||||
"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
||||
"Body": "\u0422\u0456\u043b\u043e",
|
||||
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Footer": "\u041d\u0438\u0436\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
||||
"Delete row": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0435\u0440\u0435\u0434",
|
||||
"Scope": "\u0423 \u043c\u0435\u0436\u0430\u0445",
|
||||
"Delete table": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
||||
"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Header cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0443",
|
||||
"Column": "\u0421\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
||||
"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u044f\u0434\u043a\u0456\u0432",
|
||||
"Cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430",
|
||||
"Middle": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Cell type": "\u0422\u0438\u043f \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Copy row": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Row properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0440\u044f\u0434\u043a\u0430",
|
||||
"Table properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0442\u0430\u0431\u043b\u0438\u0446\u0456",
|
||||
"Bottom": "\u041f\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Header": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
||||
"Right": "\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
||||
"Insert column after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0456\u0441\u043b\u044f",
|
||||
"Cols": "\u0421\u0442\u043e\u0432\u043f\u0446\u0456",
|
||||
"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f",
|
||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||
"Cell properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Left": "\u041b\u0456\u0432\u043e\u0440\u0443\u0447",
|
||||
"Cut row": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Delete column": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
||||
"Center": "\u0426\u0435\u043d\u0442\u0440",
|
||||
"Merge cells": "\u041e\u0431'\u0454\u0434\u043d\u0430\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
||||
"Background color": "\u041a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443",
|
||||
"Custom...": "\u0406\u043d\u0448\u0438\u0439...",
|
||||
"Custom color": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439 \u043a\u043e\u043b\u0456\u0440",
|
||||
"No color": "\u0411\u0435\u0437 \u043a\u043e\u043b\u044c\u043e\u0440\u0443",
|
||||
"Text color": "\u041a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443",
|
||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u0438",
|
||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438",
|
||||
"Words: {0}": "\u0421\u043b\u043e\u0432\u0430: {0}",
|
||||
"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u041f\u0440\u0430\u0432\u043a\u0430",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c Rich \u0442\u0435\u043a\u0441\u0442\u0443. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F9 - \u043c\u0435\u043d\u044e. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F10 - \u043f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-0 - \u0434\u043e\u0432\u0456\u0434\u043a\u0430",
|
||||
"Tools": "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438",
|
||||
"View": "\u0412\u0438\u0434",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u044f",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/vi.js
Normal file
219
data/web/rc/program/js/tinymce/langs/vi.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('vi',{
|
||||
"Cut": "C\u1eaft",
|
||||
"Heading 5": "H5",
|
||||
"Header 2": "Ti\u00eau \u0111\u1ec1 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tr\u00ecnh duy\u1ec7t c\u1ee7a b\u1ea1n kh\u00f4ng h\u1ed7 tr\u1ee3 truy c\u1eadp truy c\u1eadp b\u1ed9 nh\u1edb \u1ea3o, vui l\u00f2ng s\u1eed d\u1ee5ng c\u00e1c t\u1ed5 h\u1ee3p ph\u00edm Ctrl + X, C, V.",
|
||||
"Heading 4": "H4",
|
||||
"Div": "Khung",
|
||||
"Heading 2": "H2",
|
||||
"Paste": "D\u00e1n",
|
||||
"Close": "\u0110\u00f3ng L\u1ea1i",
|
||||
"Font Family": "Ki\u1ec3u ch\u1eef",
|
||||
"Pre": "\u0110\u1ecbnh d\u1ea1ng",
|
||||
"Align right": "Canh ph\u1ea3i",
|
||||
"New document": "T\u1ea1o t\u00e0i li\u1ec7u m\u1edbi",
|
||||
"Blockquote": "\u0110o\u1ea1n Tr\u00edch D\u1eabn",
|
||||
"Numbered list": "Danh s\u00e1ch d\u1ea1ng s\u1ed1",
|
||||
"Heading 1": "H1",
|
||||
"Headings": "Ph\u1ea7n \u0111\u1ea7u",
|
||||
"Increase indent": "T\u0103ng kho\u1ea3ng c\u00e1ch d\u00f2ng",
|
||||
"Formats": "\u0110\u1ecbnh d\u1ea1ng",
|
||||
"Headers": "\u0110\u1ea7u trang",
|
||||
"Select all": "Ch\u1ecdn t\u1ea5t c\u1ea3",
|
||||
"Header 3": "Ti\u00eau \u0111\u1ec1 3",
|
||||
"Blocks": "Bao",
|
||||
"Undo": "H\u1ee7y thao t\u00e1c",
|
||||
"Strikethrough": "G\u1ea1ch ngang",
|
||||
"Bullet list": "Danh s\u00e1ch d\u1ea1ng bi\u1ec3u t\u01b0\u1ee3ng",
|
||||
"Header 1": "Ti\u00eau \u0111\u1ec1 1",
|
||||
"Superscript": "K\u00fd t\u1ef1 m\u0169",
|
||||
"Clear formatting": "L\u01b0\u1ee3c b\u1ecf ph\u1ea7n hi\u1ec7u \u1ee9ng",
|
||||
"Font Sizes": "C\u1ee1 ch\u1eef",
|
||||
"Subscript": "K\u00fd t\u1ef1 th\u1ea5p",
|
||||
"Header 6": "Ti\u00eau \u0111\u1ec1 6",
|
||||
"Redo": "L\u00e0m l\u1ea1i",
|
||||
"Paragraph": "\u0110o\u1ea1n v\u0103n",
|
||||
"Ok": "\u0110\u1ed3ng \u00dd",
|
||||
"Bold": "In \u0111\u1eadm",
|
||||
"Code": "M\u00e3",
|
||||
"Italic": "In nghi\u00eang",
|
||||
"Align center": "Canh gi\u1eefa",
|
||||
"Header 5": "Ti\u00eau \u0111\u1ec1 5",
|
||||
"Heading 6": "G6",
|
||||
"Heading 3": "H3",
|
||||
"Decrease indent": "Th\u1ee5t l\u00f9i d\u00f2ng",
|
||||
"Header 4": "Ti\u00eau \u0111\u1ec1 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Ch\u1ee9c n\u0103ng D\u00e1n \u0111ang trong tr\u1ea1ng th\u00e1i v\u0103n b\u1ea3n \u0111\u01a1n gi\u1ea3n. N\u1ed9i dung s\u1ebd \u0111\u01b0\u1ee3c d\u00e1n d\u01b0\u1edbi d\u1ea1ng v\u0103n b\u1ea3n thu\u1ea7n, kh\u00f4ng c\u00f3 \u0111\u1ecbnh d\u1ea1ng.",
|
||||
"Underline": "G\u1ea1ch d\u01b0\u1edbi",
|
||||
"Cancel": "Hu\u1ef7 B\u1ecf",
|
||||
"Justify": "Canh \u0111\u1ec1u hai b\u00ean",
|
||||
"Inline": "C\u00f9ng d\u00f2ng",
|
||||
"Copy": "Sao ch\u00e9p",
|
||||
"Align left": "Canh tr\u00e1i",
|
||||
"Visual aids": "M\u1edf khung so\u1ea1n th\u1ea3o",
|
||||
"Lower Greek": "S\u1ed1 hy l\u1ea1p th\u01b0\u1eddng",
|
||||
"Square": "\u00d4 vu\u00f4ng",
|
||||
"Default": "M\u1eb7c \u0111\u1ecbnh",
|
||||
"Lower Alpha": "K\u00fd t\u1ef1 th\u01b0\u1eddng",
|
||||
"Circle": "H\u00ecnh tr\u00f2n",
|
||||
"Disc": "H\u00ecnh tr\u00f2n d\u1ea1ng m\u1ecfng",
|
||||
"Upper Alpha": "K\u00fd t\u1ef1 hoa",
|
||||
"Upper Roman": "S\u1ed1 la m\u00e3 hoa",
|
||||
"Lower Roman": "S\u1ed1 la m\u00e3 th\u01b0\u1eddng",
|
||||
"Name": "T\u00ean",
|
||||
"Anchor": "Neo",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "B\u1ea1n ch\u01b0a l\u01b0u thay \u0111\u1ed5i b\u1ea1n c\u00f3 ch\u1eafc b\u1ea1n mu\u1ed1n di chuy\u1ec3n \u0111i?",
|
||||
"Restore last draft": "Kh\u00f4i ph\u1ee5c b\u1ea3n g\u1ea7n nh\u1ea5t",
|
||||
"Special character": "K\u00fd t\u1ef1 \u0111\u1eb7c bi\u1ec7t",
|
||||
"Source code": "M\u00e3 ngu\u1ed3n",
|
||||
"B": "M\u00e0u xanh da tr\u1eddi",
|
||||
"R": "M\u00e0u \u0111\u1ecf",
|
||||
"G": "M\u00e0u xanh l\u00e1 c\u00e2y",
|
||||
"Color": "M\u00e0u s\u1eafc",
|
||||
"Right to left": "Ph\u1ea3i sang tr\u00e1i",
|
||||
"Left to right": "Tr\u00e1i sang ph\u1ea3i",
|
||||
"Emoticons": "Bi\u1ec3u t\u01b0\u1ee3ng c\u1ea3m x\u00fac",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Thu\u1ed9c t\u00ednh t\u00e0i li\u1ec7u",
|
||||
"Title": "Ti\u00eau \u0111\u1ec1",
|
||||
"Keywords": "T\u1eeb kh\u00f3a",
|
||||
"Encoding": "M\u00e3 h\u00f3a",
|
||||
"Description": "M\u00f4 t\u1ea3",
|
||||
"Author": "T\u00e1c gi\u1ea3",
|
||||
"Fullscreen": "To\u00e0n m\u00e0n h\u00ecnh",
|
||||
"Horizontal line": "K\u1ebb ngang",
|
||||
"Horizontal space": "N\u1eb1m ngang",
|
||||
"Insert\/edit image": "Ch\u00e8n\/s\u1eeda \u1ea3nh",
|
||||
"General": "Chung",
|
||||
"Advanced": "N\u00e2ng cao",
|
||||
"Source": "Ngu\u1ed3n",
|
||||
"Border": "\u0110\u01b0\u1eddng vi\u1ec1n",
|
||||
"Constrain proportions": "T\u1ef7 l\u1ec7 h\u1ea1n ch\u1ebf",
|
||||
"Vertical space": "N\u1eb1m d\u1ecdc",
|
||||
"Image description": "M\u00f4 t\u1ea3 \u1ea3nh",
|
||||
"Style": "Ki\u1ec3u",
|
||||
"Dimensions": "K\u00edch th\u01b0\u1edbc",
|
||||
"Insert image": "Ch\u00e8n \u1ea3nh",
|
||||
"Zoom in": "Thu nh\u1ecf",
|
||||
"Contrast": "\u0110\u1ed9 t\u01b0\u01a1ng ph\u1ea3n",
|
||||
"Back": "Quay l\u1ea1i",
|
||||
"Gamma": "M\u00e0u Gamma",
|
||||
"Flip horizontally": "L\u1eadt ngang",
|
||||
"Resize": "Thay \u0111\u1ed5i k\u00edch th\u01b0\u1edbc",
|
||||
"Sharpen": "L\u00e0m s\u1eafc n\u00e9t",
|
||||
"Zoom out": "Ph\u00f3ng to",
|
||||
"Image options": "T\u00f9y ch\u1ecdn \u1ea3nh",
|
||||
"Apply": "\u00c1p d\u1ee5ng",
|
||||
"Brightness": "\u0110\u1ed9 s\u00e1ng",
|
||||
"Rotate clockwise": "Xoay ph\u1ea3i",
|
||||
"Rotate counterclockwise": "Xoay tr\u00e1i",
|
||||
"Edit image": "Ch\u1ec9nh s\u1eeda \u1ea3nh",
|
||||
"Color levels": "M\u1ee9c \u0111\u1ed9 m\u00e0u",
|
||||
"Crop": "C\u1eaft \u1ea3nh",
|
||||
"Orientation": "\u0110\u1ecbnh h\u01b0\u1edbng",
|
||||
"Flip vertically": "L\u1eadt d\u1ecdc",
|
||||
"Invert": "\u0110\u1ea3o ng\u01b0\u1ee3c",
|
||||
"Insert date\/time": "Ch\u00e8n ng\u00e0y\/th\u00e1ng",
|
||||
"Remove link": "B\u1ecf li\u00ean k\u1ebft",
|
||||
"Url": "Url",
|
||||
"Text to display": "N\u1ed9i dung hi\u1ec3n th\u1ecb",
|
||||
"Anchors": "Neo",
|
||||
"Insert link": "Ch\u00e8n li\u00ean k\u1ebft",
|
||||
"New window": "C\u1eeda s\u1ed5 m\u1edbi",
|
||||
"None": "Kh\u00f4ng",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0110\u1ecba ch\u1ec9 URL b\u1ea1n v\u1eeba nh\u1eadp gi\u1ed1ng nh\u01b0 m\u1ed9t li\u00ean k\u1ebft. B\u1ea1n c\u00f3 mu\u1ed1n th\u00eam ti\u1ec1n t\u1ed1 http:\/\/ kh\u00f4ng?",
|
||||
"Target": "\u0110\u00edch",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0110\u1ecba ch\u1ec9 URL b\u1ea1n v\u1eeba nh\u1eadp gi\u1ed1ng nh\u01b0 m\u1ed9t \u0111\u1ecba ch\u1ec9 email. B\u1ea1n c\u00f3 mu\u1ed1n th\u00eam ti\u1ec1n t\u1ed1 mailto: kh\u00f4ng?",
|
||||
"Insert\/edit link": "Ch\u00e8n\/s\u1eeda li\u00ean k\u1ebft",
|
||||
"Insert\/edit video": "Ch\u00e8n\/s\u1eeda video",
|
||||
"Poster": "Ng\u01b0\u1eddi g\u1eedi",
|
||||
"Alternative source": "Ngu\u1ed3n thay th\u1ebf",
|
||||
"Paste your embed code below:": "D\u00e1n m\u00e3 nh\u00fang c\u1ee7a b\u1ea1n d\u01b0\u1edbi \u0111\u00e2y:",
|
||||
"Insert video": "Ch\u00e8n video",
|
||||
"Embed": "Nh\u00fang",
|
||||
"Nonbreaking space": "Kh\u00f4ng xu\u1ed1ng h\u00e0ng",
|
||||
"Page break": "Ng\u1eaft trang",
|
||||
"Paste as text": "D\u00e1n \u0111o\u1ea1n v\u0103n b\u1ea3n",
|
||||
"Preview": "Xem th\u1eed",
|
||||
"Print": "In",
|
||||
"Save": "L\u01b0u",
|
||||
"Could not find the specified string.": "Kh\u00f4ng t\u00ecm th\u1ea5y chu\u1ed7i qui \u0111\u1ecbnh",
|
||||
"Replace": "Thay th\u1ebf",
|
||||
"Next": "K\u1ebf ti\u1ebfp",
|
||||
"Whole words": "To\u00e0n b\u1ed9 t\u1eeb",
|
||||
"Find and replace": "T\u00ecm v\u00e0 thay th\u1ebf",
|
||||
"Replace with": "Thay th\u1ebf b\u1edfi",
|
||||
"Find": "T\u00ecm ki\u1ebfm",
|
||||
"Replace all": "Thay t\u1ea5t c\u1ea3",
|
||||
"Match case": "Tr\u01b0\u1eddng h\u1ee3p xem",
|
||||
"Prev": "Tr\u01b0\u1edbc",
|
||||
"Spellcheck": "Ki\u1ec3m tra ch\u00ednh t\u1ea3",
|
||||
"Finish": "Ho\u00e0n t\u1ea5t",
|
||||
"Ignore all": "B\u1ecf qua t\u1ea5t",
|
||||
"Ignore": "B\u1ecf qua",
|
||||
"Add to Dictionary": "Th\u00eam v\u00e0o t\u1eeb \u0111i\u1ec3n",
|
||||
"Insert row before": "Th\u00eam d\u00f2ng ph\u00eda tr\u00ean",
|
||||
"Rows": "D\u00f2ng",
|
||||
"Height": "\u0110\u1ed9 Cao",
|
||||
"Paste row after": "D\u00e1n v\u00e0o ph\u00eda sau, d\u01b0\u1edbi",
|
||||
"Alignment": "Canh ch\u1ec9nh",
|
||||
"Border color": "M\u00e0u vi\u1ec1n",
|
||||
"Column group": "Gom nh\u00f3m c\u1ed9t",
|
||||
"Row": "D\u00f2ng",
|
||||
"Insert column before": "Th\u00eam c\u1ed9t b\u00ean tr\u00e1i",
|
||||
"Split cell": "Chia c\u1eaft \u00f4",
|
||||
"Cell padding": "Kho\u1ea3ng c\u00e1ch trong \u00f4",
|
||||
"Cell spacing": "Kho\u1ea3ng c\u00e1ch \u00f4",
|
||||
"Row type": "Th\u1ec3 lo\u1ea1i d\u00f2ng",
|
||||
"Insert table": "Th\u00eam b\u1ea3ng",
|
||||
"Body": "N\u1ed9i dung",
|
||||
"Caption": "Ti\u00eau \u0111\u1ec1",
|
||||
"Footer": "Ch\u00e2n",
|
||||
"Delete row": "Xo\u00e1 d\u00f2ng",
|
||||
"Paste row before": "D\u00e1n v\u00e0o ph\u00eda tr\u01b0\u1edbc, tr\u00ean",
|
||||
"Scope": "Quy\u1ec1n",
|
||||
"Delete table": "Xo\u00e1 b\u1ea3ng",
|
||||
"H Align": "L\u1ec1 ngang",
|
||||
"Top": "Tr\u00ean",
|
||||
"Header cell": "Ti\u00eau \u0111\u1ec1 \u00f4",
|
||||
"Column": "C\u1ed9t",
|
||||
"Row group": "Gom nh\u00f3m d\u00f2ng",
|
||||
"Cell": "\u00d4",
|
||||
"Middle": "Kho\u1ea3ng gi\u1eefa",
|
||||
"Cell type": "Lo\u1ea1i \u00f4",
|
||||
"Copy row": "Sao ch\u00e9p d\u00f2ng",
|
||||
"Row properties": "Thu\u1ed9c t\u00ednh d\u00f2ng",
|
||||
"Table properties": "Thu\u1ed9c t\u00ednh b\u1ea3ng",
|
||||
"Bottom": "D\u01b0\u1edbi",
|
||||
"V Align": "L\u1ec1 d\u1ecdc",
|
||||
"Header": "Ti\u00eau \u0111\u1ec1",
|
||||
"Right": "Ph\u1ea3i",
|
||||
"Insert column after": "Th\u00eam c\u1ed9t b\u00ean ph\u1ea3i",
|
||||
"Cols": "C\u1ed9t",
|
||||
"Insert row after": "Th\u00eam d\u00f2ng ph\u00eda d\u01b0\u1edbi",
|
||||
"Width": "\u0110\u1ed9 R\u1ed9ng",
|
||||
"Cell properties": "Thu\u1ed9c t\u00ednh \u00f4",
|
||||
"Left": "Tr\u00e1i",
|
||||
"Cut row": "C\u1eaft d\u00f2ng",
|
||||
"Delete column": "Xo\u00e1 c\u1ed9t",
|
||||
"Center": "Gi\u1eefa",
|
||||
"Merge cells": "Tr\u1ed9n \u00f4",
|
||||
"Insert template": "Th\u00eam m\u1eabu",
|
||||
"Templates": "M\u1eabu",
|
||||
"Background color": "M\u00e0u n\u1ec1n",
|
||||
"Custom...": "Tu\u1ef3 ch\u1ec9nh...",
|
||||
"Custom color": "Tu\u1ef3 ch\u1ec9nh m\u00e0u",
|
||||
"No color": "Kh\u00f4ng c\u00f3 m\u00e0u",
|
||||
"Text color": "M\u00e0u v\u0103n b\u1ea3n",
|
||||
"Show blocks": "Hi\u1ec3n th\u1ecb kh\u1ed1i",
|
||||
"Show invisible characters": "Hi\u1ec3n th\u1ecb k\u00fd t\u1ef1 \u1ea9n",
|
||||
"Words: {0}": "T\u1eeb: {0}",
|
||||
"Insert": "Ch\u00e8n",
|
||||
"File": "T\u1eadp tin",
|
||||
"Edit": "S\u1eeda",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. B\u1ea5m ALT-F9 m\u1edf menu. B\u1ea5m ALT-F10 m\u1edf thanh c\u00f4ng c\u1ee5. B\u1ea5m ALT-0 m\u1edf tr\u1ee3 gi\u00fap",
|
||||
"Tools": "C\u00f4ng c\u1ee5",
|
||||
"View": "Xem",
|
||||
"Table": "B\u1ea3ng",
|
||||
"Format": "\u0110\u1ecbnh d\u1ea1ng"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/vi_VN.js
Normal file
219
data/web/rc/program/js/tinymce/langs/vi_VN.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('vi_VN',{
|
||||
"Cut": "C\u1eaft",
|
||||
"Heading 5": "Ti\u00eau \u0111\u1ec1 5",
|
||||
"Header 2": "Ti\u00eau \u0111\u1ec1 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tr\u00ecnh duy\u1ec7t c\u1ee7a b\u1ea1n kh\u00f4ng h\u1ed7 tr\u1ee3 truy c\u1eadp clipboard, vui l\u00f2ng s\u1eed d\u1ee5ng c\u00e1c t\u1ed5 h\u1ee3p Ctrl + X, C, V.",
|
||||
"Heading 4": "Ti\u00eau \u0111\u1ec1 4",
|
||||
"Div": "Khung",
|
||||
"Heading 2": "Ti\u00eau \u0111\u1ec1 2",
|
||||
"Paste": "D\u00e1n",
|
||||
"Close": "\u0110\u00f3ng",
|
||||
"Font Family": "Ph\u00f4ng",
|
||||
"Pre": "\u0110\u1ecbnh d\u1ea1ng",
|
||||
"Align right": "Canh ph\u1ea3i",
|
||||
"New document": "T\u1ea1o t\u00e0i li\u1ec7u m\u1edbi",
|
||||
"Blockquote": "Tr\u00edch",
|
||||
"Numbered list": "Danh s\u00e1ch s\u1ed1",
|
||||
"Heading 1": "Ti\u00eau \u0111\u1ec1 1",
|
||||
"Headings": "Ti\u00eau \u0111\u1ec1",
|
||||
"Increase indent": "L\u00f9i v\u00e0o",
|
||||
"Formats": "\u0110\u1ecbnh d\u1ea1ng",
|
||||
"Headers": "\u0110\u1ea7u trang",
|
||||
"Select all": "Ch\u1ecdn t\u1ea5t c\u1ea3",
|
||||
"Header 3": "Ti\u00eau \u0111\u1ec1 3",
|
||||
"Blocks": "Bao",
|
||||
"Undo": "Hu\u1ef7 thao t\u00e1c",
|
||||
"Strikethrough": "G\u1ea1ch ngang",
|
||||
"Bullet list": "D\u1ea5u \u0111\u1ea7u d\u00f2ng",
|
||||
"Header 1": "Ti\u00eau \u0111\u1ec1 1",
|
||||
"Superscript": "Tr\u00ean d\u00f2ng",
|
||||
"Clear formatting": "Xo\u00e1 \u0111\u1ecbnh d\u1ea1ng",
|
||||
"Font Sizes": "K\u00edch th\u01b0\u1edbc ph\u00f4ng",
|
||||
"Subscript": "D\u01b0\u1edbi d\u00f2ng",
|
||||
"Header 6": "Ti\u00eau \u0111\u1ec1 6",
|
||||
"Redo": "Ho\u00e0n t\u00e1t",
|
||||
"Paragraph": "\u0110o\u1ea1n v\u0103n",
|
||||
"Ok": "OK",
|
||||
"Bold": "T\u00f4 \u0111\u1eadm",
|
||||
"Code": "M\u00e3",
|
||||
"Italic": "In nghi\u00eang",
|
||||
"Align center": "Canh gi\u1eefa",
|
||||
"Header 5": "Ti\u00eau \u0111\u1ec1 5",
|
||||
"Heading 6": "Ti\u00eau \u0111\u1ec1 6",
|
||||
"Heading 3": "Ti\u00eau \u0111\u1ec1 3",
|
||||
"Decrease indent": "L\u00f9i ra",
|
||||
"Header 4": "Ti\u00eau \u0111\u1ec1 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00e1n b\u00e2y gi\u1edd l\u00e0 \u1edf ch\u1ebf \u0111\u1ed9 v\u0103n b\u1ea3n \u0111\u01a1n gi\u1ea3n. N\u1ed9i dung s\u1ebd \u0111\u01b0\u1ee3c d\u00e1n nh\u01b0 \u0111\u1ed3ng b\u1eb1ng v\u0103n b\u1ea3n cho \u0111\u1ebfn khi b\u1ea1n chuy\u1ec3n \u0111\u1ed5i t\u00f9y ch\u1ecdn n\u00e0y.",
|
||||
"Underline": "G\u1ea1ch d\u01b0\u1edbi",
|
||||
"Cancel": "Hu\u1ef7",
|
||||
"Justify": "Canh \u0111\u1ec1u hai b\u00ean",
|
||||
"Inline": "C\u00f9ng d\u00f2ng",
|
||||
"Copy": "Ch\u00e9p",
|
||||
"Align left": "Canh tr\u00e1i",
|
||||
"Visual aids": "Hi\u1ec7n khung so\u1ea1n th\u1ea3o",
|
||||
"Lower Greek": "S\u1ed1 hy l\u1ea1p th\u01b0\u1eddng",
|
||||
"Square": "\u00d4 vu\u00f4ng",
|
||||
"Default": "Ng\u1ea7m \u0111\u1ecbnh",
|
||||
"Lower Alpha": "K\u00fd t\u1ef1 th\u01b0\u1eddng",
|
||||
"Circle": "H\u00ecnh tr\u00f2n",
|
||||
"Disc": "H\u00ecnh tr\u00f2n m\u1ecfng",
|
||||
"Upper Alpha": "K\u00fd t\u1ef1 hoa",
|
||||
"Upper Roman": "S\u1ed1 la m\u00e3 hoa",
|
||||
"Lower Roman": "S\u1ed1 la m\u00e3 th\u01b0\u1eddng",
|
||||
"Name": "T\u00ean",
|
||||
"Anchor": "Neo",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "B\u1ea1n ch\u01b0a l\u01b0u c\u00e1c thay \u0111\u1ed5i, b\u1ea1n c\u00f3 th\u1eadt s\u1ef1 mu\u1ed1n \u0111\u00f3ng ?",
|
||||
"Restore last draft": "Ph\u1ee5c h\u1ed3i b\u1ea3n l\u01b0u g\u1ea7n nh\u1ea5t",
|
||||
"Special character": "K\u00fd t\u1ef1 \u0111\u1eb7c bi\u1ec7t",
|
||||
"Source code": "M\u00e3 ngu\u1ed3n",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "M\u00e0u",
|
||||
"Right to left": "Ph\u1ea3i sang tr\u00e1i",
|
||||
"Left to right": "Tr\u00e1i sang ph\u1ea3i",
|
||||
"Emoticons": "Bi\u1ec3u t\u01b0\u1ee3ng c\u1ea3m x\u00fac",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Thu\u1ed9c t\u00ednh t\u00e0i li\u1ec7u",
|
||||
"Title": "Ti\u00eau \u0111\u1ec1",
|
||||
"Keywords": "T\u1eeb kho\u00e1",
|
||||
"Encoding": "M\u00e3 ho\u00e1",
|
||||
"Description": "Mi\u00eau t\u1ea3",
|
||||
"Author": "Neo",
|
||||
"Fullscreen": "\u0110\u1ea7y m\u00e0n h\u00ecnh",
|
||||
"Horizontal line": "G\u1ea1ch ngang",
|
||||
"Horizontal space": "Kho\u1ea3ng c\u00e1ch ngang",
|
||||
"Insert\/edit image": "Th\u00eam \/ s\u1eeda h\u00ecnh \u1ea3nh",
|
||||
"General": "T\u1ed5ng h\u1ee3p",
|
||||
"Advanced": "N\u00e2ng cao",
|
||||
"Source": "Ngu\u1ed3n",
|
||||
"Border": "\u0110\u01b0\u1eddng vi\u1ec1n",
|
||||
"Constrain proportions": "H\u1ea1n ch\u1ebf t\u1ef7 l\u1ec7",
|
||||
"Vertical space": "Kho\u1ea3ng c\u00e1ch d\u1ecdc",
|
||||
"Image description": "Mi\u00eau t\u1ea3 h\u00ecnh \u1ea3nh",
|
||||
"Style": "Ki\u1ec3u",
|
||||
"Dimensions": "K\u00edch th\u01b0\u1edbc",
|
||||
"Insert image": "Ch\u00e8n \u1ea3nh",
|
||||
"Zoom in": "Ph\u00f3ng to",
|
||||
"Contrast": "\u0110\u1ed9 t\u01b0\u01a1ng ph\u1ea3n",
|
||||
"Back": "Tr\u1edf l\u1ea1i",
|
||||
"Gamma": "M\u00e0u Gamma",
|
||||
"Flip horizontally": "L\u1eadt ngang",
|
||||
"Resize": "Thay \u0111\u1ed5i k\u00edch th\u01b0\u1edbc",
|
||||
"Sharpen": "\u0110\u1ed9 s\u1eafc n\u00e9t",
|
||||
"Zoom out": "Thu nh\u1ecf",
|
||||
"Image options": "T\u00f9y ch\u1ecdn h\u00ecnh \u1ea3nh",
|
||||
"Apply": "\u00c1p d\u1ee5ng",
|
||||
"Brightness": "\u0110\u1ed9 s\u00e1ng",
|
||||
"Rotate clockwise": "Xoay theo chi\u1ec1u kim \u0111\u1ed3ng h\u1ed3",
|
||||
"Rotate counterclockwise": "Xoay ng\u01b0\u1ee3c chi\u1ec1u kim \u0111\u1ed3ng",
|
||||
"Edit image": "S\u1eeda \u1ea3nh",
|
||||
"Color levels": "M\u1ee9c \u0111\u1ed9 m\u00e0u s\u1eafc",
|
||||
"Crop": "X\u00e9n",
|
||||
"Orientation": "\u0110\u1ecbnh h\u01b0\u1edbng",
|
||||
"Flip vertically": "L\u1eadt d\u1ecdc",
|
||||
"Invert": "\u0110\u1ea3o ng\u01b0\u1ee3c",
|
||||
"Insert date\/time": "Th\u00eam ng\u00e0y \/ gi\u1edd",
|
||||
"Remove link": "Xo\u00e1 li\u00ean k\u1ebft",
|
||||
"Url": "Li\u00ean k\u1ebft",
|
||||
"Text to display": "Ch\u1eef hi\u1ec3n th\u1ecb",
|
||||
"Anchors": "Ghim",
|
||||
"Insert link": "Th\u00eam li\u00ean k\u1ebft",
|
||||
"New window": "C\u1eeda s\u1ed5 m\u1edbi",
|
||||
"None": "Kh\u00f4ng",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL b\u1ea1n nh\u1eadp v\u00e0o c\u00f3 v\u1ebb l\u00e0 m\u1ed9t li\u00ean k\u1ebft b\u00ean ngo\u00e0i. B\u1ea1n c\u00f3 mu\u1ed1n th\u00eam ti\u1ec1n t\u1ed1 http:\/\/ c\u1ea7n thi\u1ebft?",
|
||||
"Target": "M\u1ee5c ti\u00eau",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL b\u1ea1n nh\u1eadp v\u00e0o c\u00f3 v\u1ebb l\u00e0 m\u1ed9t \u0111\u1ecba ch\u1ec9 email. B\u1ea1n c\u00f3 mu\u1ed1n th\u00eam c\u00e1c y\u00eau c\u1ea7u mailto: ti\u1ec1n t\u1ed1?",
|
||||
"Insert\/edit link": "Th\u00eam \/ s\u1eeda li\u00ean k\u1ebft",
|
||||
"Insert\/edit video": "Th\u00eam \/ s\u1eeda video",
|
||||
"Poster": "Ng\u01b0\u1eddi \u0111\u0103ng",
|
||||
"Alternative source": "Ngu\u1ed3n thay th\u1ebf",
|
||||
"Paste your embed code below:": "D\u00e1n m\u00e3 embed v\u00e0o:",
|
||||
"Insert video": "Th\u00eam video",
|
||||
"Embed": "Embed",
|
||||
"Nonbreaking space": "Kh\u00f4ng ng\u1eaft kho\u1ea3ng",
|
||||
"Page break": "Ng\u1eaft trang",
|
||||
"Paste as text": "D\u00e1n nh\u01b0 v\u0103n b\u1ea3n",
|
||||
"Preview": "Xem tr\u01b0\u1edbc",
|
||||
"Print": "In",
|
||||
"Save": "L\u01b0u",
|
||||
"Could not find the specified string.": "Kh\u00f4ng t\u00ecm th\u1ea5y chu\u1ed7i y\u00eau c\u1ea7u",
|
||||
"Replace": "Thay th\u1ebf",
|
||||
"Next": "Sau",
|
||||
"Whole words": "T\u1ea5t c\u1ea3 \u0111o\u1ea1n",
|
||||
"Find and replace": "T\u00ecm v\u00e0 thay th\u1ebf",
|
||||
"Replace with": "Thay th\u1ebf b\u1eb1ng",
|
||||
"Find": "T\u00ecm",
|
||||
"Replace all": "Thay th\u1ebf t\u1ea5t c\u1ea3",
|
||||
"Match case": "Ph\u00e2n bi\u1ec7t hoa th\u01b0\u1eddng",
|
||||
"Prev": "Tr\u01b0\u1edbc",
|
||||
"Spellcheck": "Ki\u1ec3m tra ch\u00ednh t\u1ea3",
|
||||
"Finish": "Ho\u00e0n t\u1ea5t",
|
||||
"Ignore all": "L\u1edd t\u1ea5t c\u1ea3",
|
||||
"Ignore": "L\u1edd qua",
|
||||
"Add to Dictionary": "Th\u00eam v\u00e0o t\u1eeb \u0111i\u1ec3n",
|
||||
"Insert row before": "Th\u00eam d\u00f2ng ph\u00eda tr\u00ean",
|
||||
"Rows": "D\u00f2ng",
|
||||
"Height": "Cao",
|
||||
"Paste row after": "D\u00e1n v\u00e0o ph\u00eda sau, d\u01b0\u1edbi",
|
||||
"Alignment": "Canh ch\u1ec9nh",
|
||||
"Border color": "M\u00e0u vi\u1ec1n",
|
||||
"Column group": "Nh\u00f3m c\u1ed9t",
|
||||
"Row": "D\u00f2ng",
|
||||
"Insert column before": "Th\u00eam c\u1ed9t b\u00ean tr\u00e1i",
|
||||
"Split cell": "Chia \u00f4",
|
||||
"Cell padding": "Kho\u1ea3ng c\u00e1ch trong \u00f4",
|
||||
"Cell spacing": "Kho\u1ea3ng c\u00e1ch \u00f4",
|
||||
"Row type": "Lo\u1ea1i d\u00f2ng",
|
||||
"Insert table": "Th\u00eam b\u1ea3ng",
|
||||
"Body": "N\u1ed9i dung",
|
||||
"Caption": "Ti\u00eau \u0111\u1ec1",
|
||||
"Footer": "Ch\u00e2n",
|
||||
"Delete row": "Xo\u00e1 d\u00f2ng",
|
||||
"Paste row before": "D\u00e1n v\u00e0o ph\u00eda tr\u01b0\u1edbc, tr\u00ean",
|
||||
"Scope": "Quy\u1ec1n",
|
||||
"Delete table": "Xo\u00e1 b\u1ea3ng",
|
||||
"H Align": "X\u1ebfp ngang",
|
||||
"Top": "\u0110\u1ec9nh",
|
||||
"Header cell": "Ti\u00eau \u0111\u1ec1 \u00f4",
|
||||
"Column": "C\u1ed9t",
|
||||
"Row group": "Nh\u00f3m d\u00f2ng",
|
||||
"Cell": "\u00d4",
|
||||
"Middle": "Gi\u1eefa",
|
||||
"Cell type": "Lo\u1ea1i \u00f4",
|
||||
"Copy row": "Ch\u00e9p d\u00f2ng",
|
||||
"Row properties": "Thu\u1ed9c t\u00ednh d\u00f2ng",
|
||||
"Table properties": "Thu\u1ed9c t\u00ednh b\u1ea3ng",
|
||||
"Bottom": "\u0110\u00e1y",
|
||||
"V Align": "X\u1ebfp d\u1ecdc",
|
||||
"Header": "Ti\u00eau \u0111\u1ec1",
|
||||
"Right": "Ph\u1ea3i",
|
||||
"Insert column after": "Th\u00eam c\u1ed9t b\u00ean ph\u1ea3i",
|
||||
"Cols": "C\u1ed9t",
|
||||
"Insert row after": "Th\u00eam d\u00f2ng ph\u00eda d\u01b0\u1edbi",
|
||||
"Width": "R\u1ed9ng",
|
||||
"Cell properties": "Thu\u1ed9c t\u00ednh \u00f4",
|
||||
"Left": "Tr\u00e1i",
|
||||
"Cut row": "C\u1eaft d\u00f2ng",
|
||||
"Delete column": "Xo\u00e1 c\u1ed9t",
|
||||
"Center": "Gi\u1eefa",
|
||||
"Merge cells": "N\u1ed1i \u00f4",
|
||||
"Insert template": "Th\u00eam m\u1eabu",
|
||||
"Templates": "M\u1eabu",
|
||||
"Background color": "M\u00e0u n\u1ec1n",
|
||||
"Custom...": "T\u00f9y ch\u1ecdn...",
|
||||
"Custom color": "M\u00e0u t\u00f9y ch\u1ecdn",
|
||||
"No color": "Kh\u00f4ng m\u00e0u",
|
||||
"Text color": "M\u00e0u ch\u1eef",
|
||||
"Show blocks": "Hi\u1ec3n th\u1ecb kh\u1ed1i",
|
||||
"Show invisible characters": "Hi\u1ec3n th\u1ecb c\u00e1c k\u00fd t\u1ef1 \u1ea9n",
|
||||
"Words: {0}": "T\u1eeb: {0}",
|
||||
"Insert": "Th\u00eam",
|
||||
"File": "T\u1eadp tin",
|
||||
"Edit": "S\u1eeda",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Khu v\u1ef1c so\u1ea1n th\u1ea3o. Nh\u1ea5n ALT-F9 \u0111\u1ec3 hi\u1ec7n menu, ALT-F10 \u0111\u1ec3 hi\u1ec7n thanh c\u00f4ng c\u1ee5. C\u1ea7n tr\u1ee3 gi\u00fap nh\u1ea5n ALT-0",
|
||||
"Tools": "C\u00f4ng c\u1ee5",
|
||||
"View": "Xem",
|
||||
"Table": "B\u1ea3ng",
|
||||
"Format": "\u0110\u1ecbnh d\u1ea1ng"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/zh_CN.js
Normal file
219
data/web/rc/program/js/tinymce/langs/zh_CN.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('zh_CN',{
|
||||
"Cut": "\u526a\u5207",
|
||||
"Heading 5": "\u6807\u98985",
|
||||
"Header 2": "\u6807\u98982",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u4f60\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u5bf9\u526a\u8d34\u677f\u7684\u8bbf\u95ee\uff0c\u8bf7\u4f7f\u7528Ctrl+X\/C\/V\u952e\u8fdb\u884c\u590d\u5236\u7c98\u8d34\u3002",
|
||||
"Heading 4": "\u6807\u98984",
|
||||
"Div": "Div\u533a\u5757",
|
||||
"Heading 2": "\u6807\u98982",
|
||||
"Paste": "\u7c98\u8d34",
|
||||
"Close": "\u5173\u95ed",
|
||||
"Font Family": "\u5b57\u4f53",
|
||||
"Pre": "\u9884\u683c\u5f0f\u6587\u672c",
|
||||
"Align right": "\u53f3\u5bf9\u9f50",
|
||||
"New document": "\u65b0\u6587\u6863",
|
||||
"Blockquote": "\u5f15\u7528",
|
||||
"Numbered list": "\u7f16\u53f7\u5217\u8868",
|
||||
"Heading 1": "\u6807\u98981",
|
||||
"Headings": "\u6807\u9898",
|
||||
"Increase indent": "\u589e\u52a0\u7f29\u8fdb",
|
||||
"Formats": "\u683c\u5f0f",
|
||||
"Headers": "\u6807\u9898",
|
||||
"Select all": "\u5168\u9009",
|
||||
"Header 3": "\u6807\u98983",
|
||||
"Blocks": "\u533a\u5757",
|
||||
"Undo": "\u64a4\u6d88",
|
||||
"Strikethrough": "\u5220\u9664\u7ebf",
|
||||
"Bullet list": "\u9879\u76ee\u7b26\u53f7",
|
||||
"Header 1": "\u6807\u98981",
|
||||
"Superscript": "\u4e0a\u6807",
|
||||
"Clear formatting": "\u6e05\u9664\u683c\u5f0f",
|
||||
"Font Sizes": "\u5b57\u53f7",
|
||||
"Subscript": "\u4e0b\u6807",
|
||||
"Header 6": "\u6807\u98986",
|
||||
"Redo": "\u91cd\u590d",
|
||||
"Paragraph": "\u6bb5\u843d",
|
||||
"Ok": "\u786e\u5b9a",
|
||||
"Bold": "\u7c97\u4f53",
|
||||
"Code": "\u4ee3\u7801",
|
||||
"Italic": "\u659c\u4f53",
|
||||
"Align center": "\u5c45\u4e2d",
|
||||
"Header 5": "\u6807\u98985",
|
||||
"Heading 6": "\u6807\u98986",
|
||||
"Heading 3": "\u6807\u98983",
|
||||
"Decrease indent": "\u51cf\u5c11\u7f29\u8fdb",
|
||||
"Header 4": "\u6807\u98984",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u5f53\u524d\u4e3a\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u518d\u6b21\u70b9\u51fb\u53ef\u4ee5\u56de\u5230\u666e\u901a\u7c98\u8d34\u6a21\u5f0f\u3002",
|
||||
"Underline": "\u4e0b\u5212\u7ebf",
|
||||
"Cancel": "\u53d6\u6d88",
|
||||
"Justify": "\u4e24\u7aef\u5bf9\u9f50",
|
||||
"Inline": "\u6587\u672c",
|
||||
"Copy": "\u590d\u5236",
|
||||
"Align left": "\u5de6\u5bf9\u9f50",
|
||||
"Visual aids": "\u7f51\u683c\u7ebf",
|
||||
"Lower Greek": "\u5c0f\u5199\u5e0c\u814a\u5b57\u6bcd",
|
||||
"Square": "\u65b9\u5757",
|
||||
"Default": "\u9ed8\u8ba4",
|
||||
"Lower Alpha": "\u5c0f\u5199\u82f1\u6587\u5b57\u6bcd",
|
||||
"Circle": "\u7a7a\u5fc3\u5706",
|
||||
"Disc": "\u5b9e\u5fc3\u5706",
|
||||
"Upper Alpha": "\u5927\u5199\u82f1\u6587\u5b57\u6bcd",
|
||||
"Upper Roman": "\u5927\u5199\u7f57\u9a6c\u5b57\u6bcd",
|
||||
"Lower Roman": "\u5c0f\u5199\u7f57\u9a6c\u5b57\u6bcd",
|
||||
"Name": "\u540d\u79f0",
|
||||
"Anchor": "\u951a\u70b9",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u4f60\u8fd8\u6709\u6587\u6863\u5c1a\u672a\u4fdd\u5b58\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\uff1f",
|
||||
"Restore last draft": "\u6062\u590d\u4e0a\u6b21\u7684\u8349\u7a3f",
|
||||
"Special character": "\u7279\u6b8a\u7b26\u53f7",
|
||||
"Source code": "\u6e90\u4ee3\u7801",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u989c\u8272",
|
||||
"Right to left": "\u4ece\u53f3\u5230\u5de6",
|
||||
"Left to right": "\u4ece\u5de6\u5230\u53f3",
|
||||
"Emoticons": "\u8868\u60c5",
|
||||
"Robots": "\u673a\u5668\u4eba",
|
||||
"Document properties": "\u6587\u6863\u5c5e\u6027",
|
||||
"Title": "\u6807\u9898",
|
||||
"Keywords": "\u5173\u952e\u8bcd",
|
||||
"Encoding": "\u7f16\u7801",
|
||||
"Description": "\u63cf\u8ff0",
|
||||
"Author": "\u4f5c\u8005",
|
||||
"Fullscreen": "\u5168\u5c4f",
|
||||
"Horizontal line": "\u6c34\u5e73\u5206\u5272\u7ebf",
|
||||
"Horizontal space": "\u6c34\u5e73\u8fb9\u8ddd",
|
||||
"Insert\/edit image": "\u63d2\u5165\/\u7f16\u8f91\u56fe\u7247",
|
||||
"General": "\u666e\u901a",
|
||||
"Advanced": "\u9ad8\u7ea7",
|
||||
"Source": "\u5730\u5740",
|
||||
"Border": "\u8fb9\u6846",
|
||||
"Constrain proportions": "\u4fdd\u6301\u7eb5\u6a2a\u6bd4",
|
||||
"Vertical space": "\u5782\u76f4\u8fb9\u8ddd",
|
||||
"Image description": "\u56fe\u7247\u63cf\u8ff0",
|
||||
"Style": "\u6837\u5f0f",
|
||||
"Dimensions": "\u5927\u5c0f",
|
||||
"Insert image": "\u63d2\u5165\u56fe\u7247",
|
||||
"Zoom in": "\u653e\u5927",
|
||||
"Contrast": "\u5bf9\u6bd4\u5ea6",
|
||||
"Back": "\u540e\u9000",
|
||||
"Gamma": "\u4f3d\u9a6c\u503c",
|
||||
"Flip horizontally": "\u6c34\u5e73\u7ffb\u8f6c",
|
||||
"Resize": "\u8c03\u6574\u5927\u5c0f",
|
||||
"Sharpen": "\u9510\u5316",
|
||||
"Zoom out": "\u7f29\u5c0f",
|
||||
"Image options": "\u56fe\u7247\u9009\u9879",
|
||||
"Apply": "\u5e94\u7528",
|
||||
"Brightness": "\u4eae\u5ea6",
|
||||
"Rotate clockwise": "\u987a\u65f6\u9488\u65cb\u8f6c",
|
||||
"Rotate counterclockwise": "\u9006\u65f6\u9488\u65cb\u8f6c",
|
||||
"Edit image": "\u7f16\u8f91\u56fe\u7247",
|
||||
"Color levels": "\u989c\u8272\u5c42\u6b21",
|
||||
"Crop": "\u88c1\u526a",
|
||||
"Orientation": "\u65b9\u5411",
|
||||
"Flip vertically": "\u5782\u76f4\u7ffb\u8f6c",
|
||||
"Invert": "\u53cd\u8f6c",
|
||||
"Insert date\/time": "\u63d2\u5165\u65e5\u671f\/\u65f6\u95f4",
|
||||
"Remove link": "\u5220\u9664\u94fe\u63a5",
|
||||
"Url": "\u5730\u5740",
|
||||
"Text to display": "\u663e\u793a\u6587\u5b57",
|
||||
"Anchors": "\u951a\u70b9",
|
||||
"Insert link": "\u63d2\u5165\u94fe\u63a5",
|
||||
"New window": "\u5728\u65b0\u7a97\u53e3\u6253\u5f00",
|
||||
"None": "\u65e0",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u5c5e\u4e8e\u5916\u90e8\u94fe\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7f00\u5417\uff1f",
|
||||
"Target": "\u6253\u5f00\u65b9\u5f0f",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u4e3a\u90ae\u4ef6\u5730\u5740\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\u5417\uff1f",
|
||||
"Insert\/edit link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5",
|
||||
"Insert\/edit video": "\u63d2\u5165\/\u7f16\u8f91\u89c6\u9891",
|
||||
"Poster": "\u5c01\u9762",
|
||||
"Alternative source": "\u955c\u50cf",
|
||||
"Paste your embed code below:": "\u5c06\u5185\u5d4c\u4ee3\u7801\u7c98\u8d34\u5728\u4e0b\u9762:",
|
||||
"Insert video": "\u63d2\u5165\u89c6\u9891",
|
||||
"Embed": "\u5185\u5d4c",
|
||||
"Nonbreaking space": "\u4e0d\u95f4\u65ad\u7a7a\u683c",
|
||||
"Page break": "\u5206\u9875\u7b26",
|
||||
"Paste as text": "\u7c98\u8d34\u4e3a\u6587\u672c",
|
||||
"Preview": "\u9884\u89c8",
|
||||
"Print": "\u6253\u5370",
|
||||
"Save": "\u4fdd\u5b58",
|
||||
"Could not find the specified string.": "\u672a\u627e\u5230\u641c\u7d22\u5185\u5bb9.",
|
||||
"Replace": "\u66ff\u6362",
|
||||
"Next": "\u4e0b\u4e00\u4e2a",
|
||||
"Whole words": "\u5168\u5b57\u5339\u914d",
|
||||
"Find and replace": "\u67e5\u627e\u548c\u66ff\u6362",
|
||||
"Replace with": "\u66ff\u6362\u4e3a",
|
||||
"Find": "\u67e5\u627e",
|
||||
"Replace all": "\u5168\u90e8\u66ff\u6362",
|
||||
"Match case": "\u533a\u5206\u5927\u5c0f\u5199",
|
||||
"Prev": "\u4e0a\u4e00\u4e2a",
|
||||
"Spellcheck": "\u62fc\u5199\u68c0\u67e5",
|
||||
"Finish": "\u5b8c\u6210",
|
||||
"Ignore all": "\u5168\u90e8\u5ffd\u7565",
|
||||
"Ignore": "\u5ffd\u7565",
|
||||
"Add to Dictionary": "\u6dfb\u52a0\u5230\u5b57\u5178",
|
||||
"Insert row before": "\u5728\u4e0a\u65b9\u63d2\u5165",
|
||||
"Rows": "\u884c",
|
||||
"Height": "\u9ad8",
|
||||
"Paste row after": "\u7c98\u8d34\u5230\u4e0b\u65b9",
|
||||
"Alignment": "\u5bf9\u9f50\u65b9\u5f0f",
|
||||
"Border color": "\u8fb9\u6846\u989c\u8272",
|
||||
"Column group": "\u5217\u7ec4",
|
||||
"Row": "\u884c",
|
||||
"Insert column before": "\u5728\u5de6\u4fa7\u63d2\u5165",
|
||||
"Split cell": "\u62c6\u5206\u5355\u5143\u683c",
|
||||
"Cell padding": "\u5355\u5143\u683c\u5185\u8fb9\u8ddd",
|
||||
"Cell spacing": "\u5355\u5143\u683c\u5916\u95f4\u8ddd",
|
||||
"Row type": "\u884c\u7c7b\u578b",
|
||||
"Insert table": "\u63d2\u5165\u8868\u683c",
|
||||
"Body": "\u8868\u4f53",
|
||||
"Caption": "\u6807\u9898",
|
||||
"Footer": "\u8868\u5c3e",
|
||||
"Delete row": "\u5220\u9664\u884c",
|
||||
"Paste row before": "\u7c98\u8d34\u5230\u4e0a\u65b9",
|
||||
"Scope": "\u8303\u56f4",
|
||||
"Delete table": "\u5220\u9664\u8868\u683c",
|
||||
"H Align": "\u6c34\u5e73\u5bf9\u9f50",
|
||||
"Top": "\u9876\u90e8\u5bf9\u9f50",
|
||||
"Header cell": "\u8868\u5934\u5355\u5143\u683c",
|
||||
"Column": "\u5217",
|
||||
"Row group": "\u884c\u7ec4",
|
||||
"Cell": "\u5355\u5143\u683c",
|
||||
"Middle": "\u5782\u76f4\u5c45\u4e2d",
|
||||
"Cell type": "\u5355\u5143\u683c\u7c7b\u578b",
|
||||
"Copy row": "\u590d\u5236\u884c",
|
||||
"Row properties": "\u884c\u5c5e\u6027",
|
||||
"Table properties": "\u8868\u683c\u5c5e\u6027",
|
||||
"Bottom": "\u5e95\u90e8\u5bf9\u9f50",
|
||||
"V Align": "\u5782\u76f4\u5bf9\u9f50",
|
||||
"Header": "\u8868\u5934",
|
||||
"Right": "\u53f3\u5bf9\u9f50",
|
||||
"Insert column after": "\u5728\u53f3\u4fa7\u63d2\u5165",
|
||||
"Cols": "\u5217",
|
||||
"Insert row after": "\u5728\u4e0b\u65b9\u63d2\u5165",
|
||||
"Width": "\u5bbd",
|
||||
"Cell properties": "\u5355\u5143\u683c\u5c5e\u6027",
|
||||
"Left": "\u5de6\u5bf9\u9f50",
|
||||
"Cut row": "\u526a\u5207\u884c",
|
||||
"Delete column": "\u5220\u9664\u5217",
|
||||
"Center": "\u5c45\u4e2d",
|
||||
"Merge cells": "\u5408\u5e76\u5355\u5143\u683c",
|
||||
"Insert template": "\u63d2\u5165\u6a21\u677f",
|
||||
"Templates": "\u6a21\u677f",
|
||||
"Background color": "\u80cc\u666f\u8272",
|
||||
"Custom...": "\u81ea\u5b9a\u4e49...",
|
||||
"Custom color": "\u81ea\u5b9a\u4e49\u989c\u8272",
|
||||
"No color": "\u65e0",
|
||||
"Text color": "\u6587\u5b57\u989c\u8272",
|
||||
"Show blocks": "\u663e\u793a\u533a\u5757\u8fb9\u6846",
|
||||
"Show invisible characters": "\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26",
|
||||
"Words: {0}": "\u5b57\u6570\uff1a{0}",
|
||||
"Insert": "\u63d2\u5165",
|
||||
"File": "\u6587\u4ef6",
|
||||
"Edit": "\u7f16\u8f91",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u5728\u7f16\u8f91\u533a\u6309ALT-F9\u6253\u5f00\u83dc\u5355\uff0c\u6309ALT-F10\u6253\u5f00\u5de5\u5177\u680f\uff0c\u6309ALT-0\u67e5\u770b\u5e2e\u52a9",
|
||||
"Tools": "\u5de5\u5177",
|
||||
"View": "\u89c6\u56fe",
|
||||
"Table": "\u8868\u683c",
|
||||
"Format": "\u683c\u5f0f"
|
||||
});
|
||||
219
data/web/rc/program/js/tinymce/langs/zh_TW.js
Normal file
219
data/web/rc/program/js/tinymce/langs/zh_TW.js
Normal file
@@ -0,0 +1,219 @@
|
||||
tinymce.addI18n('zh_TW',{
|
||||
"Cut": "\u526a\u4e0b",
|
||||
"Heading 5": "\u6a19\u984c 5",
|
||||
"Header 2": "\u6a19\u984c 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u60a8\u7684\u700f\u89bd\u5668\u4e0d\u652f\u63f4\u5b58\u53d6\u526a\u8cbc\u7c3f\uff0c\u53ef\u4ee5\u4f7f\u7528\u5feb\u901f\u9375 Ctrl + X\/C\/V \u4ee3\u66ff\u526a\u4e0b\u3001\u8907\u88fd\u8207\u8cbc\u4e0a\u3002",
|
||||
"Heading 4": "\u6a19\u984c 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u6a19\u984c 2",
|
||||
"Paste": "\u8cbc\u4e0a",
|
||||
"Close": "\u95dc\u9589",
|
||||
"Font Family": "\u5b57\u9ad4",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u7f6e\u53f3\u5c0d\u9f4a",
|
||||
"New document": "\u65b0\u6587\u4ef6",
|
||||
"Blockquote": "\u5f15\u7528",
|
||||
"Numbered list": "\u6578\u5b57\u6e05\u55ae",
|
||||
"Heading 1": "\u6a19\u984c 1",
|
||||
"Headings": "\u6a19\u984c",
|
||||
"Increase indent": "\u589e\u52a0\u7e2e\u6392",
|
||||
"Formats": "\u683c\u5f0f",
|
||||
"Headers": "\u6a19\u984c",
|
||||
"Select all": "\u5168\u9078",
|
||||
"Header 3": "\u6a19\u984c 3",
|
||||
"Blocks": "\u5340\u584a",
|
||||
"Undo": "\u5fa9\u539f",
|
||||
"Strikethrough": "\u522a\u9664\u7dda",
|
||||
"Bullet list": "\u9805\u76ee\u6e05\u55ae",
|
||||
"Header 1": "\u6a19\u984c 1",
|
||||
"Superscript": "\u4e0a\u6a19",
|
||||
"Clear formatting": "\u6e05\u9664\u683c\u5f0f",
|
||||
"Font Sizes": "\u5b57\u578b\u5927\u5c0f",
|
||||
"Subscript": "\u4e0b\u6a19",
|
||||
"Header 6": "\u6a19\u984c 6",
|
||||
"Redo": "\u53d6\u6d88\u5fa9\u539f",
|
||||
"Paragraph": "\u6bb5\u843d",
|
||||
"Ok": "\u78ba\u5b9a",
|
||||
"Bold": "\u7c97\u9ad4",
|
||||
"Code": "\u7a0b\u5f0f\u78bc",
|
||||
"Italic": "\u659c\u9ad4",
|
||||
"Align center": "\u7f6e\u4e2d\u5c0d\u9f4a",
|
||||
"Header 5": "\u6a19\u984c 5",
|
||||
"Heading 6": "\u6a19\u984c 6",
|
||||
"Heading 3": "\u6a19\u984c 3",
|
||||
"Decrease indent": "\u6e1b\u5c11\u7e2e\u6392",
|
||||
"Header 4": "\u6a19\u984c 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u76ee\u524d\u5c07\u4ee5\u7d14\u6587\u5b57\u7684\u6a21\u5f0f\u8cbc\u4e0a\uff0c\u60a8\u53ef\u4ee5\u518d\u9ede\u9078\u4e00\u6b21\u53d6\u6d88\u3002",
|
||||
"Underline": "\u5e95\u7dda",
|
||||
"Cancel": "\u53d6\u6d88",
|
||||
"Justify": "\u5de6\u53f3\u5c0d\u9f4a",
|
||||
"Inline": "Inline",
|
||||
"Copy": "\u8907\u88fd",
|
||||
"Align left": "\u7f6e\u5de6\u5c0d\u9f4a",
|
||||
"Visual aids": "\u5c0f\u5e6b\u624b",
|
||||
"Lower Greek": "\u5e0c\u81d8\u5b57\u6bcd",
|
||||
"Square": "\u6b63\u65b9\u5f62",
|
||||
"Default": "\u9810\u8a2d",
|
||||
"Lower Alpha": "\u5c0f\u5beb\u82f1\u6587\u5b57\u6bcd",
|
||||
"Circle": "\u7a7a\u5fc3\u5713",
|
||||
"Disc": "\u5be6\u5fc3\u5713",
|
||||
"Upper Alpha": "\u5927\u5beb\u82f1\u6587\u5b57\u6bcd",
|
||||
"Upper Roman": "\u5927\u5beb\u7f85\u99ac\u6578\u5b57",
|
||||
"Lower Roman": "\u5c0f\u5beb\u7f85\u99ac\u6578\u5b57",
|
||||
"Name": "\u540d\u7a31",
|
||||
"Anchor": "\u52a0\u5165\u9328\u9ede",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u7de8\u8f2f\u5c1a\u672a\u88ab\u5132\u5b58\uff0c\u4f60\u78ba\u5b9a\u8981\u96e2\u958b\uff1f",
|
||||
"Restore last draft": "\u8f09\u5165\u4e0a\u4e00\u6b21\u7de8\u8f2f\u7684\u8349\u7a3f",
|
||||
"Special character": "\u7279\u6b8a\u5b57\u5143",
|
||||
"Source code": "\u539f\u59cb\u78bc",
|
||||
"B": "\u85cd",
|
||||
"R": "\u7d05",
|
||||
"G": "\u7da0",
|
||||
"Color": "\u984f\u8272",
|
||||
"Right to left": "\u5f9e\u53f3\u5230\u5de6",
|
||||
"Left to right": "\u5f9e\u5de6\u5230\u53f3",
|
||||
"Emoticons": "\u8868\u60c5",
|
||||
"Robots": "\u6a5f\u5668\u4eba",
|
||||
"Document properties": "\u6587\u4ef6\u7684\u5c6c\u6027",
|
||||
"Title": "\u6a19\u984c",
|
||||
"Keywords": "\u95dc\u9375\u5b57",
|
||||
"Encoding": "\u7de8\u78bc",
|
||||
"Description": "\u63cf\u8ff0",
|
||||
"Author": "\u4f5c\u8005",
|
||||
"Fullscreen": "\u5168\u87a2\u5e55",
|
||||
"Horizontal line": "\u6c34\u5e73\u7dda",
|
||||
"Horizontal space": "\u5bec\u5ea6",
|
||||
"Insert\/edit image": "\u63d2\u5165\/\u7de8\u8f2f \u5716\u7247",
|
||||
"General": "\u4e00\u822c",
|
||||
"Advanced": "\u9032\u968e",
|
||||
"Source": "\u5716\u7247\u7db2\u5740",
|
||||
"Border": "\u908a\u6846",
|
||||
"Constrain proportions": "\u7b49\u6bd4\u4f8b\u7e2e\u653e",
|
||||
"Vertical space": "\u9ad8\u5ea6",
|
||||
"Image description": "\u5716\u7247\u63cf\u8ff0",
|
||||
"Style": "\u6a23\u5f0f",
|
||||
"Dimensions": "\u5c3a\u5bf8",
|
||||
"Insert image": "\u63d2\u5165\u5716\u7247",
|
||||
"Zoom in": "\u653e\u5927",
|
||||
"Contrast": "\u5c0d\u6bd4",
|
||||
"Back": "\u5f8c\u9000",
|
||||
"Gamma": "\u4f3d\u99ac\u503c",
|
||||
"Flip horizontally": "\u6c34\u5e73\u7ffb\u8f49",
|
||||
"Resize": "\u8abf\u6574\u5927\u5c0f",
|
||||
"Sharpen": "\u92b3\u5316",
|
||||
"Zoom out": "\u7e2e\u5c0f",
|
||||
"Image options": "\u5716\u7247\u9078\u9805",
|
||||
"Apply": "\u61c9\u7528",
|
||||
"Brightness": "\u4eae\u5ea6",
|
||||
"Rotate clockwise": "\u9806\u6642\u91dd\u65cb\u8f49",
|
||||
"Rotate counterclockwise": "\u9006\u6642\u91dd\u65cb\u8f49",
|
||||
"Edit image": "\u7de8\u8f2f\u5716\u7247",
|
||||
"Color levels": "\u984f\u8272\u5c64\u6b21",
|
||||
"Crop": "\u88c1\u526a",
|
||||
"Orientation": "\u65b9\u5411",
|
||||
"Flip vertically": "\u5782\u76f4\u7ffb\u8f49",
|
||||
"Invert": "\u53cd\u8f49",
|
||||
"Insert date\/time": "\u63d2\u5165 \u65e5\u671f\/\u6642\u9593",
|
||||
"Remove link": "\u79fb\u9664\u9023\u7d50",
|
||||
"Url": "\u7db2\u5740",
|
||||
"Text to display": "\u986f\u793a\u6587\u5b57",
|
||||
"Anchors": "\u52a0\u5165\u9328\u9ede",
|
||||
"Insert link": "\u63d2\u5165\u9023\u7d50",
|
||||
"New window": "\u53e6\u958b\u8996\u7a97",
|
||||
"None": "\u7121",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u5c6c\u65bc\u5916\u90e8\u93c8\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7db4\u55ce\uff1f",
|
||||
"Target": "\u958b\u555f\u65b9\u5f0f",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u70ba\u96fb\u5b50\u90f5\u4ef6\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7db4\u55ce\uff1f",
|
||||
"Insert\/edit link": "\u63d2\u5165\/\u7de8\u8f2f\u9023\u7d50",
|
||||
"Insert\/edit video": "\u63d2\u4ef6\/\u7de8\u8f2f \u5f71\u97f3",
|
||||
"Poster": "\u9810\u89bd\u5716\u7247",
|
||||
"Alternative source": "\u66ff\u4ee3\u5f71\u97f3",
|
||||
"Paste your embed code below:": "\u8acb\u5c07\u60a8\u7684\u5d4c\u5165\u5f0f\u7a0b\u5f0f\u78bc\u8cbc\u5728\u4e0b\u9762:",
|
||||
"Insert video": "\u63d2\u5165\u5f71\u97f3",
|
||||
"Embed": "\u5d4c\u5165\u78bc",
|
||||
"Nonbreaking space": "\u4e0d\u5206\u884c\u7684\u7a7a\u683c",
|
||||
"Page break": "\u5206\u9801",
|
||||
"Paste as text": "\u4ee5\u7d14\u6587\u5b57\u8cbc\u4e0a",
|
||||
"Preview": "\u9810\u89bd",
|
||||
"Print": "\u5217\u5370",
|
||||
"Save": "\u5132\u5b58",
|
||||
"Could not find the specified string.": "\u7121\u6cd5\u67e5\u8a62\u5230\u6b64\u7279\u5b9a\u5b57\u4e32",
|
||||
"Replace": "\u66ff\u63db",
|
||||
"Next": "\u4e0b\u4e00\u500b",
|
||||
"Whole words": "\u6574\u500b\u55ae\u5b57",
|
||||
"Find and replace": "\u5c0b\u627e\u53ca\u53d6\u4ee3",
|
||||
"Replace with": "\u66f4\u63db",
|
||||
"Find": "\u641c\u5c0b",
|
||||
"Replace all": "\u66ff\u63db\u5168\u90e8",
|
||||
"Match case": "\u76f8\u5339\u914d\u6848\u4ef6",
|
||||
"Prev": "\u4e0a\u4e00\u500b",
|
||||
"Spellcheck": "\u62fc\u5b57\u6aa2\u67e5",
|
||||
"Finish": "\u5b8c\u6210",
|
||||
"Ignore all": "\u5ffd\u7565\u6240\u6709",
|
||||
"Ignore": "\u5ffd\u7565",
|
||||
"Add to Dictionary": "\u52a0\u5165\u5b57\u5178\u4e2d",
|
||||
"Insert row before": "\u63d2\u5165\u5217\u5728...\u4e4b\u524d",
|
||||
"Rows": "\u5217",
|
||||
"Height": "\u9ad8\u5ea6",
|
||||
"Paste row after": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u5f8c",
|
||||
"Alignment": "\u5c0d\u9f4a",
|
||||
"Border color": "\u908a\u6846\u984f\u8272",
|
||||
"Column group": "\u6b04\u4f4d\u7fa4\u7d44",
|
||||
"Row": "\u5217",
|
||||
"Insert column before": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u524d",
|
||||
"Split cell": "\u5206\u5272\u5132\u5b58\u683c",
|
||||
"Cell padding": "\u5132\u5b58\u683c\u7684\u908a\u8ddd",
|
||||
"Cell spacing": "\u5132\u5b58\u683c\u5f97\u9593\u8ddd",
|
||||
"Row type": "\u884c\u7684\u985e\u578b",
|
||||
"Insert table": "\u63d2\u5165\u8868\u683c",
|
||||
"Body": "\u4e3b\u9ad4",
|
||||
"Caption": "\u8868\u683c\u6a19\u984c",
|
||||
"Footer": "\u9801\u5c3e",
|
||||
"Delete row": "\u522a\u9664\u5217",
|
||||
"Paste row before": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u524d",
|
||||
"Scope": "\u7bc4\u570d",
|
||||
"Delete table": "\u522a\u9664\u8868\u683c",
|
||||
"H Align": "\u6c34\u5e73\u4f4d\u7f6e",
|
||||
"Top": "\u7f6e\u9802",
|
||||
"Header cell": "\u6a19\u982d\u5132\u5b58\u683c",
|
||||
"Column": "\u884c",
|
||||
"Row group": "\u5217\u7fa4\u7d44",
|
||||
"Cell": "\u5132\u5b58\u683c",
|
||||
"Middle": "\u7f6e\u4e2d",
|
||||
"Cell type": "\u5132\u5b58\u683c\u7684\u985e\u578b",
|
||||
"Copy row": "\u8907\u88fd\u5217",
|
||||
"Row properties": "\u5217\u5c6c\u6027",
|
||||
"Table properties": "\u8868\u683c\u5c6c\u6027",
|
||||
"Bottom": "\u7f6e\u5e95",
|
||||
"V Align": "\u5782\u76f4\u4f4d\u7f6e",
|
||||
"Header": "\u6a19\u982d",
|
||||
"Right": "\u53f3\u908a",
|
||||
"Insert column after": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u5f8c",
|
||||
"Cols": "\u6b04\u4f4d\u6bb5",
|
||||
"Insert row after": "\u63d2\u5165\u5217\u5728...\u4e4b\u5f8c",
|
||||
"Width": "\u5bec\u5ea6",
|
||||
"Cell properties": "\u5132\u5b58\u683c\u5c6c\u6027",
|
||||
"Left": "\u5de6\u908a",
|
||||
"Cut row": "\u526a\u4e0b\u5217",
|
||||
"Delete column": "\u522a\u9664\u884c",
|
||||
"Center": "\u4e2d\u9593",
|
||||
"Merge cells": "\u5408\u4f75\u5132\u5b58\u683c",
|
||||
"Insert template": "\u63d2\u5165\u6a23\u7248",
|
||||
"Templates": "\u6a23\u7248",
|
||||
"Background color": "\u80cc\u666f\u984f\u8272",
|
||||
"Custom...": "\u81ea\u8a02",
|
||||
"Custom color": "\u81ea\u8a02\u984f\u8272",
|
||||
"No color": "No color",
|
||||
"Text color": "\u6587\u5b57\u984f\u8272",
|
||||
"Show blocks": "\u986f\u793a\u5340\u584a\u8cc7\u8a0a",
|
||||
"Show invisible characters": "\u986f\u793a\u96b1\u85cf\u5b57\u5143",
|
||||
"Words: {0}": "\u5b57\u6578\uff1a{0}",
|
||||
"Insert": "\u63d2\u5165",
|
||||
"File": "\u6a94\u6848",
|
||||
"Edit": "\u7de8\u8f2f",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u8c50\u5bcc\u7684\u6587\u672c\u5340\u57df\u3002\u6309ALT-F9\u524d\u5f80\u4e3b\u9078\u55ae\u3002\u6309ALT-F10\u547c\u53eb\u5de5\u5177\u6b04\u3002\u6309ALT-0\u5c0b\u6c42\u5e6b\u52a9",
|
||||
"Tools": "\u5de5\u5177",
|
||||
"View": "\u6aa2\u8996",
|
||||
"Table": "\u8868\u683c",
|
||||
"Format": "\u683c\u5f0f"
|
||||
});
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user